| 149 * @param dialog The dialog window |
149 * @param dialog The dialog window |
| 150 * |
150 * |
| 151 * @since 2.4.0 |
151 * @since 2.4.0 |
| 152 */ |
152 */ |
| 153 GtkWidget *pidgin_dialog_get_vbox(GtkDialog *dialog); |
153 GtkWidget *pidgin_dialog_get_vbox(GtkDialog *dialog); |
| |
154 |
| |
155 /** |
| |
156 * Add a button to a dialog created by #pidgin_create_dialog. |
| |
157 * |
| |
158 * @param dialog The dialog window |
| |
159 * @param label The stock-id or the label for the button |
| |
160 * @param callback The callback function for the button |
| |
161 * @param callbackdata The user data for the callback function |
| |
162 * |
| |
163 * @return The created button. |
| |
164 * @since 2.4.0 |
| |
165 */ |
| |
166 GtkWidget *pidgin_dialog_add_button(GtkDialog *dialog, const char *label, |
| |
167 GCallback callback, gpointer callbackdata); |
| 154 |
168 |
| 155 /** |
169 /** |
| 156 * Retrieves the action area (button box) from a pidgin dialog window |
170 * Retrieves the action area (button box) from a pidgin dialog window |
| 157 * |
171 * |
| 158 * @param dialog The dialog window |
172 * @param dialog The dialog window |