1xcb_configure_request_event_t(3) XCB Events xcb_configure_request_event_t(3)
2
3
4
6 xcb_configure_request_event_t -
7
9 #include <xcb/xproto.h>
10
11 Event datastructure
12 typedef struct xcb_configure_request_event_t {
13 uint8_t response_type;
14 uint8_t stack_mode;
15 uint16_t sequence;
16 xcb_window_t parent;
17 xcb_window_t window;
18 xcb_window_t sibling;
19 int16_t x;
20 int16_t y;
21 uint16_t width;
22 uint16_t height;
23 uint16_t border_width;
24 uint16_t value_mask;
25 } xcb_configure_request_event_t;
26
28 response_type
29 The type of this event, in this case XCB_CONFIGURE_REQUEST.
30 This field is also present in the xcb_generic_event_t and can
31 be used to tell events apart from each other.
32
33 sequence The sequence number of the last request processed by the X11
34 server.
35
36 stack_mode
37 NOT YET DOCUMENTED.
38
39 parent NOT YET DOCUMENTED.
40
41 window NOT YET DOCUMENTED.
42
43 sibling NOT YET DOCUMENTED.
44
45 x NOT YET DOCUMENTED.
46
47 y NOT YET DOCUMENTED.
48
49 width NOT YET DOCUMENTED.
50
51 height NOT YET DOCUMENTED.
52
53 border_width
54 NOT YET DOCUMENTED.
55
56 value_mask
57 NOT YET DOCUMENTED.
58
62 Generated from xproto.xml. Contact xcb@lists.freedesktop.org for cor‐
63 rections and improvements.
64
65
66
67X Version 11 libxcb 1.13 xcb_configure_request_event_t(3)