comparison src/gtkconv.h @ 11664:38bbb0f15453

[gaim-migrate @ 13949] "This patch updates the colors of the tabs correctly. I have removed the tab-highlighting stuff from the core to the UI." Sadrul Habib Chowdhury committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Fri, 14 Oct 2005 11:30:37 +0000
parents f72607814e4a
children 872932089400
comparison
equal deleted inserted replaced
11663:03db7f366ae1 11664:38bbb0f15453
26 #define _GAIM_GTKCONVERSATION_H_ 26 #define _GAIM_GTKCONVERSATION_H_
27 27
28 typedef struct _GaimGtkImPane GaimGtkImPane; 28 typedef struct _GaimGtkImPane GaimGtkImPane;
29 typedef struct _GaimGtkChatPane GaimGtkChatPane; 29 typedef struct _GaimGtkChatPane GaimGtkChatPane;
30 typedef struct _GaimGtkConversation GaimGtkConversation; 30 typedef struct _GaimGtkConversation GaimGtkConversation;
31
32 /**
33 * Unseen text states.
34 */
35 typedef enum
36 {
37 GAIM_UNSEEN_NONE = 0, /**< No unseen text in the conversation. */
38 GAIM_UNSEEN_TEXT, /**< Unseen text in the conversation. */
39 GAIM_UNSEEN_NICK, /**< Unseen text and the nick was said. */
40 GAIM_UNSEEN_EVENT /**< Unseen events in the conversation. */
41
42 } GaimUnseenState;
31 43
32 enum { 44 enum {
33 CHAT_USERS_ICON_COLUMN, 45 CHAT_USERS_ICON_COLUMN,
34 CHAT_USERS_ALIAS_COLUMN, 46 CHAT_USERS_ALIAS_COLUMN,
35 CHAT_USERS_NAME_COLUMN, 47 CHAT_USERS_NAME_COLUMN,
130 142
131 GtkWidget *lower_hbox; 143 GtkWidget *lower_hbox;
132 144
133 GtkWidget *toolbar; 145 GtkWidget *toolbar;
134 146
147 GaimUnseenState unseen_state;
148
135 struct 149 struct
136 { 150 {
137 GtkWidget *image; 151 GtkWidget *image;
138 GtkWidget *search; 152 GtkWidget *search;
139 153