1XmImVaSetValues(library call) XmImVaSetValues(library call)
2
3
4
6 XmImVaSetValues — An input manager function that updates attributes of
7 an input context
8
10 #include <Xm/XmIm.h>
11 void XmImVaSetValues(
12 Widget widget);
13
15 XmImVaSetValues updates attributes of the input context associated with
16 the specified widget. This function passes the attributes to XICSetVal‐
17 ues. The initial call to this routine should pass in all of the input
18 context attributes. Thereafter, the application programmer calls XmIm‐
19 VaSetValues only if a value has changed. See the description in the
20 XmImSetValues(3) man page for a list of associated resources.
21
22 This routine uses the ANSI C variable-length argument list (varargs)
23 calling convention. The variable-length argument list consists of
24 groups of arguments each of which contains an attribute followed by the
25 value of the attribute. The last argument in the list must be NULL.
26
27 Note that the List and TextField widgets call the XmImVaSetValues func‐
28 tion internally. Therefore, further calls to the XmImVaSetValues func‐
29 tion for these widgets are unnecessary.
30
31 widget Specifies the ID of the widget registered with the input man‐
32 ager
33
34 For more information on variable-length argument lists, see the X Tool‐
35 kit Intrinsics documentation.
36
38 XmImSetFocusValues(3), XmImSetValues(3), and XmImVaSetFocusValues(3).
39
40
41
42 XmImVaSetValues(library call)