summaryrefslogtreecommitdiffstats
path: root/State.hs
diff options
context:
space:
mode:
Diffstat (limited to 'State.hs')
-rw-r--r--State.hs20
1 files changed, 20 insertions, 0 deletions
diff --git a/State.hs b/State.hs
new file mode 100644
index 0000000..1f2b3d3
--- /dev/null
+++ b/State.hs
@@ -0,0 +1,20 @@
+module State where
+
+import Blessings.String (Blessings)
+import Data.Time
+import qualified Data.Tree.Zipper as Z
+import System.Posix.Signals
+import TreeView (TreeView)
+
+data State = State
+ { cursor :: Z.TreePos Z.Full TreeView
+ , xoffset :: Int
+ , yoffset :: Int
+ , flashMessage :: Blessings String
+ , screenWidth :: Int
+ , screenHeight :: Int
+ , headBuffer :: [Blessings String]
+ , treeBuffer :: [Blessings String]
+ , now :: UTCTime
+ , signalHandlers :: [(Signal, IO ())]
+ }