move Direction type from WindowNavigation to ManageDocks (ManageDocks will move into the core, taking Direction with it)

This commit is contained in:
Brent Yorgey
2008-03-31 01:01:27 +00:00
parent da5452b009
commit c857ebe29c
3 changed files with 31 additions and 25 deletions

View File

@@ -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 =