-rw-r--r-- | development/keyview/keyview.cpp | 13 | ||||
-rw-r--r-- | development/keyview/keyview.h | 0 |
2 files changed, 9 insertions, 4 deletions
diff --git a/development/keyview/keyview.cpp b/development/keyview/keyview.cpp index 8e24efc..8187744 100644 --- a/development/keyview/keyview.cpp +++ b/development/keyview/keyview.cpp | |||
@@ -3,6 +3,8 @@ | |||
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 | #include <opie2/okeyfilter.h> | ||
7 | #include <opie2/odebug.h> | ||
6 | 8 | ||
7 | Keyview::Keyview( QWidget* parent, const char* name, WFlags fl ) | 9 | Keyview::Keyview( QWidget* parent, const char* name, WFlags fl ) |
8 | : QGrid ( 2, parent, name, fl ) | 10 | : QGrid ( 2, parent, name, fl ) |
@@ -39,13 +41,16 @@ Keyview::Keyview( QWidget* parent, const char* name, WFlags fl ) | |||
39 | 41 | ||
40 | 42 | ||
41 | KeyFilter *filter = new KeyFilter(this); | 43 | KeyFilter *filter = new KeyFilter(this); |
42 | QWSServer::setKeyboardFilter(filter); | 44 | Opie::Core::OKeyFilter::inst()->addHandler(filter); |
45 | odebug << "Creating keyview filter " << oendl; | ||
43 | 46 | ||
44 | connect(filter, SIGNAL(keyPressed(int,int,int,bool,bool)), | 47 | connect(filter, SIGNAL(keyPressed(int,int,int,bool,bool)), |
45 | this, SLOT(updateItems(int,int,int,bool,bool))); | 48 | this, SLOT(updateItems(int,int,int,bool,bool))); |
46 | } | 49 | } |
47 | 50 | ||
48 | Keyview::~Keyview() { } | 51 | Keyview::~Keyview() |
52 | { | ||
53 | } | ||
49 | 54 | ||
50 | void Keyview::updateItems(int u, int k, int m, bool p, bool a) { | 55 | void Keyview::updateItems(int u, int k, int m, bool p, bool a) { |
51 | 56 | ||
@@ -56,8 +61,8 @@ void Keyview::updateItems(int u, int k, int m, bool p, bool a) { | |||
56 | autoRepeat->setText("0x" + QString::number(a, 16)); | 61 | autoRepeat->setText("0x" + QString::number(a, 16)); |
57 | } | 62 | } |
58 | 63 | ||
59 | KeyFilter::KeyFilter(QObject * parent, const char *name) : QObject( parent, name ) { | 64 | KeyFilter::KeyFilter(QObject * parent, const char *name) : QObject( parent, name ) |
60 | 65 | { | |
61 | } | 66 | } |
62 | 67 | ||
63 | bool KeyFilter::filter(int unicode, int keycode, int modifiers, bool isPress, | 68 | bool KeyFilter::filter(int unicode, int keycode, int modifiers, bool isPress, |
diff --git a/development/keyview/keyview.h b/development/keyview/keyview.h index ab4ae60..5f1e943 100644 --- a/development/keyview/keyview.h +++ b/development/keyview/keyview.h | |||