-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathXI2proto.txt
1677 lines (1439 loc) · 65.8 KB
/
XI2proto.txt
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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
The X Input Extension
Version 2.0
Peter Hutterer
Red Hat, Inc.
1. Introduction
The X Input Extension version 2.0 (XI2) is the second major release of the X
Input Extension.
XI2 provides a number of enhancements over version 1.5, including:
- use of XGE and GenericEvents. GenericEvents are of flexible length with a
minimum length of 32 bytes.
- explicit device hierarchy of master and slave devices. See Section 4.
- use of multiple independent master devices (Multi-Poiner X or MPX).
- the ability for devices to change capabilities at runtime.
- raw device events
XI2's intent is to replace both core input processing and prior versions of
the X Input Extension. Historically, the majority of applications employed the
core protocol requests and events to handle user input. The core protocol does
not provide information about which device generated the event. The X Input
Extension version up to 1.5 requires the differentiation between core and
extended devices. Extended devices may not be core devices and thus cannot be
used on applications employing the core protocol. XI2 addresses both of these
issues by enabling devices to be both extended and core devices and providing
device information in each event (with the exception of core events).
❧❧❧❧❧❧❧❧❧❧❧
2. Notations used in this document
Notation for requests:
┌───
Name of request
name of request field: type of request field
name of request field: type of request field
▶
name of reply field: type of reply field
└───
Notation for events:
┌───
Name of event
name of field: type of field
name of field: type of field
└───
Complex fields are specified in the following notation:
name of field: COMPLEXFIELDTYPE
or, if multiple of these fields exist:
name of field: LISTofCOMPLEXFIELDTYPE
COMPLEXFIELDTYPE: { name of subfield: type of subfield,
name of subfield: type of subfield }
❧❧❧❧❧❧❧❧❧❧❧
3. Interoperability between version 1.x and 2.0
There is little interaction between 1.x and 2.x versions of the X Input
Extension. Clients are requested to avoid mixing XI1.x and XI2 code as much as
possible. Several direct incompatibilities are observable:
3.1 Limitations resulting from different variable ranges
XI2 provides a larger range for some fields than XI1. As a result, XI1 clients
may not receive data an XI2 client receives.
These fields include:
- devices with a deviceid of greater than 127 are invisible to XI1 clients.
- key events and key grabs featuring larger than 255 can only be sent to XI2
clients.
- no subpixel information is avialable to XI1 clients. If motion events are in
a subpixel range only, the server may omit these events and an XI 1.x client
will not receive events until the pixel boundary is crossed.
3.2 Blocking of grabs
XI1 grabs are different to XI2 grab and a device may not be grabbed through an
XI2 grab if an XI1 grab is currently active on this device or vice versa.
Likewise, a keycode or button already grabbed by an XI 1.x or XI2 client may
not be grabbed with the same modifier combination by an XI2 or XI 1.x client,
respectively.
3.3 Invisibility of Master Devices
XI 1.x was not designed with support for multiple master devices (see Section
4). As a result, only the first master pointer and master keyboard are visible
to XI 1.x clients, all other master devices are invisible and cannot be
accessed from XI 1.x calls.
❧❧❧❧❧❧❧❧❧❧❧
4. The Master/Slave device hierarchy
XI2 introduces a device hierarchy split up into so-called Master Devices (MD)
and Slave Devices (SD).
4.1 Master devices
An MD is a virtual device created and managed by the server. MDs may send core
events and XI events. However, an MD does not represent a physical device and
relies on SDs for event generation. MDs come in two forms: as master pointers
or as master keyboards. A master pointer is represented by a visible cursor on
the screen. A master keyboard is represented by a keyboard focus.
Each master pointer is paired with the respective master keyboard and vice
versa, and this pairing is constant for the lifetime of both input devices.
Clients can use this pairing behaviour to implement input paradigms that
require pointer and keyboard interation (e.g. SHIFT + Click).
4.2 Slave devices
An SD is usually a physical device configured in the server. SDs are not
represented by a cursor or keyboard focus and may be attached to a master
pointer or master keyboard. SDs can only be attached to any master of the same
type (e.g. a physical pointer device can be attached to any master pointer).
If an event is generated by an SD
- if the SD is attached to a master pointer, it changes the position and/or
button state of the master pointer.
- if the SD is attached to a master keyboard, it sends events to this
keyboard's focus window (if applicable) and/or changes the modifier state of
this keyboard.
- if the SD is not attached to an MD ("floating"), it does not change
any master device. The SD has its own (invisible) sprite and its own focus.
Both the sprite and the focus must be managed explicitly by the client
program.
4.3 Event processing for attached slave devices
Whenever an SD changes its logical state,
- the event is delivered as an XI event to any interested clients. If the
device is floating, event processing stops.
Otherwise, if the device is attached,
- the master device changes its classes to reflect the SD's capabilities. All
interested clients are notified of this device change.
- then, the event is delivered as an XI event from the MD to any interested
clients. If the event has been delivered, event processing stops.
Otherwise,
- the event is delivered as a core event to any interested clients.
Given that W is the event window, and P the parent window of W, event delivery
to P is only attempted if neither the XI event, nor the core event has been
delivered on W. Once an event has been delivered as either XI or core event,
event processing stops.
4.4. The ClientPointer principle
Many core protocol and some extension requests are ambiguous when multiple
master devices are available (e.g. QueryPointer does not specfy which pointer).
The X server does not have the knowledge to chose the contextually correct
master device. For each client, one master pointer is designated as this
clients's "ClientPointer". Whenever a client sends an ambiguous request (e.g.
QueryPointer), the ClientPointer or the keyboard paired with the ClientPointer
is chosen to provide the data for this request.
This ClientPointer may be explicitly assigned to a client with the
SetClientPointer call. If no ClientPointer is set when a client issues an
ambiguous request, the server choses one device as the ClientPointer. The
method of chosing a ClientPointer from the available master pointers is
implementation-specific.
If the master pointer currently set as ClientPointer for one or more clients is
removed, the server may either unset the ClientPointer setting or change the
ClientPointer to a different master pointer.
❧❧❧❧❧❧❧❧❧❧❧
5. Data types
BUTTONMASK
A binary mask defined as (1 << button number).
A SETofBUTTONMASK is a binary OR of zero or more BUTTONMASK.
DEVICE { DEVICEID, AllDevices, AllMasterDevices }
A DEVICE specifies either a DEVICEID or AllDevices or
AllMasterDevices.
DEVICEID { CARD16 }
A DEVICEID is a numerical ID for a device currently available in the
server. The server may re-use a device ID after a device's removal.
The device IDs 0 and 1 are reserved.
AllDevices ........ 0
AllMasterDevices .. 1
DEVICEUSE { MasterPointer, MasterKeyboard, SlavePointer,
SlaveKeyboard, FloatingSlave }
A DEVICEUSE field specifies the current use of a device in the MD/SD
device hierarchy. See Section 4 for more information.
EVENTMASK
An EVENTMASK is a binary mask defined as (1 << event type).
A SETofEVENTMASK is a binary OR of zero or more EVENTMASK.
FP1616
Fixed point decimal in 16.16 format as one INT16 and one CARD16.
The INT16 contains the integral part, the CARD32 the decimal fraction
shifted by 16.
FP3232
Fixed point decimal in 32.32 format as one INT32 and one CARD32.
The INT32 contains the integral part, the CARD32 the decimal fraction
shifted by 32.
VALUATORMASK
A binary mask defined as (1 << valuator number).
A SETofVALUATORMASK is a binary OR of zero or more VALUATORMASK.
❧❧❧❧❧❧❧❧❧❧❧
6. Errors
Errors are sent using core X error reports.
Device
A value for a DEVICE argument does not specify a valid DEVICE.
❧❧❧❧❧❧❧❧❧❧❧
7. Requests:
The server does not guarantee that the length of a reply remains constant in
future revisions of XI2. A client must always retrieve the exact length of the
protocol reply from the connection, even if the reply is longer than defined
for the XI2 version supported by the client.
Additional bytes in a request may include data supported in later versions of
XI2. Clients should ignore this data. Padding bytes in XI2 protocol requests
are required to be 0.
7.1 Requests introduced in version 2.0
┌───
XIQueryVersion
major_version: CARD16
minor_version: CARD16
▶
major_version: CARD16
minor_version: CARD16
└───
The client sends the highest supported version to the server and the
server sends the highest version it supports, but no higher than the
requested version. Major versions changes can introduce incompatibilities
in existing functionality, minor version changes introduce only backward
compatible changes. It is the client's responsibility to ensure that the
server supports a version which is compatible with its expectations.
major_version
Major XI2 version.
minor_version
Minor XI2 version.
If major_version is less than 2, a BadValue error occurs.
┌───
XIQueryDevice
DEVICE deviceid
▶
num_devices: CARD16
deviceinfo: LISTofDEVICEINFO
└───
DEVICEINFO { deviceid: DEVICEID
use: DEVICEUSE
attachment: DEVICEID
enabled: BOOL
num_classes: CARD16
name_len: CARD16
name: LISTofCHAR8
classes: LISTofCLASS }
CLASS { BUTTONCLASS, KEYCLASS, AXISCLASS }
BUTTONCLASS { type: ButtonClass
length: CARD16
sourceid: CARD16
buttons_len: CARD16
state: SETofBUTTONMASK
labels: LISTofATOM }
KEYCLASS { type: KeyClass
length: CARD16
sourceid: CARD16
num_keys: CARD16
keys: LISTofCARD32 }
AXISCLASS { type: AxisClass
length: CARD16
sourceid: CARD16
axisnumber: CARD16
label: ATOM
min: FP3232
max: FP3232
value: FP3232
resolution: CARD32 }
XIQueryDevices details information about the requested input devices.
devices
The device to list. If devices is AllDevices, all enabled and
disabled devices are listed. If devices is AllMasterDevices, all
enabled and disabled master devices are listed. If devices is a
valid DEVICE, only this DEVICE is listed and num_devices is 1.
num_devices
The number of deviceinfos returned.
Each deviceinfo is detailed as follows:
deviceid
The unique ID of the device. Device IDs may get re-used when a device
is removed.
use
If the device is a master pointer, use is MasterPointer.
If the device is a master keyboard, use is MasterKeyboard.
If the device is a slave pointer, use is SlavePointer.
If the device is a slave keyboard, use is SlaveKeyboard.
If the device is a floating slave, use is FloatingSlave.
attachment
If the device is a master pointer or a master keyboard, attachment
specifies the paired master keyboard, or the paired master pointer,
respectively. If the device is a non-floating slave device
attachment specifies the master device this device is attached to.
If the device is a floating slave, attachment is undefined.
enabled
Zero if the device is disabled, non-zero otherwise.
num_classes
Number of classes provided.
name_len
Length of the name in bytes not including padding.
classes
Details the available classes provided by the device in an undefined
order.
name
The device's name. padded to a multiple of 4 bytes.
For all classes, type specifies the device class. Clients are required
to ignore unknown device classes. The length field specifies the length
of the class in 4 byte units.
The following classes may occur only once: ButtonClass, KeyClass
ButtonClass:
type
Always ButtonClass.
length
Length in 4 byte units.
sourceid
The device this class originates from.
num_buttons
Number of buttons provided by the device.
labels
List of Atoms specifying the label for each button. An Atom of None
specifies an unlabeled button. Buttons are listed in the device-native
order regardless of the current button mapping.
state
The current button mask for this device after button mapping is
applied. Each bit representing a button is 1 if this button is
logically down, or 0 otherwise. State is a multiple of 4-byte units
and always contains at least num_buttons bits.
KeyClass:
type
Always KeyClass.
length
Length in 4 byte units.
sourceid
The device this class originates from.
num_keys
Number of keycodes provided by the device.
keys
List of keycodes provided.
AxisClass:
type
Always AxisClass.
length
Length in 4 byte units.
sourceid
The device this class originates from.
axisnumber
Axis number of this axis. The axis number is in device-native
order and potential axis mappings are ignored.
label
Atom specifying the axis name. An Atom of None specifies an unlabeled
axis.
min
Minimum value.
max
Minimum value.
resolution
Resolution in counts/meter.
mode
Relative or Absolute.
value
Last published axis value (if mode is absolute).
An axis in Relative mode may specify min and max as a hint to the
client. If no min and max information is available, both must be 0.
┌───
XISelectEvents
window: Window
num_masks: CARD16
masks: LISTofEVENTMASK
└───
EVENTMASK { deviceid: DEVICE,
mask_len: CARD16,
mask: SETofEVENTMASK
window
The window to select the events on.
num_masks
Number of items in masks.
deviceid
Numerical deviceid, or AllDevices, or AllMasterDevices.
mask_len
Length of mask in 4 byte units.
mask
Event mask. An event mask for an event type T is defined as (1 << T).
XISelectEvents selects for XI2 events on window.
If num_masks is 0, a BadValue error occurs.
Each mask sets the (and overwrites a previous) event mask for the DEVICE
specified through deviceid. The device AllDevices or
AllMasterDevices is treated as a separate device by server. A client's
event mask is the union of AllDevices, AllMasterDevices and the
per-device event mask.
The removal of device from the server unsets the event masks for the
device. If an event mask is set for AllDevices or AllMasterDevices, the
event mask is not cleared on device removal and affects all future
devices.
If mask_len is 0, the event mask for the given device is cleared.
The mask for XIHierarchyEvents may only be selected for XIAllDevices.
Setting it for any other device results in a BadValue error.
┌───
XIGetSelectedEvents
window: Window
▶
num_masks: CARD16
masks: LISTofEVENTMASK
└───
window
The window to select the events on.
num_masks
Number of items in masks.
masks
Selected event masks by this client.
Masks are returned on a per-device basis, with masks for AllDevices and
AllMasterDevices returned separately. A client can calculate the
effective mask for a device with a bitwise OR of the AllDevices, the
AllMasterDevices and the device-specific mask.
If num_masks is 0, no events have been selected by this client on the
given window.
┌───
XIQueryPointer
window: Window
deviceid: DEVICEID
▶
root: Window
child: Window
root_x: FP1616
root_y: FP1616
win_x: FP1616
win_y: FP1616
same_screen: BOOL
mods: MODIFIERINFO
group: GROUPINFO
buttons_len: CARD16
buttons: SETofBUTTONMASK
└───
Query a master pointer device for its current position.
root
The root window the pointer is logically on.
child
The child window of window that contains the pointer or None.
root_x
root_y
Pointer position relative to the root window's origin.
win_x
win_y
Pointer position relative to window or 0 if same_screen is false.
same_screen
True if window is on the same screen as the pointer.
mods
XKB modifier state on the paired device.
group
XKB group state on the paired device.
buttons_len
The length of buttons in 4 byte units.
buttons
Button state.
If the device is not a master pointer device or not a floating slave
pointer, a BadDevice error results.
┌───
XIWarpPointer
src_win: Window
dst_win: Window
src_x: FP1616
src_y: FP1616
src_width: INT16
src_height: INT16
dst_x: FP1616
dst_y: FP1616
deviceid: DEVICEID
└───
WarpPointer moves the pointer of deviceid as if the user had moved
the pointer. WarpPointer can only be called for MasterPointer and
FloatingSlave devices.
src_win
If src_window is not None, the move only takes place if src_window
contains the pointer and the pointer is contained in the specified
rectangle of src_window.
dst_win
If dst_win is None, this request moves the pointer by offsets
dst_x/dst_y relative to the current position of the pointer. If
dst_window is a window, this request moves the pointer to
dst_x/dst_y relative to dst_win's origin.
src_x
src_y
src_width
src_height
Specifies the source window rectangle.
dst_x
dst_y
The relative coordinates to move the pointer if dst_win is None, or
the absolute coordinates if dst_win is a window.
deviceid
The device to warp.
This request cannot be used to move the pointer outside the confine-to
window of an active pointer grab. An attempt will only move the pointer as
far as the closest edge of the confine-to window.
This request will generate events just as if the user had instantaneously
moved the pointer.
┌───
XIChangeCursor
win: Window
cursor: Cursor
deviceid: DEVICEID
└───
Change a master pointer's cursor on the specified window.
window
The window.
cursor
The new cursor or None.
deviceid
The master pointer device.
Whenever device enters a window W, the cursor shape is selected in the
following order:
- if the current window has a device cursor C(d) defined for device,
display this cursor C(d).
- otherwise, if the current window has a cursor C(w) defined in the core
protocol's window attributes, display cursor C(w).
- repeat on parent window until a cursor has been found.
The device cursor for a given window is reset once the window is destroyed
or the device is removed, whichever comes earlier.
If deviceid does not specify a master pointer, a BadDevice error
is returned.
┌───
XIChangeHierarchy
num_changes: CARD8
changes: LISTofHIERARCHYCHANGES
└───
HIERARCHYCHANGE { ADDMASTER, REMOVEMASTER, ATTACHSLAVE, DETACHSLAVE }
HIERARCHYCHANGETYPE { AddMaster, RemoveMaster, AttachSlave, DetachSlave }
CHANGEMODE { Float, Attach }
ADDMASTER { type: HIERARCHYCHANGETYPE
length: CARD16
name_len: CARD16
send_core: BOOL
enable: BOOL
name: LISTofCHAR8 }
REMOVEMASTER { type: HIERARCHYCHANGETYPE
length: CARD16
deviceid: DEVICEID
return_mode: CHANGEMODE
return_pointer: DEVICEID
return_keyboard: DEVICEID }
ATTACHSLAVE { type: HIERARCHYCHANGETYPE
length: CARD16
deviceid: DEVICEID
master: DEVICEID }
DETACHSLAVE { type: HIERARCHYCHANGETYPE
length: CARD16
deviceid: DEVICEID }
XIChangeHierarchy allows a client to modify the MD/SD device
hierarchy (see Section 4).
num_changes
The number of changes to apply to the current hierarchy.
changes
The list of changes.
The server processes the changes in the order received from the client and
applies each requested change immediately. If an error occurs, processing
stops at the current change and returns the number of successfully applied
changes in the error.
ADDMASTER creates a pair of master devices.
type
Always AddMaster.
length
Length in 4 byte units.
name_len
Length of name in bytes.
send_core
True if the device should send core events.
enable
True if the device is to be enabled immediately.
name
The name for the new master devices. The master pointer's name is
automatically appended with " pointer", the master keyboard's name is
automatically appended with " keyboard".
REMOVEMASTER removes an existing master device.
type
Always RemoveMaster.
length
Length in 4 byte units.
deviceid
The device to remove.
return_mode
Return mode for attached slave devices.
If return_mode is Float, all slave devices are set to floating.
If return_mode is Attach, slave pointers are attached to
return_pointer and slave keyboards are attached to
return_keyboard.
return_pointer
return_keyboard
The master pointer and master keyboard to attach slave devices to, if
return_mode is Attach. If return_mode is Float, return_pointer
and return_keyboard are undefined.
Removing a master pointer removes the paired master keyboard and vice
versa.
ATTACHSLAVE attaches a slave device to a given master device.
type
Always ChangeAttachment.
length
Length in 4 byte units.
deviceid
Deviceid of the slave device.
master
The new master device to attach this slave device to.
DETACHSLAVE detaches a slave device from its current master device.
type
Always ChangeAttachment.
length
Length in 4 byte units.
deviceid
Deviceid of the slave device.
┌───
XISetClientPointer
win: Window
deviceid: DEVICEID
└───
Set the ClientPointer for the client owning win to the given device.
win
Window or client ID.
deviceid
The master pointer or master keyboard that acts as ClientPointer.
Some protocol requests are ambiguous and the server has to choose a device
to provide data for a request or a reply. By default, the server will
choose a client's ClientPointer device to provide the data, unless the
client currently has a grab on another device. See section 4.4 for more
details.
If win is None, the ClientPointer for this client is set to the given
device. Otherwise, if win is a valid window, the ClientPointer for the
client owning this window is set to the given device. Otherwise, if win is
not a valid window but a client with the client mask equal to win exists,
this client's ClientPointer is set to the given device.
If deviceid does not specify a master pointer or master keyboard, a
BadDevice error is returned.
If window does not specify a valid window or client ID and is not None, a
BadWindow error is returned.
┌───
XIGetClientPointer
win: Window
▶
set: BOOL
deviceid: DEVICEID
└───
Query the ClientPointer for the client owning win.
win
The window or client ID.
set
True if the client has a ClientPointer set.
deviceid
The master pointer that acts as a ClientPointer if set is True.
No difference is made between a ClientPointer set explicitly through
XISetClientPointer and a ClientPointer implicitly assigned by the server
in response to an ambiguous request.
┌───
XISetFocus
focus: Window
deviceid: DEVICEID
time: Time
└───
Set the focus for the given device to the given window. Future key events
from this device are sent to this window.
This request generates FocusIn and FocusOut events.
focus
A viewable window or None.
deviceid
The device to modify the focus window for.
time
Specifies the time to change the focus or CurrentTime.
If focus is None, key events from this device are discarded until a new
focus window is set. If focus is a viewable window, key events from this
device are sent to this window. If the window becomes unviewable, the
window's first viewable ancestor automatically becomes the focus window
and FocusIn and FocusOut events are sent as if a client had changed the
focus window.
This is equivalent to RevertToParent in the core XSetInputFocus window.
This request has no effect if the specified time is earlier than the
current last-focus-change time or is later than the current X server time.
Otherwise, the last-focus-change time is set to the specified time.
┌───
XIGetFocus
deviceid: DEVICEID
▶
focus: Window
└───
Return the current focus window for the given device.
┌───
XIGrabDevice
deviceid: DEVICEID
grab_window: Window
owner_events: BOOL
grab_mode: { Synchronous, Asynchronous }
paired_device_mode: { Synchronous, Asynchronous }
time: TIMESTAMP or CurrentTime
cursor: Cursor
mask_len: CARD16
masks: SETofEVENTMASK
▶
status: Success, AlreadyGrabbed, Frozen, InvalidTime, NotViewable
└───
This request actively grabs control of the specified input device. Further
input events from this device are reported only to the grabbing client.
This request overides any previous active grab by this client for this
device.
deviceid
The device to grab.
grab_window
Events are reported relative to the grab window.
owner_events
Specifies whether event will be reported normally or relative to the
grab window.
grab_mode
Specifies if this device will be frozen as a result of the grab.
paired_device_mode
Specifies if the master device paired with this device will be frozen
as a result of the grab.
time
A valid server time or CurrentTime.
cursor
The cursor to display for the duration of the grab or None.
mask_len
Length of mask in 4 byte units.
mask
Event mask. An event mask for an event type T is defined as (1 << T).
status
Success or the reason why the grab could not be established.
The masks parameter specifies which events the client wishes to receive
while the device is grabbed.
If owner-events is False, input events generated from this device are
reported with respect to grab-window, and are only reported if selected by
being included in the event-list. If owner-events is True, then if a
generated event would normally be reported to this client, it is reported
normally, otherwise the event is reported with respect to the grab-window,
and is only reported if selected by being included in the event-list. For
either value of owner-events, unreported events are discarded.
If grab-mode is Asynchronous, device event processing continues normally.
If the device is currently frozen by this client, then processing of
device events is resumed. If grab-mode is Synchronous, the state of the
grabbed device (as seen by means of the protocol) appears to freeze,
and no further device events are generated by the server until the
grabbing client issues a releasing XIAllowEvents request or until the
device grab is released. Actual device input events are not lost while the
device is frozen; they are simply queued for later processing.
If the device is a slave device, the paired-device-mode is ignored.
Otherwise, if this device is a master device and paired-device-mode is
Asynchronous, event processing is unaffected by activation of the grab. If
this device is a master device and paired-device-mode is Synchronous, the
state of the master device paired with this device (as seen by means of the
protocol) appears to freeze, and no further events are generated by the
server until the grabbing client issues a releasing XIAllowEvents request
or until the device grab is released. Actual events are not lost while the
devices are frozen; they are simply queued for later processing.
If the cursor is not None and the device is a master pointer device, the
cursor will be displayed until the device is ungrabbed.
This request fails and returns:
AlreadyGrabbed: If the device is actively grabbed by some other client.
NotViewable: If grab-window is not viewable.
InvalidTime: If the specified time is earlier than the last-grab-time for
the specified device or later than the current X server time.
Otherwise, the last-grab-time for the specified device is set
to the specified time and CurrentTime is replaced by the
current X server time.
Frozen: If the device is frozen by an active grab of another client.
To release a grab of a device, use XIUngrabDevice.
┌───
XIUngrabDevice
deviceid: DEVICEID
time: TIMESTAMP or CurrentTime
└───
This request releases the device if this client has it actively grabbed
(from either XIGrabDevice, XIGrabDeviceKey or XIGrabDeviceButton) and
releases any queued events. If any devices were frozen by the grab,
XIUngrabDevice thaws them.
deviceid
The device to grab.
time
A valid server time or CurrentTime.
The request has no effect if the specified time is earlier than the
last-device-grab time or is later than the current server time.
This request generates FocusIn and FocusOut events.
An XIUngrabDevice is performed automatically if the event window for an
active device grab becomes not viewable.
┌───
XIAllowEvents:
deviceid: DEVICEID
time: TIMESTAMP or CurrentTime
event_mode: { AsyncDevice, SyncDevice,
AsyncPairedDevice, SyncPairedDevice,
ReplayDevice, AsyncPair, SyncPair }
└───
The XIAllowEvents request releases some queued events if the client
has caused a device to freeze.
deviceid
The device to grab.
time
A valid server time or CurrentTime.
event_mode
Specifies whether a device is to be thawed and events are to be
replayed.
The request has no effect if the specified time is earlier than the
last-grab time of the most recent active grab for the client, or if the
specified time is later than the current X server time.
The following describes the processing that occurs depending on what constant
you pass to the event-mode argument:
AsyncDevice:
If the specified device is frozen by the client, event processing for that
device continues as usual. If the device is frozen multiple times by the
client on behalf of multiple separate grabs, AsyncDevice thaws for
all.
AsyncDevice has no effect if the specified device is not frozen by the
client, but the device need not be grabbed by the client.
SyncDevice:
If the specified device is frozen and actively grabbed by the client,
event processing for that device continues normally until the next
event is reported to the client. At this time, the specified device
again appears to freeze. However, if the reported event causes the
grab to be released, the specified device does not freeze.
SyncDevice has no effect if the specified device is not frozen by the
client or is not grabbed by the client.
ReplayDevice:
If the specified device is actively grabbed by the client and is frozen
as the result of an event having been sent to the client (either from
the activation of a XIGrabButton or from a previous XIAllowEvents with
mode SyncDevice, but not from a Grab), the grab is released and
that event is completely reprocessed. This time, however, the request
ignores any passive grabs at or above (towards the root) the
grab-window of the grab just released.
The request has no effect if the specified device is not grabbed by
the client or if it is not frozen as the result of an event.
AsyncPairedDevice
If the paired master device is frozen by the client, event processing
for it continues as usual. If the paired device is frozen multiple
times by the client on behalf of multiple separate grabs,
AsyncPairedDevice thaws for all.
AsyncPairedDevice has no effect if the device is not frozen by the
client, but those devices need not be grabbed by the client.
AsyncPairedDevice has no effect if deviceid specifies a slave device.
SyncPairedDevice
If the paired master device is frozen by the client, event processing (for
the paired master device) continues normally until the next button or key
event is reported to the client for the grabbed device (button event for
the grabbed device, key or motion event for the device), at which time
the device again appears to freeze. However, if the reported event causes
the grab to be released, then the device does not freeze.
SyncPairedDevice has no effect if the specified device is not grabbed
by the client or if it is no frozen as the result of an event.
SyncPairedDevice has no effect if deviceid specifies a slave device.
SyncPair
If both the device and the paired master device are frozen by the
client, event processing (for both devices) continues normally until
the next XIButtonPress, XIButtonRelease, XIKeyPress, or XIKeyRelease
event is reported to the client for a grabbed device (button event for
a pointer, key event for a keyboard), at which time the devices again
appear to freeze. However, if the reported event causes the grab to be
released, then the devices do not freeze (but if the other device is
still grabbed, then a subsequent event for it will still cause both
devices to freeze).
SyncPair has no effect unless both the device and the paired master
device are frozen by the client. If the device or paired master device
is frozen twice by the client on behalf of two separate grabs,
SyncPair thaws for both (but a subsequent freeze for SyncPair will
only freeze each device once).
SyncPair has no effect if deviceid specifies a slave device.
AsyncPair
If the device and the paired master device are frozen by the client,
event processing for both devices continues normally. If a device is
frozen twice by the client on behalf of two separate grabs, AsyncBoth
thaws for both. AsyncPair has no effect unless both the device and the
paired master device frozen by the client.
AsyncPair has no effect if deviceid specifies a slave device.
┌───
XIPassiveGrabDevice
deviceid: DEVICE
detail: CARD32
grab_type: GRABTYPE
grab_window: Window
cursor: Cursor
owner_events: Bool
grab_mode: { Synchronous, Asynchronous }
paired_device_mode: { Synchronous, Asynchronous }
num_modifiers: INT16
mask_len: CARD16
masks: SETofEVENTMASK
modifiers: CARD32 or GrabAnyModifier
▶
num_modifiers_return: INT16
modifiers_return: GRABMODIFIERINFO
└───