pidgin/gtkconv.c

changeset 21084
6afa6be9d5c7
parent 21081
09317aaf5ef9
parent 21083
b2268cf761d3
child 21106
b85fbef13eed
equal deleted inserted replaced
21081:09317aaf5ef9 21084:6afa6be9d5c7
6575 purple_conv_im_get_typing_state(im) == PURPLE_TYPED) { 6575 purple_conv_im_get_typing_state(im) == PURPLE_TYPED) {
6576 atk_object_set_description(accessibility_obj, _("Stopped Typing")); 6576 atk_object_set_description(accessibility_obj, _("Stopped Typing"));
6577 style = "color=\"#c4a000\""; 6577 style = "color=\"#c4a000\"";
6578 } else if (gtkconv->unseen_state == PIDGIN_UNSEEN_NICK) { 6578 } else if (gtkconv->unseen_state == PIDGIN_UNSEEN_NICK) {
6579 atk_object_set_description(accessibility_obj, _("Nick Said")); 6579 atk_object_set_description(accessibility_obj, _("Nick Said"));
6580 style = "color=\"#cc0000\""; 6580 style = "color=\"#204a87\"";
6581 } else if (gtkconv->unseen_state == PIDGIN_UNSEEN_TEXT) { 6581 } else if (gtkconv->unseen_state == PIDGIN_UNSEEN_TEXT) {
6582 atk_object_set_description(accessibility_obj, _("Unread Messages")); 6582 atk_object_set_description(accessibility_obj, _("Unread Messages"));
6583 if (gtkconv->active_conv->type == PURPLE_CONV_TYPE_CHAT) 6583 if (gtkconv->active_conv->type == PURPLE_CONV_TYPE_CHAT)
6584 style = "color=\"#cc0000\"";
6585 else
6584 style = "color=\"#204a87\""; 6586 style = "color=\"#204a87\"";
6585 else
6586 style = "color=\"#cc0000\"";
6587 } else if (gtkconv->unseen_state == PIDGIN_UNSEEN_EVENT) { 6587 } else if (gtkconv->unseen_state == PIDGIN_UNSEEN_EVENT) {
6588 atk_object_set_description(accessibility_obj, _("New Event")); 6588 atk_object_set_description(accessibility_obj, _("New Event"));
6589 style = "color=\"#888a85\""; 6589 style = "color=\"#888a85\"";
6590 } else { 6590 } else {
6591 style = NULL; 6591 style = NULL;

mercurial