console(3tk) | Tk Built-In Commands | console(3tk) |
console - Control the console on systems without a real console
console subcommand ?arg ...?
The console window is a replacement for a real console to allow input and output on the standard I/O channels on platforms that do not have a real console. It is implemented as a separate interpreter with the Tk toolkit loaded, and control over this interpreter is given through the console command. The behaviour of the console window is defined mainly through the contents of the console.tcl file in the Tk library. Except for TkAqua, this command is not available when Tk is loaded into a tclsh interpreter with “package require Tk”, as a conventional terminal is expected to be present in that case. In TkAqua, this command is only available when stdin is /dev/null (as is the case e.g. when the application embedding Tk is started from the Mac OS X Finder).
The consoleinterp command in the console interpreter allows scripts to be evaluated in the main interpreter. It supports two subcommands: eval and record.
There are several additional commands in the console interpreter that are called in response to activity in the main interpreter. These are documented here for completeness only; they form part of the internal implementation of the console and are likely to change or be modified without warning.
Output to the console from the main interpreter via the stdout and stderr channels is handled by invoking the tk::ConsoleOutput command in the console interpreter with two arguments. The first argument is the name of the channel being written to, and the second argument is the string being written to the channel (after encoding and end-of-line translation processing has been performed.)
When the . window of the main interpreter is destroyed, the tk::ConsoleExit command in the console interpreter is called (assuming the console interpreter has not already been deleted itself, that is.)
The default script creates a console window (implemented using a text widget) that has the following behaviour:
Most other behaviour is the same as a conventional text widget except for the way that the <<Cut>> event is handled identically to the <<Copy>> event.
Not all platforms have the console command, so debugging code often has the following code fragment in it so output produced by puts can be seen while during development:
catch {console show}
destroy(3tk), fconfigure(3tcl), history(3tcl), interp(3tcl), puts(3tcl), text(3tk), wm(3tk)
console, interpreter, window, interactive, output channels
8.4 | Tk |