brick/programs/AttrDemo.hs
Jonathan Daugherty fc8cfe3b4a Remove appLiftVtyEvent in favor of library event type BrickEvent
This change makes it possible for brick to extent the event space using
its own event notions in addition those provided by Vty and the
application itself. This means we no longer need the user to provide the
type and appLiftVtyEvent went away. This makes pattern-matching in event
handlers a little noisier with the benefit that we can now add events
like mouse clicks or drags to the event type.
2016-10-25 20:19:31 -07:00

65 lines
1.9 KiB
Haskell

{-# LANGUAGE OverloadedStrings #-}
module Main where
import Data.Monoid
import Graphics.Vty
( Attr, white, blue, cyan, green, red, yellow
, black
)
import Brick.Main
import Brick.Types
( Widget
)
import Brick.Widgets.Core
( (<=>)
, withAttr
, vBox
, str
)
import Brick.Util (on, fg)
import Brick.AttrMap (attrMap, AttrMap)
ui :: Widget n
ui =
vBox [ str "This text uses the global default attribute."
, withAttr "foundFull" $
str "Specifying an attribute name means we look it up in the attribute tree."
, (withAttr "foundFgOnly" $
str ("When we find a value, we merge it with its parent in the attribute")
<=> str "name tree all the way to the root (the global default).")
, withAttr "missing" $
str "A missing attribute name just resumes the search at its parent."
, withAttr ("general" <> "specific") $
str "In this way we build complete attribute values by using an inheritance scheme."
, withAttr "foundFull" $
str "You can override everything ..."
, withAttr "foundFgOnly" $
str "... or only you want to change and inherit the rest."
, str "Attribute names are assembled with the Monoid append operation to indicate"
, str "hierarchy levels, e.g. \"window\" <> \"title\"."
]
globalDefault :: Attr
globalDefault = white `on` blue
theMap :: AttrMap
theMap = attrMap globalDefault
[ ("foundFull", white `on` green)
, ("foundFgOnly", fg red)
, ("general", yellow `on` black)
, ("general" <> "specific", fg cyan)
]
app :: App () e ()
app =
App { appDraw = const [ui]
, appHandleEvent = resizeOrQuit
, appStartEvent = return
, appAttrMap = const theMap
, appChooseCursor = neverShowCursor
}
main :: IO ()
main = defaultMain app ()