From 71d094dd3c4b337c543a70bf6992654a7e8d87a3 Mon Sep 17 00:00:00 2001 From: Andrea Rossato Date: Fri, 16 Nov 2007 12:28:26 +0100 Subject: Core: documented XConfig and ScreenDetail darcs-hash:20071116112826-32816-d89b89dd8803b90b45f44ffd58c7f6f03088cee3 --- XMonad/Core.hs | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) (limited to 'XMonad/Core.hs') diff --git a/XMonad/Core.hs b/XMonad/Core.hs index 8d85afc..7551d88 100644 --- a/XMonad/Core.hs +++ b/XMonad/Core.hs @@ -65,19 +65,22 @@ data XConf = XConf -- todo, better name data XConfig l = XConfig - { normalBorderColor :: !String - , focusedBorderColor :: !String - , terminal :: !String - , layoutHook :: !(l Window) - , manageHook :: Window -> X (WindowSet -> WindowSet) - , workspaces :: [String] - , defaultGaps :: [(Int,Int,Int,Int)] - , numlockMask :: !KeyMask - , modMask :: !KeyMask + { normalBorderColor :: !String -- ^ Non focused windows border color. Default: \"#dddddd\" + , focusedBorderColor :: !String -- ^ Focused windows border color. Default: \"#ff0000\" + , terminal :: !String -- ^ The preferred terminal application. Default: \"xterm\" + , layoutHook :: !(l Window) -- ^ The avaiable layouts + , manageHook :: Window -> X (WindowSet -> WindowSet) + -- ^ The action to run when a new window is opened + , workspaces :: [String] -- ^ The list of workspaces' names + , defaultGaps :: [(Int,Int,Int,Int)] -- ^ The list of gaps, per screen + , numlockMask :: !KeyMask -- ^ The numlock modifier + , modMask :: !KeyMask -- ^ the mod modifier , keys :: XConfig Layout -> M.Map (ButtonMask,KeySym) (X ()) + -- ^ The key binding: a map from key presses and actions , mouseBindings :: XConfig Layout -> M.Map (ButtonMask, Button) (Window -> X ()) - , borderWidth :: !Dimension - , logHook :: X () + -- ^ The mouse bindings + , borderWidth :: !Dimension -- ^ The border width + , logHook :: X () -- ^ The action to perform when the windows set is changed } @@ -90,7 +93,7 @@ type WorkspaceId = String -- | Physical screen indicies newtype ScreenId = S Int deriving (Eq,Ord,Show,Read,Enum,Num,Integral,Real) --- | TODO Comment me +-- | The 'Rectangle' with screen dimensions and the list of gaps data ScreenDetail = SD { screenRect :: !Rectangle , statusGap :: !(Int,Int,Int,Int) -- ^ width of status bar on the screen } deriving (Eq,Show, Read) -- cgit v1.2.3