{-# LANGUAGE RankNTypes #-}
{-# OPTIONS_GHC -fno-warn-orphans #-}
module Brick.Types
(
Widget(..)
, Location(..)
, locL
, TerminalLocation(..)
, CursorLocation(..)
, cursorLocationL
, cursorLocationNameL
, Viewport(..)
, ViewportType(..)
, vpSize
, vpTop
, vpLeft
, vpContentSize
, VScrollBarOrientation(..)
, HScrollBarOrientation(..)
, VScrollbarRenderer(..)
, HScrollbarRenderer(..)
, ClickableScrollbarElement(..)
, EventM
, BrickEvent(..)
, nestEventM
, nestEventM'
, RenderM
, getContext
, Context(ctxAttrName, availWidth, availHeight, windowWidth, windowHeight, ctxBorderStyle, ctxAttrMap, ctxDynBorders)
, attrL
, availWidthL
, availHeightL
, windowWidthL
, windowHeightL
, ctxVScrollBarOrientationL
, ctxVScrollBarRendererL
, ctxHScrollBarOrientationL
, ctxHScrollBarRendererL
, ctxAttrMapL
, ctxAttrNameL
, ctxBorderStyleL
, ctxDynBordersL
, Result(..)
, emptyResult
, lookupAttrName
, Extent(..)
, imageL
, cursorsL
, visibilityRequestsL
, extentsL
, VisibilityRequest(..)
, vrPositionL
, vrSizeL
, suffixLenses
, suffixLensesWith
, bordersL
, DynBorder(..)
, dbStyleL, dbAttrL, dbSegmentsL
, BorderSegment(..)
, bsAcceptL, bsOfferL, bsDrawL
, Edges(..)
, eTopL, eBottomL, eRightL, eLeftL
, Size(..)
, Direction(..)
, RenderState
, get
, gets
, put
, modify
, zoom
)
where
import Lens.Micro (_1, _2, to, (^.))
import Lens.Micro.Type (Getting)
import Lens.Micro.Mtl (zoom)
#if !MIN_VERSION_base(4,13,0)
import Control.Monad.Fail (MonadFail)
#endif
import Control.Monad.State.Strict
import Control.Monad.Reader
import Graphics.Vty (Attr)
import Brick.Types.TH
import Brick.Types.Internal
import Brick.Types.EventM
import Brick.AttrMap (AttrName, attrMapLookup)
nestEventM' :: a
-> EventM n a b
-> EventM n s a
nestEventM' :: forall a n b s. a -> EventM n a b -> EventM n s a
nestEventM' a
s EventM n a b
act = (a, b) -> a
forall a b. (a, b) -> a
fst ((a, b) -> a) -> EventM n s (a, b) -> EventM n s a
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
<$> a -> EventM n a b -> EventM n s (a, b)
forall a n b s. a -> EventM n a b -> EventM n s (a, b)
nestEventM a
s EventM n a b
act
nestEventM :: a
-> EventM n a b
-> EventM n s (a, b)
nestEventM :: forall a n b s. a -> EventM n a b -> EventM n s (a, b)
nestEventM a
s' EventM n a b
act = do
EventRO n
ro <- ReaderT
(EventRO n) (StateT s (StateT (EventState n) IO)) (EventRO n)
-> EventM n s (EventRO n)
forall n s a.
ReaderT (EventRO n) (StateT s (StateT (EventState n) IO)) a
-> EventM n s a
EventM ReaderT
(EventRO n) (StateT s (StateT (EventState n) IO)) (EventRO n)
forall r (m :: * -> *). MonadReader r m => m r
ask
EventState n
es <- ReaderT
(EventRO n) (StateT s (StateT (EventState n) IO)) (EventState n)
-> EventM n s (EventState n)
forall n s a.
ReaderT (EventRO n) (StateT s (StateT (EventState n) IO)) a
-> EventM n s a
EventM (ReaderT
(EventRO n) (StateT s (StateT (EventState n) IO)) (EventState n)
-> EventM n s (EventState n))
-> ReaderT
(EventRO n) (StateT s (StateT (EventState n) IO)) (EventState n)
-> EventM n s (EventState n)
forall a b. (a -> b) -> a -> b
$ StateT s (StateT (EventState n) IO) (EventState n)
-> ReaderT
(EventRO n) (StateT s (StateT (EventState n) IO)) (EventState n)
forall (m :: * -> *) a. Monad m => m a -> ReaderT (EventRO n) m a
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (StateT s (StateT (EventState n) IO) (EventState n)
-> ReaderT
(EventRO n) (StateT s (StateT (EventState n) IO)) (EventState n))
-> StateT s (StateT (EventState n) IO) (EventState n)
-> ReaderT
(EventRO n) (StateT s (StateT (EventState n) IO)) (EventState n)
forall a b. (a -> b) -> a -> b
$ StateT (EventState n) IO (EventState n)
-> StateT s (StateT (EventState n) IO) (EventState n)
forall (m :: * -> *) a. Monad m => m a -> StateT s m a
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift StateT (EventState n) IO (EventState n)
forall s (m :: * -> *). MonadState s m => m s
get
VtyContext
vtyCtx <- EventM n s VtyContext
forall n s. EventM n s VtyContext
getVtyContext
let stInner :: EventState n
stInner = ES { nextAction :: NextAction
nextAction = NextAction
Continue
, esScrollRequests :: [(n, ScrollRequest)]
esScrollRequests = EventState n -> [(n, ScrollRequest)]
forall n. EventState n -> [(n, ScrollRequest)]
esScrollRequests EventState n
es
, cacheInvalidateRequests :: Set (CacheInvalidateRequest n)
cacheInvalidateRequests = EventState n -> Set (CacheInvalidateRequest n)
forall n. EventState n -> Set (CacheInvalidateRequest n)
cacheInvalidateRequests EventState n
es
, requestedVisibleNames :: Set n
requestedVisibleNames = EventState n -> Set n
forall n. EventState n -> Set n
requestedVisibleNames EventState n
es
, vtyContext :: VtyContext
vtyContext = VtyContext
vtyCtx
}
((b
actResult, a
newSt), EventState n
stInnerFinal) <- IO ((b, a), EventState n) -> EventM n s ((b, a), EventState n)
forall a. IO a -> EventM n s a
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO ((b, a), EventState n) -> EventM n s ((b, a), EventState n))
-> IO ((b, a), EventState n) -> EventM n s ((b, a), EventState n)
forall a b. (a -> b) -> a -> b
$ StateT (EventState n) IO (b, a)
-> EventState n -> IO ((b, a), EventState n)
forall s (m :: * -> *) a. StateT s m a -> s -> m (a, s)
runStateT (StateT a (StateT (EventState n) IO) b
-> a -> StateT (EventState n) IO (b, a)
forall s (m :: * -> *) a. StateT s m a -> s -> m (a, s)
runStateT (ReaderT (EventRO n) (StateT a (StateT (EventState n) IO)) b
-> EventRO n -> StateT a (StateT (EventState n) IO) b
forall r (m :: * -> *) a. ReaderT r m a -> r -> m a
runReaderT (EventM n a b
-> ReaderT (EventRO n) (StateT a (StateT (EventState n) IO)) b
forall n s a.
EventM n s a
-> ReaderT (EventRO n) (StateT s (StateT (EventState n) IO)) a
runEventM EventM n a b
act) EventRO n
ro) a
s') EventState n
stInner
ReaderT (EventRO n) (StateT s (StateT (EventState n) IO)) ()
-> EventM n s ()
forall n s a.
ReaderT (EventRO n) (StateT s (StateT (EventState n) IO)) a
-> EventM n s a
EventM (ReaderT (EventRO n) (StateT s (StateT (EventState n) IO)) ()
-> EventM n s ())
-> ReaderT (EventRO n) (StateT s (StateT (EventState n) IO)) ()
-> EventM n s ()
forall a b. (a -> b) -> a -> b
$ StateT s (StateT (EventState n) IO) ()
-> ReaderT (EventRO n) (StateT s (StateT (EventState n) IO)) ()
forall (m :: * -> *) a. Monad m => m a -> ReaderT (EventRO n) m a
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (StateT s (StateT (EventState n) IO) ()
-> ReaderT (EventRO n) (StateT s (StateT (EventState n) IO)) ())
-> StateT s (StateT (EventState n) IO) ()
-> ReaderT (EventRO n) (StateT s (StateT (EventState n) IO)) ()
forall a b. (a -> b) -> a -> b
$ StateT (EventState n) IO ()
-> StateT s (StateT (EventState n) IO) ()
forall (m :: * -> *) a. Monad m => m a -> StateT s m a
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (StateT (EventState n) IO ()
-> StateT s (StateT (EventState n) IO) ())
-> StateT (EventState n) IO ()
-> StateT s (StateT (EventState n) IO) ()
forall a b. (a -> b) -> a -> b
$ (EventState n -> EventState n) -> StateT (EventState n) IO ()
forall s (m :: * -> *). MonadState s m => (s -> s) -> m ()
modify ((EventState n -> EventState n) -> StateT (EventState n) IO ())
-> (EventState n -> EventState n) -> StateT (EventState n) IO ()
forall a b. (a -> b) -> a -> b
$
\EventState n
st -> EventState n
st { nextAction = nextAction stInnerFinal
, esScrollRequests = esScrollRequests stInnerFinal
, cacheInvalidateRequests = cacheInvalidateRequests stInnerFinal
, requestedVisibleNames = requestedVisibleNames stInnerFinal
, vtyContext = vtyContext stInnerFinal
}
(a, b) -> EventM n s (a, b)
forall a. a -> EventM n s a
forall (m :: * -> *) a. Monad m => a -> m a
return (a
newSt, b
actResult)
attrL :: forall r n. Getting r (Context n) Attr
attrL :: forall r n. Getting r (Context n) Attr
attrL = (Context n -> Attr) -> SimpleGetter (Context n) Attr
forall s a. (s -> a) -> SimpleGetter s a
to (\Context n
c -> AttrName -> AttrMap -> Attr
attrMapLookup (Context n
cContext n -> Getting AttrName (Context n) AttrName -> AttrName
forall s a. s -> Getting a s a -> a
^.Getting AttrName (Context n) AttrName
forall n (f :: * -> *).
Functor f =>
(AttrName -> f AttrName) -> Context n -> f (Context n)
ctxAttrNameL) (Context n
cContext n -> Getting AttrMap (Context n) AttrMap -> AttrMap
forall s a. s -> Getting a s a -> a
^.Getting AttrMap (Context n) AttrMap
forall n (f :: * -> *).
Functor f =>
(AttrMap -> f AttrMap) -> Context n -> f (Context n)
ctxAttrMapL))
instance TerminalLocation (CursorLocation n) where
locationColumnL :: Lens' (CursorLocation n) Int
locationColumnL = (Location -> f Location)
-> CursorLocation n -> f (CursorLocation n)
forall n (f :: * -> *).
Functor f =>
(Location -> f Location)
-> CursorLocation n -> f (CursorLocation n)
cursorLocationL((Location -> f Location)
-> CursorLocation n -> f (CursorLocation n))
-> ((Int -> f Int) -> Location -> f Location)
-> (Int -> f Int)
-> CursorLocation n
-> f (CursorLocation n)
forall b c a. (b -> c) -> (a -> b) -> a -> c
.(Int -> f Int) -> Location -> f Location
forall s t a b. Field1 s t a b => Lens s t a b
Lens Location Location Int Int
_1
locationColumn :: CursorLocation n -> Int
locationColumn = Location -> Int
forall a. TerminalLocation a => a -> Int
locationColumn (Location -> Int)
-> (CursorLocation n -> Location) -> CursorLocation n -> Int
forall b c a. (b -> c) -> (a -> b) -> a -> c
. CursorLocation n -> Location
forall n. CursorLocation n -> Location
cursorLocation
locationRowL :: Lens' (CursorLocation n) Int
locationRowL = (Location -> f Location)
-> CursorLocation n -> f (CursorLocation n)
forall n (f :: * -> *).
Functor f =>
(Location -> f Location)
-> CursorLocation n -> f (CursorLocation n)
cursorLocationL((Location -> f Location)
-> CursorLocation n -> f (CursorLocation n))
-> ((Int -> f Int) -> Location -> f Location)
-> (Int -> f Int)
-> CursorLocation n
-> f (CursorLocation n)
forall b c a. (b -> c) -> (a -> b) -> a -> c
.(Int -> f Int) -> Location -> f Location
forall s t a b. Field2 s t a b => Lens s t a b
Lens Location Location Int Int
_2
locationRow :: CursorLocation n -> Int
locationRow = Location -> Int
forall a. TerminalLocation a => a -> Int
locationRow (Location -> Int)
-> (CursorLocation n -> Location) -> CursorLocation n -> Int
forall b c a. (b -> c) -> (a -> b) -> a -> c
. CursorLocation n -> Location
forall n. CursorLocation n -> Location
cursorLocation
lookupAttrName :: AttrName -> RenderM n Attr
lookupAttrName :: forall n. AttrName -> RenderM n Attr
lookupAttrName AttrName
n = do
Context n
c <- RenderM n (Context n)
forall n. RenderM n (Context n)
getContext
Attr -> RenderM n Attr
forall a. a -> ReaderT (Context n) (State (RenderState n)) a
forall (m :: * -> *) a. Monad m => a -> m a
return (Attr -> RenderM n Attr) -> Attr -> RenderM n Attr
forall a b. (a -> b) -> a -> b
$ AttrName -> AttrMap -> Attr
attrMapLookup AttrName
n (Context n
cContext n -> Getting AttrMap (Context n) AttrMap -> AttrMap
forall s a. s -> Getting a s a -> a
^.Getting AttrMap (Context n) AttrMap
forall n (f :: * -> *).
Functor f =>
(AttrMap -> f AttrMap) -> Context n -> f (Context n)
ctxAttrMapL)