From 724f12e7a37e977b70bb0002d14ee36b9358ae99 Mon Sep 17 00:00:00 2001 From: alwin Date: Sun, 01 Aug 2004 10:34:14 +0000 Subject: switched to OKeyFilter handler. --- (limited to 'development') 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 @@ //#include #include #include +#include +#include Keyview::Keyview( QWidget* parent, const char* name, WFlags fl ) : QGrid ( 2, parent, name, fl ) @@ -28,7 +30,7 @@ Keyview::Keyview( QWidget* parent, const char* name, WFlags fl ) l = new QLabel(QString("isPress:"), this); isPress = new QLineEdit(this); isPress->setReadOnly(1); - + l = new QLabel(QString("autoRepeat:"), this); autoRepeat = new QLineEdit(this); autoRepeat->setReadOnly(1); @@ -39,13 +41,16 @@ 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) { @@ -56,8 +61,8 @@ void Keyview::updateItems(int u, int k, int m, bool p, bool a) { autoRepeat->setText("0x" + QString::number(a, 16)); } -KeyFilter::KeyFilter(QObject * parent, const char *name) : QObject( parent, name ) { - +KeyFilter::KeyFilter(QObject * parent, const char *name) : QObject( parent, name ) +{ } 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 @@ -6,7 +6,7 @@ class Keyview : public QGrid -{ +{ Q_OBJECT public: -- cgit v0.9.0.2