1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
-----------------------------------------------------------------------------
-- |
-- Module : W.hs
-- Copyright : (c) Spencer Janssen 2007
-- License : BSD3-style (see LICENSE)
--
-- Maintainer : sjanssen@cse.unl.edu
-- Stability : unstable
-- Portability : not portable, uses cunning newtype deriving
--
-----------------------------------------------------------------------------
--
-- The W monad, a state monad transformer over IO, for the window
-- manager state, and support routines.
--
module WMonad where
import StackSet
import Control.Monad.State
import System.IO
import System.Process (runCommand)
import Graphics.X11.Xlib (Display,Window)
-- | WState, the window manager state.
-- Just the display, width, height and a window list
data WState = WState
{ display :: Display
, screenWidth :: {-# UNPACK #-} !Int
, screenHeight :: {-# UNPACK #-} !Int
, workspace :: {-# UNPACK #-} !WorkSpace -- ^ workspace list
}
type WorkSpace = StackSet Window
-- | The W monad, a StateT transformer over IO encapuslating the window
-- manager state
newtype W a = W { unW :: StateT WState IO a }
deriving (Functor, Monad, MonadIO, MonadState WState)
-- | Run the W monad, given a chunk of W monad code, and an initial state
-- Return the result, and final state
runW :: WState -> W a -> IO (a, WState)
runW st a = runStateT (unW a) st
-- | Lift an IO action into the W monad
io :: IO a -> W a
io = liftIO
-- | Lift an IO action into the W monad, discarding any result
io_ :: IO a -> W ()
io_ f = liftIO f >> return ()
-- | Run an action forever
forever :: (Monad m) => m a -> m b
forever a = a >> forever a
-- | spawn. Launch an external application
spawn :: String -> W ()
spawn = io_ . runCommand
-- | A 'trace' for the W monad. Logs a string to stderr. The result may
-- be found in your .xsession-errors file
trace :: String -> W ()
trace msg = io $ do
hPutStrLn stderr msg
hFlush stderr
-- | Run a monad action with the current display settings
withDisplay :: (Display -> W ()) -> W ()
withDisplay f = gets display >>= f
-- | Run a monadic action with the display, screen width and height
withScreen :: ((Display,Int,Int) -> W ()) -> W ()
withScreen f = do
d <- gets display
sw <- gets screenWidth
sh <- gets screenHeight
f (d,sw,sh)
-- | Modify the workspace list.
modifyWorkspace :: (WorkSpace -> WorkSpace) -> W ()
modifyWorkspace f = do
modify $ \s -> s { workspace = f (workspace s) }
ws <- gets workspace
trace (show ws) -- log state changes to stderr
-- | Run a side effecting action with the current workspace. Like 'when' but
-- for (WorkSpace -> Maybe a).
whenJust :: (WorkSpace -> Maybe a) -> (a -> W ()) -> W ()
whenJust mg f = do
ws <- gets workspace
case mg ws of
Nothing -> return ()
Just w -> f w
|