definition:
|
runConfigControlledGUI :: String ->
(Widget, String -> GuiPort -> IO [ReconfigureItem]) -> Handle -> IO ()
runConfigControlledGUI title (widget,exth) hdl = do
gport <- openWish (escapeTcl title) ""
initSchedule widget gport [msgToIOHandler exth hdl] (\_->return [])
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Runs a Widget in a new GUI window and process GUI events.
--- In addition, an event handler is provided that process
--- messages received from an external stream identified by a handle
--- (third argument).
--- This operation is useful to run a GUI that should react on
--- user events as well as messages written to the given handle.
--- @param title - the title of the main window containing the widget
--- @param th - a pair (widget,exth) where widget is the widget shown in the
--- new window and exth is the event handler for external messages
--- that returns a list of widget reference/configuration pairs
--- which is applied after the handler in order to configure
--- some GUI widgets
--- @param hdl - the handle of the stream of external messages
|
failfree:
|
<FAILING>
|
indeterministic:
|
might be indeterministic
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{(,)},_) |-> _}
|
name:
|
runConfigControlledGUI
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
String -> (Widget, String -> GuiPort -> Prelude.IO [ReconfigureItem])
-> System.IO.Handle -> Prelude.IO ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|