This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
phi/lib/Phi/Widget.hs

100 lines
3.9 KiB
Haskell
Raw Normal View History

2011-07-14 01:47:10 +02:00
{-# LANGUAGE ExistentialQuantification, TypeFamilies, StandaloneDeriving, FlexibleContexts #-}
2011-07-14 00:09:20 +02:00
module Phi.Widget ( Widget(..)
, WidgetClass(..)
, WidgetState(..)
, separator
, createWidgetState
, layoutWidgets
, renderWidgets
) where
import Control.Monad
2011-07-14 01:47:10 +02:00
import Data.Traversable
2011-07-14 00:09:20 +02:00
import Graphics.Rendering.Cairo
2011-07-14 01:47:10 +02:00
class Show a => WidgetClass a where
2011-07-14 00:09:20 +02:00
type WidgetData a :: *
initialState :: a -> WidgetData a
minSize :: a -> Int
weight :: a -> Float
weight _ = 0
2011-07-14 01:47:10 +02:00
layout :: a -> WidgetData a -> Int -> Int -> WidgetData a
layout _ priv _ _ = priv
2011-07-14 00:09:20 +02:00
render :: a -> WidgetData a -> Int -> Int -> Render ()
2011-07-14 01:47:10 +02:00
data Widget = forall a. (WidgetClass a, Show (WidgetData a)) => Widget a
deriving instance Show Widget
2011-07-14 00:09:20 +02:00
2011-07-14 01:47:10 +02:00
data WidgetState = forall a. (WidgetClass a, Show (WidgetData a)) => WidgetState { stateWidget :: a
, stateX :: Int
, stateY :: Int
, stateWidth :: Int
, stateHeight :: Int
, statePrivateData :: WidgetData a
}
deriving instance Show WidgetState
2011-07-14 00:09:20 +02:00
createWidgetState :: Widget -> WidgetState
createWidgetState (Widget w) = WidgetState { stateWidget = w
2011-07-14 01:47:10 +02:00
, stateX = 0
, stateY = 0
2011-07-14 00:09:20 +02:00
, stateWidth = 0
, stateHeight = 0
, statePrivateData = initialState w
}
2011-07-14 01:47:10 +02:00
layoutWidgets :: [WidgetState] -> Int -> Int -> Int -> Int -> [WidgetState]
layoutWidgets widgets x y width height = snd $ mapAccumL layoutWidgetAndX x widgets
2011-07-14 00:09:20 +02:00
where
2011-07-14 01:47:10 +02:00
sizesum = sum $ map (\(WidgetState {stateWidget = w} ) -> nneg . minSize $ w) widgets
wsum = let wsum = sum $ map (\(WidgetState {stateWidget = w} ) -> nneg . weight $ w) widgets
in if wsum > 0 then wsum else 1
surplus = width - sizesum
layoutWidgetAndX wX state = let lw = layoutWidget wX state
in (wX + stateWidth lw, lw)
layoutWidget wX state = case state of
WidgetState {stateWidget = w, statePrivateData = priv} ->
let wWidth = floor $ (fromIntegral $ minSize w) + (fromIntegral surplus)*(nneg $ weight w)/wsum
priv' = layout w priv wWidth height
in WidgetState { stateWidget = w, stateX = wX, stateY = y, stateWidth = wWidth, stateHeight = height, statePrivateData = priv' }
nneg :: (Num a, Ord a) => a -> a
nneg x = max 0 x
2011-07-14 00:09:20 +02:00
renderWidgets :: [WidgetState] -> Render ()
2011-07-14 01:47:10 +02:00
renderWidgets widgets = forM_ widgets $ \WidgetState { stateWidget = widget
, stateX = x
, stateY = y
, stateWidth = w
, stateHeight = h
, statePrivateData = priv } -> do
save
translate (fromIntegral x) (fromIntegral y)
render widget priv w h
restore
2011-07-14 00:09:20 +02:00
2011-07-14 01:47:10 +02:00
data Separator = Separator Int Float deriving Show
2011-07-14 00:09:20 +02:00
instance WidgetClass Separator where
type WidgetData Separator = ()
initialState _ = ()
minSize (Separator s _) = s
weight (Separator _ w) = w
render _ _ _ _ = return ()
separator :: Int -> Float -> Widget
separator s w = Widget $ Separator s w