1XmContainerCut(library call) XmContainerCut(library call)
2
3
4
6 XmContainerCut — Container widget function to move items to the clip‐
7 board
8
10 #include <Xm/Container.h>
11 Boolean XmContainerCut(
12 Widget container,
13 Time timestamp);
14
16 XmContainerCut cuts the primary selected items to the clipboard. This
17 routine calls the XmNconvertCallback procedures, possibly multiple
18 times, with the selection member of the XmConvertCallbackStruct set to
19 CLIPBOARD and with the parm member set to XmMOVE. If the transfer is
20 successful, this routine then calls the XmNconvertCallback procedures
21 for the CLIPBOARD selection and the DELETE target.
22
23 container Specifies the Container widget ID.
24
25 timestamp Specifies the server time at which to modify the selection
26 value.
27
28 For a complete definition of Container and its associated resources,
29 see XmContainer(3).
30
32 The function returns False in the following cases: if the primary
33 selection is NULL, if the widget does not own the primary selection, or
34 if the function is unable to gain ownership of the clipboard selection.
35 Otherwise, it returns True.
36
38 XmContainer(3).
39
40
41
42 XmContainerCut(library call)