|
BOL = '
'
Move the cursor to the beginning of the line
|
|
UP = '
'
Move the cursor up one line
|
|
DOWN = '
'
Move the cursor down one line
|
|
LEFT = '
'
Move the cursor left one char
|
|
RIGHT = '
'
Move the cursor right one char
|
|
CLEAR_EOL = '
'
Clear to the end of the line.
|
|
CLEAR_LINE = '
'
Clear the current line; cursor to BOL.
|
|
BOLD = '
'
Turn on bold mode
|
|
NORMAL = '
'
Turn off all modes
|
|
COLS = 75
Width of the terminal (default to 75)
|
|
UNDERLINE = '
'
Underline the text
|
|
REVERSE = '
'
Reverse the foreground & background
|
|
WHITE = '
'
|
|
YELLOW = '
'
|
|
MAGENTA = '
'
|
|
RED = '
'
|
|
CYAN = '
'
|
|
GREEN = '
'
|
|
BLUE = '
'
|
|
BLACK = '
'
|
|
_STRING_CAPABILITIES = [ ' BOL=cr ' , ' UP=cuu1 ' , ' DOWN=cud1 ' , ' LEF ...
|
|
_COLORS = [ ' BLACK ' , ' BLUE ' , ' GREEN ' , ' CYAN ' , ' RED ' , ' MAGENTA ' , ...
|
|
_ANSICOLORS = [ ' BLACK ' , ' RED ' , ' GREEN ' , ' YELLOW ' , ' BLUE ' , ' MAG ...
|
|
FORCE_SIMPLE_TERM = False
If this is set to true, then new TerminalControllers will assume that
the terminal is not capable of doing manipulation of any kind.
|