diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2011-09-22 11:09:16 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2011-09-22 11:09:16 +0200 |
commit | 25e1e6e23d9584df24f052151611161c34cda09e (patch) | |
tree | be4534e1b8f92807c158abcdc57ec212cb582ad4 /src/gui/gui-chat.h | |
parent | 3146a6c65c777a104646a576b6e6c84ecd6bc340 (diff) | |
download | weechat-25e1e6e23d9584df24f052151611161c34cda09e.zip |
core: add colors for inactive windows and lines (in merged buffers)
New boolean options to control use of inactive colors:
- weechat.look.color_inactive_message
- weechat.look.color_inactive_prefix
- weechat.look.color_inactive_prefix_buffer
- weechat.look.color_inactive_time
New "inactive" color options:
- weechat.color.chat_inactive_line
- weechat.color.chat_inactive_window
- weechat.color.chat_prefix_buffer_inactive_line
Diffstat (limited to 'src/gui/gui-chat.h')
-rw-r--r-- | src/gui/gui-chat.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gui/gui-chat.h b/src/gui/gui-chat.h index f62ef808b..6bcffaf81 100644 --- a/src/gui/gui-chat.h +++ b/src/gui/gui-chat.h @@ -87,8 +87,10 @@ extern void gui_chat_end (); /* chat functions (GUI dependent) */ extern char *gui_chat_string_next_char (struct t_gui_window *window, + struct t_gui_line *line, const unsigned char *string, - int apply_style); + int apply_style, + int apply_style_inactive); extern void gui_chat_draw (struct t_gui_buffer *buffer, int erase); extern void gui_chat_draw_line (struct t_gui_buffer *buffer, struct t_gui_line *line); |