summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/function_keyboard.h
authorhash <hash>2002-10-24 08:14:54 (UTC)
committer hash <hash>2002-10-24 08:14:54 (UTC)
commit541035d4308ca1931d5068ced83b0cb5350b0766 (patch) (unidiff)
tree6f236ae8499f4aefcb7405d8beaed59230155276 /noncore/apps/opie-console/function_keyboard.h
parent7c670be31a6a60e03e7dba4e366aa8f3e02bae6c (diff)
downloadopie-541035d4308ca1931d5068ced83b0cb5350b0766.zip
opie-541035d4308ca1931d5068ced83b0cb5350b0766.tar.gz
opie-541035d4308ca1931d5068ced83b0cb5350b0766.tar.bz2
editing/loading/saving works. now the keyboard in mainwidget needs to load the right profile when the tab is switched
Diffstat (limited to 'noncore/apps/opie-console/function_keyboard.h') (more/less context) (ignore 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
@@ -89,24 +89,27 @@ public:
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