definition:
|
seeText :: WidgetRef -> (Int,Int) -> GuiPort -> IO ()
seeText (WRefLabel var wtype) (line,column) gport =
if wtype /= "textedit"
then doWarn $ "GUI.seeText ignored for widget type '" ++ wtype ++ "'"
else send2tk (wRefname2Label var++" see "++show line++"."++show column)
gport
|
demand:
|
arguments 1 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Adjust the view of a TextEdit widget so that the specified line/column
--- character is visible.
--- Lines are numbered from 1 and columns are numbered from 0.
|
failfree:
|
(_, _, _)
|
indeterministic:
|
might be indeterministic
|
infix:
|
no fixity defined
|
iotype:
|
{({WRefLabel},{(,)},_) |-> _}
|
name:
|
seeText
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
WidgetRef -> (Prelude.Int, Prelude.Int) -> GuiPort -> Prelude.IO ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|