Add attribute handling demo program

This commit is contained in:
Jonathan Daugherty 2015-06-28 22:40:25 -07:00
parent 2e3bef7f8e
commit 7aa4e264a4
2 changed files with 65 additions and 0 deletions

View File

@ -85,6 +85,18 @@ executable brick-bench
containers,
vector
executable brick-attr-demo
hs-source-dirs: programs
ghc-options: -threaded -Wall -fno-warn-unused-do-bind
default-language: Haskell2010
main-is: AttrDemo.hs
build-depends: base,
brick,
vty >= 5.2.9,
data-default,
text,
lens
executable brick-markup-demo
hs-source-dirs: programs
ghc-options: -threaded -Wall -fno-warn-unused-do-bind

53
programs/AttrDemo.hs Normal file
View File

@ -0,0 +1,53 @@
{-# LANGUAGE OverloadedStrings #-}
module Main where
import Data.Monoid
import Graphics.Vty
import Brick.Main
import Brick.Widgets.Core
import Brick.Util (on, fg)
import Brick.AttrMap (attrMap, AttrMap)
ui :: Widget
ui =
vBox [ "This text uses the global default attribute."
, withAttr "foundFull"
"Specifying an attribute name means we look it up in the attribute tree."
, withAttr "foundFgOnly"
("When we find a value, we merge it with its parent in the attribute"
<=> "name tree all the way to the root (the global default).")
, withAttr "missing"
"A missing attribute name just resumes the search at its parent."
, withAttr ("general" <> "specific")
"In this way we build complete attribute values by using an inheritance scheme."
, withAttr "foundFull"
"You can override everything ..."
, withAttr "foundFgOnly"
"... or only you want to change and inherit the rest."
, "Attribute names are assembled with the Monoid append operation to indicate"
, "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 () Event
app =
App { appDraw = const [ui]
, appHandleEvent = resizeOrQuit
, appAttrMap = const theMap
, appChooseCursor = neverShowCursor
, appMakeVtyEvent = id
}
main :: IO ()
main = defaultMain app ()