mirror of
https://github.com/irssi/irssi.git
synced 2026-08-09 20:00:23 +02:00
add italics support; don't use standout for reverse
This commit is contained in:
parent
fc00b9e6f0
commit
0e294d5c2e
12 changed files with 98 additions and 20 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue