Add per-device output label
[multypo.git] / qt / multypo.cpp
index 638114cde667c80b15703d107d4589e3e4ee3bd9..2584c0c7b1f7bca5635214db1eabf26ab2d9dab2 100644 (file)
@@ -2,7 +2,7 @@
 
 #include <QX11Info>
 #include <QDebug>
-#include <QHBoxLayout>
+#include <QVBoxLayout>
 #include <QLabel>
 
 #include <X11/Xlib.h>
@@ -13,13 +13,18 @@ MultypoWindow::MultypoWindow(QWidget *parent) :
        QWidget(parent),
        xiInited(false)
 {
-       QHBoxLayout *layout = new QHBoxLayout(this);
-       setLayout(layout);
+       /* Prepare colors */
+       setStyleSheet("background-color: black; color: green");
 
-       mainLabel = new QLabel(this);
-       layout->addWidget(mainLabel);
+       /* Prepare conents */
+       setLayout(new QVBoxLayout(this));
 
-       setMinimumSize(300, 300);
+       mainLabel = new QLabel("Hit <Esc> to quit", this);
+       layout()->addWidget(mainLabel);
+
+       /* Fullscreen, no cursor */
+       setWindowState(Qt::WindowFullScreen);
+       setCursor(QCursor(Qt::BlankCursor));
 }
 
 MultypoWindow::~MultypoWindow()
@@ -29,7 +34,16 @@ MultypoWindow::~MultypoWindow()
 void MultypoWindow::handleKeyPress(int device, QString string)
 {
        qDebug() << "Device" << device << "String" << string;
-       mainLabel->setText(QString("%1 pressed on %2").arg(string).arg(device));
+
+       if (string == "Escape")
+               close();
+
+       if (!players.contains(device)) {
+               QLabel *label = new QLabel(this);
+               layout()->addWidget(label);
+               players[device] = label;
+       }
+       players[device]->setText(players[device]->text() + string);
 }
 
 bool MultypoWindow::handleX11Event(XEvent *event)
@@ -70,6 +84,7 @@ bool MultypoWindow::handleX11Event(XEvent *event)
                        qDebug() << "Found master keyboard with ID" << devices[i].deviceid;
                        XISetFocus(dpy, devices[i].deviceid, winId(), CurrentTime);
                }
+               XIFreeDeviceInfo(devices);
 
                xiInited = true;