Function
GtkClipboardTargetsReceivedFunc
since: 2.4
Declaration
void
(* GtkClipboardTargetsReceivedFunc) (
GtkClipboard* clipboard,
GdkAtom* atoms,
gint n_atoms,
gpointer data
)
Description [src]
A function to be called when the results of gtk_clipboard_request_targets()
are received, or when the request fails.
Available since: 2.4
Parameters
clipboard-
Type:
GtkClipboardThe
GtkClipboard.The data is owned by the caller of the function. atoms-
Type: An array of
GdkAtomThe supported targets, as array of
GdkAtom, orNULLif retrieving the data failed.The argument can be NULL.The length of the array is specified in the n_atomsargument.The data is owned by the caller of the function. n_atoms-
Type:
gintThe length of the
atomsarray. data-
Type:
gpointerThe
user_datasupplied to gtk_clipboard_request_targets().The argument can be NULL.The data is owned by the caller of the function.