blob: 86a58eecfe9b20c9e0d170786962c38ea04ae0c6 (
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
52
53
54
55
56
57
58
|
#ifndef VBUTTON_H
#define VBUTTON_H
#include <tqpushbutton.h>
#include <tqevent.h>
class VButton : public TQPushButton
{
Q_OBJECT
public:
VButton(TQWidget *parent=0, const char *name=0);
~VButton();
unsigned int getKeyCode();
void setKeyCode(unsigned int keycode);
void setText(const TQString &text);
void setShiftText(const TQString &text);
void setColor(const TQColor &color);
void setupTexts(Display *display);
void reposition(int width, int height);
void res();
static double pw;
static double ph;
protected:
bool press;
bool inrpt;
bool inside;
bool isAlpha;
unsigned int keycode;
TQString normalText;
TQString capsText;
TQString shiftText;
TQString altGrText;
TQString capsShiftText;
TQString altGrShiftText;
TQRect orig_size;
void timerEvent ( TQTimerEvent * );
public slots:
void sendKey();
void shiftCapsAltGrPressed(bool shift, bool caps, bool altGrState);
protected slots:
void enterEvent(TQEvent *e);
void leaveEvent(TQEvent *e);
void mousePressEvent(TQMouseEvent *e);
void mouseReleaseEvent(TQMouseEvent *e);
signals:
void keyClick(unsigned int keycode);
};
#endif
|