summaryrefslogtreecommitdiff
path: root/examples/exampleboardimpl.h
authorzecke <zecke>2004-02-05 21:48:02 (UTC)
committer zecke <zecke>2004-02-05 21:48:02 (UTC)
commitdd39213b22f2dae9f1c8dceca55fb84cba4de5df (patch) (side-by-side diff)
treefdab23438fafca1d8916b5667c3b68050fa479c9 /examples/exampleboardimpl.h
parentc66c82f5d42f17668794747006d5c8cf6cb62476 (diff)
downloadopie-dd39213b22f2dae9f1c8dceca55fb84cba4de5df.zip
opie-dd39213b22f2dae9f1c8dceca55fb84cba4de5df.tar.gz
opie-dd39213b22f2dae9f1c8dceca55fb84cba4de5df.tar.bz2
Remove the wrongly comitted items....
Diffstat (limited to 'examples/exampleboardimpl.h') (more/less context) (ignore whitespace changes)
-rw-r--r--examples/exampleboardimpl.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/examples/exampleboardimpl.h b/examples/exampleboardimpl.h
deleted file mode 100644
index 37e2a5f..0000000
--- a/examples/exampleboardimpl.h
+++ b/dev/null
@@ -1,50 +0,0 @@
-#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