comparison pidgin/gtkutils.h @ 17533:e91e2b450e5d

merge of '8ae64558f2dc02cbc051dda2e2e6e4270b03f7f3' and 'e0b288856ec4bca9229a18d6ae2d8ed9b0c46a4d'
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Thu, 31 May 2007 05:11:46 +0000
parents d48026a5f9dd
children 6b7b13adb9b1
comparison
equal deleted inserted replaced
17490:0dbb403c9016 17533:e91e2b450e5d
128 128
129 /** 129 /**
130 * Adds a separator to a menu. 130 * Adds a separator to a menu.
131 * 131 *
132 * @param menu The menu to add a separator to. 132 * @param menu The menu to add a separator to.
133 */ 133 *
134 void pidgin_separator(GtkWidget *menu); 134 * @return The separator.
135 */
136 GtkWidget *pidgin_separator(GtkWidget *menu);
135 137
136 /** 138 /**
137 * Creates a menu item. 139 * Creates a menu item.
138 * 140 *
139 * @param menu The menu to which to append the menu item. 141 * @param menu The menu to which to append the menu item.
305 * Load menu accelerators 307 * Load menu accelerators
306 */ 308 */
307 void pidgin_load_accels(void); 309 void pidgin_load_accels(void);
308 310
309 /** 311 /**
312 * Get information about a user. Show immediate feedback.
313 *
314 * @param conn The connection to get information from.
315 * @param name The user to get information about.
316 */
317 void pidgin_retrieve_user_info(PurpleConnection *conn, const char *name);
318
319 /**
310 * Parses an application/x-im-contact MIME message and returns the 320 * Parses an application/x-im-contact MIME message and returns the
311 * data inside. 321 * data inside.
312 * 322 *
313 * @param msg The MIME message. 323 * @param msg The MIME message.
314 * @param all_accounts If TRUE, check all compatible accounts, online or 324 * @param all_accounts If TRUE, check all compatible accounts, online or
402 * Append a PurpleMenuAction to a menu. 412 * Append a PurpleMenuAction to a menu.
403 * 413 *
404 * @param menu The menu to append to. 414 * @param menu The menu to append to.
405 * @param act The PurpleMenuAction to append. 415 * @param act The PurpleMenuAction to append.
406 * @param gobject The object to be passed to the action callback. 416 * @param gobject The object to be passed to the action callback.
407 */ 417 *
408 void pidgin_append_menu_action(GtkWidget *menu, PurpleMenuAction *act, 418 * @return The menuitem added.
419 */
420 GtkWidget *pidgin_append_menu_action(GtkWidget *menu, PurpleMenuAction *act,
409 gpointer gobject); 421 gpointer gobject);
410 422
411 /** 423 /**
412 * Sets the mouse pointer for a GtkWidget. 424 * Sets the mouse pointer for a GtkWidget.
413 * 425 *