summaryrefslogtreecommitdiffstats
path: root/lib/Phi/Panel.hs
blob: a31ffadecdd29ad6f7af9c0cb6de1c59ddcdda65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module Phi.Panel ( PanelConfig(..)
                 , defaultPanelConfig
                 ) where

import Phi.Types
import Phi.Widget


data PanelConfig = PanelConfig { panelPosition :: Position
                               , panelSize     :: Int
                               }

defaultPanelConfig :: PanelConfig
defaultPanelConfig = PanelConfig { panelPosition = Top, panelSize = 24 }