| 53 }; |
53 }; |
| 54 |
54 |
| 55 #define PIDGIN_CONVERSATION(conv) \ |
55 #define PIDGIN_CONVERSATION(conv) \ |
| 56 ((PidginConversation *)(conv)->ui_data) |
56 ((PidginConversation *)(conv)->ui_data) |
| 57 |
57 |
| 58 #define GAIM_IS_GTK_CONVERSATION(conv) \ |
58 #define PIDGIN_IS_PIDGIN_CONVERSATION(conv) \ |
| 59 (gaim_conversation_get_ui_ops(conv) == \ |
59 (gaim_conversation_get_ui_ops(conv) == \ |
| 60 pidgin_conversations_get_conv_ui_ops()) |
60 pidgin_conversations_get_conv_ui_ops()) |
| 61 |
61 |
| 62 #include "pidgin.h" |
62 #include "pidgin.h" |
| 63 #include "conversation.h" |
63 #include "conversation.h" |
| 132 * event, such as the buddy icon appearing |
132 * event, such as the buddy icon appearing |
| 133 */ |
133 */ |
| 134 gboolean entry_growing; /* True if the size of the entry was set |
134 gboolean entry_growing; /* True if the size of the entry was set |
| 135 * automatically by typing too much to fit |
135 * automatically by typing too much to fit |
| 136 * in one line */ |
136 * in one line */ |
| 137 |
137 |
| 138 GtkWidget *close; /* "x" on the tab */ |
138 GtkWidget *close; /* "x" on the tab */ |
| 139 GtkWidget *icon; |
139 GtkWidget *icon; |
| 140 GtkWidget *tab_label; |
140 GtkWidget *tab_label; |
| 141 GtkWidget *menu_icon; |
141 GtkWidget *menu_icon; |
| 142 GtkWidget *menu_label; |
142 GtkWidget *menu_label; |