comparison src/gtkblist.h @ 8815:ada0cf2f49fe

[gaim-migrate @ 9577] " This patch creates the subsystem like most of the core to connect to signals and emit them. It also adds a "gtkblist-created" signal so plugins that want to add something to the gtkblist know when it's created. Using the same subsytem setup as the rest of gaim helps plugin authors avoid connecting to the buddy signon even to know when they can connect to the "drawing-menu" signal." --Gary Kramlich committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Mon, 26 Apr 2004 16:10:16 +0000
parents 57bdd25752c1
children b875f5d57b81
comparison
equal deleted inserted replaced
8814:c61be128dff3 8815:ada0cf2f49fe
95 /************************************************************************** 95 /**************************************************************************
96 * @name GTK+ Buddy List API 96 * @name GTK+ Buddy List API
97 **************************************************************************/ 97 **************************************************************************/
98 98
99 /** 99 /**
100 * Get the handle for the GTK+ blist system.
101 *
102 * @return the handle to the blist system
103 */
104 void *gaim_gtk_blist_get_handle();
105
106 /**
100 * Initializes the GTK+ blist system. 107 * Initializes the GTK+ blist system.
101 */ 108 */
102 void gaim_gtk_blist_init(void); 109 void gaim_gtk_blist_init(void);
110
111 /**
112 * Uninitializes the GTK+ blist system.
113 */
114 void gaim_gtk_blist_uninit(void);
103 115
104 /** 116 /**
105 * Returns the UI operations structure for the buddy list. 117 * Returns the UI operations structure for the buddy list.
106 * 118 *
107 * @return The GTK list operations structure. 119 * @return The GTK list operations structure.