1XConfigureEvent(3)              XLIB FUNCTIONS              XConfigureEvent(3)
2
3
4

NAME

6       XConfigureEvent - ConfigureNotify event structure
7

STRUCTURES

9       The structure for ConfigureNotify events contains:
10
11       typedef struct {
12               int type;       /* ConfigureNotify */
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 event;
17               Window window;
18               int x, y;
19               int width, height;
20               int border_width;
21               Window above;
22               Bool override_redirect;
23       } XConfigureEvent;
24
25       When you receive this event, the structure members are set as follows.
26
27       The  type  member  is set to the event type constant name that uniquely
28       identifies it.  For example, when the X server reports a GraphicsExpose
29       event  to a client application, it sends an XGraphicsExposeEvent struc‐
30       ture with the type member set to GraphicsExpose.  The display member is
31       set  to a pointer to the display the event was read on.  The send_event
32       member is set to True if the event came from a SendEvent  protocol  re‐
33       quest.  The serial member is set from the serial number reported in the
34       protocol but expanded from the 16-bit least-significant bits to a  full
35       32-bit value.  The window member is set to the window that is most use‐
36       ful to toolkit dispatchers.
37
38       The event member is set either to the reconfigured  window  or  to  its
39       parent,  depending on whether StructureNotify or SubstructureNotify was
40       selected.  The window member is set to the window whose size, position,
41       border, and/or stacking order was changed.
42
43       The  x  and y members are set to the coordinates relative to the parent
44       window's origin and indicate the position  of  the  upper-left  outside
45       corner  of the window.  The width and height members are set to the in‐
46       side size of the window, not including the  border.   The  border_width
47       member is set to the width of the window's border, in pixels.
48
49       The  above member is set to the sibling window and is used for stacking
50       operations.  If the X server sets this member to None, the window whose
51       state was changed is on the bottom of the stack with respect to sibling
52       windows.  However, if this member is set to a sibling window, the  win‐
53       dow whose state was changed is placed on top of this sibling window.
54
55       The  override_redirect member is set to the override-redirect attribute
56       of the window.  Window manager clients normally should ignore this win‐
57       dow if the override_redirect member is True.
58

SEE ALSO

60       XAnyEvent(3),    XButtonEvent(3),    XCreateWindowEvent(3),   XCircula‐
61       teEvent(3),  XCirculateRequestEvent(3),  XColormapEvent(3),  XConfigur‐
62       eRequestEvent(3),   XCrossingEvent(3),   XDestroyWindowEvent(3),   XEr‐
63       rorEvent(3),   XExposeEvent(3),   XFocusChangeEvent(3),    XGraphicsEx‐
64       poseEvent(3),  XGravityEvent(3), XKeymapEvent(3), XMapEvent(3), XMapRe‐
65       questEvent(3),    XPropertyEvent(3),     XReparentEvent(3),     XResiz‐
66       eRequestEvent(3),  XSelectionClearEvent(3), XSelectionEvent(3), XSelec‐
67       tionRequestEvent(3), XUnmapEvent(3), XVisibilityEvent(3)
68       Xlib - C Language X Interface
69
70
71
72X Version 11                    libX11 1.7.3.1              XConfigureEvent(3)
Impressum