The Stump Window Manager 0.9.0 (Default branch)


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

Stumpwm is a tiling, keyboard driven X11 window manager written entirely in Common Lisp. While it is minimalistic in appearance, its full customizability, event hooks, and 100% pure Lisp implementation make it startlingly powerful. License: GNU General Public License (GPL) Changes:
Virtual desktops, a status line, color text, Xinerama support, XRandR support, improved customizability, improved stability, and much more.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
XMoveWindow()															     XMoveWindow()

Name
  XMoveWindow - move a window.

Synopsis
  XMoveWindow(display, w, x, y)
	Display *display;
	Window w;
	int x, y;

Arguments
  display  Specifies a connection to an X server; returned from XOpenDisplay().

  w	   Specifies the ID of the window to be moved.

  x	   Specify the new x and y coordinates of the upper-left pixel of the window's border (or of the window itself, if it has no border),
  y	   relative to the window's parent.

Description
  XMoveWindow() changes the position of the origin of the specified window relative to its parent.  XMoveWindow() does not change the mapping
  state, size, or stacking order of the window, nor does it raise the window.  Moving a mapped window will lose its contents if:

  o  Its background_pixmap attribute is ParentRelative.

  o  The window is obscured by nonchildren and no backing store exists.

  If the contents are lost, exposure events will be generated for the window and any mapped subwindows.  Moving a mapped window will generate
  exposure events on any formerly obscured windows.

  If the override_redirect attribute of the window is False (see Volume One,  Chapter 4,  Window  Attributes)  and  the  window  manager  has
  selected  SubstructureRedirectMask on the parent, then a ConfigureRequest event is sent to the window manager, and no further processing is
  performed.

  If a client has selected StructureNotifyMask on the window, then a ConfigureNotify event is generated after the move takes place,  and  the
  event  will  contain	the final position of the window.  This is only useful in the case of top-level windows, since the window manager may
  modify or disallow moves.

Errors
  BadWindow

See Also
  XCirculateSubwindows(),  XCirculateSubwindowsDown(),	XCirculateSubwindowsUp(),  XConfigureWindow(),	XLowerWindow(),  XMoveResizeWindow(),
  XQueryTree(), XRaiseWindow(), XReparentWindow(), XResizeWindow(), XRestackWindows().

Xlib - Window Manipulation													     XMoveWindow()