1XExposeEvent(3X11) XLIB FUNCTIONS XExposeEvent(3X11)
2
3
4
6 XExposeEvent - Expose event structure
7
9 The structure for Expose events contains:
10
11 typedef struct {
12 int type; /∗ Expose */
13 unsigned long serial; /∗ # of last request processed by server */
14 Bool send_event; /∗ true if this came from a SendEvent request */
15 Display *display; /∗ Display the event was read from */
16 Window window;
17 int x, y;
18 int width, height;
19 int count; /∗ if nonzero, at least this many more */
20 } XExposeEvent;
21
22 When you receive this event, the structure members are set as follows.
23
24 The type member is set to the event type constant name that uniquely
25 identifies it. For example, when the X server reports a GraphicsExpose
26 event to a client application, it sends an XGraphicsExposeEvent struc‐
27 ture with the type member set to GraphicsExpose. The display member is
28 set to a pointer to the display the event was read on. The send_event
29 member is set to True if the event came from a SendEvent protocol
30 request. The serial member is set from the serial number reported in
31 the protocol but expanded from the 16-bit least-significant bits to a
32 full 32-bit value. The window member is set to the window that is most
33 useful to toolkit dispatchers.
34
35 The window member is set to the exposed (damaged) window. The x and y
36 members are set to the coordinates relative to the window's origin and
37 indicate the upper-left corner of the rectangle. The width and height
38 members are set to the size (extent) of the rectangle. The count mem‐
39 ber is set to the number of Expose events that are to follow. If count
40 is zero, no more Expose events follow for this window. However, if
41 count is nonzero, at least that number of Expose events (and possibly
42 more) follow for this window. Simple applications that do not want to
43 optimize redisplay by distinguishing between subareas of its window can
44 just ignore all Expose events with nonzero counts and perform full
45 redisplays on events with zero counts.
46
48 XAnyEvent(3X11), XButtonEvent(3X11), XCreateWindowEvent(3X11), XCircu‐
49 lateEvent(3X11), XCirculateRequestEvent(3X11), XColormapEvent(3X11),
50 XConfigureEvent(3X11), XConfigureRequestEvent(3X11),
51 XCrossingEvent(3X11), XDestroyWindowEvent(3X11), XErrorEvent(3X11),
52 XFocusChangeEvent(3X11), XGraphicsExposeEvent(3X11), XGravi‐
53 tyEvent(3X11), XKeymapEvent(3X11), XMapEvent(3X11), XMapRe‐
54 questEvent(3X11), XPropertyEvent(3X11), XReparentEvent(3X11), XResiz‐
55 eRequestEvent(3X11), XSelectionClearEvent(3X11), XSelectionEvent(3X11),
56 XSelectionRequestEvent(3X11), XUnmapEvent(3X11), XVisibilityEvent(3X11)
57 Xlib - C Language X Interface
58
59
60
61X Version 11 libX11 1.0.3 XExposeEvent(3X11)