summaryrefslogtreecommitdiff
path: root/development
Side-by-side diff
Diffstat (limited to 'development') (more/less context) (ignore whitespace changes)
-rw-r--r--development/keyview/keyview.cpp17
-rw-r--r--development/keyview/keyview.h2
2 files changed, 12 insertions, 7 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
@@ -4,4 +4,6 @@
#include <qlineedit.h>
#include <qlabel.h>
+#include <opie2/okeyfilter.h>
+#include <opie2/odebug.h>
Keyview::Keyview( QWidget* parent, const char* name, WFlags fl )
@@ -29,5 +31,5 @@ Keyview::Keyview( QWidget* parent, const char* name, WFlags fl )
isPress = new QLineEdit(this);
isPress->setReadOnly(1);
-
+
l = new QLabel(QString("autoRepeat:"), this);
autoRepeat = new QLineEdit(this);
@@ -40,11 +42,14 @@ Keyview::Keyview( QWidget* parent, const char* name, WFlags fl )
KeyFilter *filter = new KeyFilter(this);
- QWSServer::setKeyboardFilter(filter);
+ Opie::Core::OKeyFilter::inst()->addHandler(filter);
+ odebug << "Creating keyview filter " << oendl;
- connect(filter, SIGNAL(keyPressed(int,int,int,bool,bool)),
+ connect(filter, SIGNAL(keyPressed(int,int,int,bool,bool)),
this, SLOT(updateItems(int,int,int,bool,bool)));
}
-Keyview::~Keyview() { }
+Keyview::~Keyview()
+{
+}
void Keyview::updateItems(int u, int k, int m, bool p, bool a) {
@@ -57,6 +62,6 @@ void Keyview::updateItems(int u, int k, int m, bool p, bool a) {
}
-KeyFilter::KeyFilter(QObject * parent, const char *name) : QObject( parent, name ) {
-
+KeyFilter::KeyFilter(QObject * parent, const char *name) : QObject( parent, name )
+{
}
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
@@ -7,5 +7,5 @@
class Keyview : public QGrid
-{
+{
Q_OBJECT