summaryrefslogtreecommitdiff
path: root/inputmethods/dasher/QtDasherImpl.h
authormickeyl <mickeyl>2003-09-27 11:29:26 (UTC)
committer mickeyl <mickeyl>2003-09-27 11:29:26 (UTC)
commit651b6c612db4e809c506973996f2580c4158ac3a (patch) (unidiff)
tree8c8edc86e4b206dd4542a6b556ad1a319d6698ab /inputmethods/dasher/QtDasherImpl.h
parentd1a11b45e805fe7771ea05944757d767c3c4c8ea (diff)
downloadopie-651b6c612db4e809c506973996f2580c4158ac3a.zip
opie-651b6c612db4e809c506973996f2580c4158ac3a.tar.gz
opie-651b6c612db4e809c506973996f2580c4158ac3a.tar.bz2
merge dasher which has been introduced in BRANCH first (wtf?) into HEAD
Diffstat (limited to 'inputmethods/dasher/QtDasherImpl.h') (more/less context) (show whitespace changes)
-rw-r--r--inputmethods/dasher/QtDasherImpl.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/inputmethods/dasher/QtDasherImpl.h b/inputmethods/dasher/QtDasherImpl.h
new file mode 100644
index 0000000..c143dc3
--- a/dev/null
+++ b/inputmethods/dasher/QtDasherImpl.h
@@ -0,0 +1,38 @@
1#ifndef QTDASHERIMPL_H
2#define QTDASHERIMPL_H
3
4#include <qpe/inputmethodinterface.h>
5#include "QtDasherPlugin.h"
6
7class QtDasher;
8class QPixmap;
9
10class QtDasherImpl : public InputMethodInterface
11{
12public:
13 QtDasherImpl();
14 virtual ~QtDasherImpl();
15
16#ifndef QT_NO_COMPONENT
17 QRESULT queryInterface( const QUuid&, QUnknownInterface** );
18 Q_REFCOUNT
19#endif
20
21 virtual QWidget *inputMethod( QWidget *parent, Qt::WFlags f );
22 virtual void resetState();
23 virtual QPixmap *icon();
24 virtual QString name();
25 virtual void onKeyPress( QObject *receiver, const char *slot );
26
27private:
28 CDasherInterface *qtdasherinterface;
29 QtDasherPlugin *qtdasherwidget;
30 QPixmap *icn;
31 ulong ref;
32};
33
34#endif
35
36
37
38