|
XMonad.Util.XUtils | Portability | unportable | Stability | unstable | Maintainer | andrea.rossato@unibz.it |
|
|
|
|
|
Description |
A module for painting on the screen
|
|
Synopsis |
|
|
|
|
Usage:
|
|
See XMonad.Layout.Tabbed or XMonad.Layout.DragPane for usage
examples
|
|
|
Compute the weighted average the colors of two given Pixel values.
|
|
|
Create a simple window given a rectangle. If Nothing is given
only the exposureMask will be set, otherwise the Just value.
Use showWindow to map and hideWindow to unmap.
|
|
showWindow :: Window -> X () | Source |
|
Map a window
|
|
showWindows :: [Window] -> X () | Source |
|
the list version
|
|
hideWindow :: Window -> X () | Source |
|
unmap a window
|
|
hideWindows :: [Window] -> X () | Source |
|
the list version
|
|
deleteWindow :: Window -> X () | Source |
|
destroy a window
|
|
deleteWindows :: [Window] -> X () | Source |
|
the list version
|
|
|
:: Window | The window where to draw
| -> Dimension | Window width
| -> Dimension | Window height
| -> Dimension | Border width
| -> String | Window background color
| -> String | Border color
| -> X () | | Fill a window with a rectangle and a border
|
|
|
|
:: Window | The window where to draw
| -> XMonadFont | XMonad Font for drawing
| -> Dimension | Window width
| -> Dimension | Window height
| -> Dimension | Border width
| -> String | Window background color
| -> String | Border color
| -> String | String color
| -> String | String background color
| -> Align | String Alignment
| -> String | String to be printed
| -> X () | | Fill a window with a rectangle and a border, and write a string at given position
|
|
|
|
Get the Pixel value for a named color: if an invalid name is
given the black pixel will be returned.
|
|
|
Short-hand for fromIntegral
|
|
Produced by Haddock version 0.8 |