summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/quick_button.h
Unidiff
Diffstat (limited to 'noncore/apps/opie-console/quick_button.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/quick_button.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/noncore/apps/opie-console/quick_button.h b/noncore/apps/opie-console/quick_button.h
new file mode 100644
index 0000000..d3eb1bb
--- a/dev/null
+++ b/noncore/apps/opie-console/quick_button.h
@@ -0,0 +1,27 @@
1#ifndef QUICK_BUTTON_H
2#define QUICK_BUTTON_H
3
4#include <qframe.h>
5
6class QuickButton : public QFrame {
7
8 Q_OBJECT
9
10public:
11 QuickButton( QWidget *parent = 0 );
12 ~QuickButton();
13
14 signals:
15
16 void keyPressed( ushort, ushort, bool, bool, bool );
17
18private slots:
19 void hitEnter();
20 void hitSpace();
21 void hitTab();
22 void hitPaste();
23 void hitUp();
24 void hitDown();
25};
26
27#endif