#include <X11/extensions/XInput2.h>
#include <X11/Xutil.h>
-static QString colorToString(QColor col)
-{
- return QString("#%1%2%3").arg(col.red(), 2, 16, QChar('0'))
- .arg(col.green(), 2, 16, QChar('0'))
- .arg(col.blue(), 2, 16, QChar('0'));
-}
-
MultypoWindow::MultypoWindow(QWidget *parent) :
QWidget(parent),
xiInited(false)
{
qDebug() << "Device" << device << "String" << string;
- if (string == "Escape")
+ if (string == "Escape") {
close();
+ return;
+ }
if (!players.contains(device)) {
- QLabel *label = new QLabel(this);
- layout()->addWidget(label);
- players[device] = label;
+ players[device] = new Player(this);
}
- QColor textColor = QColor(Qt::blue);
- players[device]->setText(players[device]->text() + "<span style='color:"+colorToString(textColor)+"'>"+string+"</span>");
+ players[device]->handleKey(string);
}
bool MultypoWindow::handleX11Event(XEvent *event)
}
/* Which version of XI2? We support 2.0 */
- int major = 2, minor = 0;
+ int major = 2, minor = 1;
if (XIQueryVersion(dpy, &major, &minor) == BadRequest) {
qCritical() << "XI2 not available. Server supports" << major << "." <<
minor;
for (int i = 0; i < ndevices; ++i) {
if (devices[i].use != XIMasterKeyboard) continue;
qDebug() << "Found master keyboard with ID" << devices[i].deviceid;
- XISetFocus(dpy, devices[i].deviceid, winId(), CurrentTime);
+ //XISetFocus(dpy, devices[i].deviceid, winId(), CurrentTime);
}
XIFreeDeviceInfo(devices);
}
else if (xiInited && event->type == GenericEvent
&& event->xcookie.type == GenericEvent && event->xcookie.extension == xiOpcode
- && event->xcookie.evtype == XI_KeyPress && XGetEventData(dpy, &event->xcookie)) {
+ && event->xcookie.evtype == XI_KeyPress) {
+
+ if (XGetEventData(dpy, &event->xcookie) != True) {
+ qCritical() << "Error getting event data";
+ // FIXME return true;
+ }
+
/* Handle XI event */
XIDeviceEvent *d_ev = (XIDeviceEvent*) event->xcookie.data;
KeyCode keycode = d_ev->detail;
--- /dev/null
+#include "player.h"
+
+#include <QLayout>
+
+static QString colorToString(QColor col)
+{
+ return QString("#%1%2%3").arg(col.red(), 2, 16, QChar('0'))
+ .arg(col.green(), 2, 16, QChar('0'))
+ .arg(col.blue(), 2, 16, QChar('0'));
+}
+
+Player::Player(QWidget* parent) {
+ theLabel = new QLabel (parent);
+ parent->layout()->addWidget(theLabel);
+}
+
+void Player::handleKey(QString str) {
+ if (str.length() == 1) {
+ currentLine += str;
+ } else if (name.isNull() && str == "Return") {
+ // set name
+ name = currentLine;
+ currentLine = "";
+ } else if (str == "BackSpace") {
+ currentLine.chop(1);
+ }
+ theLabel->setText(currentLine);
+}