summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/opieinput/simpleimpl.h
blob: 362e59b38264e67109c4e41f62345f2adcff5c10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#ifndef %{APPNAME}IMPL_H
#define %{APPNAME}IMPL_H

#include <qhbox.h>

#include <qpe/inputmethodinterface.h>

class QPixmap;
class QCheckBox;
class %{APPNAME} : public QHBox {
	Q_OBJECT
public:
	%{APPNAME}( QWidget *par, WFlags f );
	~%{APPNAME}();
	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 %{APPNAME}Impl : public InputMethodInterface
{
public:
    %{APPNAME}Impl();
    virtual ~%{APPNAME}Impl();

#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:
    %{APPNAME} *m_pickboard;
    QPixmap *m_icn;
};

#endif