diff options
Diffstat (limited to '')
-rw-r--r-- | XMonad/Layout/LayoutBuilderP.hs | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/XMonad/Layout/LayoutBuilderP.hs b/XMonad/Layout/LayoutBuilderP.hs index 7702a4f..a29a0c9 100644 --- a/XMonad/Layout/LayoutBuilderP.hs +++ b/XMonad/Layout/LayoutBuilderP.hs @@ -16,9 +16,9 @@ module XMonad.Layout.LayoutBuilderP ( LayoutP (..), + Predicate (..), layoutP, layoutAll, - B.relBox, B.absBox, - PropertyRE (..) + B.relBox, B.absBox ) where import Control.Monad @@ -37,11 +37,6 @@ class Predicate p w where alwaysTrue :: w -> p -- ^ A predicate that is always True. First argument is dummy, we always set it to undefined checkPredicate :: p -> w -> X Bool -- ^ Check if given object (window or smth else) matches that predicate --- | A wrapper for X.U.WindowProperties.Property. --- Checks using regular expression. -data PropertyRE = RE Property - deriving (Show,Read,Typeable) - -- | Data type for our layout. data LayoutP p l1 l2 a = LayoutP (Maybe a) (Maybe a) p B.SubBox (Maybe B.SubBox) (l1 a) (Maybe (l2 a)) |