1XmContainerCopyLink(library call) XmContainerCopyLink(library call)
2
3
4
6 XmContainerCopyLink — Container widget function to copy links to the
7 clipboard
8
10 #include <Xm/Container.h>
11 Boolean XmContainerCopyLink(
12 Widget container,
13 Time timestamp);
14
16 XmContainerCopyLink copies links to the primary selected 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 XmLINK.
20 The Container widget itself does not copy any links; XmNconvertCallback
21 procedures are responsible for copying the link to the clipboard and
22 for taking any related actions.
23
24 container Specifies the Container widget ID.
25
26 timestamp Specifies the server time at which to modify the selection
27 value.
28
29 For a complete definition of Container and its associated resources,
30 see XmContainer(3).
31
33 The function returns False in the following cases: if the primary
34 selection is NULL, if the widget does not own the primary selection, or
35 if the function is unable to gain ownership of the clipboard selection.
36 Otherwise, it returns True.
37
39 XmContainer(3).
40
41
42
43 XmContainerCopyLink(library call)