From c66c82f5d42f17668794747006d5c8cf6cb62476 Mon Sep 17 00:00:00 2001 From: zecke Date: Thu, 05 Feb 2004 21:44:45 +0000 Subject: Initial revision --- (limited to 'examples/inputmethod/exampleboardimpl.h') diff --git a/examples/inputmethod/exampleboardimpl.h b/examples/inputmethod/exampleboardimpl.h new file mode 100644 index 0000000..37e2a5f --- a/dev/null +++ b/examples/inputmethod/exampleboardimpl.h @@ -0,0 +1,50 @@ +#ifndef EXAMPLEBOARDIMPL_H +#define EXAMPLEBOARDIMPL_H + +#include + +#include + +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 -- cgit v0.9.0.2