diff options
author | Timo Sirainen <cras@irssi.org> | 2000-11-12 20:20:05 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2000-11-12 20:20:05 +0000 |
commit | d1330fff6d1a6cf2c37c14d1054ef9cf73d5f5fe (patch) | |
tree | e0778ca64424eae592e2c7edb1c0e7b01dec139e /src/fe-text/gui-windows.h | |
parent | 61f33a6bb2d319aba85406a1788da230dca1f5a8 (diff) | |
download | irssi-d1330fff6d1a6cf2c37c14d1054ef9cf73d5f5fe.zip |
Text printing changes. Formats are now optionally saved to each line so
later if you used /format it would change the old lines too. However
the actual line changing doesn't work yet :)
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@836 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/fe-text/gui-windows.h')
-rw-r--r-- | src/fe-text/gui-windows.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/fe-text/gui-windows.h b/src/fe-text/gui-windows.h index 1600ab3b..1d037722 100644 --- a/src/fe-text/gui-windows.h +++ b/src/fe-text/gui-windows.h @@ -19,8 +19,12 @@ enum { LINE_CMD_COLOR0, /* change to black, would be same as \0\0 but it breaks things.. */ LINE_CMD_COLOR8, /* change to dark grey, normally 8 = bold black */ LINE_CMD_UNDERLINE, /* enable/disable underlining */ - LINE_CMD_INDENT, /* if line is split, indent it at this position */ - LINE_CMD_BLINK /* blinking background */ + LINE_CMD_INDENT, /* if line is split, indent it at this position */ + LINE_CMD_BLINK, /* blinking background */ + LINE_CMD_FORMAT /* end of line, but next will come the format that was used to create the + text in format <module><format_name><arg><arg2...> - fields are separated + with \0<format> and last argument ends with \0<eol>. \0<continue> is allowed + anywhere */ }; typedef struct { |