2003-11-14 15:54:30 +00:00
|
|
|
.\" Copyright \(co 1985, 1986, 1987, 1988, 1989, 1990, 1991, 1994, 1996 X Consortium
|
|
|
|
|
.\"
|
|
|
|
|
.\" Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
|
.\" a copy of this software and associated documentation files (the
|
|
|
|
|
.\" "Software"), to deal in the Software without restriction, including
|
|
|
|
|
.\" without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
|
.\" distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
|
.\" permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
|
.\" the following conditions:
|
|
|
|
|
.\"
|
|
|
|
|
.\" The above copyright notice and this permission notice shall be included
|
|
|
|
|
.\" in all copies or substantial portions of the Software.
|
|
|
|
|
.\"
|
|
|
|
|
.\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
|
.\" OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
|
.\" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
|
|
|
.\" IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
|
|
|
.\" OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
|
|
|
.\" ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
|
|
|
.\" OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
.\"
|
|
|
|
|
.\" Except as contained in this notice, the name of the X Consortium shall
|
|
|
|
|
.\" not be used in advertising or otherwise to promote the sale, use or
|
|
|
|
|
.\" other dealings in this Software without prior written authorization
|
|
|
|
|
.\" from the X Consortium.
|
|
|
|
|
.\"
|
|
|
|
|
.\" Copyright \(co 1985, 1986, 1987, 1988, 1989, 1990, 1991 by
|
|
|
|
|
.\" Digital Equipment Corporation
|
|
|
|
|
.\"
|
|
|
|
|
.\" Portions Copyright \(co 1990, 1991 by
|
|
|
|
|
.\" Tektronix, Inc.
|
|
|
|
|
.\"
|
|
|
|
|
.\" Permission to use, copy, modify and distribute this documentation for
|
|
|
|
|
.\" any purpose and without fee is hereby granted, provided that the above
|
|
|
|
|
.\" copyright notice appears in all copies and that both that copyright notice
|
|
|
|
|
.\" and this permission notice appear in all copies, and that the names of
|
|
|
|
|
.\" Digital and Tektronix not be used in in advertising or publicity pertaining
|
|
|
|
|
.\" to this documentation without specific, written prior permission.
|
|
|
|
|
.\" Digital and Tektronix makes no representations about the suitability
|
|
|
|
|
.\" of this documentation for any purpose.
|
2019-07-29 18:27:12 +02:00
|
|
|
.\" It is provided "as is" without express or implied warranty.
|
2019-07-30 04:52:25 -04:00
|
|
|
.\"
|
2004-04-23 18:42:09 +00:00
|
|
|
.\"
|
2003-11-14 15:54:30 +00:00
|
|
|
.ds xT X Toolkit Intrinsics \- C Language Interface
|
|
|
|
|
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
|
|
|
|
.ds xL Xlib \- C Language X Interface
|
|
|
|
|
.ds xC Inter-Client Communication Conventions Manual
|
2006-10-10 22:11:05 -04:00
|
|
|
.TH XConfigureRequestEvent __libmansuffix__ __xorgversion__ "XLIB FUNCTIONS"
|
2003-11-14 15:54:30 +00:00
|
|
|
.SH NAME
|
|
|
|
|
XConfigureRequestEvent \- ConfigureRequest event structure
|
|
|
|
|
.SH STRUCTURES
|
|
|
|
|
The structure for
|
2019-07-03 18:18:09 +02:00
|
|
|
.B ConfigureRequest
|
2003-11-14 15:54:30 +00:00
|
|
|
events contains:
|
|
|
|
|
.LP
|
2019-07-29 17:47:35 +02:00
|
|
|
.EX
|
2003-11-14 15:54:30 +00:00
|
|
|
typedef struct {
|
2012-08-23 08:24:17 -04:00
|
|
|
int type; /\&* ConfigureRequest */
|
|
|
|
|
unsigned long serial; /\&* # of last request processed by server */
|
|
|
|
|
Bool send_event; /\&* true if this came from a SendEvent request */
|
|
|
|
|
Display *display; /\&* Display the event was read from */
|
|
|
|
|
Window parent;
|
|
|
|
|
Window window;
|
|
|
|
|
int x, y;
|
|
|
|
|
int width, height;
|
|
|
|
|
int border_width;
|
|
|
|
|
Window above;
|
|
|
|
|
int detail; /\&* Above, Below, TopIf, BottomIf, Opposite */
|
|
|
|
|
unsigned long value_mask;
|
2003-11-14 15:54:30 +00:00
|
|
|
} XConfigureRequestEvent;
|
2019-07-29 17:47:35 +02:00
|
|
|
.EE
|
2003-11-14 15:54:30 +00:00
|
|
|
.LP
|
|
|
|
|
When you receive this event,
|
|
|
|
|
the structure members are set as follows.
|
|
|
|
|
.LP
|
|
|
|
|
The type member is set to the event type constant name that uniquely identifies
|
|
|
|
|
it.
|
|
|
|
|
For example, when the X server reports a
|
2019-07-03 18:18:09 +02:00
|
|
|
.B GraphicsExpose
|
2003-11-14 15:54:30 +00:00
|
|
|
event to a client application, it sends an
|
2019-07-03 18:18:09 +02:00
|
|
|
.B XGraphicsExposeEvent
|
2003-11-14 15:54:30 +00:00
|
|
|
structure with the type member set to
|
2019-07-03 18:18:09 +02:00
|
|
|
.BR GraphicsExpose .
|
2003-11-14 15:54:30 +00:00
|
|
|
The display member is set to a pointer to the display the event was read on.
|
|
|
|
|
The send_event member is set to
|
2019-07-03 18:18:09 +02:00
|
|
|
.B True
|
2003-11-14 15:54:30 +00:00
|
|
|
if the event came from a
|
2019-07-03 18:18:09 +02:00
|
|
|
.B SendEvent
|
2003-11-14 15:54:30 +00:00
|
|
|
protocol request.
|
|
|
|
|
The serial member is set from the serial number reported in the protocol
|
|
|
|
|
but expanded from the 16-bit least-significant bits to a full 32-bit value.
|
|
|
|
|
The window member is set to the window that is most useful to toolkit
|
|
|
|
|
dispatchers.
|
|
|
|
|
.LP
|
|
|
|
|
The parent member is set to the parent window.
|
2019-07-30 04:52:25 -04:00
|
|
|
The window member is set to the window whose size, position, border width,
|
2003-11-14 15:54:30 +00:00
|
|
|
and/or stacking order is to be reconfigured.
|
|
|
|
|
The value_mask member indicates which components were specified in the
|
2019-07-03 18:18:09 +02:00
|
|
|
.B ConfigureWindow
|
2003-11-14 15:54:30 +00:00
|
|
|
protocol request.
|
|
|
|
|
The corresponding values are reported as given in the request.
|
|
|
|
|
The remaining values are filled in from the current geometry of the window,
|
|
|
|
|
except in the case of above (sibling) and detail (stack-mode),
|
|
|
|
|
which are reported as
|
2019-07-03 18:18:09 +02:00
|
|
|
.B None
|
2003-11-14 15:54:30 +00:00
|
|
|
and
|
2019-07-03 18:18:09 +02:00
|
|
|
.BR Above ,
|
2003-11-14 15:54:30 +00:00
|
|
|
respectively, if they are not given in the request.
|
|
|
|
|
.SH "SEE ALSO"
|
2025-07-13 10:57:31 -07:00
|
|
|
.BR XAnyEvent (__libmansuffix__),
|
|
|
|
|
.BR XButtonEvent (__libmansuffix__),
|
|
|
|
|
.BR XCreateWindowEvent (__libmansuffix__),
|
|
|
|
|
.BR XCirculateEvent (__libmansuffix__),
|
|
|
|
|
.BR XCirculateRequestEvent (__libmansuffix__),
|
|
|
|
|
.BR XColormapEvent (__libmansuffix__),
|
|
|
|
|
.BR XConfigureEvent (__libmansuffix__),
|
|
|
|
|
.BR XCrossingEvent (__libmansuffix__),
|
|
|
|
|
.BR XDestroyWindowEvent (__libmansuffix__),
|
|
|
|
|
.BR XErrorEvent (__libmansuffix__),
|
|
|
|
|
.BR XExposeEvent (__libmansuffix__),
|
|
|
|
|
.BR XFocusChangeEvent (__libmansuffix__),
|
|
|
|
|
.BR XGraphicsExposeEvent (__libmansuffix__),
|
|
|
|
|
.BR XGravityEvent (__libmansuffix__),
|
|
|
|
|
.BR XKeymapEvent (__libmansuffix__),
|
|
|
|
|
.BR XMapEvent (__libmansuffix__),
|
|
|
|
|
.BR XMapRequestEvent (__libmansuffix__),
|
|
|
|
|
.BR XPropertyEvent (__libmansuffix__),
|
|
|
|
|
.BR XReparentEvent (__libmansuffix__),
|
|
|
|
|
.BR XResizeRequestEvent (__libmansuffix__),
|
|
|
|
|
.BR XSelectionClearEvent (__libmansuffix__),
|
|
|
|
|
.BR XSelectionEvent (__libmansuffix__),
|
|
|
|
|
.BR XSelectionRequestEvent (__libmansuffix__),
|
|
|
|
|
.BR XUnmapEvent (__libmansuffix__),
|
|
|
|
|
.BR XVisibilityEvent (__libmansuffix__)
|
2003-11-14 15:54:30 +00:00
|
|
|
.br
|
|
|
|
|
\fI\*(xL\fP
|