| 86 GtkWidget *pidgin_dialog_get_vbox(GtkDialog *dialog); |
86 GtkWidget *pidgin_dialog_get_vbox(GtkDialog *dialog); |
| 87 |
87 |
| 88 /** |
88 /** |
| 89 * pidgin_dialog_add_button: |
89 * pidgin_dialog_add_button: |
| 90 * @dialog: The dialog window |
90 * @dialog: The dialog window |
| 91 * @label: The stock-id or the label for the button |
91 * @label: The label for the button |
| 92 * @callback: (scope call): The callback function for the button |
92 * @callback: (scope call): The callback function for the button |
| 93 * @callbackdata: The user data for the callback function |
93 * @callbackdata: The user data for the callback function |
| 94 * |
94 * |
| 95 * Add a button to a dialog created by #pidgin_create_dialog. |
95 * Add a button to a dialog created by #pidgin_create_dialog. |
| 96 * |
96 * |