Go to the first, previous, next, last section, table of contents.


]create-window

Function: ]create-window { [keyvals] -> window }
file: 10-C-utils.t
package: muf
status: alpha

This function accepts a block of keyValue pairs, then creates and returns an X window.

Only the following keys are allowed:

:background
If value satisfies integer?, specifies background color; Otherwise ignored.
:backing_pixel
Currently ignored.
:backing_planes
Currently ignored.
:backing_store
Currently ignored.
:bit_gravity
Currently ignored.
:border
Currently ignored.
:border_width
Currently ignored.
:class
Must be one of: :copy :input-output :input-only
:colormap
Currently ignored.
:cursor
Currently ignored.
:depth
Currently ignored.
:do_not_propagate_mask
Currently ignored.
:event_mask
If value satisfies integer?, specifies event mask; Otherwise ignored. The mask should ultimately have been created via ]make-event-mask.
:gravity
Currently ignored.
:height
If value satisfies integer?, specifies window height; Otherwise ignored.
:override_redirect
Currently ignored.
:parent
If value satisfies window?, specifies window parent; Otherwise ignored.
:save_under
Currently ignored.
:visual
Currently ignored.
:width
If value satisfies integer?, specifies window width; Otherwise ignored.
:x
If value satisfies integer?, specifies window x coordinate; Otherwise ignored.
:y
If value satisfies integer?, specifies window y coordinate; Otherwise ignored.


Go to the first, previous, next, last section, table of contents.