1xcb_randr_set_panning(3) XCB Requests xcb_randr_set_panning(3)
2
3
4
6 xcb_randr_set_panning -
7
9 #include <xcb/randr.h>
10
11 Request function
12 xcb_randr_set_panning_cookie_t
13 xcb_randr_set_panning(xcb_connection_t *conn,
14 xcb_randr_crtc_t crtc, xcb_timestamp_t timestamp, uint16_t left,
15 uint16_t top, uint16_t width, uint16_t height,
16 uint16_t track_left, uint16_t track_top, uint16_t track_width,
17 uint16_t track_height, int16_t border_left, int16_t border_top,
18 int16_t border_right, int16_t border_bottom);
19
20 Reply datastructure
21 typedef struct xcb_randr_set_panning_reply_t {
22 uint8_t response_type;
23 uint8_t status;
24 uint16_t sequence;
25 uint32_t length;
26 xcb_timestamp_t timestamp;
27 } xcb_randr_set_panning_reply_t;
28
29 Reply function
30 xcb_randr_set_panning_reply_t
31 *xcb_randr_set_panning_reply(xcb_connection_t *conn,
32 xcb_randr_set_panning_cookie_t cookie, xcb_generic_error_t **e);
33
35 conn The XCB connection to X11.
36
37 crtc TODO: NOT YET DOCUMENTED.
38
39 timestamp TODO: NOT YET DOCUMENTED.
40
41 left TODO: NOT YET DOCUMENTED.
42
43 top TODO: NOT YET DOCUMENTED.
44
45 width TODO: NOT YET DOCUMENTED.
46
47 height TODO: NOT YET DOCUMENTED.
48
49 track_left
50 TODO: NOT YET DOCUMENTED.
51
52 track_top TODO: NOT YET DOCUMENTED.
53
54 track_width
55 TODO: NOT YET DOCUMENTED.
56
57 track_height
58 TODO: NOT YET DOCUMENTED.
59
60 border_left
61 TODO: NOT YET DOCUMENTED.
62
63 border_top
64 TODO: NOT YET DOCUMENTED.
65
66 border_right
67 TODO: NOT YET DOCUMENTED.
68
69 border_bottom
70 TODO: NOT YET DOCUMENTED.
71
73 response_type
74 The type of this reply, in this case XCB_RANDR_SET_PANNING.
75 This field is also present in the xcb_generic_reply_t and can
76 be used to tell replies apart from each other.
77
78 sequence The sequence number of the last request processed by the X11
79 server.
80
81 length The length of the reply, in words (a word is 4 bytes).
82
83 status TODO: NOT YET DOCUMENTED.
84
85 timestamp TODO: NOT YET DOCUMENTED.
86
89 Returns an xcb_randr_set_panning_cookie_t. Errors have to be handled
90 when calling the reply function xcb_randr_set_panning_reply.
91
92 If you want to handle errors in the event loop instead, use xcb_ran‐
93 dr_set_panning_unchecked. See xcb-requests(3) for details.
94
96 This request does never generate any errors.
97
100 Generated from randr.xml. Contact xcb@lists.freedesktop.org for correc‐
101 tions and improvements.
102
103
104
105X Version 11 libxcb 1.13 xcb_randr_set_panning(3)