1XmContainerCopy(library call) XmContainerCopy(library call)
2
3
4
6 XmContainerCopy — Container widget function to copy primary selection
7 to the clipboard
8
10 #include <Xm/Container.h>
11 Boolean XmContainerCopy(
12 Widget container,
13 Time timestamp);
14
16 XmContainerCopy copies the primary selected container items to the
17 clipboard. This routine calls the XmNconvertCallback procedures, pos‐
18 sibly multiple times, with the selection member of the XmConvertCall‐
19 backStruct set to CLIPBOARD and with the parm member set to XmCOPY.
20
21 container Specifies the Container widget ID.
22
23 timestamp Specifies the server time at which to modify the selection
24 value.
25
26 For a complete definition of Container and its associated resources,
27 see XmContainer(3).
28
30 The function returns False in the following cases: if the primary
31 selection is NULL, if the widget does not own the primary selection, or
32 if the function is unable to gain ownership of the clipboard selection.
33 Otherwise, it returns True.
34
36 XmContainer(3).
37
38
39
40 XmContainerCopy(library call)