Next: , Previous: , Up: Low-level X Interface   [Contents][Index]


25.2 X Windows

Function: x-create-window (x . y) (width . height) bw attrs #!optional event-handler

Create a new X window at (x, y) with dimensions (width, height) and border width bw. Attrs is an alist mapping attribute names to values. Allowed attribute names are background and border-color.

Function: x-configure-window window attrs

Reconfigure the window associated with window. Attrs is an alist mapping attribute names to values. Allowed attribute names are x, y, width, height and border-width.

Function: x-destroy-window window

Destroy the X window window.

Function: x-map-window window #!optional unraised

Map the window associated with window to the display. If unraised is not specified, the window will be mapped at the top of the window stack.

Function: x-unmap-window window

Unmap the window associated with window.

Function: x-window-id window

Return the X window ID (an integer) associated with window.

Function: x-window-p obj

Return t if obj is associated with an X window object.

Function: x-change-window-attributes window attrs

Set attributes of the window associated with window. Attrs is an alist mapping attribute names (symbols) to values. Allowed attribute names are background and border-color.