summaryrefslogtreecommitdiff
authormickeyl <mickeyl>2004-03-28 19:13:48 (UTC)
committer mickeyl <mickeyl>2004-03-28 19:13:48 (UTC)
commitddedbfd44f70c9841897d578e3db36565e5fa485 (patch) (unidiff)
tree98fe927e1326b7bb730b5da7c3a5b2cbe56207ad
parent185e37c4372883a52a44318d1d70aa685417b3a6 (diff)
downloadopie-ddedbfd44f70c9841897d578e3db36565e5fa485.zip
opie-ddedbfd44f70c9841897d578e3db36565e5fa485.tar.gz
opie-ddedbfd44f70c9841897d578e3db36565e5fa485.tar.bz2
keyview doesn't need libopie
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--development/keyview/config.in2
-rw-r--r--development/keyview/keyview.cpp2
2 files changed, 3 insertions, 1 deletions
diff --git a/development/keyview/config.in b/development/keyview/config.in
index 338d9d7..116f51f 100644
--- a/development/keyview/config.in
+++ b/development/keyview/config.in
@@ -1,4 +1,4 @@
1 config KEYVIEW 1 config KEYVIEW
2 boolean "opie-keyview (Debugging tool for viewing keypresses)" 2 boolean "opie-keyview (Debugging tool for viewing keypresses)"
3 default "y" 3 default "y"
4 depends ( LIBQPE || LIBQPE-X11 ) && LIBOPIE 4 depends ( LIBQPE || LIBQPE-X11 )
diff --git a/development/keyview/keyview.cpp b/development/keyview/keyview.cpp
index 93c84d9..8e24efc 100644
--- a/development/keyview/keyview.cpp
+++ b/development/keyview/keyview.cpp
@@ -2,68 +2,70 @@
2#include <qgrid.h> 2#include <qgrid.h>
3//#include <iostream.h> 3//#include <iostream.h>
4#include <qlineedit.h> 4#include <qlineedit.h>
5#include <qlabel.h> 5#include <qlabel.h>
6 6
7Keyview::Keyview( QWidget* parent, const char* name, WFlags fl ) 7Keyview::Keyview( QWidget* parent, const char* name, WFlags fl )
8 : QGrid ( 2, parent, name, fl ) 8 : QGrid ( 2, parent, name, fl )
9{ 9{
10 setCaption( tr("Keyview") ); 10 setCaption( tr("Keyview") );
11 setSpacing(3); 11 setSpacing(3);
12 setMargin(4); 12 setMargin(4);
13 13
14 QLabel *l; 14 QLabel *l;
15 15
16 l = new QLabel(QString("unicode:"), this); 16 l = new QLabel(QString("unicode:"), this);
17 unicode = new QLineEdit(this); 17 unicode = new QLineEdit(this);
18 unicode->setReadOnly(1); 18 unicode->setReadOnly(1);
19 19
20 l = new QLabel(QString("keycode:"), this); 20 l = new QLabel(QString("keycode:"), this);
21 keycode = new QLineEdit(this); 21 keycode = new QLineEdit(this);
22 keycode->setReadOnly(1); 22 keycode->setReadOnly(1);
23 23
24 l = new QLabel(QString("modifiers:"), this); 24 l = new QLabel(QString("modifiers:"), this);
25 modifiers = new QLineEdit(this); 25 modifiers = new QLineEdit(this);
26 modifiers->setReadOnly(1); 26 modifiers->setReadOnly(1);
27 27
28 l = new QLabel(QString("isPress:"), this); 28 l = new QLabel(QString("isPress:"), this);
29 isPress = new QLineEdit(this); 29 isPress = new QLineEdit(this);
30 isPress->setReadOnly(1); 30 isPress->setReadOnly(1);
31 31
32 l = new QLabel(QString("autoRepeat:"), this); 32 l = new QLabel(QString("autoRepeat:"), this);
33 autoRepeat = new QLineEdit(this); 33 autoRepeat = new QLineEdit(this);
34 autoRepeat->setReadOnly(1); 34 autoRepeat->setReadOnly(1);
35 35
36 // spacer 36 // spacer
37 l = new QLabel(QString(""), this); 37 l = new QLabel(QString(""), this);
38 l->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding)); 38 l->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding));
39 39
40 40
41 KeyFilter *filter = new KeyFilter(this); 41 KeyFilter *filter = new KeyFilter(this);
42 QWSServer::setKeyboardFilter(filter); 42 QWSServer::setKeyboardFilter(filter);
43 43
44 connect(filter, SIGNAL(keyPressed(int,int,int,bool,bool)), 44 connect(filter, SIGNAL(keyPressed(int,int,int,bool,bool)),
45 this, SLOT(updateItems(int,int,int,bool,bool))); 45 this, SLOT(updateItems(int,int,int,bool,bool)));
46} 46}
47 47
48Keyview::~Keyview() { } 48Keyview::~Keyview() { }
49 49
50void Keyview::updateItems(int u, int k, int m, bool p, bool a) { 50void Keyview::updateItems(int u, int k, int m, bool p, bool a) {
51 51
52 unicode->setText("0x" + QString::number(u, 16)); 52 unicode->setText("0x" + QString::number(u, 16));
53 keycode->setText("0x" + QString::number(k, 16)); 53 keycode->setText("0x" + QString::number(k, 16));
54 modifiers->setText("0x" + QString::number(m, 16)); 54 modifiers->setText("0x" + QString::number(m, 16));
55 isPress->setText("0x" + QString::number(p, 16)); 55 isPress->setText("0x" + QString::number(p, 16));
56 autoRepeat->setText("0x" + QString::number(a, 16)); 56 autoRepeat->setText("0x" + QString::number(a, 16));
57} 57}
58 58
59KeyFilter::KeyFilter(QObject * parent, const char *name) : QObject( parent, name ) { 59KeyFilter::KeyFilter(QObject * parent, const char *name) : QObject( parent, name ) {
60 60
61} 61}
62 62
63bool KeyFilter::filter(int unicode, int keycode, int modifiers, bool isPress, 63bool KeyFilter::filter(int unicode, int keycode, int modifiers, bool isPress,
64 bool autoRepeat) { 64 bool autoRepeat) {
65 65
66 qDebug( "unicode: %d, keycode: %d, modifiers: %0x, isPress: %d, autoRepeat: %d",
67 unicode, keycode, modifiers, isPress );
66 emit keyPressed(unicode, keycode, modifiers, isPress, autoRepeat); 68 emit keyPressed(unicode, keycode, modifiers, isPress, autoRepeat);
67 return 0; // return 1 to stop key emiting 69 return 0; // return 1 to stop key emiting
68 70
69} 71}