module Text_input:sig
..end
One-line text-input widget.
type
t
typefilter =
string -> bool
val triggers : Trigger.t list
The list of events that a Text_input can react to. Currently this is
Sdl.Event.[text_editing; text_input; key_down; key_up]
.
val uint_filter : filter
val text : t -> string
val activate : t -> unit
Warning: two Text_input widgets cannot be active at the same time. You can
use Sync.push
to delay the activation.