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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
|
/*
* Copyright © 2009 Red Hat, Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice (including the next
* paragraph) shall be included in all copies or substantial portions of the
* Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*
*/
/* Definitions used by the library and client */
#ifndef _XINPUT2_H_
#define _XINPUT2_H_
#include <X11/Xlib.h>
#include <X11/extensions/XI2.h>
#include <X11/extensions/Xge.h>
/*******************************************************************
*
*/
typedef struct {
int type;
char* name;
Bool sendCore;
Bool enable;
} XICreateMasterInfo;
typedef struct {
int type;
int device;
int returnMode; /* AttachToMaster, Floating */
int returnPointer;
int returnKeyboard;
} XIRemoveMasterInfo;
typedef struct {
int type;
int device;
int newMaster;
} XIAttachSlaveInfo;
typedef struct {
int type;
int device;
} XIDetachSlaveInfo;
typedef union {
int type; /* must be first element */
XICreateMasterInfo create;
XIRemoveMasterInfo remove;
XIAttachSlaveInfo attach;
XIDetachSlaveInfo detach;
} XIAnyHierarchyChangeInfo;
typedef struct
{
int deviceid;
int mask_len;
unsigned char* mask;
} XIDeviceEventMask;
typedef struct
{
int type;
} XIAnyClassInfo;
typedef struct
{
int type;
int num_buttons;
Atom *buttons;
} XIButtonClassInfo;
typedef struct
{
int type;
int num_keycodes;
int *keycodes;
} XIKeyClassInfo;
typedef struct
{
int type;
int number;
Atom name;
double min;
double max;
int resolution;
int mode;
} XIValuatorClassInfo;
typedef struct
{
int deviceid;
char* name;
int use;
int attachment;
Bool enabled;
int num_classes;
XIAnyClassInfo **classes;
} XIDeviceInfo;
/**
* Generic XI2 event. All XI2 events have the same header.
* Note: this event is padded to be the same size as libX11's XEvent.
*/
typedef struct {
int type; /* GenericEvent */
unsigned long serial; /* # of last request processed by server */
Bool send_event; /* true if this came from a SendEvent request */
Display *display; /* Display the event was read from */
int extension; /* XI extension offset */
int evtype;
Time time;
char pad[68]; /* force same size as XEvent */
} XIEvent;
/*
* Notifies the client that the device hierarchy has been changed. The client
* is expected to re-query the server for the device hierarchy.
*/
typedef struct {
int type; /* GenericEvent */
unsigned long serial; /* # of last request processed by server */
Bool send_event; /* true if this came from a SendEvent request */
Display *display; /* Display the event was read from */
int extension; /* XI extension offset */
int evtype; /* XI_DeviceHierarchyChangedNotify */
Time time;
} XDeviceHierarchyChangedEvent;
/*
* Notifies the client that the classes have been changed. This happens when
* the slave device that sends through the master changes.
*/
typedef struct {
int type; /* GenericEvent */
unsigned long serial; /* # of last request processed by server */
Bool send_event; /* true if this came from a SendEvent request */
Display *display; /* Display the event was read from */
int extension; /* XI extension offset */
int evtype; /* XI_DeviceHierarchyChangedNotify */
Time time;
XID deviceid; /* id of the device that changed */
XID slaveid; /* id of the slave device that caused the
change */
int num_classes;
XIAnyClassInfo *inputclassinfo; /* same as in XDeviceInfo */
} XDeviceClassesChangedEvent;
typedef struct
{
int base;
int latched;
int locked;
} XIModifierState;
typedef XIModifierState XIGroupState;
typedef struct {
int mask_len;
unsigned char *mask;
} XIButtonState;
typedef struct {
int mask_len;
unsigned char *mask;
double *values;
} XIValuatorState;
typedef struct {
int type; /* GenericEvent */
unsigned long serial; /* # of last request processed by server */
Bool send_event; /* true if this came from a SendEvent request */
Display *display; /* Display the event was read from */
int extension; /* XI extension offset */
int evtype;
Time time;
int detail;
Window root;
Window event;
Window child;
int deviceid;
int sourceid;
float root_x;
float root_y;
float event_x;
float event_y;
XIButtonState *buttons;
XIValuatorState *valuators;
XIModifierState *mods;
XIGroupState *group;
} XIDeviceEvent;
_XFUNCPROTOBEGIN
extern Bool XIQueryDevicePointer(
Display* display,
int deviceid,
Window win,
Window* root,
Window* child,
int* root_x,
int* root_y,
int* win_x,
int* win_y,
unsigned int* mask
);
extern Bool XIWarpDevicePointer(
Display* display,
int deviceid,
Window src_win,
Window dst_win,
int src_x,
int src_y,
unsigned int src_width,
unsigned int src_height,
int dst_x,
int dst_y
);
extern Status XIDefineDeviceCursor(
Display* display,
int deviceid,
Window win,
Cursor cursor
);
extern Status XIUndefineDeviceCursor(
Display* display,
int deviceid,
Window win
);
extern Status XIChangeDeviceHierarchy(
Display* display,
XIAnyHierarchyChangeInfo* changes,
int num_changes
);
extern Status XISetClientPointer(
Display* dpy,
Window win,
int deviceid
);
extern Bool XIGetClientPointer(
Display* dpy,
Window win,
int* deviceid
);
extern int XISelectEvent(
Display* dpy,
Window win,
XIDeviceEventMask* masks,
int nmasks
);
extern Status XIQueryVersion(
Display* dpy,
int* major_version_return,
int* minor_version_return
);
extern XIDeviceInfo* XIQueryDevice(
Display* dpy,
int deviceid,
int* ndevices_return
);
extern void XIFreeDeviceInfo(XIDeviceInfo *info);
_XFUNCPROTOEND
#endif /* XINPUT2_H */
|