summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/opieinput/simpleimpl.h
blob: ab41e38d36c608bfa0b8cbb13b5b817fb86f9061 (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
51
#ifndef %{APPNAME}IMPL_H
#define %{APPNAME}IMPL_H

#include <tqhbox.h>

#include <tqpe/inputmethodinterface.h>

class TQPixmap;
class TQCheckBox;
class %{APPNAME} : public TQHBox {
	Q_OBJECT
  TQ_OBJECT
public:
	%{APPNAME}( TQWidget *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;
	TQCheckBox *m_alt,*m_shi,*m_ctrl;
};

class %{APPNAME}Impl : public InputMethodInterface
{
public:
    %{APPNAME}Impl();
    virtual ~%{APPNAME}Impl();

#ifndef TQT_NO_COMPONENT
    TQRESULT queryInterface( const TQUuid&, TQUnknownInterface** );
    TQ_REFCOUNT
#endif

    virtual TQWidget *inputMethod( TQWidget *parent, TQt::WFlags f );
    virtual void resetState();
    virtual TQPixmap *icon();
    virtual TQString name();
    virtual void onKeyPress( TQObject *receiver, const char *slot );

private:
    %{APPNAME} *m_pickboard;
    TQPixmap *m_icn;
};

#endif