comparison src/gtkconv.c @ 6405:96de6d9eb422

[gaim-migrate @ 6910] Added a new unseen type: GAIM_CONV_UNSEEN_EVENT. Now window closing, timing out, logins, logouts, etc. (any of those black bold messages) grey the tab instead of the tab looking like someone talked in it. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Thu, 07 Aug 2003 01:09:38 +0000
parents 6443491fa59d
children ba0b99a72be2
comparison
equal deleted inserted replaced
6404:db32fee4fa69 6405:96de6d9eb422
4839 style->fg[GTK_STATE_ACTIVE].red = 0x3131; 4839 style->fg[GTK_STATE_ACTIVE].red = 0x3131;
4840 style->fg[GTK_STATE_ACTIVE].green = 0x4E4E; 4840 style->fg[GTK_STATE_ACTIVE].green = 0x4E4E;
4841 style->fg[GTK_STATE_ACTIVE].blue = 0x6C6C; 4841 style->fg[GTK_STATE_ACTIVE].blue = 0x6C6C;
4842 style->fg[GTK_STATE_NORMAL] = style->fg[GTK_STATE_ACTIVE]; 4842 style->fg[GTK_STATE_NORMAL] = style->fg[GTK_STATE_ACTIVE];
4843 } 4843 }
4844 else if (gaim_conversation_get_unseen(conv) == GAIM_UNSEEN_EVENT) {
4845 style->fg[GTK_STATE_ACTIVE].red = 0x8686;;
4846 style->fg[GTK_STATE_ACTIVE].green = 0x8282;
4847 style->fg[GTK_STATE_ACTIVE].blue = 0x7272;
4848 style->fg[GTK_STATE_NORMAL] = style->fg[GTK_STATE_ACTIVE];
4849 }
4844 else if (gaim_conversation_get_unseen(conv) == GAIM_UNSEEN_TEXT) { 4850 else if (gaim_conversation_get_unseen(conv) == GAIM_UNSEEN_TEXT) {
4845 style->fg[GTK_STATE_ACTIVE].red = 0xDFDF; 4851 style->fg[GTK_STATE_ACTIVE].red = 0xDFDF;
4846 style->fg[GTK_STATE_ACTIVE].green = 0x4242; 4852 style->fg[GTK_STATE_ACTIVE].green = 0x4242;
4847 style->fg[GTK_STATE_ACTIVE].blue = 0x1E1E; 4853 style->fg[GTK_STATE_ACTIVE].blue = 0x1E1E;
4848 style->fg[GTK_STATE_NORMAL] = style->fg[GTK_STATE_ACTIVE]; 4854 style->fg[GTK_STATE_NORMAL] = style->fg[GTK_STATE_ACTIVE];