Mercurial > gui
view togglePanel.ur @ 20:554e342665fe
Add a new parameter to Gui.gui
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Sat, 24 Sep 2011 15:47:00 -0400 |
parents | 3a303df9ae92 |
children | 30f9a763f5fb |
line wrap: on
line source
datatype panelState = Open | Closed con formatCtl = fn ctx :: {Unit} => [body ~ ctx] => {FormatPanel : xbody -> xbody -> xml (body ++ ctx) [] [], OpenCtl : transaction unit -> xbody, CloseCtl : transaction unit -> xbody} val defaultFormat [body ~ []] = {FormatPanel = fn ctl panel => <xml>{ctl}{panel}</xml>, OpenCtl = fn behaviour => <xml><button value="Open" onclick={behaviour}/></xml>, CloseCtl = fn behaviour => <xml><button value="Close" onclick={behaviour}/></xml>} con togglePanel t ctx = {PanelState : source panelState, FormatCtl : formatCtl ctx, Content : t} open Gui fun create [t ::: Type] [ctx ::: {Unit}] (f : formatCtl ctx) (content : t) (startOpen : bool) : transaction (togglePanel t ctx) = state <- source (if startOpen then Open else Closed); return {PanelState = state, FormatCtl = @f, Content = content} fun render [t ::: Type] [ctx ::: {Unit}] (_ : gui t ctx) [body ~ ctx] (panel : togglePanel t ctx) = let val format = panel.FormatCtl ! val openCtl = format.CloseCtl (set panel.PanelState Closed) val closeCtl = format.OpenCtl (set panel.PanelState Open) val content = toXml panel.Content in format.FormatPanel <xml> <dyn signal={c <- signal panel.PanelState; return (case c of Open => <xml>{openCtl}</xml> | Closed => <xml>{closeCtl}</xml>) }/> </xml> <xml> <dyn signal={c <- signal panel.PanelState; return (case c of Open => <xml>{content}</xml> | Closed => <xml/>) }/> </xml> end fun gui_togglePanel [t ::: Type] [ctx ::: {Unit}] (g : gui t ctx) = mkGui (@render g)