1XmImVaSetFocusValues(library call) XmImVaSetFocusValues(library call)
2
3
4
6 XmImVaSetFocusValues — An input manager function that notifies an input
7 manager that a widget has received input focus and updates the input
8 context attributes
9
11 #include <Xm/XmIm.h>
12 void XmImVaSetFocusValues(
13 Widget widget);
14
16 XmImVaSetFocusValues notifies the input manager that the specified wid‐
17 get has received input focus. This function also updates the attributes
18 of the input context associated with the widget. This function passes
19 the attributes and values to XICSetValues. The caller of this routine
20 should pass in only those values that have changed since the last call
21 to any of these functions; XmImVaSetValues, XmImVaSetFocusValues, XmIm‐
22 SetValues, or XmImSetFocusValues. See the description in the XmImSet‐
23 Values(3) reference page for a list of associated resources.
24
25 This routine uses the ANSI C variable-length argument list (varargs)
26 calling conventions. The variable-length argument list consists of
27 groups of arguments each of which contains an attribute followed by the
28 value of the attribute. The last argument in the list must be NULL
29
30 Note that the List and TextField widgets call the XmImVaSetFocusValues
31 function when they receive focus. Therefore, further calls to the XmIm‐
32 VaSetFocusValues function for these widgets are unnecessary.
33
34 widget Specifies the ID of the widget registered with the input man‐
35 ager
36
37 For more information on variable-length argument lists, see the X Tool‐
38 kit Intrinsics documentation.
39
41 XmImSetFocusValues(3), XmImSetValues(3), and XmImVaSetValues(3).
42
43
44
45 XmImVaSetFocusValues(library call)