-rw-r--r-- | development/keyview/keyview.cpp | 2 | ||||
-rw-r--r-- | development/keyview/keyview.pro | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/development/keyview/keyview.cpp b/development/keyview/keyview.cpp index 15d9f51..21bbb93 100644 --- a/development/keyview/keyview.cpp +++ b/development/keyview/keyview.cpp @@ -1,51 +1,51 @@ #include "keyview.h" #include <qgrid.h> -#include <iostream.h> +//#include <iostream.h> #include <qlineedit.h> #include <qlabel.h> Keyview::Keyview( QWidget* parent, const char* name, WFlags fl ) : QGrid ( 2, parent, name, fl ) { setCaption( tr("Keyview") ); setSpacing(3); setMargin(4); QLabel *l; l = new QLabel(QString("unicode:"), this); unicode = new QLineEdit(this); unicode->setReadOnly(1); l = new QLabel(QString("keycode:"), this); keycode = new QLineEdit(this); keycode->setReadOnly(1); l = new QLabel(QString("modifiers:"), this); modifiers = new QLineEdit(this); modifiers->setReadOnly(1); 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); // spacer l = new QLabel(QString(""), this); l->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding)); KeyFilter *filter = new KeyFilter(this); QWSServer::setKeyboardFilter(filter); connect(filter, SIGNAL(keyPressed(int, int, int, bool, bool)), this, SLOT(updateItems(int, int, int, bool, bool))); } Keyview::~Keyview() { } void Keyview::updateItems(int u, int k, int m, bool p, bool a) { diff --git a/development/keyview/keyview.pro b/development/keyview/keyview.pro index 5be6dcf..70cc171 100644 --- a/development/keyview/keyview.pro +++ b/development/keyview/keyview.pro @@ -1,33 +1,33 @@ TEMPLATE = lib #CONFIG = qt warn_on debug CONFIG = qt warn_on release HEADERS = keyview.h keyboardimpl.h SOURCES = keyview.cpp keyboardimpl.cpp INCLUDEPATH += $(OPIEDIR)/include DEPENDPATH += $(OPIEDIR)/include ../../launcher -LIBS += -lqpe -lstdc++ +LIBS += -lqpe INTERFACES = TARGET = keyview DESTDIR = $(OPIEDIR)/plugins/inputmethods TRANSLATIONS = ../i18n/de/keyview.ts \ ../i18n/nl/keyview.ts \ ../i18n/da/keyview.ts \ ../i18n/xx/keyview.ts \ ../i18n/en/keyview.ts \ ../i18n/es/keyview.ts \ ../i18n/fr/keyview.ts \ ../i18n/hu/keyview.ts \ ../i18n/ja/keyview.ts \ ../i18n/ko/keyview.ts \ ../i18n/no/keyview.ts \ ../i18n/pl/keyview.ts \ ../i18n/pt/keyview.ts \ ../i18n/pt_BR/keyview.ts \ ../i18n/sl/keyview.ts \ ../i18n/zh_CN/keyview.ts \ ../i18n/zh_TW/keyview.ts include ( $(OPIEDIR)/include.pro ) |