terminalgui  0.1.0
Widgets for your terminal, powered by Qt! Create textual GUI (TUI) in your console easily.
Variables
Tg::Key Namespace Reference

Characters and escape sequences which can be found in keyboard buffer (see Terminal::getChar()). More...

Variables

const QString up = Command::ansiEscape + 'A'
 Up arrow key.
 
const QString down = Command::ansiEscape + 'B'
 Down arrow key.
 
const QString right = Command::ansiEscape + 'C'
 Right arrow key.
 
const QString left = Command::ansiEscape + 'D'
 Left arrow key.
 
const QChar tab = '\t'
 Tab key.
 
const QChar enter = '\n'
 Enter key.
 
const QChar ret = '\r'
 Return key.
 
const int backspace = 0x007f
 Backspace key.
 
const QString del = Command::ansiEscape + "3~"
 Delete key.
 
const QChar space = ' '
 Space key.
 
const QChar ctrlC = '\003'
 Ctrl+C.
 
const QChar ctrlD = '\004'
 Ctrl+D.
 

Detailed Description

Characters and escape sequences which can be found in keyboard buffer (see Terminal::getChar()).