1XmContainerPaste(library call) XmContainerPaste(library call)
2
3
4
6 XmContainerPaste — Container widget function to insert items from the
7 clipboard
8
10 #include <Xm/Container.h>
11 Boolean XmContainerPaste(
12 Widget container);
13
15 XmContainerPaste requests data transfer from the clipboard selection to
16 the Container. This routine calls the widget's XmNdestinationCallback
17 procedures with the selection member of the XmDestinationCallbackStruct
18 set to CLIPBOARD and with the operation member set to XmCOPY. The Con‐
19 tainer widget itself performs no transfers; the XmNdestinationCallback
20 procedures are responsible for inserting the clipboard selection and
21 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 XmContainerPaste(library call)