definition:
|
setValue :: WidgetRef -> String -> GuiPort -> IO ()
setValue (WRefLabel var _) val gport =
send2tk ("setvar"++var++" \""++escapeTcl val++"\"") gport
|
demand:
|
arguments 1 3
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Sets the (String) value of a variable in a GUI.
|
failfree:
|
(_, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({WRefLabel},_,_) |-> _}
|
name:
|
setValue
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
WidgetRef -> String -> GuiPort -> Prelude.IO ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|