summaryrefslogtreecommitdiffhomepage
path: root/src/Types.hs
blob: 94f2373f02e85e4a96e068c96d63d92443698615 (plain)
1
2
3
4
5
6
7
8
9
module Types where
import Graphics.X11.Xlib

data Widget = Text String | Icon String

data Bitmap = Bitmap { width  :: Dimension
                     , height :: Dimension
                     , pixmap :: Pixmap
                     }