author | zecke <zecke> | 2004-02-05 21:44:45 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-02-05 21:44:45 (UTC) |
commit | c66c82f5d42f17668794747006d5c8cf6cb62476 (patch) (side-by-side diff) | |
tree | 9c5346a4a0d54cb05c0cd5a0ed90daf412b94657 /examples/exampleboardimpl.h | |
parent | 7c8214c06f13b9295df8ac3efaf021e66600d440 (diff) | |
download | opie-c66c82f5d42f17668794747006d5c8cf6cb62476.zip opie-c66c82f5d42f17668794747006d5c8cf6cb62476.tar.gz opie-c66c82f5d42f17668794747006d5c8cf6cb62476.tar.bz2 |
Initial revision
-rw-r--r-- | examples/exampleboardimpl.h | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/examples/exampleboardimpl.h b/examples/exampleboardimpl.h new file mode 100644 index 0000000..37e2a5f --- a/dev/null +++ b/examples/exampleboardimpl.h @@ -0,0 +1,50 @@ +#ifndef EXAMPLEBOARDIMPL_H +#define EXAMPLEBOARDIMPL_H + +#include <qhbox.h> + +#include <qpe/inputmethodinterface.h> + +class QPixmap; +class QCheckBox; +class ExampleBoard : public QHBox { + Q_OBJECT +public: + ExampleBoard( QWidget *par, WFlags f ); + ~ExampleBoard(); + void resetState(); +private slots: + void slotKey(int); + void slotShift(bool); + void slotAlt(bool); + void slotCtrl(bool); +signals: + void key(ushort,ushort,ushort,bool,bool); +private: + int m_state; + QCheckBox *m_alt,*m_shi,*m_ctrl; +}; + +class ExampleboardImpl : public InputMethodInterface +{ +public: + ExampleboardImpl(); + virtual ~ExampleboardImpl(); + +#ifndef QT_NO_COMPONENT + QRESULT queryInterface( const QUuid&, QUnknownInterface** ); + Q_REFCOUNT +#endif + + virtual QWidget *inputMethod( QWidget *parent, Qt::WFlags f ); + virtual void resetState(); + virtual QPixmap *icon(); + virtual QString name(); + virtual void onKeyPress( QObject *receiver, const char *slot ); + +private: + ExampleBoard *m_pickboard; + QPixmap *m_icn; +}; + +#endif |