| 41 PIDGIN_AVAILABLE_TYPE_IN_2_1 |
41 PIDGIN_AVAILABLE_TYPE_IN_2_1 |
| 42 typedef gboolean (*PidginFilterBuddyCompletionEntryFunc) (const PidginBuddyCompletionEntry *completion_entry, gpointer user_data); |
42 typedef gboolean (*PidginFilterBuddyCompletionEntryFunc) (const PidginBuddyCompletionEntry *completion_entry, gpointer user_data); |
| 43 |
43 |
| 44 |
44 |
| 45 G_BEGIN_DECLS |
45 G_BEGIN_DECLS |
| 46 |
|
| 47 /** |
|
| 48 * pidgin_make_frame: |
|
| 49 * @parent: The widget to put the frame into. |
|
| 50 * @title: The title for the frame. |
|
| 51 * |
|
| 52 * Creates a HIG preferences frame. |
|
| 53 * |
|
| 54 * Returns: (transfer full): The vbox to put things into. |
|
| 55 * |
|
| 56 * Since: 2.0.0 |
|
| 57 */ |
|
| 58 PIDGIN_AVAILABLE_IN_ALL |
|
| 59 GtkWidget *pidgin_make_frame(GtkWidget *parent, const char *title); |
|
| 60 |
46 |
| 61 /** |
47 /** |
| 62 * pidgin_setup_screenname_autocomplete: |
48 * pidgin_setup_screenname_autocomplete: |
| 63 * @entry: The GtkEntry on which to setup autocomplete. |
49 * @entry: The GtkEntry on which to setup autocomplete. |
| 64 * @chooser: A menu for accounts, returned by pidgin_account_chooser_new(). If |
50 * @chooser: A menu for accounts, returned by pidgin_account_chooser_new(). If |
| 130 */ |
116 */ |
| 131 PIDGIN_AVAILABLE_IN_ALL |
117 PIDGIN_AVAILABLE_IN_ALL |
| 132 void pidgin_set_accessible_label(GtkWidget *w, GtkLabel *l); |
118 void pidgin_set_accessible_label(GtkWidget *w, GtkLabel *l); |
| 133 |
119 |
| 134 /** |
120 /** |
| 135 * pidgin_tree_view_search_equal_func: |
|
| 136 * |
|
| 137 * This is a callback function to be used for Ctrl+F searching in treeviews. |
|
| 138 * Sample Use: |
|
| 139 * gtk_tree_view_set_search_equal_func(treeview, |
|
| 140 * pidgin_tree_view_search_equal_func, |
|
| 141 * search_data, search_data_destroy_cb); |
|
| 142 * |
|
| 143 * Since: 2.0.0 |
|
| 144 */ |
|
| 145 PIDGIN_AVAILABLE_IN_ALL |
|
| 146 gboolean pidgin_tree_view_search_equal_func(GtkTreeModel *model, gint column, |
|
| 147 const gchar *key, GtkTreeIter *iter, gpointer data); |
|
| 148 |
|
| 149 /** |
|
| 150 * pidgin_auto_parent_window: |
121 * pidgin_auto_parent_window: |
| 151 * @window: The window to make transient. |
122 * @window: The window to make transient. |
| 152 * |
123 * |
| 153 * Automatically make a window transient to a suitable parent window. |
124 * Automatically make a window transient to a suitable parent window. |
| 154 * |
125 * |