FileTerm

Base class for File-based terminal implementations.

abstract
class FileTerm : Term {}

Members

Functions

putText
void putText(char[] s)
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

f
File f;

Inherited Members

From Term

Color
enum Color

The 16 standard VGA/ANSI colors plus a "none" pseudo-color.

ForegroundColor
struct ForegroundColor

Color wrapping formatting operations for put.

BackgroundColor
struct BackgroundColor
Undocumented in source.
fg
alias fg = ForegroundColor

Shorthands

bg
alias bg = BackgroundColor
Undocumented in source.
put
void put(Args args)

Puts some combination of colors and stringifiable objects in order.

putText
void putText(char[] s)
Undocumented in source.
setTextColor
void setTextColor(Color c)
Undocumented in source.
setBackgroundColor
void setBackgroundColor(Color c)
Undocumented in source.
setColor
void setColor(Color fg, Color bg)
Undocumented in source.

Meta