Method
PidginMiniDialogadd_non_closing_button
Declaration [src]
void
pidgin_mini_dialog_add_non_closing_button (
PidginMiniDialog* mini_dialog,
const gchar* text,
PidginMiniDialogCallback clicked_cb,
gpointer user_data
)
Description [src]
Equivalent to pidgin_mini_dialog_add_button(), the only difference is that the mini-dialog won’t be closed after the button is clicked.
Parameters
text
-
Type:
const gchar*
The text to display on the new button.
The data is owned by the caller of the function. The value is a NUL terminated UTF-8 string. clicked_cb
-
Type:
PidginMiniDialogCallback
The function to call when the button is clicked.
user_data
-
Type:
gpointer
Arbitrary data to pass to
clicked_cb
when it is called.The argument can be NULL
.The data is owned by the caller of the function.