1XResizeRequestEvent(3) XLIB FUNCTIONS XResizeRequestEvent(3)
2
3
4
6 XResizeRequestEvent - ResizeRequest event structure
7
9 The structure for ResizeRequest events contains:
10
11 typedef struct {
12 int type; /* ResizeRequest */
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 width, height;
18 } XResizeRequestEvent;
19
20 When you receive this event, the structure members are set as follows.
21
22 The type member is set to the event type constant name that uniquely
23 identifies it. For example, when the X server reports a GraphicsExpose
24 event to a client application, it sends an XGraphicsExposeEvent struc‐
25 ture with the type member set to GraphicsExpose. The display member is
26 set to a pointer to the display the event was read on. The send_event
27 member is set to True if the event came from a SendEvent protocol
28 request. The serial member is set from the serial number reported in
29 the protocol but expanded from the 16-bit least-significant bits to a
30 full 32-bit value. The window member is set to the window that is most
31 useful to toolkit dispatchers.
32
33 The window member is set to the window whose size another client
34 attempted to change. The width and height members are set to the
35 inside size of the window, excluding the border.
36
38 XAnyEvent(3), XButtonEvent(3), XCreateWindowEvent(3), XCircula‐
39 teEvent(3), XCirculateRequestEvent(3), XColormapEvent(3), XConfig‐
40 ureEvent(3), XConfigureRequestEvent(3), XCrossingEvent(3), XDestroyWin‐
41 dowEvent(3), XErrorEvent(3), XExposeEvent(3), XFocusChangeEvent(3),
42 XGraphicsExposeEvent(3), XGravityEvent(3), XKeymapEvent(3),
43 XMapEvent(3), XMapRequestEvent(3), XPropertyEvent(3), XRepar‐
44 entEvent(3), XSelectionClearEvent(3), XSelectionEvent(3), XSelectionRe‐
45 questEvent(3), XUnmapEvent(3), XVisibilityEvent(3)
46 Xlib - C Language X Interface
47
48
49
50X Version 11 libX11 1.6.4 XResizeRequestEvent(3)