definition: |
runPassiveGUI :: String -> Widget -> IO GuiPort runPassiveGUI title widget = do gport <- openWish (escapeTcl title) "" send2tk (fst (mainWidget2tcl widget)) gport return gport |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- IO action to show a Widget in a new GUI window in passive mode, --- i.e., ignore all GUI events. --- @param title - the title of the main window containing the widget --- @param widget - the widget shown in the new window |
failfree: |
<FAILING> |
indeterministic: |
might be indeterministic |
infix: |
no fixity defined |
iotype: |
{(_,_) |-> _} |
name: |
runPassiveGUI |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
String -> Widget -> Prelude.IO GuiPort |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |