Mercurial > gui
view calendar.urs @ 26:86857ae0f386
Change more dashes to slashes, for JavaScript compatibility
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Fri, 09 Dec 2011 17:38:20 -0500 |
parents | 554e342665fe |
children | 5905b56e0cd9 |
line wrap: on
line source
type date = {Year : int, Month : int, Day : int} val date_eq : eq date val date_ord : ord date val time : date -> time val date : time -> date (* A type to represent calendar dates and some operations on them. *) type t (* Interactive calendar control widgets. The date can be set and read. * They support adding a change listener which will be called on * the new date. They are displayed as pictures of calendars which * have clickable dates. *) val onChange : t -> (date -> transaction {}) -> transaction unit (* Add a change listener to a calendar control. *) val set : t -> date -> transaction unit (* Set the date of the calendar. *) val value : t -> signal date (* Read the date of the calendar. *) val gui_t : Gui.gui t [] (* Witness that this is a gui widget. *) val create : time -> transaction t (* Get a basic interactive calendar control widget. *) style calendar style prev style this style next style weekday style curday style otherday style selday (* Styles for the calendar panel. *)