comparison src/gtkconv.h @ 8582:d7c85220c685

[gaim-migrate @ 9332] Added a conversation-drag-ended signal. Patch by Etan Reisner. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Mon, 05 Apr 2004 06:52:02 +0000
parents 6f549c1d0829
children 408d2f135146
comparison
equal deleted inserted replaced
8581:2714e30991db 8582:d7c85220c685
196 * @name GTK+ Conversation API 196 * @name GTK+ Conversation API
197 **************************************************************************/ 197 **************************************************************************/
198 /*@{*/ 198 /*@{*/
199 199
200 /** 200 /**
201 * Initializes the GTK+ conversation system.
202 */
203 void gaim_gtk_conversations_init(void);
204
205 /**
206 * Returns the UI operations structure for GTK windows. 201 * Returns the UI operations structure for GTK windows.
207 * 202 *
208 * @return The GTK window operations structure. 203 * @return The GTK window operations structure.
209 */ 204 */
210 GaimConvWindowUiOps *gaim_gtk_conversations_get_win_ui_ops(void); 205 GaimConvWindowUiOps *gaim_gtk_conversations_get_win_ui_ops(void);
308 */ 303 */
309 int gaim_gtkconv_get_dest_tab_at_xy(GaimConvWindow *win, int x, int y); 304 int gaim_gtkconv_get_dest_tab_at_xy(GaimConvWindow *win, int x, int y);
310 305
311 /*@}*/ 306 /*@}*/
312 307
308 /**************************************************************************/
309 /** @name GTK+ Conversations Subsystem */
310 /**************************************************************************/
311 /*@{*/
312
313 /**
314 * Returns the gtk conversations subsystem handle.
315 *
316 * @return The conversations subsystem handle.
317 */
318 void *gaim_gtk_conversations_get_handle(void);
319
320 /**
321 * Initializes the GTK+ conversations subsystem.
322 */
323 void gaim_gtk_conversations_init(void);
324
325 /**
326 * Uninitialized the GTK+ conversation subsystem.
327 */
328 void gaim_gtk_conversations_uninit(void);
329
330 /*@}*/
331
313 #endif /* _GAIM_GTK_CONVERSATION_H_ */ 332 #endif /* _GAIM_GTK_CONVERSATION_H_ */