summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/function_keyboard.h
Unidiff
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.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/noncore/apps/opie-console/function_keyboard.h b/noncore/apps/opie-console/function_keyboard.h
index 496d932..7f313d6 100644
--- a/noncore/apps/opie-console/function_keyboard.h
+++ b/noncore/apps/opie-console/function_keyboard.h
@@ -77,36 +77,39 @@ private:
77 int pressedRow, pressedCol; 77 int pressedRow, pressedCol;
78 78
79 QObject *parent; 79 QObject *parent;
80 80
81}; 81};
82 82
83class FunctionKeyboardConfig : public ProfileDialogKeyWidget { 83class FunctionKeyboardConfig : public ProfileDialogKeyWidget {
84 84
85 Q_OBJECT 85 Q_OBJECT
86 86
87public: 87public:
88 FunctionKeyboardConfig(const QString& name, QWidget *wid, const char* name = 0l ); 88 FunctionKeyboardConfig(const QString& name, QWidget *wid, const char* name = 0l );
89 ~FunctionKeyboardConfig(); 89 ~FunctionKeyboardConfig();
90 90
91 void load(const Profile&); 91 void load(const Profile&);
92 void save(Profile&); 92 void save(Profile&);
93 93
94private slots: 94private slots:
95 95
96 void slotKeyPressed(FKey, ushort, ushort, bool); 96 void slotKeyPressed(FKey, ushort, ushort, bool);
97 void slotChangeRows(int); 97 void slotChangeRows(int);
98 void slotChangeCols(int); 98 void slotChangeCols(int);
99 void slotChangeIcon(int); 99 void slotChangeIcon(int);
100 void slotChangeLabelText(const QString &); 100 void slotChangeLabelText(const QString &);
101 void slotChangeQCode(const QString &);
102 void slotChangeUnicode(const QString &);
101 103
102private: 104private:
103 105
106 QString selectedHandle;
104 ushort selectedRow, selectedCol; 107 ushort selectedRow, selectedCol;
105 108
106 FunctionKeyboard *kb; 109 FunctionKeyboard *kb;
107 QSpinBox *m_rowBox, *m_colBox; 110 QSpinBox *m_rowBox, *m_colBox;
108 QComboBox *m_labels, *m_qvalues; 111 QComboBox *m_labels, *m_qvalues, *m_uniValues;
109 112
110}; 113};
111 114
112#endif 115#endif