1xcb_configure_notify_event_t(3)   XCB Events   xcb_configure_notify_event_t(3)
2
3
4

NAME

6       xcb_configure_notify_event_t - NOT YET DOCUMENTED
7

SYNOPSIS

9       #include <xcb/xproto.h>
10
11   Event datastructure
12       typedef struct xcb_configure_notify_event_t {
13           uint8_t      response_type;
14           uint8_t      pad0;
15           uint16_t     sequence;
16           xcb_window_t event;
17           xcb_window_t window;
18           xcb_window_t above_sibling;
19           int16_t      x;
20           int16_t      y;
21           uint16_t     width;
22           uint16_t     height;
23           uint16_t     border_width;
24           uint8_t      override_redirect;
25           uint8_t      pad1;
26       } xcb_configure_notify_event_t;
27

EVENT FIELDS

29       response_type
30                 The type of this event, in this case XCB_CONFIGURE_NOTIFY.
31                 This field is also present in the xcb_generic_event_t and can
32                 be used to tell events apart from each other.
33
34       sequence  The sequence number of the last request processed by the X11
35                 server.
36
37       event     The reconfigured window or its parent, depending on whether
38                 StructureNotify or SubstructureNotify was selected.
39
40       window    The window whose size, position, border, and/or stacking or‐
41                 der was changed.
42
43       above_sibling
44                 If XCB_NONE, the window is on the bottom of the stack with
45                 respect to sibling windows. However, if set to a sibling win‐
46                 dow, the window is placed on top of this sibling window.
47
48       x         The X coordinate of the upper-left outside corner of window,
49                 relative to the parent window's origin.
50
51       y         The Y coordinate of the upper-left outside corner of window,
52                 relative to the parent window's origin.
53
54       width     The inside width of window, not including the border.
55
56       height    The inside height of window, not including the border.
57
58       border_width
59                 The border width of window.
60
61       override_redirect
62                 Window managers should ignore this window if override_redi‐
63                 rect is 1.
64

DESCRIPTION

SEE ALSO

67       xcb_generic_event_t(3), xcb_free_colormap(3)
68

AUTHOR

70       Generated from xproto.xml. Contact xcb@lists.freedesktop.org for cor‐
71       rections and improvements.
72
73
74
75X Version 11                      libxcb 1.13  xcb_configure_notify_event_t(3)
Impressum