The Stump Window Manager 0.9.2 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News The Stump Window Manager 0.9.2 (Default branch)
# 1  
Old 02-20-2008
The Stump Window Manager 0.9.2 (Default branch)

Stumpwm is a tiling, keyboard driven X11 windowmanager written entirely in Common Lisp. While itis minimalistic in appearance, its fullcustomizability, event hooks, and 100% pure Lispimplementation make it startlingly powerful.License: GNU General Public License (GPL)Changes:
Bugs were fixed in several commands and the keyhandling.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
XReparentWindow(3X11)						     MIT X11R4						     XReparentWindow(3X11)

Name
       XReparentWindow - reparent windows

Syntax
       XReparentWindow(display, w, parent, x, y)
	  Display *display;
	  Window w;
	  Window parent;
	  int x, y;

Arguments
       display	 Specifies the connection to the X server.

       parent	 Specifies the parent window.

       w	 Specifies the window.

       x
       y	 Specify the x and y coordinatesof the position in the new parent window.

Description
       If the specified window is mapped, automatically performs an request on it, removes it from its current position in the hierarchy, and
       inserts it as the child of the specified parent.  The window is placed in the stacking order on top with respect to sibling windows.

       After reparenting the specified window, causes the X server to generate a event.  The override_redirect member returned in this event is
       set to the window's corresponding attribute.  Window manager clients usually should ignore this window if this member is set to Finally, if
       the specified window was originally mapped, the X server automatically performs a request on it.

       The X server performs normal exposure processing on formerly obscured windows.  The X server might not generate events for regions from the
       initial request that are immediately obscured by the final request.  A error results if:

       o    The new parent window is not on the same screen as the old parent window.

       o    The new parent window is the specified window or an inferior of the specified window.

       o    The specified window has a background, and the new parent window is not the same depth as the specified window.

       can generate and errors.

Diagnostics
       A value for a Window argument does not name a defined Window.

See Also
       XChangeSaveSet(3X11)
       X Window System: The Complete Reference, Second Edition, Robert W. Scheifler and James Gettys

															     XReparentWindow(3X11)