~ubuntu-branches/ubuntu/saucy/konsole/saucy-proposed

« back to all changes in this revision

Viewing changes to src/KeyBindingEditor.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2012-06-06 14:29:24 UTC
  • mfrom: (1.1.12)
  • Revision ID: package-import@ubuntu.com-20120606142924-1rekqv6j25lw2k41
Tags: 4:4.8.80-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
namespace Ui
29
29
{
30
 
    class KeyBindingEditor;
 
30
class KeyBindingEditor;
31
31
}
32
32
 
33
33
namespace Konsole
34
34
{
35
 
 
36
35
class KeyboardTranslator;
37
36
 
38
37
/**
50
49
 */
51
50
class KeyBindingEditor : public QWidget
52
51
{
53
 
Q_OBJECT
 
52
    Q_OBJECT
54
53
 
55
54
public:
56
55
    /** Constructs a new key bindings editor with the specified parent. */
57
 
    KeyBindingEditor(QWidget* parent = 0);
 
56
    explicit KeyBindingEditor(QWidget* parent = 0);
58
57
    virtual ~KeyBindingEditor();
59
58
 
60
59
    /**
75
74
    QString description() const;
76
75
 
77
76
    // reimplemented to handle test area input
78
 
    virtual bool eventFilter( QObject* watched , QEvent* event );
 
77
    virtual bool eventFilter(QObject* watched , QEvent* event);
79
78
 
80
79
public slots:
81
80
    /**
99
98
    // when setup() is called
100
99
    KeyboardTranslator* _translator;
101
100
};
102
 
 
103
101
}
104
102
 
105
103
#endif //KEYBINDINGEDITOR_H