| 265 /**************************************************************************/ |
265 /**************************************************************************/ |
| 266 /** @name Conversation API */ |
266 /** @name Conversation API */ |
| 267 /**************************************************************************/ |
267 /**************************************************************************/ |
| 268 /*@{*/ |
268 /*@{*/ |
| 269 |
269 |
| 270 /** TODO |
270 /** |
| 271 * Returns the GType for the Conversation object. |
271 * Returns the GType for the Conversation object. |
| 272 */ |
272 */ |
| 273 GType purple_conversation_get_type(void); |
273 GType purple_conversation_get_type(void); |
| 274 |
|
| 275 /** TODO dispose/fnalize |
|
| 276 * Destroys the specified conversation and removes it from the parent |
|
| 277 * window. |
|
| 278 * |
|
| 279 * If this conversation is the only one contained in the parent window, |
|
| 280 * that window is also destroyed. |
|
| 281 * |
|
| 282 * @param conv The conversation to destroy. |
|
| 283 */ |
|
| 284 /*void purple_conversation_destroy(PurpleConversation *conv);*/ |
|
| 285 |
274 |
| 286 /** |
275 /** |
| 287 * Present a conversation to the user. This allows core code to initiate a |
276 * Present a conversation to the user. This allows core code to initiate a |
| 288 * conversation by displaying the IM dialog. |
277 * conversation by displaying the IM dialog. |
| 289 * @param conv The conversation to present |
278 * @param conv The conversation to present |