From b1aa17616f56517fa83607296c25ee6c333968c1 Mon Sep 17 00:00:00 2001 From: tv Date: Sun, 28 Dec 2014 22:16:47 +0100 Subject: purge a bit of legacy & cruft There's still both around, though..^_^ --- TreeViewRaw.hs | 150 +++------------------------------------------------------ 1 file changed, 6 insertions(+), 144 deletions(-) (limited to 'TreeViewRaw.hs') diff --git a/TreeViewRaw.hs b/TreeViewRaw.hs index 114e75a..db4a899 100644 --- a/TreeViewRaw.hs +++ b/TreeViewRaw.hs @@ -1,19 +1,19 @@ {-# LANGUAGE LambdaCase #-} {-# LANGUAGE OverloadedStrings #-} -module TreeViewRaw where +module TreeViewRaw (renderTreeView) where -import Data.Monoid -import TreeView -import Data.Tree -import Trammel -import qualified Notmuch import qualified Notmuch.Message as Notmuch import qualified Notmuch.SearchResult as Notmuch import qualified Data.CaseInsensitive as CI import qualified Data.List as L import qualified Data.Map as M import qualified Data.Text as T +import Data.Monoid +import Data.Tree +import Trammel +import TreeView +import Utils (padl) renderTreeView :: TreeView -> Tree TreeView -> [Trammel String] @@ -78,141 +78,3 @@ renderTreeView1 hasFocus = \case TVMessageLine _ _ _ s -> Plain s - -- | TVMessageLine Message MessagePart LineNr String - - - --TVMessage m -> - -- let col = if isOpen m then om else cm - -- in - -- string col (unMessageID $ messageId m) - -- <|> - -- translateX 1 ( - -- horizCat $ - -- intersperse (string col ", ") $ - -- map (text' tagColor) $ - -- messageTags m - -- ) - s -> - Plain $ describe s --- let col = if isOpen m then om else cm --- in --- string col (unMessageID $ messageId m) --- <|> --- translateX 1 ( --- horizCat $ --- intersperse (string col ", ") $ --- map (text' tagColor) $ --- messageTags m --- ) - - ---hPutTreeView h hasFocus = \case --- TVMessage m -> --- putStr --- _ -> - - - --- ---treeViewImage :: Bool -> TreeView -> Image ---treeViewImage hasFocus = \case --- TVMessage m -> --- let col = if isOpen m then om else cm --- in --- string col (unMessageID $ messageId m) --- <|> --- translateX 1 ( --- horizCat $ --- intersperse (string col ", ") $ --- map (text' tagColor) $ --- messageTags m --- ) --- --- TVMessageHeaderField m fieldName -> --- let k = string mhf $ T.unpack $ CI.original fieldName --- v = maybe (string mhf_empty "nothing") --- (string mhf . T.unpack) --- (M.lookup fieldName $ messageHeaders m) --- in k <|> string mhf ": " <|> v --- --- TVMessagePart _ p -> --- string mp "TVMessagePart" --- <|> translateX 1 (string mp $ show $ partID p) --- <|> translateX 1 (string mp $ show $ partContentType p) --- --- TVMessageLine _ _ _ s -> --- string ml s --- --- TVSearch s -> --- string sColor s --- --- TVSearchResult sr -> do --- --let ThreadID tid = searchThread sr --- --string srColor tid --- -- <|> --- --translateX 1 --- (string srColor $ padl 11 ' ' $ T.unpack $ searchDateRel sr) --- <|> --- string srColor " (" --- <|> --- (string srColor $ show $ searchMatched sr) --- <|> --- string srColor ")" --- <|> --- string srColor " " --- -- <|> --- -- (string srColor $ show $ searchTime sr) --- <|> --- (string srColor $ T.unpack $ searchSubject sr) --- <|> --- --(string srColor $ T.unpack $ searchThread sr) --- (translateX 1 $ let ThreadID tid = searchThread sr in string srColor tid) --- --string srColor tid --- where --- --c1 = if hasFocus then c1_focus else c1_nofocus --- --c1_nofocus = withForeColor def $ Color240 $ -16 + 238 --- --c1_focus = withForeColor def $ Color240 $ -16 + 244 --- --c2 = withForeColor def $ Color240 $ -16 + 106 --- --c3 = withForeColor def $ Color240 $ -16 + 199 --- --- tagColor = if hasFocus then tagColor_y else tagColor_n --- tagColor_y = withForeColor def $ color 230 --- tagColor_n = withForeColor def $ color 200 --- --- cm = if hasFocus then cm_y else cm_n --- cm_y = withForeColor def $ color 46 --- cm_n = withForeColor def $ color 22 --- --- om = if hasFocus then om_y else om_n --- om_y = withForeColor def $ color 82 --- om_n = withForeColor def $ color 58 --- --- ml = if hasFocus then ml_y else ml_n --- ml_y = withForeColor def $ color 226 --- ml_n = withForeColor def $ color 202 --- --- mhf = if hasFocus then mhf_y else mhf_n --- mhf_y = withForeColor def $ color 248 --- mhf_n = withForeColor def $ color 244 --- --- mhf_empty = if hasFocus then mhf_empty_y else mhf_empty_n --- mhf_empty_y = withForeColor def $ color 88 --- mhf_empty_n = withForeColor def $ color 52 --- --- --ph = if hasFocus then ph_y else ph_n --- --ph_y = withForeColor def $ color 241 --- --ph_n = withForeColor def $ color 235 --- --- mp = if hasFocus then mp_y else mp_n --- mp_y = withForeColor def $ color 199 --- mp_n = withForeColor def $ color 162 --- --- sColor = if hasFocus then sColor_y else sColor_n --- sColor_y = withForeColor def $ color 196 --- sColor_n = withForeColor def $ color 88 --- --- srColor = if hasFocus then srColor_y else srColor_n --- srColor_y = withForeColor def $ color 197 --- srColor_n = withForeColor def $ color 89 --- --- color i = Color240 $ -16 + i -- cgit v1.2.3