summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/function_keyboard.h
Side-by-side diff
Diffstat (limited to 'noncore/apps/opie-console/function_keyboard.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/opie-console/function_keyboard.h19
1 files changed, 18 insertions, 1 deletions
diff --git a/noncore/apps/opie-console/function_keyboard.h b/noncore/apps/opie-console/function_keyboard.h
index 2be74b4..efeff6d 100644
--- a/noncore/apps/opie-console/function_keyboard.h
+++ b/noncore/apps/opie-console/function_keyboard.h
@@ -9,4 +9,7 @@
#include <qmap.h>
+#include <qspinbox.h>
+#include <qcombobox.h>
#include "profiledialogwidget.h"
+
class FKey {
@@ -37,2 +40,5 @@ public:
+ void changeRows(int);
+ void changeCols(int);
+
void paintEvent(QPaintEvent *);
@@ -46,3 +52,3 @@ signals:
- void keyPressed(ushort, ushort, bool, bool, bool);
+ void keyPressed(ushort, ushort, bool, bool, bool, ushort, ushort);
@@ -78,4 +84,15 @@ public:
+private slots:
+
+ void slotKeyPressed(ushort, ushort, bool, bool, bool, ushort, ushort);
+ void slotChangeRows(int);
+ void slotChangeCols(int);
+ void slotChangeIcon(int);
+
private:
+ FunctionKeyboard *kb;
+ QSpinBox *m_rowBox, *m_colBox;
+ QComboBox *m_labels;
+
};