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

NAME

6       xcb_property_notify_event_t - a window property changed
7

SYNOPSIS

9       #include <xcb/xproto.h>
10
11   Event datastructure
12       typedef struct xcb_property_notify_event_t {
13           uint8_t         response_type;
14           uint8_t         pad0;
15           uint16_t        sequence;
16           xcb_window_t    window;
17           xcb_atom_t      atom;
18           xcb_timestamp_t time;
19           uint8_t         state;
20           uint8_t         pad1[3];
21       } xcb_property_notify_event_t;
22

EVENT FIELDS

24       response_type
25                 The type of this event, in this case XCB_PROPERTY_NOTIFY.
26                 This field is also present in the xcb_generic_event_t and can
27                 be used to tell events apart from each other.
28
29       sequence  The sequence number of the last request processed by the X11
30                 server.
31
32       window    The window whose associated property was changed.
33
34       atom      The property's atom, to indicate which property was changed.
35
36       time      A timestamp of the server time when the property was changed.
37
38       state
39
40

DESCRIPTION

SEE ALSO

43       xcb_generic_event_t(3), xcb_change_property(3)
44

AUTHOR

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