diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2007-07-12 15:00:45 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2007-07-12 15:00:45 +0000 |
commit | 241f70f869c9d04ad13fdaa8b53ba57067426e8b (patch) | |
tree | 84c615ab66fb2b90eeabefcf7360fe9eb3db63ee /src/gui/gtk | |
parent | 9d5ef17bd66a91b8023e428e316d039e31f5f858 (diff) | |
download | weechat-241f70f869c9d04ad13fdaa8b53ba57067426e8b.zip |
Fixed bugs with IRC color in messages, now color codes are inserted in command line with ^Cc,^Cb,.. instead of %C,%B,.. (bug #20222, task #7060)
Diffstat (limited to 'src/gui/gtk')
-rw-r--r-- | src/gui/gtk/gui-gtk-chat.c | 3 | ||||
-rw-r--r-- | src/gui/gtk/gui-gtk-color.c | 156 |
2 files changed, 77 insertions, 82 deletions
diff --git a/src/gui/gtk/gui-gtk-chat.c b/src/gui/gtk/gui-gtk-chat.c index 6a9a7c6ce..27a7b7d7b 100644 --- a/src/gui/gtk/gui-gtk-chat.c +++ b/src/gui/gtk/gui-gtk-chat.c @@ -263,6 +263,7 @@ gui_chat_word_get_next_char (t_gui_window *window, unsigned char *string, } break; case GUI_ATTR_RESET_CHAR: + case GUI_ATTR_WEECHAT_RESET_CHAR: string++; if (apply_style) gui_chat_reset_style (window); @@ -628,7 +629,7 @@ gui_chat_draw_line (t_gui_buffer *buffer, t_gui_line *line) ptr_win = gui_buffer_find_window (buffer); if (ptr_win) { - text_without_color = gui_color_decode ((unsigned char *)(line->data), 0); + text_without_color = gui_color_decode ((unsigned char *)(line->data), 0, 0); if (text_without_color) { gtk_text_buffer_insert_at_cursor (GUI_GTK(ptr_win)->textbuffer_chat, diff --git a/src/gui/gtk/gui-gtk-color.c b/src/gui/gtk/gui-gtk-color.c index a852c3d9d..1c40f00e1 100644 --- a/src/gui/gtk/gui-gtk-color.c +++ b/src/gui/gtk/gui-gtk-color.c @@ -112,16 +112,14 @@ gui_color_get_name (int num_color) /* * gui_color_decode: parses a message (coming from IRC server), - * and according: - * - remove any color/style in message - * or: - * - change colors by codes to be compatible with - * other IRC clients + * if keep_colors == 0: remove any color/style in message + * otherwise change colors by internal WeeChat color codes + * if wkeep_eechat_attr == 0: remove any weechat color/style attribute * After use, string returned has to be free() */ unsigned char * -gui_color_decode (unsigned char *string, int keep_colors) +gui_color_decode (unsigned char *string, int keep_irc_colors, int keep_weechat_attr) { unsigned char *out; int out_length, out_pos; @@ -134,7 +132,7 @@ gui_color_decode (unsigned char *string, int keep_colors) return NULL; out_pos = 0; - while (string[0] && (out_pos < out_length - 1)) + while (string && string[0] && (out_pos < out_length - 1)) { switch (string[0]) { @@ -145,7 +143,7 @@ gui_color_decode (unsigned char *string, int keep_colors) case GUI_ATTR_REVERSE2_CHAR: case GUI_ATTR_ITALIC_CHAR: case GUI_ATTR_UNDERLINE_CHAR: - if (keep_colors) + if (keep_irc_colors) out[out_pos++] = string[0]; string++; break; @@ -181,7 +179,7 @@ gui_color_decode (unsigned char *string, int keep_colors) } } } - if (keep_colors) + if (keep_irc_colors) { if (!str_fg[0] && !str_bg[0]) out[out_pos++] = GUI_ATTR_COLOR_CHAR; @@ -191,13 +189,13 @@ gui_color_decode (unsigned char *string, int keep_colors) if (str_fg[0]) { sscanf (str_fg, "%d", &fg); - fg %= 16; + fg %= GUI_NUM_IRC_COLORS; attr |= gui_irc_colors[fg][1]; } if (str_bg[0]) { sscanf (str_bg, "%d", &bg); - bg %= 16; + bg %= GUI_NUM_IRC_COLORS; attr |= gui_irc_colors[bg][1]; } if (attr & A_BOLD) @@ -226,10 +224,12 @@ gui_color_decode (unsigned char *string, int keep_colors) } break; case GUI_ATTR_WEECHAT_COLOR_CHAR: + if (keep_weechat_attr) + out[out_pos++] = string[0]; string++; if (isdigit (string[0]) && isdigit (string[1])) { - if (keep_colors) + if (keep_weechat_attr) { out[out_pos++] = string[0]; out[out_pos++] = string[1]; @@ -239,17 +239,21 @@ gui_color_decode (unsigned char *string, int keep_colors) break; case GUI_ATTR_WEECHAT_SET_CHAR: case GUI_ATTR_WEECHAT_REMOVE_CHAR: + if (keep_weechat_attr) + out[out_pos++] = string[0]; string++; if (string[0]) { - if (keep_colors) - { - out[out_pos++] = *(string - 1); + if (keep_weechat_attr) out[out_pos++] = string[0]; - } string++; } break; + case GUI_ATTR_WEECHAT_RESET_CHAR: + if (keep_weechat_attr) + out[out_pos++] = string[0]; + string++; + break; default: out[out_pos++] = string[0]; string++; @@ -261,7 +265,7 @@ gui_color_decode (unsigned char *string, int keep_colors) /* * gui_color_decode_for_user_entry: parses a message (coming from IRC server), - * and replaces colors/bold/.. by %C, %B, .. + * and replaces colors/bold/.. by ^C, ^B, .. * After use, string returned has to be free() */ @@ -277,40 +281,35 @@ gui_color_decode_for_user_entry (unsigned char *string) return NULL; out_pos = 0; - while (string[0] && (out_pos < out_length - 1)) + while (string && string[0] && (out_pos < out_length - 1)) { switch (string[0]) { case GUI_ATTR_BOLD_CHAR: - out[out_pos++] = '%'; - out[out_pos++] = 'B'; + out[out_pos++] = 0x02; /* ^B */ string++; break; case GUI_ATTR_FIXED_CHAR: string++; break; case GUI_ATTR_RESET_CHAR: - out[out_pos++] = '%'; - out[out_pos++] = 'O'; + out[out_pos++] = 0x0F; /* ^O */ string++; break; case GUI_ATTR_REVERSE_CHAR: case GUI_ATTR_REVERSE2_CHAR: - out[out_pos++] = '%'; - out[out_pos++] = 'R'; + out[out_pos++] = 0x12; /* ^R */ string++; break; case GUI_ATTR_ITALIC_CHAR: string++; break; case GUI_ATTR_UNDERLINE_CHAR: - out[out_pos++] = '%'; - out[out_pos++] = 'R'; + out[out_pos++] = 0x15; /* ^U */ string++; break; case GUI_ATTR_COLOR_CHAR: - out[out_pos++] = '%'; - out[out_pos++] = 'C'; + out[out_pos++] = 0x03; /* ^C */ string++; break; default: @@ -324,12 +323,14 @@ gui_color_decode_for_user_entry (unsigned char *string) /* * gui_color_encode: parses a message (entered by user), and - * encode special chars (%B, %C, ..) in IRC colors + * encode special chars (^Cb, ^Cc, ..) in IRC colors + * if keep_colors == 0: remove any color/style in message + * otherwise: keep colors * After use, string returned has to be free() */ unsigned char * -gui_color_encode (unsigned char *string) +gui_color_encode (unsigned char *string, int keep_colors) { unsigned char *out; int out_length, out_pos; @@ -340,72 +341,65 @@ gui_color_encode (unsigned char *string) return NULL; out_pos = 0; - while (string[0] && (out_pos < out_length - 1)) + while (string && string[0] && (out_pos < out_length - 1)) { switch (string[0]) { - case '%': + case 0x02: /* ^B */ + if (keep_colors) + out[out_pos++] = GUI_ATTR_BOLD_CHAR; string++; - switch (string[0]) + break; + case 0x03: /* ^C */ + if (keep_colors) + out[out_pos++] = GUI_ATTR_COLOR_CHAR; + string++; + if (isdigit (string[0])) { - case '\0': - out[out_pos++] = '%'; - break; - case '%': /* double '%' replaced by single '%' */ + if (keep_colors) out[out_pos++] = string[0]; + string++; + if (isdigit (string[0])) + { + if (keep_colors) + out[out_pos++] = string[0]; string++; - break; - case 'B': /* bold */ - out[out_pos++] = GUI_ATTR_BOLD_CHAR; - string++; - break; - case 'C': /* color */ - out[out_pos++] = GUI_ATTR_COLOR_CHAR; + } + } + if (string[0] == ',') + { + if (keep_colors) + out[out_pos++] = ','; + string++; + if (isdigit (string[0])) + { + if (keep_colors) + out[out_pos++] = string[0]; string++; if (isdigit (string[0])) { - out[out_pos++] = string[0]; - string++; - if (isdigit (string[0])) - { + if (keep_colors) out[out_pos++] = string[0]; - string++; - } - } - if (string[0] == ',') - { - out[out_pos++] = ','; string++; - if (isdigit (string[0])) - { - out[out_pos++] = string[0]; - string++; - if (isdigit (string[0])) - { - out[out_pos++] = string[0]; - string++; - } - } } - break; - case 'O': /* reset */ - out[out_pos++] = GUI_ATTR_RESET_CHAR; - string++; - break; - case 'R': /* reverse */ - out[out_pos++] = GUI_ATTR_REVERSE_CHAR; - string++; - break; - case 'U': /* underline */ - out[out_pos++] = GUI_ATTR_UNDERLINE_CHAR; - string++; - break; - default: - out[out_pos++] = '%'; - out[out_pos++] = string[0]; - string++; + } } break; + case 0x0F: /* ^O */ + if (keep_colors) + out[out_pos++] = GUI_ATTR_RESET_CHAR; + string++; + break; + case 0x12: /* ^R */ + if (keep_colors) + out[out_pos++] = GUI_ATTR_REVERSE_CHAR; + string++; + break; + case 0x15: /* ^U */ + if (keep_colors) + out[out_pos++] = GUI_ATTR_UNDERLINE_CHAR; + string++; + break; default: out[out_pos++] = string[0]; string++; |