1xcb_create_notify_event_t(3) XCB Events xcb_create_notify_event_t(3)
2
3
4
6 xcb_create_notify_event_t -
7
9 #include <xcb/xproto.h>
10
11 Event datastructure
12 typedef struct xcb_create_notify_event_t {
13 uint8_t response_type;
14 uint8_t pad0;
15 uint16_t sequence;
16 xcb_window_t parent;
17 xcb_window_t window;
18 int16_t x;
19 int16_t y;
20 uint16_t width;
21 uint16_t height;
22 uint16_t border_width;
23 uint8_t override_redirect;
24 uint8_t pad1;
25 } xcb_create_notify_event_t;
26
28 response_type
29 The type of this event, in this case XCB_CREATE_NOTIFY. This
30 field is also present in the xcb_generic_event_t and can be
31 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 parent NOT YET DOCUMENTED.
37
38 window NOT YET DOCUMENTED.
39
40 x NOT YET DOCUMENTED.
41
42 y NOT YET DOCUMENTED.
43
44 width NOT YET DOCUMENTED.
45
46 height NOT YET DOCUMENTED.
47
48 border_width
49 NOT YET DOCUMENTED.
50
51 override_redirect
52 NOT YET DOCUMENTED.
53
57 Generated from xproto.xml. Contact xcb@lists.freedesktop.org for cor‐
58 rections and improvements.
59
60
61
62X Version 11 libxcb 1.13 xcb_create_notify_event_t(3)