1XmTextFieldPasteLink(library call) XmTextFieldPasteLink(library call)
2
3
4
6 XmTextFieldPasteLink — A TextField function that inserts a link to the
7 clipboard selection
8
10 #include <Xm/TextF.h>
11 Boolean XmTextFieldPasteLink(
12 Widget widget);
13
15 XmTextFieldPasteLink inserts a link to the clipboard selection at the
16 insertion cursor. This routine calls the widget's XmNdestinationCall‐
17 back procedures with the selection member of the XmDestinationCallback‐
18 Struct set to CLIPBOARD and with the operation member set to XmLINK.
19 The TextField widget itself performs no transfers; the XmNdestination‐
20 Callback procedures are responsible for inserting the link to the clip‐
21 board selection and for taking any related actions.
22
23 widget Specifies the TextField widget ID.
24
25 For a complete definition of TextField and its associated resources,
26 see XmTextField(3).
27
29 This function returns False if no transfers take place. Otherwise, it
30 returns True.
31
33 XmTextField(3).
34
35
36
37 XmTextFieldPasteLink(library call)