definition:
|
addRegionStyle :: WidgetRef -> (Int,Int) -> (Int,Int) -> Style -> GuiPort
-> IO ()
addRegionStyle (WRefLabel var wtype) (l1,c1) (l2,c2) style gport =
if wtype /= "textedit"
then doWarn $ "GUI.setRegionStyle ignored for widget type '" ++ wtype ++ "'"
else send2tk (wRefname2Label var++" tag add "++showStyle style++" "++
show l1++"."++show c1++" "++show l2++"."++show c2) gport
|
demand:
|
arguments 1 2 3
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Adds a style value in a region of a TextEdit widget.
--- The region is specified a start and end position similarly
--- to <code>getCursorPosition</code>.
--- Different styles can be combined, e.g., to get bold blue text on a
--- red background. If <code>Bold</code>, <code>Italic</code> and
--- <code>Underline</code> are combined, currently all but one of these are
--- ignored.
--- This is an experimental function and might be changed in the future.
|
failfree:
|
(_, _, _, _, _)
|
indeterministic:
|
might be indeterministic
|
infix:
|
no fixity defined
|
iotype:
|
{({WRefLabel},{(,)},{(,)},_,_) |-> _}
|
name:
|
addRegionStyle
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
WidgetRef -> (Prelude.Int, Prelude.Int) -> (Prelude.Int, Prelude.Int) -> Style
-> GuiPort -> Prelude.IO ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|