From 27bad06b40c50e62679656c5f4dfe971a85698de Mon Sep 17 00:00:00 2001 From: David Roundy Date: Thu, 20 Sep 2007 20:15:06 +0200 Subject: define readLayout to create a SomeLayout based on a set of possible layout types. darcs-hash:20070920181506-72aca-3c50146a45158f168b89c989897c616fc453f816.gz --- XMonad.hs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'XMonad.hs') diff --git a/XMonad.hs b/XMonad.hs index a9253c9..e611c31 100644 --- a/XMonad.hs +++ b/XMonad.hs @@ -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)) -- cgit v1.2.3