Retro68/Console
DarwinNE 1f19d619cf Try to fix garbage appearing when resizing window. Redraw is probably done a little bit too often. 2020-02-25 22:03:37 +01:00
..
retro Try to fix garbage appearing when resizing window. Redraw is probably done a little bit too often. 2020-02-25 22:03:37 +01:00
CMakeLists.txt Correct the name CMakeLists.txt 2020-01-13 00:10:49 +01:00
ConsoleTest.cc Implement suggestions from the code review of the pull request #103. 2020-01-18 00:33:55 +01:00
readme.txt Implement suggestions from the code review of the pull request #103. 2020-01-18 00:33:55 +01:00

readme.txt

    Console

This library provides a simple console library, offering a limited support for ANSI control sequences.

Here is a list of the supported sequences and their meaning:

ESC[0m              Reset all text style
ESC[1m              Bold font (*)
ESC[3m              Italic font
ESC[4m              Underline font

ESC]0;NewnameBEL    Set the window title to "Newname" (**)

NOTES:
(*) Obtained with bold + condense style together, so that the character grid
remains regular (this way, the width of bold characters remains the same as 
regular ones).
(**) BEL is ASCII character 7.