definition:
|
appendValue :: WidgetRef -> String -> GuiPort -> IO ()
appendValue (WRefLabel var wtype) val gport =
if wtype /= "textedit"
then doWarn $ "GUI.appendValue ignored for widget type '" ++ wtype ++ "'"
else send2tk (wRefname2Label var++" insert end \""++escapeTcl val++"\"") gport >>
send2tk (wRefname2Label var++" see end") gport
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Appends a String value to the contents of a TextEdit widget and
--- adjust the view to the end of the TextEdit widget.
|
failfree:
|
(_, _, _)
|
indeterministic:
|
might be indeterministic
|
infix:
|
no fixity defined
|
iotype:
|
{({WRefLabel},_,_) |-> _}
|
name:
|
appendValue
|
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
|