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

NAME

6       xcb_map_notify_event_t - a window was mapped
7

SYNOPSIS

9       #include <xcb/xproto.h>
10
11   Event datastructure
12       typedef struct xcb_map_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           uint8_t      override_redirect;
19           uint8_t      pad1[3];
20       } xcb_map_notify_event_t;
21

EVENT FIELDS

23       response_type
24                 The type of this event, in this case XCB_MAP_NOTIFY. This
25                 field is also present in the xcb_generic_event_t and can be
26                 used to tell events apart from each other.
27
28       sequence  The sequence number of the last request processed by the X11
29                 server.
30
31       event     The window which was mapped or its parent, depending on
32                 whether StructureNotify or SubstructureNotify was selected.
33
34       window    The window that was mapped.
35
36       override_redirect
37                 Window managers should ignore this window if override_redi‐
38                 rect is 1.
39

DESCRIPTION

SEE ALSO

42       xcb_generic_event_t(3), xcb_map_window(3)
43

AUTHOR

45       Generated from xproto.xml. Contact xcb@lists.freedesktop.org for cor‐
46       rections and improvements.
47
48
49
50X Version 11                      libxcb 1.13        xcb_map_notify_event_t(3)
Impressum