#include <QX11Info>
#include <QDebug>
-#include <QHBoxLayout>
+#include <QVBoxLayout>
#include <QLabel>
#include <X11/Xlib.h>
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()
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)
qDebug() << "Found master keyboard with ID" << devices[i].deviceid;
XISetFocus(dpy, devices[i].deviceid, winId(), CurrentTime);
}
+ XIFreeDeviceInfo(devices);
xiInited = true;