definition:
|
runControlledGUI :: String -> (Widget, String -> GuiPort -> IO ()) -> Handle -> IO ()
runControlledGUI title (widget,exth) hdl =
runInitControlledGUI title (widget,exth) (\_->return []) hdl
|
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
--- @param hdl - the handle of the stream of external messages
|
failfree:
|
<FAILING>
|
indeterministic:
|
might be indeterministic
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{(,)},_) |-> _}
|
name:
|
runControlledGUI
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
String -> (Widget, String -> GuiPort -> Prelude.IO ()) -> 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
|