author | llornkcor <llornkcor> | 2003-07-24 00:37:42 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2003-07-24 00:37:42 (UTC) |
commit | 91212296b4876d8b7a036c9f25f0b08f6099758d (patch) (side-by-side diff) | |
tree | 0a4eb07312e96eec5434f9029a0ace78ccfa4d64 | |
parent | e5201c61eaf907c4aabe48dbce590449ae644322 (diff) | |
download | opie-91212296b4876d8b7a036c9f25f0b08f6099758d.zip opie-91212296b4876d8b7a036c9f25f0b08f6099758d.tar.gz opie-91212296b4876d8b7a036c9f25f0b08f6099758d.tar.bz2 |
doesnt use iostream, so dont include the header and link to libstdc++
-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,69 +1,69 @@ #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) { unicode->setText("0x" + QString::number(u, 16)); keycode->setText("0x" + QString::number(k, 16)); modifiers->setText("0x" + QString::number(m, 16)); isPress->setText("0x" + QString::number(p, 16)); autoRepeat->setText("0x" + QString::number(a, 16)); } KeyFilter::KeyFilter(QObject * parent, const char *name) : QObject( parent, name ) { } bool KeyFilter::filter(int unicode, int keycode, int modifiers, bool isPress, bool autoRepeat) { emit keyPressed(unicode, keycode, modifiers, isPress, autoRepeat); return 0; // return 1 to stop key emiting } 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 ) |