1XIBARRIERRELEASEPOIN(3) XIBARRIERRELEASEPOIN(3)
2
3
4
6 XIBarrierReleasePointer, XIBarrierReleasePointers - allow pointer
7 movement across a pointer barrier
8
10 #include <X11/extensions/XInput2.h>
11
12 int XIBarrierReleasePointer( Display *display,
13 int deviceid,
14 PointerBarrier barrier,
15 BarrierEventID eventid);
16
17 int XIBarrierReleasePointers( Display *display,
18 XIBarrierReleasePointerInfo *barriers,
19 int num_barriers);
20
21 display
22 Specifies the connection to the X server.
23
24 deviceid
25 Specifies the device allowed to move across the barrier.
26
27 barrier
28 Specifies the barrier.
29
30 eventid
31 Specifies the unique event ID for this barrier event sequence.
32
33 barriers
34 List of deviceid, barrier, eventid triplets.
35
36 num_barriers
37 Number of elements in barriers.
38
40 If a pointer is constrained by a pointer barrier, release the pointer
41 from the barrier and allow it to cross the barrier with the next motion.
42 If the pointer moves away from the barrier, this request does nothing.
43
44 This request only releases the pointer for the given barrier event
45 sequence. If the pointer moves away from or through the barrier, a
46 XI_BarrierLeave event is generated. Future pointer movement constrained
47 by this barrier will assign a new eventid and require a new
48 XIBarrierReleasePointer request.
49
50 If the pointer is not currently blocked by the barrier or the barrier
51 event sequence has ended, this request does nothing.
52
53 XIBarrierReleasePointer and XIBarrierReleasePointers can generate a
54 BadDevice or BadValue error.
55
57 BadDevice
58 An invalid device was specified. The device does not
59 exist or is not a master pointer device.
60
61 BadValue
62 A value for a PointerBarrier argument does not name a defined
63 pointer barrier.
64
66 XFixesCreatePointerBarrier(3)
67
68
69
70 05/30/2013 XIBARRIERRELEASEPOIN(3)