1term::ansi::ctrl::unix(n) Terminal control term::ansi::ctrl::unix(n)
2
3
4
5______________________________________________________________________________
6
8 term::ansi::ctrl::unix - Control operations and queries
9
11 package require Tcl 8.4
12
13 package require term::ansi::ctrl::unix ?0.1?
14
15 ::term::ansi::ctrl::unix::import ?ns? ?arg...?
16
17 ::term::ansi::ctrl::unix::raw
18
19 ::term::ansi::ctrl::unix::raw
20
21 ::term::ansi::ctrl::unix::columns
22
23 ::term::ansi::ctrl::unix::rows
24
25_________________________________________________________________
26
28 WARNING: This package is unix-specific and depends on the availability
29 of two unix system commands for terminal control, i.e. stty and tput,
30 both of which have to be found in the $PATH. If any of these two com‐
31 mands is missing the loading of the package will fail.
32
33 The package provides commands to switch the standard input of the cur‐
34 rent process between raw and cooked input modes, and to query the size
35 of terminals, i.e. the available number of columns and lines.
36
38 Introspection
39 ::term::ansi::ctrl::unix::import ?ns? ?arg...?
40 This command imports some or all attribute commands into the
41 namespace ns. This is by default the namespace ctrl. Note that
42 this is relative namespace name, placing the imported command
43 into a child of the current namespace. By default all commands
44 are imported, this can howver be restricted by listing the names
45 of the wanted commands after the namespace argument.
46
47 Operations
48 ::term::ansi::ctrl::unix::raw
49 This command switches the standard input of the current process
50 to raw input mode. This means that from then on all characters
51 typed by the user are immediately reported to the application
52 instead of waiting in the OS buffer until the Enter/Return key
53 is received.
54
55 ::term::ansi::ctrl::unix::raw
56 This command switches the standard input of the current process
57 to cooked input mode. This means that from then on all charac‐
58 ters typed by the user are kept in OS buffers for editing until
59 the Enter/Return key is received.
60
61 ::term::ansi::ctrl::unix::columns
62 This command queries the terminal connected to the standard
63 input for the number of columns available for display.
64
65 ::term::ansi::ctrl::unix::rows
66 This command queries the terminal connected to the standard
67 input for the number of rows (aka lines) available for display.
68
70 ansi, columns, control, cooked, input mode, lines, raw, rows, terminal
71
73 Copyright (c) 2006 Andreas Kupries <andreas_kupries@users.sourceforge.net>
74
75
76
77
78term 0.1 term::ansi::ctrl::unix(n)