| 140 |
140 |
| 141 /** |
141 /** |
| 142 * Adds a separator to a menu. |
142 * Adds a separator to a menu. |
| 143 * |
143 * |
| 144 * @param menu The menu to add a separator to. |
144 * @param menu The menu to add a separator to. |
| 145 */ |
145 * |
| 146 void pidgin_separator(GtkWidget *menu); |
146 * @return The separator. |
| |
147 */ |
| |
148 GtkWidget *pidgin_separator(GtkWidget *menu); |
| 147 |
149 |
| 148 /** |
150 /** |
| 149 * Creates a menu item. |
151 * Creates a menu item. |
| 150 * |
152 * |
| 151 * @param menu The menu to which to append the menu item. |
153 * @param menu The menu to which to append the menu item. |
| 317 * Load menu accelerators |
319 * Load menu accelerators |
| 318 */ |
320 */ |
| 319 void pidgin_load_accels(void); |
321 void pidgin_load_accels(void); |
| 320 |
322 |
| 321 /** |
323 /** |
| |
324 * Get information about a user. Show immediate feedback. |
| |
325 * |
| |
326 * @param conn The connection to get information from. |
| |
327 * @param name The user to get information about. |
| |
328 */ |
| |
329 void pidgin_retrieve_user_info(PurpleConnection *conn, const char *name); |
| |
330 |
| |
331 /** |
| 322 * Parses an application/x-im-contact MIME message and returns the |
332 * Parses an application/x-im-contact MIME message and returns the |
| 323 * data inside. |
333 * data inside. |
| 324 * |
334 * |
| 325 * @param msg The MIME message. |
335 * @param msg The MIME message. |
| 326 * @param all_accounts If TRUE, check all compatible accounts, online or |
336 * @param all_accounts If TRUE, check all compatible accounts, online or |
| 414 * Append a PurpleMenuAction to a menu. |
424 * Append a PurpleMenuAction to a menu. |
| 415 * |
425 * |
| 416 * @param menu The menu to append to. |
426 * @param menu The menu to append to. |
| 417 * @param act The PurpleMenuAction to append. |
427 * @param act The PurpleMenuAction to append. |
| 418 * @param gobject The object to be passed to the action callback. |
428 * @param gobject The object to be passed to the action callback. |
| 419 */ |
429 * |
| 420 void pidgin_append_menu_action(GtkWidget *menu, PurpleMenuAction *act, |
430 * @return The menuitem added. |
| |
431 */ |
| |
432 GtkWidget *pidgin_append_menu_action(GtkWidget *menu, PurpleMenuAction *act, |
| 421 gpointer gobject); |
433 gpointer gobject); |
| 422 |
434 |
| 423 /** |
435 /** |
| 424 * Sets the mouse pointer for a GtkWidget. |
436 * Sets the mouse pointer for a GtkWidget. |
| 425 * |
437 * |