| 713 GtkWidget *pidgin_make_mini_dialog(PurpleConnection *handle, |
713 GtkWidget *pidgin_make_mini_dialog(PurpleConnection *handle, |
| 714 const char* stock_id, const char *primary, const char *secondary, |
714 const char* stock_id, const char *primary, const char *secondary, |
| 715 void *user_data, ...) G_GNUC_NULL_TERMINATED; |
715 void *user_data, ...) G_GNUC_NULL_TERMINATED; |
| 716 |
716 |
| 717 /** |
717 /** |
| |
718 * Does exactly what pidgin_make_mini_dialog() does, except you can specify |
| |
719 * a custom icon for the dialog. |
| |
720 */ |
| |
721 GtkWidget *pidgin_make_mini_dialog_with_custom_icon(PurpleConnection *gc, |
| |
722 GdkPixbuf *custom_icon, |
| |
723 const char *primary, |
| |
724 const char *secondary, |
| |
725 void *user_data, |
| |
726 ...) G_GNUC_NULL_TERMINATED; |
| |
727 |
| |
728 /** |
| 718 * This is a callback function to be used for Ctrl+F searching in treeviews. |
729 * This is a callback function to be used for Ctrl+F searching in treeviews. |
| 719 * Sample Use: |
730 * Sample Use: |
| 720 * gtk_tree_view_set_search_equal_func(treeview, |
731 * gtk_tree_view_set_search_equal_func(treeview, |
| 721 * pidgin_tree_view_search_equal_func, |
732 * pidgin_tree_view_search_equal_func, |
| 722 * search_data, search_data_destroy_cb); |
733 * search_data, search_data_destroy_cb); |