REF XWindowConstants A. Schoter, August 1991
COPYRIGHT University of Sussex 1991. All Rights Reserved.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
<<<<<<<<<<<<<<<<<<<<< >>>>>>>>>>>>>>>>>>>>>>
<<<<<<<<<<<<<<<<<<<<< X WINDOW CONSTANTS >>>>>>>>>>>>>>>>>>>>>>
<<<<<<<<<<<<<<<<<<<<< >>>>>>>>>>>>>>>>>>>>>>
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
This REF file describes the structures defined in LIB * XWindowConstants
as used by the procedures defined in LIB * XWindowAttributes and
LIB * XWindowExistence.
---------------------
1 List of procedures
---------------------
The procedures below are made available by doing:
Ÿ uses xlib;
Ÿ uses XWindowConstants;
For details see:
œ Xlib - C Language X Interface,
œ MIT X Consortium Standard,
œ X Version 11, Release 4
œ
œ Copyright (C) 1985, 1986, 1987, 1988, 1989 Massachusetts
œ Institute of Technology, Cambridge, Massachusetts, and
œ Digital Equipment Corporation, Maynard, Massachusetts.
XSetWindowAttributes [typedef]
This data structure is used for setting window attributes.
œ typedef struct {
œ Pixmap background_pixmap;
œ unsigned long background_pixel;
œ Pixmap border_pixmap;
œ unsigned long border_pixel;
œ int bit_gravity;
œ int win_gravity;
œ int backing_store;
œ unsigned long backing_planes;
œ unsigned long backing_pixel;
œ Bool save_under;
œ long event_mask;
œ long do_not_propagate_mask;
œ Bool override_redirect;
œ Colormap colormap;
œ Cursor cursor;
} XSetWindowAttributes;
background_pixmap is either a pixmap, or None or ParentRelative;
background_pixel is the background pixel; border_pixamp
specifies the border of the window; border_pixel is the pixel
value for the border; bit_gravity is a bit gravity value;
win_gravity is a window gravity value; backing_store is one of
NotUseful, WhenMapped or Always; backing_planes specifies the
planes to be preserved if possible; backing_pixel specifies the
value to be used in restoring planes; save_under specifies
whether bits under should be saved; event_mask is a set of
events that should be saved; do_not_propagate_mask specifies a
set of events that should not be propagated; override_redirect
is a boolean vaue for override-redirect; colormap is the
colormap to be associated with the window; cursor is the cursor
to be displayed, or None.
--- C.x/x/pop/ref/XWindowConstants
--- Copyright University of Sussex 1991. All rights reserved.