Tornado API Reference : GUI Tcl Library (UNIX)
textWindow - Tcl-driven text window manager
textWindowCreate - create a text window
textWindowSet - set the contents of a text window
textWindowAppend - add to the contents of a text window
textWindowPost - post a text window
textWindowIsDisplayed - check if a text window is visible
This routine allows to create and manipulate text windows for the Tcl UNIX GUI
textWindowCreate - create a text window
UNIX GUI
textWindowCreate name [-size w h]
This command creates a text window. The window must be posted with textWindowPost before it appears on the display; the contents of the text window are set with textWindowSet.
textWindowPost, textWindowSet
textWindowSet - set the contents of a text window
UNIX GUI
textWindowSet name value
This command sets the named text window to contain the value string.
textWindowCreate, textWindowPost, textWindowAppend
textWindowAppend - add to the contents of a text window
UNIX GUI
textWindowAppend name value
This command appends the text in the value argument to the bottom of the named text window.
textWindowCreate, textWindowPost, textWindowSet
textWindowPost - post a text window
UNIX GUI
textWindowPost name
This command posts the named text window on the display.
textWindowCreate, textWindowSet
textWindowIsDisplayed - check if a text window is visible
UNIX GUI
textWindowIsDisplayed name
This command checks to see if the specified text window is visible.
1 if the window is visible, 0 if not.