summaryrefslogtreecommitdiffstats
path: root/tests/qtuitest/tst_qinputgenerator/nativeevent_x11.cpp
blob: fc534414a0d5624e9fc6bd54e2bf021fc5ba2da4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#include "nativeevent.h"

#include <X11/Xlib.h>

template <typename T>
QString hexstr(T const& thing)
{ return QString("0x%1").arg(thing, 8, 16, QLatin1Char('0')); }

NativeEvent::NativeEvent(void* event)
{
    XEvent* e = static_cast<XEvent*>(event);

#define GET_COMMON_THINGS(event) \
    things << qMakePair(QString("serial"),     hexstr(event->serial));                  \
    things << qMakePair(QString("send_event"), QString::number(event->send_event));     \
    things << qMakePair(QString("x"),          QString::number(event->x));              \
    things << qMakePair(QString("y"),          QString::number(event->y));              \
    things << qMakePair(QString("x_root"),     QString::number(event->x_root));         \
    things << qMakePair(QString("y_root"),     QString::number(event->y_root));         \
    things << qMakePair(QString("state"),      hexstr(event->state));                   \
    things << qMakePair(QString("same_screen"),QString("%1").arg(event->same_screen));

    switch (e->type) {
        case KeyPress:
        case KeyRelease: {
            if (e->type == KeyPress)   type = "XKeyPressedEvent";
            if (e->type == KeyRelease) type = "XKeyReleasedEvent";
            XKeyEvent* xe = static_cast<XKeyEvent*>(event);
            things << qMakePair(QString("keycode"), hexstr(xe->keycode));
            GET_COMMON_THINGS(xe); }
            break;

        case ButtonPress:
        case ButtonRelease: {
            if (e->type == ButtonPress)   type = "XButtonPressedEvent";
            if (e->type == ButtonRelease) type = "XButtonReleasedEvent";
            XButtonEvent* xe = static_cast<XButtonEvent*>(event);
            things << qMakePair(QString("button"), hexstr(xe->button));
            GET_COMMON_THINGS(xe); }
            break;

        case MotionNotify: {
            type = "XMotionEvent";
            XMotionEvent* xe = static_cast<XMotionEvent*>(event);
            GET_COMMON_THINGS(xe); }
            break;

        case EnterNotify:
        case LeaveNotify: {
            if (e->type == EnterNotify) type = "XEnterWindowEvent";
            if (e->type == LeaveNotify) type = "XLeaveWindowEvent";
            XCrossingEvent* xe = static_cast<XCrossingEvent*>(event);
            things << qMakePair(QString("focus"), QString("%1").arg(xe->focus));
            GET_COMMON_THINGS(xe); }
            break;

        default:
            type = QString("XEvent(type=%1)").arg(e->type);
            break;
    }
}

/* Returns true if the event is related to key or mouse inputs */
bool NativeEvent::isInteresting(void* event)
{
    if (!event) return false;

    XEvent* e = static_cast<XEvent*>(event);
    switch (e->type) {
        case KeyPress:
        case KeyRelease:
        case ButtonPress:
        case ButtonRelease:
        case MotionNotify:
        case EnterNotify:
        case LeaveNotify:
            return true;
        default:
            break;
    }

    return false;
}