1XmContainerPasteLink(library call) XmContainerPasteLink(library call)
2
3
4
6 XmContainerPasteLink — Container widget function to insert links from
7 the clipboard
8
10 #include <Xm/Container.h>
11 Boolean XmContainerPasteLink(
12 Widget container);
13
15 XmContainerPasteLink requests data transfer from the clipboard selec‐
16 tion to the Container. This routine calls the widget's XmNdestination‐
17 Callback procedures with the selection member of the XmDestinationCall‐
18 backStruct set to CLIPBOARD and with the operation member set to
19 XmLINK. The Container widget itself performs no transfers; the XmNdes‐
20 tinationCallback procedures are responsible for inserting the link to
21 the clipboard selection and for taking any related actions.
22
23 container Specifies the Container widget ID.
24
25 For a complete definition of Container and its associated resources,
26 see XmContainer(3).
27
29 The function returns False if no data transfer takes place. Otherwise,
30 it returns True.
31
33 XmContainer(3).
34
35
36
37 XmContainerPasteLink(library call)