Copyright | (c) Spencer Janssen 2007 |
---|---|
License | BSD3-style (see LICENSE) |
Maintainer | spencerjanssen@gmail.com |
Stability | unstable |
Portability | not portable, Typeable deriving, mtl, posix |
Safe Haskell | None |
Language | Haskell98 |
XMonad.Layout
Description
The collection of core layouts.
Synopsis
- data Full a = Full
- data Tall a = Tall {
- tallNMaster :: !Int
- tallRatioIncrement :: !Rational
- tallRatio :: !Rational
- newtype Mirror l a = Mirror (l a)
- data Resize
- data IncMasterN = IncMasterN !Int
- data Choose l r a
- (|||) :: l a -> r a -> Choose l r a
- data ChangeLayout
- mirrorRect :: Rectangle -> Rectangle
- splitVertically :: Int -> Rectangle -> [Rectangle]
- splitHorizontally :: Int -> Rectangle -> [Rectangle]
- splitHorizontallyBy :: RealFrac r => r -> Rectangle -> (Rectangle, Rectangle)
- splitVerticallyBy :: RealFrac r => r -> Rectangle -> (Rectangle, Rectangle)
- tile :: Rational -> Rectangle -> Int -> Int -> [Rectangle]
Documentation
Simple fullscreen mode. Renders the focused window fullscreen.
Constructors
Full |
Instances
LayoutClass Full a Source # | |
Defined in XMonad.Layout Methods runLayout :: Workspace WorkspaceId (Full a) a -> Rectangle -> X ([(a, Rectangle)], Maybe (Full a)) Source # doLayout :: Full a -> Rectangle -> Stack a -> X ([(a, Rectangle)], Maybe (Full a)) Source # pureLayout :: Full a -> Rectangle -> Stack a -> [(a, Rectangle)] Source # emptyLayout :: Full a -> Rectangle -> X ([(a, Rectangle)], Maybe (Full a)) Source # handleMessage :: Full a -> SomeMessage -> X (Maybe (Full a)) Source # pureMessage :: Full a -> SomeMessage -> Maybe (Full a) Source # description :: Full a -> String Source # | |
Read (Full a) Source # | |
Defined in XMonad.Layout | |
Show (Full a) Source # | |
The builtin tiling mode of xmonad. Supports Shrink
, Expand
and
IncMasterN
.
Constructors
Tall | |
Fields
|
Instances
LayoutClass Tall a Source # | |
Defined in XMonad.Layout Methods runLayout :: Workspace WorkspaceId (Tall a) a -> Rectangle -> X ([(a, Rectangle)], Maybe (Tall a)) Source # doLayout :: Tall a -> Rectangle -> Stack a -> X ([(a, Rectangle)], Maybe (Tall a)) Source # pureLayout :: Tall a -> Rectangle -> Stack a -> [(a, Rectangle)] Source # emptyLayout :: Tall a -> Rectangle -> X ([(a, Rectangle)], Maybe (Tall a)) Source # handleMessage :: Tall a -> SomeMessage -> X (Maybe (Tall a)) Source # pureMessage :: Tall a -> SomeMessage -> Maybe (Tall a) Source # description :: Tall a -> String Source # | |
Read (Tall a) Source # | |
Defined in XMonad.Layout | |
Show (Tall a) Source # | |
Mirror a layout, compute its 90 degree rotated form.
Constructors
Mirror (l a) |
Instances
LayoutClass l a => LayoutClass (Mirror l) a Source # | |
Defined in XMonad.Layout Methods runLayout :: Workspace WorkspaceId (Mirror l a) a -> Rectangle -> X ([(a, Rectangle)], Maybe (Mirror l a)) Source # doLayout :: Mirror l a -> Rectangle -> Stack a -> X ([(a, Rectangle)], Maybe (Mirror l a)) Source # pureLayout :: Mirror l a -> Rectangle -> Stack a -> [(a, Rectangle)] Source # emptyLayout :: Mirror l a -> Rectangle -> X ([(a, Rectangle)], Maybe (Mirror l a)) Source # handleMessage :: Mirror l a -> SomeMessage -> X (Maybe (Mirror l a)) Source # pureMessage :: Mirror l a -> SomeMessage -> Maybe (Mirror l a) Source # description :: Mirror l a -> String Source # | |
Read (l a) => Read (Mirror l a) Source # | |
Defined in XMonad.Layout | |
Show (l a) => Show (Mirror l a) Source # | |
Change the size of the master pane.
Instances
Message Resize Source # | |
Defined in XMonad.Layout |
data IncMasterN Source #
Increase the number of clients in the master pane.
Constructors
IncMasterN !Int |
Instances
Message IncMasterN Source # | |
Defined in XMonad.Layout |
A layout that allows users to switch between various layout options.
Instances
(LayoutClass l a, LayoutClass r a) => LayoutClass (Choose l r) a Source # | |
Defined in XMonad.Layout Methods runLayout :: Workspace WorkspaceId (Choose l r a) a -> Rectangle -> X ([(a, Rectangle)], Maybe (Choose l r a)) Source # doLayout :: Choose l r a -> Rectangle -> Stack a -> X ([(a, Rectangle)], Maybe (Choose l r a)) Source # pureLayout :: Choose l r a -> Rectangle -> Stack a -> [(a, Rectangle)] Source # emptyLayout :: Choose l r a -> Rectangle -> X ([(a, Rectangle)], Maybe (Choose l r a)) Source # handleMessage :: Choose l r a -> SomeMessage -> X (Maybe (Choose l r a)) Source # pureMessage :: Choose l r a -> SomeMessage -> Maybe (Choose l r a) Source # description :: Choose l r a -> String Source # | |
(Read (l a), Read (r a)) => Read (Choose l r a) Source # | |
Defined in XMonad.Layout | |
(Show (l a), Show (r a)) => Show (Choose l r a) Source # | |
data ChangeLayout Source #
Messages to change the current layout.
Constructors
FirstLayout | |
NextLayout |
Instances
Eq ChangeLayout Source # | |
Defined in XMonad.Layout | |
Show ChangeLayout Source # | |
Defined in XMonad.Layout Methods showsPrec :: Int -> ChangeLayout -> ShowS show :: ChangeLayout -> String showList :: [ChangeLayout] -> ShowS | |
Message ChangeLayout Source # | |
Defined in XMonad.Layout |
mirrorRect :: Rectangle -> Rectangle Source #
Mirror a rectangle.
splitVertically :: Int -> Rectangle -> [Rectangle] Source #
splitHorizontally :: Int -> Rectangle -> [Rectangle] Source #
Arguments
:: Rational |
|
-> Rectangle |
|
-> Int |
|
-> Int |
|
-> [Rectangle] |
Compute the positions for windows using the default two-pane tiling algorithm.
The screen is divided into two panes. All clients are then partioned between these two panes. One pane, the master, by convention has the least number of windows in it.