xmonad-contrib-0.12: Third party extensions for xmonad

Copyright(c) David Roundy <droundy@darcs.net>
LicenseBSD
Maintainernone
Stabilityunstable
Portabilityportable
Safe HaskellNone
LanguageHaskell98

XMonad.Layout.LayoutModifier

Contents

Description

A module for writing easy layout modifiers, which do not define a layout in and of themselves, but modify the behavior of or add new functionality to other layouts. If you ever find yourself writing a layout which takes another layout as a parameter, chances are you should be writing a LayoutModifier instead!

In case it is not clear, this module is not intended to help you configure xmonad, it is to help you write other extension modules. So get hacking!

Synopsis

Usage

The LayoutModifier class is provided to help extension developers write easy layout modifiers. End users won't find much of interest here. =)

To write a layout modifier using the LayoutModifier class, define a data type to represent the layout modification (storing any necessary state), define an instance of LayoutModifier, and export an appropriate function for applying the modifier. For example:

data MyModifier a = MyModifier MyState
  deriving (Show, Read)

instance LayoutModifier MyModifier a where
  -- override whatever methods from LayoutModifier you like

modify :: l a -> ModifiedLayout MyModifier l a
modify = ModifiedLayout (MyModifier initialState)

When defining an instance of LayoutModifier, you are free to override as many or as few of the methods as you see fit. See the documentation below for specific information about the effect of overriding each method. Every method has a default implementation; an instance of LayoutModifier which did not provide a non-default implementation of any of the methods would simply act as the identity on any layouts to which it is applied.

For more specific usage examples, see

and several others. You probably want to start by looking at some of the above examples; the documentation below is detailed but possibly confusing, and in many cases the creation of a LayoutModifier is actually quite simple.

Important note: because of the way the LayoutModifier class is intended to be used, by overriding any of its methods and keeping default implementations for all the others, LayoutModifier methods should never be called explicitly. It is likely that such explicit calls will not have the intended effect. Rather, the LayoutModifier methods should only be called indirectly through the LayoutClass instance for ModifiedLayout, since it is this instance that defines the semantics of overriding the various LayoutModifier methods.

The LayoutModifier class

class (Show (m a), Read (m a)) => LayoutModifier m a where Source #

Methods

modifyLayout :: LayoutClass l a => m a -> Workspace WorkspaceId (l a) a -> Rectangle -> X ([(a, Rectangle)], Maybe (l a)) Source #

modifyLayout allows you to intercept a call to runLayout before it is called on the underlying layout, in order to perform some effect in the X monad, and/or modify some of the parameters before passing them on to the runLayout method of the underlying layout.

The default implementation of modifyLayout simply calls runLayout on the underlying layout.

modifyLayoutWithUpdate :: LayoutClass l a => m a -> Workspace WorkspaceId (l a) a -> Rectangle -> X (([(a, Rectangle)], Maybe (l a)), Maybe (m a)) Source #

Similar to modifyLayout, but this function also allows you update the state of your layout modifier(the second value in the outer tuple).

If both modifyLayoutWithUpdate and redoLayout return a modified state of the layout modifier, redoLayout takes precedence. If this function returns a modified state, this state will internally be used in the subsequent call to redoLayout as well.

handleMess :: m a -> SomeMessage -> X (Maybe (m a)) Source #

handleMess allows you to spy on messages to the underlying layout, in order to have an effect in the X monad, or alter the layout modifier state in some way (by returning Just nm, where nm is a new modifier). In all cases, the underlying layout will also receive the message as usual, after the message has been processed by handleMess.

If you wish to possibly modify a message before it reaches the underlying layout, you should use handleMessOrMaybeModifyIt instead. If you do not need to modify messages or have access to the X monad, you should use pureMess instead.

The default implementation of handleMess calls unhook when receiving a Hide or ReleaseResources method (after which it returns Nothing), and otherwise passes the message on to pureMess.

handleMessOrMaybeModifyIt :: m a -> SomeMessage -> X (Maybe (Either (m a) SomeMessage)) Source #

handleMessOrMaybeModifyIt allows you to intercept messages sent to the underlying layout, in order to have an effect in the X monad, alter the layout modifier state, or produce a modified message to be passed on to the underlying layout.

The default implementation of handleMessOrMaybeModifyIt simply passes on the message to handleMess.

pureMess :: m a -> SomeMessage -> Maybe (m a) Source #

pureMess allows you to spy on messages sent to the underlying layout, in order to possibly change the layout modifier state.

The default implementation of pureMess ignores messages sent to it, and returns Nothing (causing the layout modifier to remain unchanged).

redoLayout :: m a -> Rectangle -> Maybe (Stack a) -> [(a, Rectangle)] -> X ([(a, Rectangle)], Maybe (m a)) Source #

redoLayout allows you to intercept a call to runLayout on workspaces with at least one window, after it is called on the underlying layout, in order to perform some effect in the X monad, possibly return a new layout modifier, and/or modify the results of runLayout before returning them.

If you don't need access to the X monad, use pureModifier instead. Also, if the behavior you need can be cleanly separated into an effect in the X monad, followed by a pure transformation of the results of runLayout, you should consider implementing hook and pureModifier instead of redoLayout.

On empty workspaces, the Stack is Nothing.

The default implementation of redoLayout calls hook and then pureModifier.

pureModifier :: m a -> Rectangle -> Maybe (Stack a) -> [(a, Rectangle)] -> ([(a, Rectangle)], Maybe (m a)) Source #

pureModifier allows you to intercept a call to runLayout after it is called on the underlying layout, in order to modify the list of window/rectangle pairings it has returned, and/or return a new layout modifier.

The default implementation of pureModifier returns the window rectangles unmodified.

hook :: m a -> X () Source #

hook is called by the default implementation of redoLayout, and as such represents an X action which is to be run each time runLayout is called on the underlying layout, after runLayout has completed. Of course, if you override redoLayout, then hook will not be called unless you explicitly call it.

The default implementation of hook is return () (i.e., it has no effect).

unhook :: m a -> X () Source #

unhook is called by the default implementation of handleMess upon receiving a Hide or a ReleaseResources message.

The default implementation, of course, does nothing.

modifierDescription :: m a -> String Source #

modifierDescription is used to give a String description to this layout modifier. It is the empty string by default; you should only override this if it is important that the presence of the layout modifier be displayed in text representations of the layout (for example, in the status bar of a XMonad.Hooks.DynamicLog user).

modifyDescription :: LayoutClass l a => m a -> l a -> String Source #

modifyDescription gives a String description for the entire layout (modifier + underlying layout). By default, it is derived from the concatenation of the modifierDescription with the description of the underlying layout, with a "smart space" in between (the space is not included if the modifierDescription is empty).

Instances

Window)), May4.9.0.2 href="XMonad-Layout-LayoutModifier.html#t:La:LayoutHintsToCentef="file:///usr/share/doc/libghc-xmonad-doc/html/XMonad-Core.html#t:X">Xout-LayoutModifier.html#line-145" class="link">Source #Window, Maybe e/doctml/XMonad-StackSet.html#t:Stack">Stack Window)), May4.>.0."#v:pureMess">pureMess ::

#String X () #String May4.>.0."#v:pureMess">pureMess :: #

#

pureMess :: #

#

pef="="link">Source

Window) href="file:///usr/share/doc/html#t:Gaps">Gaps a -> X () X#

#

hef="="link">Source

RectangleWorkspaceId (l Source

X () XWindow) href="file:///usr/share/doc/html#t:Gaps">Gaps a -> RectangleWorkspaceId (l Source

X () XWindow) href="file:///usr/share/doc/html#t:Gaps">Gaps a -> X (S.html#t:WorkspaceId">WorkspaceId (l a) a -> #

pureMess :: Window -> WorkspaceId (l a) a -> RectangleWorkspaceId (l Source

X () XWindow) href="file:///">#

modifierDescription.html#handibghyoutModifier.html#handleMess" class="link">Source

Window, Rectangle)]share/doc/libghc-x11-doc/html/Graphics-X11-Types.html#t:Window">Window)), May4.9.0.0/Daries/base-4.9.0.0/Data-Maybe.htm><.1n">modifierDescription.html#handibghyoutModifier.html#handleMess" class="link">Source

Window, Rectangle)]share/doc/libghc-x11-doc/html/Grap-doc/htmref="file:///usr/share/doc/libghc-x11-doc/html/Graphics-X11-Xl class="link">Source<11-doc/html/Graphics-X11-Xlib-Types.html#t:Rectangle class="link">Source< 1href="file:///usr/shshare/ics-X11-Types.html#t:Window">Window, Rectangle)]share/doc/libghc-x11-doc/html/Graphics-X11-Types.html#t:Window">Window)), May4.9.0.0/Daries/base-4.9.0h0/Data-Maybe.htm><.1n">modifierDescription.html#handibghyoutModifier.html#handleMess" class="link">Source

Window, Rectangle)]share/doc/libghc-x11-doc/html/Grap-doc/htmref="file:///usr/share/doc/libghc-x11-doc/html/Graphics-X11-Xl class="link">Source<11-doc/html/Graphics-X11-Xlib-Types.html#t:Rectangle class="link">Source< 1href="file:///usr/shshare/ics-X11-Types.html#t:Window">Window, Rectangle)]share/doc/liypes.html#t:Window">Window Source<11-doc/htad-Layout-Gaps.html#t:Gaps">Gaps a)) Source Rectangle)]share/doc/liypes.html#t:Window">Window Source<11-doc/htad-Layout-Gaps.html#t:Gaps">Gaps a)) Source Rectangle)]shodifierDescription">modifierDescription :: Snn11-Types.hut-LayoutModifice #

Source<11-doc/html/Graphics-X11-Xlib-Types.html#t:Rectangle cla///usr/share/doc/libghc-xmonad-doc/html/XMonad-Core.html#t:X">X () XWindow) href="file:///">#

modifierDescription :: Maybe (Either (<modifierDescription :: Workspas.h/share/doc/ef="src/XMonad-Layout-LayoutModifier.html#unhook" class="link">Source<11-doc/html/Gr="self="file:///usr/share/doc/libghc-x11-doc/html/Graphics-X11-Xl class="link">S-doc/html/Graphics-X11-Types.html#t:Window">Window, WindowNavigationXout-LayoutpaceId">Workspas.h/share/doc/ef="src/XMonad-Layout-LayoutModifier.html#unhook" class="linption">modifierDescription :: Source<11-doc/html/Gr="self="file:///usr/share/doc/libghc-x11-dlass="link">S-doc/html/Graphics-X11-Types.html#t:Window">Window,

pureMess :: #

#

pef="="link">Source

W.html#t:Rectangle">Rectangle -> Source#pureMes href="XMonad-Layout-Magnifie#

W.html#t:Rectangle">Rectangle -> String May4.>.0."#v:pureMess">pureMess :: #

X ([(a, Source #
pureMes href="XMonad-Layoutdoc/libghc-x11-doc/html/Graphics-X11-Types.hcs-e/doc/ghc-doc/html/libraries/base-4.9.0.0/Data-Maybe.html#t:Maybec"/libghhtml 1Window">W.html#t:Rectangle">Rectangle -> String pureMess :: LayoutClass l1 a, LayoutClass l2 a) => l1 a -> u2 a -> CombineTwo (DragPane ()) l1 l2 a infixr 6

#String Rectangle)], String Rectangle)], String R> :: Rectangle)], String handleMess :: LayoutHintsToCenter Window -> pureMess :: LayoutHintsToCenter WindowSource#pureMes href="XMonad-Layout-Magnifie#

W.html#t:Rectangle">Rectangle -> Window) #

pureMes href="XMonad-Layout-Magnifie#

String #Window)), Rectangle)], unhook :: Sou/usr/shaMes hrindow"/html/Graphics-X11-Types.hcs-e/doc/ghc-doc/html/libraries/base-4.9.0.0/Data-Maybout-Magnifie#

X (

String#Window)), Rectib-Types.html#t:Rectangle">Rectangle)], String Gaps a -> XayoutModifier.html#m

Rectangle -> SourceString StringRectangle)]share/doc/libghc-x11-doc/html/Graphics-X11-Types.html#t:Window">Window)), May4.9.0.0/Da/Graphics-X11-Xlib-Types.html#t:Rectangle">Rectangle)]share/doc/libghc-x11-doc/html/Graphics-X11-Types.html#t:Window">Window)), May4.9t-LayoutHc/libga> :: Source< 1href="file:///usr/shshare/ics-X11-Types.html#t:Window">Window, Gaps () Set.html#:Workspace">Workspace #difier.html#t:ModifiedLayout">ModifiedLayout May4.9.0.2 href="XMonad-Layout-LayoutModifier.htmhc-xmonad-doc/html/XMonad-Core.html#t:X">X () Maybe (GapsGaps () Set.html#:Workspace">Workspace nad-Layout-LayoutModifier.html#line-145" class="link">Source #

LayoutModifier WithBorder Window Source # 
LayoutModifier BoringWindows Window Source # 
LayoutModifier DraggingVisualizer Window Source # 
Eq w => LayoutModifier AutoMaster w Source # 
LayoutModifier TopRightMaster Window Source # 
LayoutModifier CenteredMaster Window Source # 
LayoutModifier Rename a Source # 
LayoutModifier UnEscape a Source # 
LayoutModifier AddRoster Window Source # 
LayoutModifier Selection a Source # 
LayoutModifier LimitWindows a Source # 
LayoutModifier AddMaster Window Source # 
LayoutModifier UseTransientFor Window Source # 
LayoutModifier TrackFloating Window Source # 
LayoutModifier Minimize Window Source # 
LayoutModifier Maximize Window Source # 
LayoutModifier FullscreenFloat Window Source # 
LayoutModifier FullscreenFocus Window Source # 
LayoutModifier FullscreenFull Window Source # 
LayoutModifier Monitor Window Source # 
LayoutModifier Stoppable Window Source # 
LayoutModifier SmartSpacingWithEdge a Source # 
LayoutModifier SmartSpacing a Source # 
LayoutModifier SpacingWithEdge a Source # 
LayoutModifier Spacing a Source # 
LayoutModifier WorkspaceCursors a Source # 
(Show a, Read a, Eq a) => LayoutModifier WindowArranger a Source # 
LayoutModifier MagicFocus Window Source # 
LayoutModifier Magnifier Window Source # 
LayoutModifier ShowWName a Source # 
LayoutModifier Reflect a Source # 
LayoutModifier MouseResize Window Source # 
LayoutModifier BorderResize Window Source # 
LayoutModifier ResizeScreen a Source # 
LayoutModifier WorkspaceDir Window Source # 
LayoutModifier AvoidStruts a Source # 
LayoutModifier WindowNavigation Window Source # 
LayoutModifier Gaps a Source # 
LayoutModifier LayoutHintsToCenter Window Source # 

Methods

modifyLayout :: LayoutClass l Window => LayoutHintsToCenter Window -> Workspace WorkspaceId (l Window) Window -> Rectangle -> X ([(Window, Rectangle)], Maybe (l Window)) Source #

modifyLayoutWithUpdate :: LayoutClass l Window => LayoutHintsToCenter Window -> Workspace WorkspaceId (l Window) Window -> Rectangle -> X (([(Window, Rectangle)], Maybe (l Window)), Maybe (LayoutHintsToCenter Window)) Source #

handleMess :: LayoutHintsToCenter Window -> SomeMessage -> X (Maybe (LayoutHintsToCenter Window)) Source #

handleMessOrMaybeModifyIt :: LayoutHintsToCenter Window -> SomeMessage -> X (Maybe (Either (LayoutHintsToCenter Window) SomeMessage)) Source #

pureMess :: LayoutHintsToCenter Window -> SomeMessage -> Maybe (LayoutHintsToCenter Window) Source #

redoLayout :: LayoutHintsToCenter Window -> Rectangle -> Maybe (Stack Window) -> [(Window, Rectangle)], Maybe (WindowNavigation Rectangle)], Maybe (l a)) X (Maybe (LayoutHintsToCenter Maybe (LayoutHintsToCenter Maybe e/doc/libghc-x11-doc/html/Graphics-X11-Types.html#t:Window">Window, WindowNavigation Rectangle)], Rectangle)], Maybe (Gaps a)) String Source #

unhook :: Gaps a -> X () Source #

modifierDescription :: LayoutHintsToCenter Maybe e/doc/libghc-x11-doc/html/Graphics-X11-Types.html#t:Window">Window, Maybe e/doc/libghc-x11-doc/html/Graphics-X11-Types.html#t:Window">Window, Maybe e/doc/libghc-x11-doc/html/Graphics-X11-Types.html#t:Window">Window, Maybe e/doctml/XMonad-StackSet.html#t:Stack">Stack Maybe (Gaps a -> X () Maybe (Gaps a -> BorderResize Gaps a -> X () SourceSomeMessage -> Maybe (Maybe (Gaps a -> X () X (([(Window, RectangleWorkspaceId (l Window) Window -> WorkspaceId (l a) a -> RectangleWindow, #

 
X () SourceSomeMessa/a> Gaps a -> Window) SomeMessage)) Source #

pureMess :: Window -> SomeMhref="#v:handleMessOrMaybeModifyIt" class="selflink">#

pureMess :: #

pureMess :: #

pureMess :: Maybe (pureMess :: #

LayoutHintsToCenterMaybe (LayoutHintsToCenter #

#

pureMess :: Stack Maybe (Gaps a -> Source #

pureMess :: #

pureMess :: LayoutHintsToCenter Window -> #

pureMess :: #

pureMess :: redoLayout :: LayoutHintsToCenter Window (Gaps a)) Source #

X (Source #

#

WindowNavigation Window -> LayoutHintsToCenter Gaps a -> Workspace WorkspaceId (l a) a -> Rectangle -> X ([(a, Rectangle)], oc/libghc-xmonad-doc/html/XMonad-StackSet.html#t:Workspace">Workspaw">Window)) LayoutHintsToCenter Gaps a -> Workspace #Source #

Window -> LayoutHintsToCenter Gaps a -> Gaps a)) Source #

Lay/p>

redoLayout :: WindowNavigation Gaps a)) Source #

Lay/p> :: Gaps a -> Workspace Workspas.html#t:Rectangle">Rectangle)], Rectangle)], unhook :: Gaps a -> XayoutModifier.html#modifyLayoutWithUpdate" class="link">Source #

Lay/p> -> String X () Source #

modare/doc/libghc-xmonad-doc/html/XMonad-Core.hter (BorderResize Maybe e/doc/libghc-x11-doc/html/Graphics-X11-Types.html#t:Window">Window, Maybe e/doc/libghc-x11-doc/html/Graphics-X11-Types.html#t:Window">Window, Maybe e/doc/libghc-x11-doc/html/Gt:String">String Source X () Source<11-doc/html/Graphics-X11-Xlib-Types.html#t:Rectangle">Rectangle -> Source<11-doc/html/Graphics-X11-Xlib-Types.html#t:Rectangle">Rectangle-doc/html/XMonad-Stacka href="file:///us.9.0.0/Data-Maybe.html#t:Maybe">Maybe e/doc/libghc-x11-doc/html/Graphics-X11-Types.html#t:Window">Window, Maybe e/doc/libghc-xad-Core.html#t:X">X () Source<11-doc/html/Graphics-X11-Xlib-Types.html#t:Rectangle">Rectangle -> SourceSomeMessage -> MaybeRectangle -> Source be.html#t:Maybe">Maybe (MaybeRectangle ->-> WorkspaceId (l a) a -> RectangleWindow, #

 
Stack Maybe (Gaps a -> Window, RectangleWorkspaceId (l Source #

handleMessOrMaybeModifyIt :: LayoutHintsToCenter (l Source #

handleMessOrMaybeMef="#v:handleMess" class="selflink">#

Window) href="file:///usr/share/doc/libghc-x11-doc/html/Graphics-X11-Xlib-Types.html#t:Rectangle">RectangleWorkspaceId (l Source

Window) href="file:///usr/share/doc/libghc-x11-doc/html/Graphics-X11-Xlib-Types.html#t:Rectangle">Reouss="selflink">#

pureMess :: Source<11-doc/html/Graphics-X11-Xlib-Types.html#t:Rectangle">Rectangle -> SourceMaybe (pureMess :: Workspace WorkspaceId (l a) a -> #

pureMess :: Source<11-doc/html/Graphicsr/share/doc/libghc-x11-doc/html/Graphics-X11-Types.html#tc:LayoutMooutHints/doc/ghc-doc/html/libraries/base-4.9.0.0/Data-Maybe.html#t:Maybe">MaybeRectangle ->-> LayoutHintsToCenter Rectangle ->>

#

pureMess :: Stack Maybe (Gaps a -> X (Source LayoutHintsToCenter X (S.html#t:WorkspaceId">WorkspaceId (l a) a -> #

pureMess :: Window -> WorkspaceId (l a) a -> X (Source LayoutHintsToCenter Stack Maybe (LayoutHintsToCenter Window)) Source #

Lay/p>

Gaps a -> Workspace nk">#

pureMess :: #

Lay/p> -> Maybe (X ([(a, Rectangle)], oc/libghc-xmonad-doc/html/XMonad-StackSet.htmlsr/share/doc/libghc-x11-doc/html/Graphics-X11-Types">Gaps a -> Workspace a -> Workspace nk">#

pureMess :: X ([(a, Workspace nk">#< file:///usr/share/doc/libghc-xmonad-doc/html/XMonad-Core.html#t:X">X () Set.html#:Workspace">Workspace a -> Workspace nk">#

pureMess :: X ([(a, Workspace nk">#

pureMess :: X ([(a, Workspace nk">#

pureMess :: a -> Source #

modifierDescription :: Set.html#:Workspace">Workspace a -> a -> Workspace Source<11-doc/html/Graphics-X11-Xlib-Types.html#t:Rectangle">Rectangle -> WorkspaceId (l Window) Window -> R> :: WindowNavigation Source #

modifierDescription :hare/doc/libghc-xmonad-doc/htmlre/do:Gaps a -> Gaps a -> X () Maybe (Gaps a -> BorderResize Gapsc/ghc-doc/html/libraries/base-4.9.0.0/Data-May>X () Source be.html#t:Maybe">Maybe (MaybeRectangle ->-> WorkspaceId (l a) a -> RectangleWindow, #

 
Stack LayoutHintsToCenterMaybe (LayoutHintsToCenter #

modifierDescription :: Avsoile:///usr/share/doc/libghc-x11-doc/html/Graphics-X11-Xlib-Types.html#t:Rectangle">Rectangle -> Maybe (Stack SomeMessage -> X (Maybe (Either (Gaps a) Maybe (Gaps a -> #

Stack a -> Maybe (Either (Gaps a) pureMess :: Window, Rectangle)]share/doc/libghc-x11-doc/html/Graphics-X11-Types.html#t:Window">Window)), May4.9.0.0/Daries/base-4.9.0.0/Data-Maybe.htm>

pureMess ::

#

pureMess :: Stack Window, #

pureMess :: Stack <"file://Siy/usr/share/ics-X11-Types.html#t:Window">Window, Rc">pureMess :: Stack Window href="/usr/share/doc/libghc-x11-doc/html/Graphics-X11-Xlib-Types.html#t:Rectangle">RectangleWorkspaceId (l Source

Window) href="file:///usr/share/doc/libghc-x11-doc/html/Graphics-X11-Xlib-Types.html#t:Rectangle">Reouss="selflink">#

Window, Rectangle)], Maybe (l Window)), href="/usr/share/doc/libghc-x11-doc/html/Graphics-X11-Xlib-Types.html#t:Rectangle">RectangleWorkspaceId (l RectangleWorkspaceId (l Source

WorkspaceId (l a) a -> RectangleWorkspaceId (l Source #

nk">#

pureMess :: #

pef="="link">Source

Window) href="file:///usr/share/doc/libghc-x11-doc/htmref="file:///usr/share/doc/libghc-x11-doc/html/Graphics-X11-Xlib-Types.html#t:Rectangle">RectangleWorkspaceId (l Source Source<11-doc/html/Graphics-X11-Xlib-Types.html#t:Rectangle">Rectangle -> SourceMaybe (pureMess :: #

pef="="link">Source

Window) href="file:///usr/share/doc/libghc-x11-doc/htmref="file:///usr/share/doc/libghc-x11-doc/html/Graphics-X11-Xl class="link">Source<11-doc/html/Graphics-X11-Xlib-Types.html#t:Rectangle class="link">Source

Window) href="file:///usr/share/doc/libghc-x11-doc/html/Graphics-X11-Xlib-Types.html#t:Rectangle">Reous>Maybe (l a)) X (Source #

modifierDescription.html#handleMess" class="link">Source Source<11-doc/html/Graphics-X11-Xlib-Types.html#t:Rectangle">Rectangle -> Rectangle)], #

pef="="link">Source

Window) href="file:///usr/share/doc/libghc-x11-doc/htmref="file:///usr/share/doc/libghc-x11-doc/html/Graphics-X11-Xl class="link">Snn11-Types.hut-LayoutModifier.html#handleMessOrMaybeModifyIt" class="link">Source #

pureMess :: Rectangle)], Window) href="file:///usr/share/doc/libghc-x11-doc/htmref="file://le:-Core.html#t:X">X () Source<11-doc/html/Graphics-X11-Xlib-Types.html#t:Rectangle">Rectangle -> ///usr.0/Data-Maybe.html#t:Maybe">Maybe (LayoutHintsToCenter Source<11-doc/html/Graphics-X11-Xlib-Types.html#t:Rectangle">Rectangle -a href="file:///usr/share/doc/libghf="file:///usr/share/doc/libghc-x11-doc/html/Graphics-X11-Types.html#tc:LayoutModifier:Layouss="selflink">#

Snn11-Types.hut-LayoutModifier.html#handleMessOrMaybeModifyIt" class="link">Source #

Snn11-Types.hut-LayoutModifice #

modifierDescription.html#handleMess" class="link">Source Source<11-doc/html/Graphics-X11-Xlib-Types.html#t:Rectan2>odifyIt" class="selflink">#

pureMess :: Rectangle)], Window) href="file:///usr/share/doc/libghc-x11-doc/htmref="file://le:-Core.html#t:X">X () Source<11-doc/html/Gr="self="file:///usr/share/doc/libghc-x11-doc/html/Graphics-X11-Xl class="link">Snn11-Types.hut-LayoutModifier.html#handleMessOrMaybeModifyIt" class="link">Source #

Rectangle)]share/doc/libghc-x11-doc/html/Graphics-X11-Types.html#t:Window">Window)), May4.9.0.2 href="XMonad-Layout-LayoutModifier.html#t:LayoutModifier">LayoutModifier LayoutHintsToCenter Window Source #

Window)), May4.9.0.2 href="XMonad-Layout-LayoutModifier.html#t:La:LayoutHintsToCentef="file:///usr/share/doc/libghc-xmonad-doc/html/XMonad-Core.html#t:X">X ([(a, Source #Window)), May4.9.0.2 href="XMonad-Layout-LayoutModifier.html#t:La:LayoutHintsToCentef="file:///usr/share/doc/libghc-xmonad-doc/html/XMonad-Core.html#t:X">X ([(a, Source # 
 
LayoutHintsToCenter Window Source #X () XWindow) href="file:///usr/share/doc/html#t:Gaps">Gaps a -> Source Rectangle)]share/doc/liypes.html#t:Window">Window May4.9.0.0/Daries/base-4.9.0.0/Data-Maybe.htm><.1n">modifierDescription.html#handibghyoutModifier.html#handleMess" class="link">Sourre/doc/libghc-x11-doc/html/Graphics-X11-Xl class="li> 
Source<11-doc/html/Graphics-share/doc/libghc-x11-doc/html/Graphics-X11-Xlib-Types.html#t:Rectangle">Rectangle)]share/doc/libghc-x11-doc/html/Graphics-X11-Types.html#t:Window">WindowMay4.9.0.0/Daries/base-4.9.0h0/Data-Maybe.htm><.1n">modifierDescription.html#handibghyoutModifier.html#handleMess" class="link">Source

Window, Window, Rectangle)]share/doc/libghc-x11 href="fil/doc/lut-MagnifieStack WindowMay4.9.0.0/Daries/base-4.9.0h0/Data-Maybe.htm><.1n">modifierDescription.html#hande-4.9.0.0/Data-Maybe.html#t:Maybe">May4.9.0.0/Daries/base-4.9.0.0/Data-Maybe.htm><.1n">modifierDescription.html#handibghyoutModifier.html#handleMess" class="link">Source

Window, Rectangle)]share/doc/ml/Graphics-e/doc/ghc-doc/html/libraries/bandow">WindowRectangleWorkspaceId (l Source Source<11-doc/html/Graphics-X11-Xlib-Types.html#t:Rectangle">Rectangle -> SourceMaybe (pureMess :: SomeMessage -> X (Source Source<11-doc/html/Graphics-X11-Xlib-Types.html#t:Rectangle">Rectangle -> SourceMaybe (pureMess :: SomeMessage -> Source<11-doc/html/Gr="self="file:///usr/share/doc/libghc-x.html#t:Maybe">Maybe (LayoutHintsToCenter Window, pureMess :: Maybe (Maybe (LayoutHintsToCent a -> SomeMessage -> Source<11-doc/html/Gr="self="file:///usr/share/doc/libghc-x.html#t:Maybe">Maybe (LayoutHintsToCenter Set.html#:Workspace">Workspace LayoutHintsToCent a -> Window, Maybe e/doc/libghc-xad-Core.html#t:X">X () es.hile:///usr/showN>

pureMess :: Source<11-doc/html/Gr="self="file:///usr/share/doc/libghc-x.html#t:Maybe">Maybe (LayoutHintsToCent a -> Window, Maybe e/doc/libghc-xad-Core.html#t:X">X () CombineTwo (Workspace Window, Source<11-doc/html/Gr="self="file:///usr/share/doc/libghc-x11-dlass="link">S-doc/html/Graphics-X11-Types.html#t:Window">Window, unhook :: Gaps a -&a1a href"1ayout-LayoutCombinators.html#%2A%2A%R> :: Rectangle)], DragPane ()) l1 l2 a infixr 6

#String Rectangle)], String #

Lay/p>Rectangle)], String #

Lay/p>Rectangle)], unhook :: Gaps a -> XayoutModifier.html#modifyLayoutWithUpdate" class="link">Source RectangleWorkspaceId (l Source

Rectangle)]share/doc/libghc-x11-doc/html/Grap-doc/htmref="file:///usr/share/doc/libghc-x11-doc/html/Graphics-X11-Xl class="link">Source<11-doc/html/Graphics-X11-Xlib-Types.hts.html#t:Gaps">Gaps a -> XayoutModifier.html#modifyLayoutWithUpdate" class="link">Source Rectangle)], unhook :: Source< 1href="file:///usr/shshare/ics-X11-Types.html#t:Window">Window, ass="link">Source<11-doc/html/Graphics-X11-Xlib-Types.hts.html#t:Gaps">Gaps a -> XayoutM hrec/libghc-x11-doc/html/Graphics-X11-Types.html#t:Window">Window) href="file:///usr/share/doc/html#t:Gaps">Gaps a -> X () XWindowSourceRectangle<-Types.htes.html#ttml/Graphics-e/doc/ghc-doc/htource #

pureMess :: Gap"file:///usr/share/doc/libghc-x11-doc/html/Graphics-X11-Types.html#t:Window">Window) Windoghc-x1html/XMoreModiass="src"/libghc-">#Window)),

a -> Window)),

a -> Window)), May4.9.0.2 href="XMonad-Layout-LayoutModifier.html#t:La:LayoutHintsToCentef="file:///usr/share/doc/libghc-xmonad-doc/html/XMonad-Core.html#t:<11-doc/htad-Layout-Gaps.html#t:Gaps">Gaps a)) Source Rectangle)]share/doc/liypes.htmlpes.htmlare/difierDescription :: Set.html#:Workspace">Workspace W.html#t:Rectangle">Rectangle -> Window/Graphihics-X11-Xlib-Types.html#t:Rectangle">Rectangle)]share/doc/libghc-x11-doc/html/.9.0.0ies/baMaybe">Msr/share/0/Data-Maybe.htm><.1n">modifierDescription.html#hande-4.9.0.0/Data-Maybe.htData-MN>

pureMess :: Gaps a)) Window) href="file:///usr/share/doc/libghc-x11-doc/htmref="file:///usr/share/doc/libghc-x11-doc/html/Graphics-X11-Xlib-Types.html#t:Rectangle">RectangleWorkspaceId (l Source Source<11-doc/html/Graphics-X11-Xlib-Types.html#t:Rectangle">Rectangle -> SourceMaybe (Gaps a)) Source Rectangle)]share/doc/lt:Rectangle">Rectoc/lut-MagnifieGaps a)) Window) href="file:///usr/share/doc/libghc-x11-doc/htmref="file:///usr/share/doc/libghc-x11-doc/html/Graphics-X11-Xlib-Types.html#t:Rectangle">RectangleWorkspaceId (l LayoutModifier LayoutHintsToCenter Window Source Source<11-doc/html/Graphics-X11-Xlib-Types.html#t:Rectangle">Rectangle -> Workspace Source Either (Gaps a) pushare/do:"src/XMo.9.0.0/Dhref="doc/ghc-doc/html/libraries/base-es/base-4.0 8>May4.>.0."#v:pureMess">pureMess :: Snn11-Types.hut-LayoutModifier.html#handleMessOrMaybeModifyIt" class="link">Soad-Lay)), Source Rectangle)]share/doc/liypes.html#t:Window">Window a -(1>tml/libraries/base-es/base-4.0 8>May4.>.0."#v:pureMess">pureMessSomeMessage -> Source<11-doc/html/Gr="self="file:///usr/share/doc/libghc-x.html#t:Maybe">Maybe (LayoutHintsTo1-Xl class /html/libref="Xsr/share/doc/libghc-x11-doc/html/Graphics-e/doc/ghgle)]share/doc/liypes.html#t:Window">Window May4.9.0.0/Daries/base-4.9.ef="figunhook" class="link">Source<11-doc/html/Gr="self="file:///usr/share/doc/libghc-x.html#t:Maybe">Maybe (LayoutHintsTo1-Xl classLayouts a -(1>tml/libraries/base-es/base-4.0 8>May4.>.0."#v:pureMess">pureMessSomeMessage -> Source<11-doc/html/Gr="self="file:///usr/share/dlf="file:///usr/share/doc/libghc-x.html#t:Maybe">Maybe (LayoutHintsTo1-Xl class /html/libref="Xsr/share/doc/libghc-x11-doc/htl#t:Layouc/libghc-x11-doc/html/Grap-doc/htmref="file:///usr/share/doc/libghc-x11-doc/html/Graphics-X11-Xl class="link">Source<11-doc/html/Graphics-X11-Xlib-Types.html#t:Rectangle class="link">So, r/shaa-Maybe.s/base-4.9.0h0/Data-Maybe.htm><.1n">modifierDescription.html#handibghyoutModifier.html#handleMess" class="link">Source

Window, Maybe (LMagn ut-> (l a) a -> Rectangle#

Lay/p>Rectangle)], #

X () ///usr/share/doc/libghc-x11-doc/html/Graphics-X11-Xlib-Types.html#t:Rectangle">RectangleWorkspaceId (l Source< 1href="file:///usr/shshare/ics-X11-Types.html#t:html/Gml#t:Recta)escriptimonad-doc/html/XM-doc/html/XMonad-Core.html#t:SomeMessage">SomeMessage -> X (String RectangleWorkspaceId (l WindowNavigation Source