summaryrefslogtreecommitdiffhomepage
path: root/src/Xmobar/X11/Types.hs
blob: e94967b95e7138db6bb79e4d4ddca0301b002506 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
------------------------------------------------------------------------------
-- |
-- Module: Xmobar.Types
-- Copyright: (c) 2018, 2022 Jose Antonio Ortega Ruiz
-- License: BSD3-style (see LICENSE)
--
-- Maintainer: jao@gnu.org
-- Stability: unstable
-- Portability: portable
-- Created: Sat Nov 24, 2018 19:02
--
--
-- The Xmobar basic type
--
------------------------------------------------------------------------------


module Xmobar.X11.Types (X, XConf (..), Bitmap (..), XFont (..)) where

import Graphics.X11.Xlib
import Control.Monad.Reader
import qualified Data.List.NonEmpty as NE

import Xmobar.X11.Bitmap
import Xmobar.X11.Text
import Xmobar.Config.Types

-- | The X type is a ReaderT
type X = ReaderT XConf IO

-- | The ReaderT inner component
data XConf =
    XConf { display   :: Display
          , rect      :: Rectangle
          , window    :: Window
          , fontListS :: NE.NonEmpty XFont
          , verticalOffsets :: NE.NonEmpty Int
          , iconCache :: BitmapCache
          , config    :: Config
          }