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