diff options
author | Lukas Mai <l.mai@web.de> | 2011-11-06 20:40:25 +0100 |
---|---|---|
committer | Ailin Nemui <ailin@esf51.localdomain> | 2014-07-07 00:32:07 +0200 |
commit | 0e294d5c2e4d4dd686378f2050abc9a9f2fae199 (patch) | |
tree | 5c39edb7d60860ec430953553c277da83d666373 /src/fe-text/term.h | |
parent | fc00b9e6f07379f09ea13fa42d9feed377d2d762 (diff) | |
download | irssi-0e294d5c2e4d4dd686378f2050abc9a9f2fae199.zip |
add italics support; don't use standout for reverse
Diffstat (limited to 'src/fe-text/term.h')
-rw-r--r-- | src/fe-text/term.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/fe-text/term.h b/src/fe-text/term.h index 05a31573..cdcc787a 100644 --- a/src/fe-text/term.h +++ b/src/fe-text/term.h @@ -14,12 +14,13 @@ typedef struct _TERM_WINDOW TERM_WINDOW; #define ATTR_BLINK ( 0x080000 ) #define ATTR_UNDERLINE ( 0x100000 ) #define ATTR_REVERSE ( 0x200000 ) -#define ATTR_FGCOLOR24 ( 0x400000 ) -#define ATTR_BGCOLOR24 ( 0x800000 ) +#define ATTR_ITALIC ( 0x400000 ) +#define ATTR_FGCOLOR24 ( 0x1000000 ) +#define ATTR_BGCOLOR24 ( 0x2000000 ) #define ATTR_RESET (ATTR_RESETFG|ATTR_RESETBG) -#define ATTR_NOCOLORS (ATTR_UNDERLINE|ATTR_REVERSE|ATTR_BLINK|ATTR_BOLD) +#define ATTR_NOCOLORS (ATTR_UNDERLINE|ATTR_REVERSE|ATTR_BLINK|ATTR_BOLD|ATTR_ITALIC) /* terminal types */ #define TERM_TYPE_8BIT 0 /* normal 8bit text */ |