hob-0.0.1.0: src/lib/Hob/Context/UiContext.hs
module Hob.Context.UiContext (
UiContext(..)
) where
import Graphics.UI.Gtk (Entry, Label, Notebook, TreeView, Window)
data UiContext = UiContext {
mainWindow :: Window,
mainNotebook :: Notebook,
commandEntry :: Entry,
sidebarTree :: TreeView,
sidebarTreeSearch :: Entry,
activeModesLabel :: Label
}