xmonad-contrib-0.13: Third party extensions for xmonad

Copyright(c) Jan Vornberger 2009
Alejandro Serrano 2010
LicenseBSD3-style (see LICENSE)
Maintainertrupill@gmail.com
Stabilityunstable
Portabilitynot portable
Safe HaskellNone
LanguageHaskell98

XMonad.Layout.ImageButtonDecoration

Contents

Description

A decoration that includes small image buttons on both ends which invoke various actions when clicked on: Show a window menu (see XMonad.Actions.WindowMenu), minimize, maximize or close the window.

Note: For maximizing and minimizing to actually work, you will need to integrate XMonad.Layout.Maximize and XMonad.Layout.Minimize into your setup. See the documentation of those modules for more information.

Synopsis

Usage:

You can use this module with the following in your ~/.xmonad/xmonad.hs:

import XMonad.Layout.ImageButtonDecoration

Then edit your layoutHook by adding the ImageButtonDecoration to your layout:

myL = imageButtonDeco shrinkText defaultThemeWithImageButtons (layoutHook def)
main = xmonad def { layoutHook = myL }

imageTitleBarButtonHandler :: Window -> Int -> Int -> X Bool #

A function intended to be plugged into the decorationCatchClicksHook of a decoration. It will intercept clicks on the buttons of the decoration and invoke the associated action. To actually see the buttons, you will need to use a theme that includes them. See defaultThemeWithImageButtons below.

data ImageButtonDecoration a #

Instances

Eq a => DecorationStyle ImageButtonDecoration a # 

Methods

describeDeco :: ImageButtonDecoration a -> String #

shrink :: ImageButtonDecoration a -> Rectangle -> Rectangle -> Rectangle #

decorationEventHook :: ImageButtonDecoration a -> DecorationState -> Event -> X () #

decorationCatchClicksHook :: ImageButtonDecoration a -> Window -> Int -> Int -> X Bool #

decorationWhileDraggingHook :: ImageButtonDecoration a -> CInt -> CInt -> (Window, Rectangle) -> Position -> Position -> X () #

decorationAfterDraggingHook :: ImageButtonDecoration a -> (Window, Rectangle) -> Window -> X () #

pureDecoration :: ImageButtonDecoration a -> Dimension -> Dimension -> Rectangle -> Stack a -> [(a, Rectangle)] -> (a, Rectangle) -> Maybe Rectangle #

decorate :: ImageButtonDecoration a -> Dimension -> Dimension -> Rectangle -> Stack a -> [(a, Rectangle)] -> (a, Rectangle) -> X (Maybe Rectangle) #

Read (ImageButtonDecoration a) # 
Show (ImageButtonDecoration a) #