8 lines
415 B
OCaml
8 lines
415 B
OCaml
(* Support for tk_optionMenu *)
|
|
val create: parent:'a widget -> variable:textVariable ->
|
|
?name: string -> string list -> menubutton widget * menu widget
|
|
(* [create parent var options] creates a multi-option
|
|
menubutton and its associated menu. The option is also stored
|
|
in the variable. Both widgets (menubutton and menu) are
|
|
returned *)
|