From: Ralf Jung Date: Thu, 11 Jul 2013 20:50:43 +0000 (+0200) Subject: Add initial qt version X-Git-Url: https://git.ralfj.de/multypo.git/commitdiff_plain/d80ad6a5afce75add282ea1dce0d71927c0c459b Add initial qt version --- diff --git a/qt/main.cpp b/qt/main.cpp new file mode 100644 index 0000000..5b77857 --- /dev/null +++ b/qt/main.cpp @@ -0,0 +1,35 @@ +#include "multikbd.h" +#include + +#include + +#include +#include +#include + +MultiKBD *window; + +class QMyApplication : public QApplication +{ +public: + QMyApplication(int argc, char **argv) + : QApplication(argc, argv) {} + + virtual bool x11EventFilter ( XEvent * event ); +}; + +bool QMyApplication::x11EventFilter ( XEvent * event ) +{ + if (!window) return false; + return window->handleX11Event(event); +} + +int main(int argc, char *argv[]) +{ + QMyApplication a(argc, argv); + window = new MultiKBD(); + window->setAttribute(Qt::WA_DeleteOnClose); + window->show(); + + return a.exec(); +} diff --git a/qt/multikbd.cpp b/qt/multikbd.cpp new file mode 100644 index 0000000..c43dd20 --- /dev/null +++ b/qt/multikbd.cpp @@ -0,0 +1,91 @@ +#include "multikbd.h" +#include "ui_multikbd.h" + +#include +#include + +#include +#include +#include + +MultiKBD::MultiKBD(QWidget *parent) : + QWidget(parent), + ui(new Ui::MultiKBD), + xiInited(false) +{ + ui->setupUi(this); +} + +MultiKBD::~MultiKBD() +{ + delete ui; +} + +void MultiKBD::showEvent ( QShowEvent * ) +{ + if (xiInited) return; + + Display *dpy = x11Info().display(); + + /* XInput Extension available? */ + int eventID, errorID; + if (!XQueryExtension(dpy, "XInputExtension", &xiOpcode, &eventID, &errorID)) { + qCritical() << "X Input extension not available"; + } + + /* Which version of XI2? We support 2.0 */ + int major = 2, minor = 0; + if (XIQueryVersion(dpy, &major, &minor) == BadRequest) { + qCritical() << "XI2 not available. Server supports" << major << "." << + minor; + } + + qDebug() << "System is sane"; + + + // Now let's listen to keypress events + XIEventMask eventmask; + unsigned char mask [1] = { 0 }; // will change + eventmask.deviceid = XIAllMasterDevices; + eventmask.mask_len = sizeof (mask); // in bytes, for whatever reason... + eventmask.mask = mask; + XISetMask(mask, XI_KeyPress); + XISelectEvents (dpy, winId(), &eventmask, 1); + + xiInited = true; + + /*activateWindow(); + raise(); + setFocus(Qt::OtherFocusReason);*/ +} + +void MultiKBD::handleKeyPress(int device, const char *string) +{ + qDebug() << "Device" << device << "String" << string; +} + +bool MultiKBD::handleX11Event(XEvent *event) +{ + if (!xiInited) return false; + Display *dpy = x11Info().display(); + + if (event->xcookie.type == GenericEvent && event->xcookie.extension == xiOpcode + && event->xcookie.evtype == XI_KeyPress && XGetEventData(dpy, &event->xcookie)) { + + XIDeviceEvent *d_ev = (XIDeviceEvent*) event->xcookie.data; + KeyCode keycode = d_ev->detail; + int kbdid = d_ev->deviceid; + + if (!(d_ev->flags & XIKeyRepeat)) { + int keysyms_per_keycode; + KeySym keysym = XGetKeyboardMapping (dpy, keycode, 1, &keysyms_per_keycode)[0]; + handleKeyPress(kbdid, XKeysymToString(keysym)); + } + + XFreeEventData(dpy, &event->xcookie); + + return true; + } + + return false; +} diff --git a/qt/multikbd.h b/qt/multikbd.h new file mode 100644 index 0000000..d7fd3c9 --- /dev/null +++ b/qt/multikbd.h @@ -0,0 +1,32 @@ +#ifndef MULTIKBD_H +#define MULTIKBD_H + +#include + +namespace Ui { +class MultiKBD; +} + +class MultiKBD : public QWidget +{ + Q_OBJECT + +public: + explicit MultiKBD(QWidget *parent = 0); + ~MultiKBD(); + + bool handleX11Event(XEvent *event); + +protected: + virtual void showEvent (QShowEvent *); + +private: + void handleKeyPress(int device, const char *string); + +private: + Ui::MultiKBD *ui; + bool xiInited; + int xiOpcode; +}; + +#endif // MULTIKBD_H diff --git a/qt/multikbd.ui b/qt/multikbd.ui new file mode 100644 index 0000000..552fab4 --- /dev/null +++ b/qt/multikbd.ui @@ -0,0 +1,73 @@ + + + MultiKBD + + + + 0 + 0 + 400 + 300 + + + + MultiKBD + + + + + + RadioButton1 + + + + + + + RadioButton2 + + + + + + + Qt::Vertical + + + + 20 + 211 + + + + + + + + Close + + + + + + + + + + pushButton + clicked() + MultiKBD + close() + + + 199 + 283 + + + 199 + 149 + + + + + diff --git a/qt/multixkbd.pro b/qt/multixkbd.pro new file mode 100644 index 0000000..1bea7f1 --- /dev/null +++ b/qt/multixkbd.pro @@ -0,0 +1,22 @@ +#------------------------------------------------- +# +# Project created by QtCreator 2013-07-10T20:33:44 +# +#------------------------------------------------- + +QT += core gui + +greaterThan(QT_MAJOR_VERSION, 4): QT += widgets + +TARGET = multixkbd +TEMPLATE = app + + +SOURCES += main.cpp\ + multikbd.cpp + +HEADERS += multikbd.h + +FORMS += multikbd.ui + +LIBS += -lX11 -lXi