Next: Xwindow
Up: Xwindow Interface
Previous: Xwindow Interface
x:*display* [variable]
- X's display ID (integer).
x:*root* [variable]
- default root window object.
x:*screen* [variable]
- default screen ID (integer).
x:*visual* [variable]
- default visual ID (integer).
x:*blackpixel* [variable]
x:*whitepixel* [variable]
x:*fg-pixel* [variable]
- default foreground pixel referenced at window creation,
normally *blackpixel*.
x:*bg-pixel* [variable]
- background pixel referenced at window creation,
normally *whitepixel*
x:*color-map* [variable]
- the system's default color-map
x:*defaultGC* [variable]
- the default gcontext referenced at pixmap creation.
x:*whitegc* [variable]
- GC whose foreground color is white.
x:*blackgc* [variable]
- GC whose foreground color is black.
*gray-pixmap* [variable]
- the result of (make-gray-pixmap 0.5)
*gray25-pixmap* [variable]
- x16 pixmap,
a quarter of pixels are *fg-pixel* and three quarters *bg-pixel*.
*gray50-pixmap* [variable]
- x16 pixmap, a half of pixels are *fg-pixel*.
*gray75-pixmap* [variable]
- x16 pixmap, three quarters of pixels are black.
*gray25-gc* [variable]
- % gray GC made from *gray25-pixmap*.
*gray50-gc* [variable]
- % gray GC made from *gray50-pixmap*.
*gray75-gc* [variable]
- % gray GC made from *gray75-pixmap*.
*gray* [variable]
*bisque1* [variable]
*bisque2* [variable]
*bisque3* [variable]
*lightblue2* [variable]
*lightpink1* [variable]
*maroon* [variable]
*max-intensity* [variable]
font-cour8 [variable]
- (font-id "*-courier-medium-r-*-8-*")
font-cour10 [variable]
- (font-id "*-courier-medium-r-*-10-*")
font-cour12 [variable]
- (font-id "*-courier-medium-r-*-12-*")
font-cour14 [variable]
- (font-id "*-courier-medium-r-*-14-*")
font-cour18 [variable]
- (font-id "*-courier-medium-r-*-18-*")
font-courb12 [variable]
- (font-id "*-courier-bold-r-*-12-*")
font-courb14 [variable]
- (font-id "*-courier-bold-r-*-14-*")
font-courb18 [variable]
- (font-id "*-courier-bold-r-*-18-*")
font-helvetica-12 [variable]
- (font-id "*-Helvetica-Medium-R-Normal-*-12-*")
font-lucidasans-bold-12 [variable]
- (font-id "lucidasans-bold-12")
font-lucidasans-bold-14 [variable]
- (font-id "lucidasans-bold-14")
font-helvetica-bold-12 [variable]
- (font-id "*-Helvetica-Bold-R-Normal-*-12-*")
font-a14 [variable]
- (font-id "*-fixed-medium-r-normal-*-14-*")
x:*xwindows* [variable]
- a list of all windows including subwindows
created and maintained by EusLisp.
x:*xwindow-hash-tab* [variable]
- a hash table to look up the xwindow object
by its drawable ID.
In the event structure obtained by x:nextevent is a window ID,
and x:window-main-loop calls x:event-window to know
the corresponding xwindow object using this table.
xflush [function]
- sends all commands retained in the Xlib command buffer to Xserver.
Since Xlib buffers output to Xserver,
commands you issued commands to Xserver are not executed immediately.
This is necessary to decrease network traffic and the frequency
of process switching.
To flush the command buffer to see the effects of the commands,
use xflush or send :flush
message to xwindow objects.
Next: Xwindow
Up: Xwindow Interface
Previous: Xwindow Interface
Hirofumi Nakagaki
Fri Mar 22 12:46:38 JST 1996