summaryrefslogtreecommitdiff
path: root/noncore/applets/keyhelper/keyhelperapplet/misc/KeyRepeater.h
blob: 56d6414d352bf201d1a20b48bc7f570e489c744d (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#ifndef _KEY_REPEATER_H_
#define _KEY_REPEATER_H_

#include <qobject.h>
#include <qtimer.h>
#include <qvaluelist.h>
#include <qwindowsystem_qws.h>

#include <syslog.h>

class KeyRepeater : public QObject
{
	Q_OBJECT
public:
	KeyRepeater();
	virtual ~KeyRepeater();

	typedef enum {
		DISABLE=0,
		ENABLE=1,
		KILL=2,
	} RepeaterMode;

	void start(int unicode, int keycode, int modifieres);
	void stop(int keycode = 0);
	void reset();

	void setRepeatable(int keycode, bool enable);
	bool isRepeatable(int keycode);

	void setMode(int mode){
		switch(mode){
		case DISABLE:
			m_mode = DISABLE;
			break;
		case ENABLE:
			m_mode = ENABLE;
			break;
		case KILL:
			m_mode = KILL;
			break;
		default:
			m_mode = ENABLE;
			break;
		}
	}
	RepeaterMode getMode(){
		return(m_mode);
	}

	void setDelay(int msec)
	{
		m_repeatdelay = msec;
	}
	void setPeriod(int msec)
	{
		m_repeatperiod = msec;
	}

	void statistics();
private slots:
	void autoRepeat();
private:
	int m_unicode;
	int m_keycode;
	int m_modifiers;

	int m_repeatdelay;
	int m_repeatperiod;

	QCString m_hookChannel;

	RepeaterMode m_mode;

	QValueList<int> m_disablekeys;

	QTimer* m_pTimer;

	void init();
	void clear();
signals:
	void keyEvent(int unicode, int keycode, int modifiers,
		bool isPress, bool autoRepeat);
};

#endif /* _KEY_REPEATER_H_ */