src/conversation.h

changeset 12624
c1c92f08976b
parent 12618
b83b6bab0703
child 12797
d0f51cfde6bc
equal deleted inserted replaced
12623:4f1fe7e1f808 12624:c1c92f08976b
158 const char *new_name, const char *new_alias); 158 const char *new_name, const char *new_alias);
159 void (*chat_remove_user)(GaimConversation *conv, const char *user); 159 void (*chat_remove_user)(GaimConversation *conv, const char *user);
160 void (*chat_remove_users)(GaimConversation *conv, GList *users); 160 void (*chat_remove_users)(GaimConversation *conv, GList *users);
161 void (*chat_update_user)(GaimConversation *conv, const char *user); 161 void (*chat_update_user)(GaimConversation *conv, const char *user);
162 162
163 void (*present)(GaimConversation *conv);
163 164
164 gboolean (*has_focus)(GaimConversation *conv); 165 gboolean (*has_focus)(GaimConversation *conv);
165 166
166 /* Custom Smileys */ 167 /* Custom Smileys */
167 gboolean (*custom_smiley_add)(GaimConversation *conv, const char *smile, gboolean remote); 168 gboolean (*custom_smiley_add)(GaimConversation *conv, const char *smile, gboolean remote);
284 * that window is also destroyed. 285 * that window is also destroyed.
285 * 286 *
286 * @param conv The conversation to destroy. 287 * @param conv The conversation to destroy.
287 */ 288 */
288 void gaim_conversation_destroy(GaimConversation *conv); 289 void gaim_conversation_destroy(GaimConversation *conv);
290
291
292 /**
293 * Present a conversation to the user. This allows core code to initiate a
294 * conversation by displaying the IM dialog.
295 * @param conv The conversation to present
296 */
297 void gaim_conversation_present(GaimConversation *conv);
298
289 299
290 /** 300 /**
291 * Returns the specified conversation's type. 301 * Returns the specified conversation's type.
292 * 302 *
293 * @param conv The conversation. 303 * @param conv The conversation.

mercurial