annotate gui.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 |
16447dc6a68c |
children |
5905b56e0cd9 |
rev |
line source |
adam@20
|
1 class gui = fn (t :: Type) (ctx :: {Unit}) => [body ~ ctx] => t -> xml (body ++ ctx) [] []
|
kkallio@8
|
2
|
adam@20
|
3 fun gui_xbody [body ~ []] x = x
|
adam@20
|
4 fun gui_xtable [body ~ _] x = x
|
kkallio@8
|
5
|
adam@20
|
6 fun mkGui [t ::: Type] [ctx ::: {Unit}] (toXml : [body ~ ctx] => t -> xml (body ++ ctx) [] []) = @toXml
|
kkallio@8
|
7
|
adam@20
|
8 fun toXml [t ::: Type] [ctx ::: {Unit}] [body ~ ctx] (toXml : gui t ctx) = toXml
|