| 442 void pidgin_append_blist_node_extended_menu(GtkWidget *menu, PurpleBlistNode *node); |
442 void pidgin_append_blist_node_extended_menu(GtkWidget *menu, PurpleBlistNode *node); |
| 443 |
443 |
| 444 /** |
444 /** |
| 445 * pidgin_blist_set_headline: |
445 * pidgin_blist_set_headline: |
| 446 * @text: Pango Markup for the label text |
446 * @text: Pango Markup for the label text |
| 447 * @pixbuf: The GdkPixbuf for the icon |
447 * @icon_name: The icon name for the icon |
| 448 * @callback: The callback to call when headline is clicked |
448 * @callback: The callback to call when headline is clicked |
| 449 * @user_data: The userdata to include in the callback |
449 * @user_data: The userdata to include in the callback |
| 450 * @destroy: The callback to call when headline is closed or replaced by another headline. |
450 * @destroy: The callback to call when headline is closed or replaced by another headline. |
| 451 * |
451 * |
| 452 * Sets a headline notification |
452 * Sets a headline notification |
| 453 * |
453 * |
| 454 * This is currently used for mail notification, but could theoretically be used for anything. |
454 * This is currently used for mail notification, but could theoretically be used for anything. |
| 455 * Only the most recent headline will be shown. |
455 * Only the most recent headline will be shown. |
| 456 */ |
456 */ |
| 457 void pidgin_blist_set_headline(const char *text, GdkPixbuf *pixbuf, GCallback callback, gpointer user_data, |
457 void pidgin_blist_set_headline(const char *text, const gchar *icon_name, |
| 458 GDestroyNotify destroy); |
458 GCallback callback, gpointer user_data, GDestroyNotify destroy); |
| 459 |
459 |
| 460 /** |
460 /** |
| 461 * pidgin_blist_get_name_markup: |
461 * pidgin_blist_get_name_markup: |
| 462 * @buddy: The buddy to return markup from |
462 * @buddy: The buddy to return markup from |
| 463 * @selected: Whether this buddy is selected. If TRUE, the markup will not change the color. |
463 * @selected: Whether this buddy is selected. If TRUE, the markup will not change the color. |