File: keyboard.h

package info (click to toggle)
kascade 1.0-beta10-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 964 kB
  • ctags: 815
  • sloc: cpp: 7,780; makefile: 39
file content (31 lines) | stat: -rw-r--r-- 495 bytes parent folder | download
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
#include <vector>
using namespace std;

#include <qevent.h>
#include <qwidget.h>

class Keyboard : public QWidget
{
	Q_OBJECT

public:
	Keyboard();
	void handleKeyPress( QKeyEvent * );

private:
	void highlightUp();
	void highlightDown();
	void highlightFirst();
	void highlightLast();
	void highlightPgDn();
	void highlightPgUp();
	void launchExt();

	void act_on_key( int );

	void update( int );
	void update1( int );
	void update0( int );
	void update2();
};