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

NAME

6       xcb_client_message_event_t - NOT YET DOCUMENTED
7

SYNOPSIS

9       #include <xcb/xproto.h>
10
11   Event datastructure
12       typedef struct xcb_client_message_event_t {
13           uint8_t                   response_type;
14           uint8_t                   format;
15           uint16_t                  sequence;
16           xcb_window_t              window;
17           xcb_atom_t                type;
18           xcb_client_message_data_t data;
19       } xcb_client_message_event_t;
20

EVENT FIELDS

22       response_type
23                 The type of this event, in this case XCB_CLIENT_MESSAGE. This
24                 field is also present in the xcb_generic_event_t and can be
25                 used to tell events apart from each other.
26
27       sequence  The sequence number of the last request processed by the X11
28                 server.
29
30       format    Specifies how to interpret data. Can be either 8, 16 or 32.
31
32       window    NOT YET DOCUMENTED.
33
34       type      An atom which indicates how the data should be interpreted by
35                 the receiving client.
36
37       data      The data itself (20 bytes max).
38

DESCRIPTION

40       This event represents a ClientMessage, sent by another X11 client. An
41       example is a client sending the _NET_WM_STATE ClientMessage to the root
42       window to indicate the fullscreen window state, effectively requesting
43       that the window manager puts it into fullscreen mode.
44

SEE ALSO

46       xcb_generic_event_t(3), xcb_send_event(3)
47

AUTHOR

49       Generated from xproto.xml. Contact xcb@lists.freedesktop.org for cor‐
50       rections and improvements.
51
52
53
54X Version 11                      libxcb 1.13    xcb_client_message_event_t(3)
Impressum