summaryrefslogtreecommitdiff
path: root/inputmethods/multikey/configdlg.h
Side-by-side diff
Diffstat (limited to 'inputmethods/multikey/configdlg.h') (more/less context) (ignore whitespace changes)
-rw-r--r--inputmethods/multikey/configdlg.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/inputmethods/multikey/configdlg.h b/inputmethods/multikey/configdlg.h
new file mode 100644
index 0000000..21bdb17
--- a/dev/null
+++ b/inputmethods/multikey/configdlg.h
@@ -0,0 +1,26 @@
+#include <qpe/qpeapplication.h>
+#include <qtabwidget.h>
+#include <qcheckbox.h>
+
+#ifndef CONFIGDLG_H
+#define CONFIGDLG_H
+
+class ConfigDlg : public QTabWidget
+{
+ Q_OBJECT
+
+public:
+ ConfigDlg ();
+
+signals:
+ void pickboardToggled(bool on_off);
+
+private slots:
+ void pickTog();
+
+private:
+ QCheckBox *pick_button;
+
+};
+
+#endif