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.
It is provided "as is" without express or implied warranty.
unsigned long BlackPixel\^(\^Display *display\^, int \^screen_number\^);
unsigned long WhitePixel\^(\^Display *display\^, int \^screen_number\^);
int ConnectionNumber\^(\^Display *display\^);
Colormap DefaultColormap\^(\^Display *display\^, \^int screen_number\^);
int DefaultDepth\^(\^Display *display\^, \^int screen_number\^);
int *XListDepths\^(\^Display *display, int screen_number, int *count_return\^);
GC DefaultGC\^(\^Display *display\^, \^int screen_number\^);
Window DefaultRootWindow\^(\^Display *display\^);
Screen *DefaultScreenOfDisplay\^(\^Display *display\^);
int DefaultScreen\^(\^Display *display\^);
Visual *DefaultVisual\^(\^Display *display\^, \^int screen_number\^);
int DisplayCells\^(\^Display *display\^, \^int screen_number\^);
int DisplayPlanes\^(\^Display *display\^, \^int screen_number\^);
char *DisplayString\^(\^Display *display\^);
long XMaxRequestSize(\^Display *display\^);
long XExtendedMaxRequestSize(\^Display *display\^);
unsigned long LastKnownRequestProcessed\^(\^Display *display\^);
unsigned long NextRequest\^(\^Display *display\^);
int ProtocolVersion\^(\^Display *display\^);
int ProtocolRevision\^(\^Display *display\^);
int QLength\^(\^Display *display\^);
Window RootWindow\^(\^Display *display\^, \^int screen_number\^);
int ScreenCount\^(\^Display *display\^);
Screen *ScreenOfDisplay\^(\^Display *display, int screen_number\^);
char *ServerVendor\^(\^Display *display\^);
int VendorRelease\^(\^Display *display\^);
The BlackPixel macro returns the black pixel value for the specified screen.
The WhitePixel macro returns the white pixel value for the specified screen.
The ConnectionNumber macro returns a connection number for the specified display.
The DefaultColormap macro returns the default colormap ID for allocation on the specified screen.
The DefaultDepth macro returns the depth (number of planes) of the default root window for the specified screen.
The XListDepths function returns the array of depths that are available on the specified screen. If the specified screen_number is valid and sufficient memory for the array can be allocated, XListDepths sets count_return to the number of available depths. Otherwise, it does not set count_return and returns NULL. To release the memory allocated for the array of depths, use XFree .
The DefaultGC macro returns the default GC for the root window of the specified screen.
The DefaultRootWindow macro returns the root window for the default screen.
The DefaultScreenOfDisplay macro returns the default screen of the specified display.
The DefaultScreen macro returns the default screen number referenced in the XOpenDisplay routine.
The DefaultVisual macro returns the default visual type for the specified screen.
The DisplayCells macro returns the number of entries in the default colormap.
The DisplayPlanes macro returns the depth of the root window of the specified screen.
The DisplayString macro returns the string that was passed to XOpenDisplay when the current display was opened.
The XMaxRequestSize function returns the maximum request size (in 4-byte units) supported by the server without using an extended-length protocol encoding. Single protocol requests to the server can be no larger than this size unless an extended-length protocol encoding is supported by the server. The protocol guarantees the size to be no smaller than 4096 units (16384 bytes). Xlib automatically breaks data up into multiple protocol requests as necessary for the following functions: XDrawPoints , XDrawRectangles , XDrawSegments , XFillArcs , XFillRectangles , and XPutImage .
The XExtendedMaxRequestSize function returns zero if the specified display does not support an extended-length protocol encoding; otherwise, it returns the maximum request size (in 4-byte units) supported by the server using the extended-length encoding. The Xlib functions XDrawLines , XDrawArcs , XFillPolygon , XChangeProperty , XSetClipRectangles , and XSetRegion will use the extended-length encoding as necessary, if supported by the server. Use of the extended-length encoding in other Xlib functions (for example, XDrawPoints , XDrawRectangles , XDrawSegments , XFillArcs , XFillRectangles , XPutImage ) is permitted but not required; an Xlib implementation may choose to split the data across multiple smaller requests instead.
The LastKnownRequestProcessed macro extracts the full serial number of the last request known by Xlib to have been processed by the X server.
The NextRequest macro extracts the full serial number that is to be used for the next request.
The ProtocolVersion macro returns the major version number (11) of the X protocol associated with the connected display.
The ProtocolRevision macro returns the minor protocol revision number of the X server.
The QLength macro returns the length of the event queue for the connected display.
The RootWindow macro returns the root window.
The ScreenCount macro returns the number of available screens.
The ScreenOfDisplay macro returns a pointer to the screen of the specified display.
The ServerVendor macro returns a pointer to a null-terminated string that provides some identification of the owner of the X server implementation.
The VendorRelease macro returns a number related to a vendor's release of the X server.
\*(xL