aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad/Layout/WindowNavigation.hs
diff options
context:
space:
mode:
authorBrent Yorgey <byorgey@gmail.com>2008-03-31 03:01:27 +0200
committerBrent Yorgey <byorgey@gmail.com>2008-03-31 03:01:27 +0200
commitb7806ba7c9dde861a305c0202f3c9024120a0fa7 (patch)
tree9a9e8a9e095ae0fdebb042a677180a88fb7b0e95 /XMonad/Layout/WindowNavigation.hs
parent0a424f41cc5867f23525a2813326d78d53ed255b (diff)
downloadXMonadContrib-b7806ba7c9dde861a305c0202f3c9024120a0fa7.tar.gz
XMonadContrib-b7806ba7c9dde861a305c0202f3c9024120a0fa7.tar.xz
XMonadContrib-b7806ba7c9dde861a305c0202f3c9024120a0fa7.zip
move Direction type from WindowNavigation to ManageDocks (ManageDocks will move into the core, taking Direction with it)
darcs-hash:20080331010127-bd4d7-972600c072354b2c07a227ade70d4abf80fe418c.gz
Diffstat (limited to 'XMonad/Layout/WindowNavigation.hs')
-rw-r--r--XMonad/Layout/WindowNavigation.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/XMonad/Layout/WindowNavigation.hs b/XMonad/Layout/WindowNavigation.hs
index f21d004..8c01df9 100644
--- a/XMonad/Layout/WindowNavigation.hs
+++ b/XMonad/Layout/WindowNavigation.hs
@@ -32,6 +32,8 @@ import XMonad.Layout.LayoutModifier
import XMonad.Util.Invisible
import XMonad.Util.XUtils
+import XMonad.Hooks.ManageDocks (Direction(..))
+
-- $usage
-- You can use this module with the following in your @~\/.xmonad\/xmonad.hs@:
--
@@ -67,7 +69,6 @@ data MoveWindowToWindow a = MoveWindowToWindow a a deriving ( Read, Show, Typeab
instance Typeable a => Message (MoveWindowToWindow a)
data Navigate = Go Direction | Swap Direction | Move Direction deriving ( Read, Show, Typeable )
-data Direction = U | D | R | L deriving ( Read, Show, Eq, Ord, Enum, Bounded )
instance Message Navigate
data WNConfig =