Vuo 2.4.4
Loading...
Searching...
No Matches
VuoKeyComboBox.hh
Go to the documentation of this file.
1
10#include "VuoComboBox.hh"
11
12extern "C"
13{
14#include "VuoKey.h"
15}
16
21{
22 Q_OBJECT
23
24private:
28 enum Group
29 {
30 Any,
31 Letters,
32 Numbers,
33 Punctuation,
34 Arrows,
35 Keypad,
36 FKeys,
37 OtherKeys
38 };
39
40 static bool isPairOfItemsSorted(pair<QString, QVariant> item1, pair<QString, QVariant> item2);
41
42public:
43 VuoKeyComboBox(QWidget *parent);
44 void setCurrentKey(VuoKey key);
46
47public slots:
48 void keyPressEvent(QKeyEvent *e);
49
50public:
51 bool eventFilter(QObject *object, QEvent *e);
52};