1XmTextPasteLink(library call) XmTextPasteLink(library call)
2
3
4
6 XmTextPasteLink — A Text function that inserts a link to the clipboard
7 selection
8
10 #include <Xm/Text.h>
11 Boolean XmTextPasteLink(
12 Widget widget);
13
15 XmTextPasteLink inserts a link to the clipboard selection at the inser‐
16 tion cursor. 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 XmLINK. The Text
19 widget itself performs no transfers; the XmNdestinationCallback proce‐
20 dures are responsible for inserting the link to the clipboard selection
21 and for taking any related actions.
22
23 widget Specifies the Text widget ID.
24
25 For a complete definition of Text and its associated resources, see
26 XmText(3).
27
29 This function returns False if no transfers take place. Otherwise, it
30 returns True.
31
33 XmText(3).
34
35
36
37 XmTextPasteLink(library call)