SCM Repository
View of /sml/trunk/src/smlnj-lib/Controls/controls-sig.sml
Parent Directory
|
Revision Log
Revision 1193 -
(download)
(annotate)
Thu May 16 18:44:04 2002 UTC (18 years, 8 months ago) by jhr
File size: 1491 byte(s)
Thu May 16 18:44:04 2002 UTC (18 years, 8 months ago) by jhr
File size: 1491 byte(s)
Bringing the Yale repository upto date (see CHANGES file for details).
(* controls-sig.sml * * COPYRIGHT (c) 2002 Bell Labs, Lucent Technologies *) signature CONTROLS = sig type priority = int list type 'a control (* a converter for control values *) type 'a value_cvt = { tyName : string, fromString : string -> 'a option, toString : 'a -> string } (* create a new control *) val control : { name : string, (* name of the control *) pri : priority, (* control's priority *) obscurity : int, (* control's detail level; higher means *) (* more obscure *) help : string, (* control's description *) ctl : 'a ref (* ref cell holding control's state *) } -> 'a control (* generate a control *) val genControl : { name : string, pri : priority, obscurity : int, help : string, default : 'a } -> 'a control (* this exception is raised to communicate that there is a syntax error * in a string representation of a control value. *) exception ValueSyntax of {ctlName : string, value : string} (* create a string control from a typed control *) val stringControl : 'a value_cvt -> 'a control -> string control (* control operations *) val name : 'a control -> string val get : 'a control -> 'a val set : 'a control * 'a -> unit val info : 'a control -> {priority : priority, obscurity : int, help : string} (* compare the priority of two controls *) val compare : ('a control * 'a control) -> order end
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |