1XConfigureRequestEvent(3) XLIB FUNCTIONS XConfigureRequestEvent(3)
2
3
4
6 XConfigureRequestEvent - ConfigureRequest event structure
7
9 The structure for ConfigureRequest events contains:
10
11 typedef struct {
12 int type; /* ConfigureRequest */
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 parent;
17 Window window;
18 int x, y;
19 int width, height;
20 int border_width;
21 Window above;
22 int detail; /* Above, Below, TopIf, BottomIf, Opposite */
23 unsigned long value_mask;
24 } XConfigureRequestEvent;
25
26 When you receive this event, the structure members are set as follows.
27
28 The type member is set to the event type constant name that uniquely
29 identifies it. For example, when the X server reports a GraphicsExpose
30 event to a client application, it sends an XGraphicsExposeEvent struc‐
31 ture with the type member set to GraphicsExpose. The display member is
32 set to a pointer to the display the event was read on. The send_event
33 member is set to True if the event came from a SendEvent protocol
34 request. The serial member is set from the serial number reported in
35 the protocol but expanded from the 16-bit least-significant bits to a
36 full 32-bit value. The window member is set to the window that is most
37 useful to toolkit dispatchers.
38
39 The parent member is set to the parent window. The window member is
40 set to the window whose size, position, border width, and/or stacking
41 order is to be reconfigured. The value_mask member indicates which
42 components were specified in the ConfigureWindow protocol request. The
43 corresponding values are reported as given in the request. The remain‐
44 ing values are filled in from the current geometry of the window,
45 except in the case of above (sibling) and detail (stack-mode), which
46 are reported as None and Above, respectively, if they are not given in
47 the request.
48
50 XAnyEvent(3), XButtonEvent(3), XCreateWindowEvent(3), XCircula‐
51 teEvent(3), XCirculateRequestEvent(3), XColormapEvent(3), XConfig‐
52 ureEvent(3), XCrossingEvent(3), XDestroyWindowEvent(3), XErrorEvent(3),
53 XExposeEvent(3), XFocusChangeEvent(3), XGraphicsExposeEvent(3), XGravi‐
54 tyEvent(3), XKeymapEvent(3), XMapEvent(3), XMapRequestEvent(3), XProp‐
55 ertyEvent(3), XReparentEvent(3), XResizeRequestEvent(3), XSelection‐
56 ClearEvent(3), XSelectionEvent(3), XSelectionRequestEvent(3), XUn‐
57 mapEvent(3), XVisibilityEvent(3)
58 Xlib - C Language X Interface
59
60
61
62X Version 11 libX11 1.6.7 XConfigureRequestEvent(3)