Function
GtkClipboardReceivedFunc
Declaration
void
(* GtkClipboardReceivedFunc) (
GtkClipboard* clipboard,
GtkSelectionData* selection_data,
gpointer data
)
Description [src]
A function to be called when the results of gtk_clipboard_request_contents()
are received, or when the request fails.
Parameters
clipboard
-
Type:
GtkClipboard
The
GtkClipboard
.The data is owned by the caller of the function. selection_data
-
Type:
GtkSelectionData
A
GtkSelectionData
containing the data was received. If retrieving the data failed, then then length field ofselection_data
will be negative.The data is owned by the caller of the function. data
-
Type:
gpointer
The
user_data
supplied to gtk_clipboard_request_contents().The argument can be NULL
.The data is owned by the caller of the function.