Tornado API Reference : GUI Tcl Library (UNIX)

textWindow

NAME

textWindow - Tcl-driven text window manager

TCL PROCEDURES

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

DESCRIPTION

This routine allows to create and manipulate text windows for the Tcl UNIX GUI

SEE ALSO

textWindow


GUI Tcl Library (UNIX) : Tcl Procedures

textWindowCreate

NAME

textWindowCreate - create a text window

LOCALE

UNIX GUI

SYNOPSIS

textWindowCreate name [-size w h]

DESCRIPTION

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.

SEE ALSO

textWindowPost, textWindowSet


GUI Tcl Library (UNIX) : Tcl Procedures

textWindowSet

NAME

textWindowSet - set the contents of a text window

LOCALE

UNIX GUI

SYNOPSIS

textWindowSet name value

DESCRIPTION

This command sets the named text window to contain the value string.

SEE ALSO

textWindowCreate, textWindowPost, textWindowAppend


GUI Tcl Library (UNIX) : Tcl Procedures

textWindowAppend

NAME

textWindowAppend - add to the contents of a text window

LOCALE

UNIX GUI

SYNOPSIS

textWindowAppend name value

DESCRIPTION

This command appends the text in the value argument to the bottom of the named text window.

SEE ALSO

textWindowCreate, textWindowPost, textWindowSet


GUI Tcl Library (UNIX) : Tcl Procedures

textWindowPost

NAME

textWindowPost - post a text window

LOCALE

UNIX GUI

SYNOPSIS

textWindowPost name

DESCRIPTION

This command posts the named text window on the display.

SEE ALSO

textWindowCreate, textWindowSet


GUI Tcl Library (UNIX) : Tcl Procedures

textWindowIsDisplayed

NAME

textWindowIsDisplayed - check if a text window is visible

LOCALE

UNIX GUI

SYNOPSIS

textWindowIsDisplayed name

DESCRIPTION

This command checks to see if the specified text window is visible.

RETURNS

1 if the window is visible, 0 if not.

SEE ALSO

textWindow