diff options
author | David Roundy <droundy@darcs.net> | 2007-09-20 20:15:06 +0200 |
---|---|---|
committer | David Roundy <droundy@darcs.net> | 2007-09-20 20:15:06 +0200 |
commit | 71a7d6bd1426c61e5ecb3556b2d6d10bea488128 (patch) | |
tree | 8f6bf5d931b4a199af536227f11ded06cec022f0 | |
parent | 6de39ed25a10ecc4a9fa2a933cd214296228e57c (diff) | |
download | metatile-71a7d6bd1426c61e5ecb3556b2d6d10bea488128.tar metatile-71a7d6bd1426c61e5ecb3556b2d6d10bea488128.zip |
define readLayout to create a SomeLayout based on a set of possible layout types.
darcs-hash:20070920181506-72aca-3c50146a45158f168b89c989897c616fc453f816
-rw-r--r-- | XMonad.hs | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -15,7 +15,7 @@ ----------------------------------------------------------------------------- module XMonad ( - X, WindowSet, WorkspaceId, ScreenId(..), ScreenDetail(..), XState(..), XConf(..), Layout(..), SomeLayout(..), + X, WindowSet, WorkspaceId, ScreenId(..), ScreenDetail(..), XState(..), XConf(..), Layout(..), SomeLayout(..), readLayout, Typeable, Message, SomeMessage(..), fromMessage, runLayout, runX, catchX, io, catchIO, withDisplay, withWindowSet, isRoot, getAtom, spawn, restart, trace, whenJust, whenX, atom_WM_STATE, atom_WM_PROTOCOLS, atom_WM_DELETE_WINDOW @@ -137,6 +137,12 @@ instance Show (SomeLayout a) where instance Read (SomeLayout a) where readsPrec _ _ = [] -- We can't read an existential type!!! +readLayout :: [SomeLayout a] -> String -> [(SomeLayout a, String)] +readLayout ls s = concatMap rl ls + where rl (SomeLayout x) = map (\(l,s') -> (SomeLayout l,s')) $ rl' x + rl' :: Layout l a => l a -> [(l a,String)] + rl' _ = reads s + class (Show (layout a), Read (layout a)) => Layout layout a where doLayout :: layout a -> Rectangle -> Stack a -> X ([(a, Rectangle)], Maybe (layout a)) modifyLayout :: layout a -> SomeMessage -> X (Maybe (layout a)) |