author | hash <hash> | 2002-08-14 05:40:26 (UTC) |
---|---|---|
committer | hash <hash> | 2002-08-14 05:40:26 (UTC) |
commit | 33a402ac713d5009306db0b1a365831becca17f7 (patch) (side-by-side diff) | |
tree | 9bf347bcc4bfb446ba6c9b9f8c03f950a57fce01 /inputmethods/multikey/configdlg.h | |
parent | 13a1334cca686bf512c4a8f94a648ba969b38d22 (diff) | |
download | opie-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.h | 26 |
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 |