comparison finch/gntblist.h @ 32819:2c6510167895 default tip

propagate from branch 'im.pidgin.pidgin.2.x.y' (head 3315c5dfbd0ad16511bdcf865e5b07c02d07df24) to branch 'im.pidgin.pidgin' (head cbd1eda6bcbf0565ae7766396bb8f6f419cb6a9a)
author Elliott Sales de Andrade <qulogic@pidgin.im>
date Sat, 02 Jun 2012 02:30:49 +0000
parents 02a2e8183b1d
children
comparison
equal deleted inserted replaced
32818:01ff09d4a463 32819:2c6510167895
113 * 113 *
114 * @param conn The connection to get information fro 114 * @param conn The connection to get information fro
115 * @param name The user to get information about. 115 * @param name The user to get information about.
116 * 116 *
117 * @return Returns the ui-handle for the userinfo notification. 117 * @return Returns the ui-handle for the userinfo notification.
118 *
119 * @since 2.1.0
120 */ 118 */
121 gpointer finch_retrieve_user_info(PurpleConnection *conn, const char *name); 119 gpointer finch_retrieve_user_info(PurpleConnection *conn, const char *name);
122 120
123 /** 121 /**
124 * Get the tree list of the buddy list. 122 * Get the tree list of the buddy list.
125 * @return The GntTree widget. 123 * @return The GntTree widget.
126 * @since 2.4.0
127 */ 124 */
128 GntTree * finch_blist_get_tree(void); 125 GntTree * finch_blist_get_tree(void);
129 126
130 /** 127 /**
131 * Add an alternate buddy list manager. 128 * Add an alternate buddy list manager.
132 * 129 *
133 * @param manager The alternate buddylist manager. 130 * @param manager The alternate buddylist manager.
134 * @since 2.4.0
135 */ 131 */
136 void finch_blist_install_manager(const FinchBlistManager *manager); 132 void finch_blist_install_manager(const FinchBlistManager *manager);
137 133
138 /** 134 /**
139 * Remove an alternate buddy list manager. 135 * Remove an alternate buddy list manager.
140 * 136 *
141 * @param manager The buddy list manager to remove. 137 * @param manager The buddy list manager to remove.
142 * @since 2.4.0
143 */ 138 */
144 void finch_blist_uninstall_manager(const FinchBlistManager *manager); 139 void finch_blist_uninstall_manager(const FinchBlistManager *manager);
145 140
146 /** 141 /**
147 * Find a buddy list manager. 142 * Find a buddy list manager.
148 * 143 *
149 * @param id The identifier for the desired buddy list manager. 144 * @param id The identifier for the desired buddy list manager.
150 * 145 *
151 * @return The manager with the requested identifier, if available. @c NULL otherwise. 146 * @return The manager with the requested identifier, if available. @c NULL otherwise.
152 * @since 2.4.0
153 */ 147 */
154 FinchBlistManager * finch_blist_manager_find(const char *id); 148 FinchBlistManager * finch_blist_manager_find(const char *id);
155 149
156 /** 150 /**
157 * Request the active buddy list manager to add a node. 151 * Request the active buddy list manager to add a node.
158 * 152 *
159 * @param node The node to add 153 * @param node The node to add
160 * @since 2.4.0
161 */ 154 */
162 void finch_blist_manager_add_node(PurpleBlistNode *node); 155 void finch_blist_manager_add_node(PurpleBlistNode *node);
163 156
164 /*@}*/ 157 /*@}*/
165 158