| 210 * <link linkend="conversations-conversation-created"><literal>"conversation-created"</literal></link> |
210 * <link linkend="conversations-conversation-created"><literal>"conversation-created"</literal></link> |
| 211 * signal is emitted). |
211 * signal is emitted). |
| 212 * @destroy_conversation: Called just before @conv is freed. |
212 * @destroy_conversation: Called just before @conv is freed. |
| 213 * @write_chat: Write a message to a chat. If this field is %NULL, libpurple |
213 * @write_chat: Write a message to a chat. If this field is %NULL, libpurple |
| 214 * will fall back to using @write_conv. |
214 * will fall back to using @write_conv. |
| 215 * See purple_conversation_write(). |
215 * See purple_conversation_write_message(). |
| 216 * @write_im: Write a message to an IM conversation. If this field is %NULL, |
216 * @write_im: Write a message to an IM conversation. If this field is %NULL, |
| 217 * libpurple will fall back to using @write_conv. |
217 * libpurple will fall back to using @write_conv. |
| 218 * See purple_conversation_write(). |
218 * See purple_conversation_write_message(). |
| 219 * @write_conv: Write a message to a conversation. This is used rather than the |
219 * @write_conv: Write a message to a conversation. This is used rather than the |
| 220 * chat- or im-specific ops for errors, system messages (such as "x |
220 * chat- or im-specific ops for errors, system messages (such as "x |
| 221 * is now know as y"), and as the fallback if @write_im and |
221 * is now know as y"), and as the fallback if @write_im and |
| 222 * @write_chat are not implemented. It should be implemented, or |
222 * @write_chat are not implemented. It should be implemented, or |
| 223 * the UI will miss conversation error messages and your users will |
223 * the UI will miss conversation error messages and your users will |
| 224 * hate you. See purple_conversation_write(). |
224 * hate you. See purple_conversation_write_message(). |
| 225 * @chat_add_users: Add @cbuddies to a chat. |
225 * @chat_add_users: Add @cbuddies to a chat. |
| 226 * <sbr/>@cbuddies: A GList of #PurpleChatUser structs. |
226 * <sbr/>@cbuddies: A GList of #PurpleChatUser structs. |
| 227 * <sbr/>@new_arrivals: Whether join notices should be shown. |
227 * <sbr/>@new_arrivals: Whether join notices should be shown. |
| 228 * (Join notices are actually written to |
228 * (Join notices are actually written to |
| 229 * the conversation by |
229 * the conversation by |