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 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270
|
/* -*- Mode: C++; indent-tabs-mode: nil; tab-width: 4 -*-
* -*- coding: utf-8 -*-
*
* Copyright (C) 2023 KylinSoft Co., Ltd.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
//#include <iostream>
#include <QVector>
#include <QSet>
#include "xeventmonitor.h"
// Virtual button codes that are not defined by X11.
#define Button1 1
#define Button2 2
#define Button3 3
#define WheelUp 4
#define WheelDown 5
#define WheelLeft 6
#define WheelRight 7
#define XButton1 8
#define XButton2 9
XEventMonitor *XEventMonitor::instance_ = new XEventMonitor();
const static QVector<KeySym> ModifiersVec{
XK_Control_L,
XK_Control_R,
XK_Shift_L,
XK_Shift_R,
XK_Super_L,
XK_Super_R,
XK_Alt_L,
XK_Alt_R
};
class XEventMonitorPrivate
{
public:
XEventMonitorPrivate(XEventMonitor *parent);
virtual ~XEventMonitorPrivate();
void run();
protected:
XEventMonitor *q_ptr;
QSet<KeySym> modifiers;
bool filterWheelEvent(int detail);
static void callback(XPointer trash, XRecordInterceptData* data);
void handleRecordEvent(XRecordInterceptData *);
void emitButtonSignal(const char *member, xEvent *event);
void emitKeySignal(const char *member, xEvent *event);
void updateModifier(xEvent *event, bool isAdd);
private:
Q_DECLARE_PUBLIC(XEventMonitor)
};
XEventMonitorPrivate::XEventMonitorPrivate(XEventMonitor *parent)
: q_ptr(parent)
{
}
XEventMonitorPrivate::~XEventMonitorPrivate()
{
}
void XEventMonitorPrivate::emitButtonSignal(const char *member, xEvent *event)
{
int x = event->u.keyButtonPointer.rootX;
int y = event->u.keyButtonPointer.rootY;
QMetaObject::invokeMethod(q_ptr, member,
Qt::DirectConnection,
Q_ARG(int, x),
Q_ARG(int, y));
}
#include <syslog.h>
void XEventMonitorPrivate::emitKeySignal(const char *member, xEvent *event)
{
Display *display = XOpenDisplay(NULL);
int keyCode = event->u.u.detail;
KeySym keySym = XkbKeycodeToKeysym(display, event->u.u.detail, 0, 0);
QString keyStrSplice;
for(auto modifier : modifiers)
{
keyStrSplice += QString(XKeysymToString(modifier)) + "+";
}
//按键是修饰键
if(ModifiersVec.contains(keySym) && !modifiers.isEmpty())
keyStrSplice.remove(keyStrSplice.length() - 1, 1);
else
keyStrSplice += XKeysymToString(keySym);
QMetaObject::invokeMethod(q_ptr, member,
Qt::AutoConnection,
Q_ARG(int, keyCode));
QMetaObject::invokeMethod(q_ptr, member,
Qt::AutoConnection,
Q_ARG(QString, keyStrSplice));
XCloseDisplay(display);
}
void XEventMonitorPrivate::run()
{
Display* display = XOpenDisplay(0);
if (display == 0) {
fprintf(stderr, "unable to open display\n");
return;
}
// Receive from ALL clients, including future clients.
XRecordClientSpec clients = XRecordAllClients;
XRecordRange* range = XRecordAllocRange();
if (range == 0) {
fprintf(stderr, "unable to allocate XRecordRange\n");
return;
}
// Receive KeyPress, KeyRelease, ButtonPress, ButtonRelease and MotionNotify events.
memset(range, 0, sizeof(XRecordRange));
range->device_events.first = XI_KeyPress;
range->device_events.last = MotionNotify;
// And create the XRECORD context.
XRecordContext context = XRecordCreateContext(display, 0, &clients, 1, &range, 1);
if (context == 0) {
fprintf(stderr, "XRecordCreateContext failed\n");
return;
}
XFree(range);
XSync(display, True);
Display* display_datalink = XOpenDisplay(0);
if (display_datalink == 0) {
fprintf(stderr, "unable to open second display\n");
XCloseDisplay (display_datalink);
return;
}
if (!XRecordEnableContext(display_datalink, context, callback, (XPointer) this)) {
fprintf(stderr, "XRecordEnableContext() failed\n");
XCloseDisplay (display_datalink);
return;
}
XCloseDisplay (display_datalink);
}
void XEventMonitorPrivate::callback(XPointer ptr, XRecordInterceptData* data)
{
((XEventMonitorPrivate *) ptr)->handleRecordEvent(data);
}
void XEventMonitorPrivate::handleRecordEvent(XRecordInterceptData* data)
{
if (data->category == XRecordFromServer) {
xEvent * event = (xEvent *)data->data;
switch (event->u.u.type)
{
// case ButtonPress:
// if (filterWheelEvent(event->u.u.detail)) {
// emitButtonSignal("buttonPress", event);
// }
// break;
// case MotionNotify:
// emitButtonSignal("buttonDrag", event);
// break;
// case ButtonRelease:
// if (filterWheelEvent(event->u.u.detail)) {
// emitButtonSignal("buttonRelease", event);
// }
// break;
// case KeyPress:
// updateModifier(event, true);
// emitKeySignal("keyPress", event);
// break;
case XI_KeyRelease:
// updateModifier(event, false);
// emitKeySignal("keyRelease", event);
QMetaObject::invokeMethod(q_ptr, "keyRelease",
Qt::AutoConnection,
Q_ARG(int, event->u.u.detail));
break;
default:
break;
}
}
fflush(stdout);
XRecordFreeData(data);
}
bool XEventMonitorPrivate::filterWheelEvent(int detail)
{
return detail != WheelUp && detail != WheelDown && detail != WheelLeft && detail != WheelRight;
}
void XEventMonitorPrivate::updateModifier(xEvent *event, bool isAdd)
{
Display *display = XOpenDisplay(NULL);
KeySym keySym = XkbKeycodeToKeysym(display, event->u.u.detail, 0, 0);
if(ModifiersVec.contains(keySym))
{
if(isAdd)
{
modifiers.insert(keySym);
}
else
{
modifiers.remove(keySym);
}
}
XCloseDisplay(display);
}
XEventMonitor::XEventMonitor(QObject *parent)
: QThread(parent),
d_ptr(new XEventMonitorPrivate(this))
{
Q_D(XEventMonitor);
}
XEventMonitor::~XEventMonitor()
{
requestInterruption();
quit();
wait();
}
void XEventMonitor::run()
{
if(!isInterruptionRequested())
{
d_ptr->run();
}
}
bool checkCapsState()
{
//判断大写键状态
Display *display = XOpenDisplay(NULL);
bool capsState = false;
if(display) {
unsigned int n;
XkbGetIndicatorState(display, XkbUseCoreKbd, &n);
capsState = (n & 0x01) == 1;
}
XCloseDisplay (display);
return capsState;
}
|