Fixed indentation, added blinking

This commit is contained in:
Jesse van den Kieboom 2006-01-02 17:58:23 +00:00
parent bb7b69fb41
commit 9436e081a1
1 changed files with 88 additions and 82 deletions

View File

@ -15,6 +15,8 @@ typedef enum _ansi_code {
A_FAINT = 2, /**< faint text */
A_ITALIC = 3, /**< italic text */
A_UNDERLINE = 4, /**< underlined text */
A_BLINK = 5, /**< blink text */
A_BLINK_FAST = 6, /**< blink fast */
A_INVERSE = 7, /**< inverse foreground/background colors */
A_INVISIBLE = 8, /**< invisible text */
A_CROSSOUT = 9, /**< crossed out text */
@ -23,6 +25,8 @@ typedef enum _ansi_code {
A_BOLD_OFF = 22, /**< text no longer bold */
A_ITALIC_OFF = 23, /**< text no longer italic */
A_UNDERLINE_OFF = 24, /**< text no longer underlined */
A_BLINK_OFF = 25, /**< text no longer underlined */
A_BLINK_FAST_OFF = 26, /**< text no longer underlined */
A_INVERSE_OFF = 27, /**< text no longer inversed */
A_INVISIBLE_OFF = 28, /**< text no longer invisible */
A_CROSSOUT_OFF = 29, /**< text no longer crossed out */
@ -117,7 +121,9 @@ static const ansinamepair ansi_styles[] = {
{A_CROSSOUT, "crossout"},
{A_CROSSOUT_OFF, "crossout-off"},
{A_ITALIC, "italic"},
{A_ITALIC_OFF, "italic-off"}
{A_ITALIC_OFF, "italic-off"},
{A_INVISIBLE, "invisible"},
{A_INVISIBLE_OFF, "invisible-off"}
};
/** @} */