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

NAME

6       xcb_expose_event_t - NOT YET DOCUMENTED
7

SYNOPSIS

9       #include <xcb/xproto.h>
10
11   Event datastructure
12       typedef struct xcb_expose_event_t {
13           uint8_t      response_type;
14           uint8_t      pad0;
15           uint16_t     sequence;
16           xcb_window_t window;
17           uint16_t     x;
18           uint16_t     y;
19           uint16_t     width;
20           uint16_t     height;
21           uint16_t     count;
22           uint8_t      pad1[2];
23       } xcb_expose_event_t;
24

EVENT FIELDS

26       response_type
27                 The type of this event, in this case XCB_EXPOSE. This field
28                 is also present in the xcb_generic_event_t and can be used to
29                 tell events apart from each other.
30
31       sequence  The sequence number of the last request processed by the X11
32                 server.
33
34       window    The exposed (damaged) window.
35
36       x         The X coordinate of the left-upper corner of the exposed rec‐
37                 tangle, relative to the window's origin.
38
39       y         The Y coordinate of the left-upper corner of the exposed rec‐
40                 tangle, relative to the window's origin.
41
42       width     The width of the exposed rectangle.
43
44       height    The height of the exposed rectangle.
45
46       count     The amount of Expose events following this one. Simple appli‐
47                 cations that do not want to optimize redisplay by distin‐
48                 guishing between subareas of its window can just ignore all
49                 Expose events with nonzero counts and perform full redisplays
50                 on events with zero counts.
51

DESCRIPTION

SEE ALSO

54       xcb_generic_event_t(3)
55

AUTHOR

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_expose_event_t(3)
Impressum