|
ActiveTcl User Guide |
|
[ Main table Of Contents | Tcllib Table Of Contents | Tcllib Index ]
term::ansi::code::attr(n) 0.1 "Terminal control"
term::ansi::code::attr - ANSI attribute sequences
TABLE OF
CONTENTS
SYNOPSIS
DESCRIPTION
API
Introspection
Attributes
KEYWORDS
COPYRIGHT
package require Tcl 8.4
package require term::ansi::code ?0.1?
package require term::ansi::code::attr ?0.1?
This package provides symbolic names for the ANSI attribute
control codes. For each control code a single command is provided
which returns this code as its result. None of the commands of this
package write to a channel; that is handled by higher level
packages, like term::ansi::send .
- ::term::ansi::code::attr::names
- This command is for introspection. It returns as its result a
list containing the names of all attribute commands.
- ::term::ansi::code::attr::import
?ns? ?arg...?
- This command imports some or all attribute commands into the
namespace ns. This is by default the namespace
attr. Note that this is relative namespace name, placing
the imported command into a child of the current namespace. By
default all commands are imported, this can howver be restricted by
listing the names of the wanted commands after the namespace
argument.
- ::term::ansi::code::attr::fgblack
- Set text color to Black.
- ::term::ansi::code::attr::fgred
- Set text color to Red.
- ::term::ansi::code::attr::fggreen
- Set text color to Green.
- ::term::ansi::code::attr::fgyellow
- Set text color to Yellow.
- ::term::ansi::code::attr::fgblue
- Set text color to Blue.
- ::term::ansi::code::attr::fgmagenta
- Set text color to Magenta.
- ::term::ansi::code::attr::fgcyan
- Set text color to Cyan.
- ::term::ansi::code::attr::fgwhite
- Set text color to White.
- ::term::ansi::code::attr::fgdefault
- Set default text color (Black).
- ::term::ansi::code::attr::bgblack
- Set background to Black.
- ::term::ansi::code::attr::bgred
- Set background to Red.
- ::term::ansi::code::attr::bggreen
- Set background to Green.
- ::term::ansi::code::attr::bgyellow
- Set background to Yellow.
- ::term::ansi::code::attr::bgblue
- Set background to Blue.
- ::term::ansi::code::attr::bgmagenta
- Set background to Magenta.
- ::term::ansi::code::attr::bgcyan
- Set background to Cyan.
- ::term::ansi::code::attr::bgwhite
- Set background to White.
- ::term::ansi::code::attr::bgdefault
- Set default background (Transparent).
- ::term::ansi::code::attr::bold
- Bold on.
- ::term::ansi::code::attr::dim
- Dim on.
- ::term::ansi::code::attr::italic
- Italics on.
- ::term::ansi::code::attr::underline
- Underscore on.
- ::term::ansi::code::attr::blink
- Blink on.
- ::term::ansi::code::attr::revers
- Reverse on.
- ::term::ansi::code::attr::hidden
- Hidden on.
- ::term::ansi::code::attr::strike
- Strike-through on.
- ::term::ansi::code::attr::nobold
- Bold off.
- ::term::ansi::code::attr::noitalic
- Italics off.
- ::term::ansi::code::attr::nounderline
- Underscore off.
- ::term::ansi::code::attr::noblink
- Blink off.
- ::term::ansi::code::attr::norevers
- Reverse off.
- ::term::ansi::code::attr::nohidden
- Hidden off.
- ::term::ansi::code::attr::nostrike
- Strike-through off.
- ::term::ansi::code::attr::reset
- Reset all attributes to their default values.
ansi , attribute control , color control , control , terminal
Copyright © 2006 Andreas Kupries
<andreas_kupries@users.sourceforge.net>