mirror of
https://github.com/irssi/irssi.git
synced 2026-08-09 03:40:16 +02:00
Finish 256 colour support for Irssi
256 colour patch is cleaned up and the remaining cases are made work, this includes especially Theme support, which was not implemented before. Changes not related to colours were reverted again, making a review of the two patches against master easier to follow. As a byproduct of the Hex-colour code parser, the 24bit colours are also implemented. Actually using them in the terminal is guarded by a compile time switch (as well as a run time switch), as it breaks the existing colour protocol and requires additional storage. To make a seamless usage, down-conversion is provided for 8 and 16 colours. Diverging from Tom's approach, the colour protocol is reverted back to the original one. Unfortunately, the changes required in the Theme engine will break the API. For more details, please refer to the patch documentation at either http://irssi-docs.wikispaces.com/Notes-256-Colour or https://github.com/shabble/irssi-docs/wiki/Notes-256-Colour
This commit is contained in:
parent
2d4edc5187
commit
96a292d40e
28 changed files with 904 additions and 493 deletions
|
|
@ -15,6 +15,9 @@ typedef struct {
|
|||
int indent;
|
||||
INDENT_FUNC indent_func;
|
||||
int color;
|
||||
#ifdef TERM_TRUECOLOR
|
||||
int fg24, bg24;
|
||||
#endif
|
||||
|
||||
/* first word in line belong to the end of the last word in
|
||||
previous line */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue