summaryrefslogtreecommitdiff
path: root/inputmethods/multikey/configdlg.h
authorhash <hash>2002-08-14 05:40:26 (UTC)
committer hash <hash>2002-08-14 05:40:26 (UTC)
commit33a402ac713d5009306db0b1a365831becca17f7 (patch) (unidiff)
tree9bf347bcc4bfb446ba6c9b9f8c03f950a57fce01 /inputmethods/multikey/configdlg.h
parent13a1334cca686bf512c4a8f94a648ba969b38d22 (diff)
downloadopie-33a402ac713d5009306db0b1a365831becca17f7.zip
opie-33a402ac713d5009306db0b1a365831becca17f7.tar.gz
opie-33a402ac713d5009306db0b1a365831becca17f7.tar.bz2
these are the config dialog files. only open/closing the pickboard works
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 @@
1#include <qpe/qpeapplication.h>
2#include <qtabwidget.h>
3#include <qcheckbox.h>
4
5#ifndef CONFIGDLG_H
6#define CONFIGDLG_H
7
8class ConfigDlg : public QTabWidget
9{
10 Q_OBJECT
11
12public:
13 ConfigDlg ();
14
15signals:
16 void pickboardToggled(bool on_off);
17
18private slots:
19 void pickTog();
20
21private:
22 QCheckBox *pick_button;
23
24};
25
26#endif