-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathxcbeventlistener.cpp
More file actions
229 lines (148 loc) · 6.04 KB
/
xcbeventlistener.cpp
File metadata and controls
229 lines (148 loc) · 6.04 KB
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
#include <QX11Info>
#include <QApplication>
#include "xcbeventlistener.h"
XcbEventListener::XcbEventListener(QObject* _target)
{
target=_target;
}
XcbEventListener::~XcbEventListener()
{
}
bool XcbEventListener::nativeEventFilter(const QByteArray &eventType, void *message, long *)
{
if(eventType=="xcb_generic_error_t")
{
qDebug()<<"Some errors!";
}
else if (eventType == "xcb_generic_event_t") {
xcb_generic_event_t* ev = static_cast<xcb_generic_event_t *>(message);
//qDebug()<<ev->response_type;
/*if((XCB_EVENT_RESPONSE_TYPE(ev)==XCB_MAP_REQUEST)||(XCB_EVENT_RESPONSE_TYPE(ev)==XCB_DESTROY_NOTIFY))
{*/
// qDebug()<<xcb_event_get_label(ev->response_type)<<" "<<XCB_EVENT_RESPONSE_TYPE(ev);
//QApplication::postEvent(target,new XEvents(ev),Qt::HighEventPriority);
/* }*/
switch(XCB_EVENT_RESPONSE_TYPE(ev))
{
case XCB_MAP_REQUEST:
QApplication::postEvent(target,new MapRequestXEvent(ev),Qt::HighEventPriority);
break;
case XCB_DESTROY_NOTIFY:
QApplication::postEvent(target,new DestroyNotifyXEvents(ev),Qt::HighEventPriority);
break;
case XCB_FOCUS_IN:
QApplication::postEvent(target,new FocusInXEvents(ev),Qt::HighEventPriority);
break;
case XCB_FOCUS_OUT:
QApplication::postEvent(target,new FocusOutXEvents(ev),Qt::HighEventPriority);
break;
case XCB_ENTER_NOTIFY:
QApplication::postEvent(target,new EnterNotifyXEvents(ev),Qt::HighEventPriority);
break;
case XCB_UNMAP_NOTIFY:
QApplication::postEvent(target,new UnmapNotifyXEvents(ev),Qt::HighEventPriority);
break;
case XCB_BUTTON_PRESS:
QApplication::postEvent(target,new ButtonPressXEvents(ev),Qt::HighEventPriority);
break;
case XCB_BUTTON_RELEASE:
QApplication::postEvent(target,new ButtonReleaseXEvents(ev),Qt::HighEventPriority);
break;
case XCB_KEY_PRESS:
QApplication::postEvent(target,new PressKeyXEvent(ev),Qt::HighEventPriority);
break;
case XCB_KEY_RELEASE:
QApplication::postEvent(target,new ReleaseKeyXEvent(ev),Qt::HighEventPriority);
break;
}
// return true;
}
return false;
}
void XcbEventListener::reconfigure_window()
{
uint32_t values[3];
xcb_connection_t * dpy;
xcb_screen_t * scre;
values[0] = XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT
| XCB_EVENT_MASK_STRUCTURE_NOTIFY
| XCB_EVENT_MASK_SUBSTRUCTURE_NOTIFY
| XCB_EVENT_MASK_PROPERTY_CHANGE;
dpy=QX11Info::connection();
scre = xcb_setup_roots_iterator(xcb_get_setup(dpy)).data;
xcb_change_window_attributes_checked(dpy, scre->root,
XCB_CW_EVENT_MASK, values);
}
xcb_window_t XcbEventListener::get_root()
{
xcb_connection_t * dpy;
xcb_screen_t * scre;
dpy=QX11Info::connection();
scre = xcb_setup_roots_iterator(xcb_get_setup(dpy)).data;
return scre->root;
}
void XcbEventListener::make_window_listen(xcb_window_t w)
{
uint32_t values[3];
xcb_connection_t * dpy;
//xcb_screen_t * scre;
dpy=QX11Info::connection();
// scre = xcb_setup_roots_iterator(xcb_get_setup(dpy)).data;
values[0] = XCB_EVENT_MASK_ENTER_WINDOW | XCB_EVENT_MASK_FOCUS_CHANGE;
xcb_change_window_attributes_checked(dpy, w,
XCB_CW_EVENT_MASK, values);
}
void XcbEventListener::set_input_focus(xcb_window_t w)
{
xcb_set_input_focus(QX11Info::connection(), XCB_INPUT_FOCUS_POINTER_ROOT, w,
XCB_CURRENT_TIME);
}
void XcbEventListener::grab_key(xcb_window_t w, uint16_t modifiers, xcb_keysym_t key, uint8_t mode)
{
xcb_connection_t *c=QX11Info::connection();
xcb_key_symbols_t* sym=xcb_key_symbols_alloc(c);
xcb_keycode_t *k=xcb_key_symbols_get_keycode(sym,key);
xcb_grab_key(c,0,w,modifiers,k[0],XCB_GRAB_MODE_ASYNC,mode);
xcb_key_symbols_free(sym);
free(k);
}
void XcbEventListener::grab_key(uint16_t modifiers, xcb_keysym_t key, uint8_t mode)
{
XcbEventListener::grab_key(XcbEventListener::get_root(),modifiers,key,mode);
}
void XcbEventListener::ungrab_key(xcb_window_t w, uint16_t modifiers, xcb_keysym_t key)
{
xcb_connection_t *c=QX11Info::connection();
xcb_key_symbols_t* sym=xcb_key_symbols_alloc(c);
xcb_keycode_t *k=xcb_key_symbols_get_keycode(sym,key);
xcb_ungrab_key(c,k[0],w,modifiers);
xcb_key_symbols_free(sym);
free(k);
}
void XcbEventListener::ungrab_key(uint16_t modifiers, xcb_keysym_t key)
{
XcbEventListener::ungrab_key(XcbEventListener::get_root(),modifiers,key);
}
void XcbEventListener::grab_button(xcb_window_t w, uint8_t button, uint16_t modifires, uint16_t event_mask, uint8_t mode, xcb_window_t confine_to, uint8_t pointer_mode)
{
xcb_grab_button(QX11Info::connection(),0,w,event_mask,pointer_mode,mode,confine_to,XCB_NONE,button,modifires);
}
void XcbEventListener::grab_button(uint8_t button, uint16_t modifires, uint16_t event_mask, uint8_t mode, xcb_window_t confine_to, uint8_t pointer_mode)
{
XcbEventListener::grab_button(XcbEventListener::get_root(),button,modifires,event_mask,mode,confine_to,pointer_mode);
}
void XcbEventListener::ungrab_button(xcb_window_t w, uint8_t button, uint16_t modifires)
{
xcb_ungrab_button(QX11Info::connection(),button,w,modifires);
}
void XcbEventListener::ungrab_button(uint8_t button, uint16_t modifires)
{
XcbEventListener::ungrab_button(XcbEventListener::get_root(),button,modifires);
}
xcb_keysym_t XcbEventListener::keyCode_to_keySysym(xcb_keycode_t key,uint16_t c)
{
xcb_key_symbols_t * sym=xcb_key_symbols_alloc(QX11Info::connection());
xcb_keysym_t sym_key=xcb_key_symbols_get_keysym(sym,key,c);
xcb_key_symbols_free(sym);
return sym_key;
}