Name
XtCancelConvertSelectionProc — prototype procedure to cancel incremental selection transfer.
Synopsis
typedef void (∗XtCancelConvertSelectionProc)(Widget, Atom∗, Atom∗, XtRequestId∗, XtPointer)
Widget w;
Atom ∗selection;
Atom ∗target;
XtRequestId ∗request_id;
XtPointer client_data;
Arguments
wSpecifies the widget that owns the selection.
selectionSpecifies the atom that names the selection being transferred.
targetSpecifies the target type to which the conversion was done.
request_id
Specifies an opaque identification for a specific request.
client_data
Specifies the value passed in by the widget when it took ownership of the selection.
Description
This procedure is registered in a call to XtOwnSelectionIncremental, and is called by the Intrinsics when (as determined by the selection timeout or other mechanism) any remaining segments of the selection no longer need to be transferred. Upon receiving this callback, the selection request is considered complete and the owner can free the memory and any other resources that have been allocated for the transfer.
See Also
XtGetSelectionValueIncremental(1), XtGetSelectionValuesIncremental(1), XtGetSelectionTimeout(1), XtOwnSelectionIncremental(1), XtSetSelectionTimeout(1),
XtConvertSelectionIncrProc(2), XtLoseSelectionIncrProc(2), XtSelectionDoneIncrProc(2).