1XmTextFieldGetSelectionWcs(library callX)mTextFieldGetSelectionWcs(library call)
2
3
4
6 XmTextFieldGetSelectionWcs — A TextField function that retrieves the
7 value of a wide character encoded primary selection
8
10 #include <Xm/TextF.h>
11 wchar_t * XmTextFieldGetSelectionWcs(
12 Widget widget);
13
15 XmTextFieldGetSelectionWcs retrieves the value of the primary selec‐
16 tion, encoded in a wide character format. It returns a NULL pointer if
17 no text is selected in the widget. The application is responsible for
18 freeing the storage associated with the wide character buffer by call‐
19 ing XtFree.
20
21 widget Specifies the TextField widget ID
22
23 For a complete definition of TextField and its associated resources,
24 see XmTextField(3).
25
27 Returns the wide character string that is associated with the primary
28 selection in the TextField widget.
29
31 XmTextField(3) and XmTextFieldGetSelection(3).
32
33
34
35 XmTextFieldGetSelectionWcs(library call)