dynamic window manager 4.8 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News dynamic window manager 4.8 (Default branch)
# 1  
Old 03-13-2008
dynamic window manager 4.8 (Default branch)

dwm is a fast and simple window manager for X11.It manages windows in tiled and floating layouts.Either layout can be applied dynamically,optimizing the environment for the application inuse and the task performed. Windows can be taggedwith one or multiple tags. Selecting certain tagsdisplays all windows that are accordingly tagged.dwm is the little brother of wmii.License: MIT/X Consortium LicenseChanges:
This version contains two new layouts, the horizontal tile layout and the monocle layout. It also allows you more fine-grained control of the bar position and layout areas due to the introduction of several new variables that can be changed during runtime (if a related function is implemented).Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Tk_MoveToplevelWindow(3tk)				       Tk Library Procedures					Tk_MoveToplevelWindow(3tk)

__________________________________________________________________________________________________________________________________________________

NAME
Tk_MoveToplevelWindow - Adjust the position of a top-level window SYNOPSIS
#include <tk.h> Tk_MoveToplevelWindow(tkwin, x, y) ARGUMENTS
Tk_Window tkwin (in) Token for top-level window to move. int x (in) New x-coordinate for the top-left pixel of tkwin's border, or the top-left pixel of the decorative border supplied for tkwin by the window manager, if there is one. int y (in) New y-coordinate for the top-left pixel of tkwin's border, or the top-left pixel of the decorative border supplied for tkwin by the window manager, if there is one. _________________________________________________________________ DESCRIPTION
In general, a window should never set its own position; this should be done only by the geometry manger that is responsible for the win- dow. For top-level windows the window manager is effectively the geometry manager; Tk provides interface code between the application and the window manager to convey the application's desires to the geometry manager. The desired size for a top-level window is conveyed using the usual Tk_GeometryRequest mechanism. The procedure Tk_MoveToplevelWindow may be used by an application to request a particular position for a top-level window; this procedure is similar in function to the wm geometry Tcl command except that negative offsets cannot be speci- fied. It is invoked by widgets such as menus that want to appear at a particular place on the screen. When Tk_MoveToplevelWindow is called it does not immediately pass on the new desired location to the window manager; it defers this action until all other outstanding work has been completed, using the Tk_DoWhenIdle mechanism. KEYWORDS
position, top-level window, window manager Tk Tk_MoveToplevelWindow(3tk)