XT FUNCTIONS XtSetValues(3xt)
NAME
XtSetValues, XtVaSetValues, XtSetSubvalues, XtVaSet-
Subvalues, XtGetValues, XtVaGetValues, XtGetSubvalues, XtVa-
GetSubvalues - obtain and set widget resources
SYNTAXcc [ flag... ] file... -lXt [ library... ]
void XtSetValues(Widget w, ArgList args, Cardinal num_args);
void XtVaSetValues(Widget w, ...); void XtSetSubvalues(XtPointer base, XtResourceListresources, Cardinal num_resources, ArgList args, Cardi-
nal num_args);
void XtVaSetSubvalues(XtPointer base, XtResourceListresources, Cardinal num_resources, ...);
void XtGetValues(Widget w, ArgList args, Cardinal num_args);
void XtVaGetValues(Widget w, ...); void XtGetSubvalues(XtPointer base, XtResourceListresources, Cardinal num_resources, ArgList args, Cardi-
nal num_args);
void XtVaGetSubvalues(XtPointer base, XtResourceListresources, Cardinal num_resources, ...);
ARGUMENTS args Specifies the argument list of name/address pairs that contain the resource name and either the address into which the resource value is to be stored or their new values. base Specifies the base address of the subpart data structure where the resources should be retrieved or written.num_args Specifies the number of arguments in the argument
list. resources Specifies the nonwidget resource list or values.num_resources
Specifies the number of resources in the resource list. w Specifies the widget. ... Specifies the variable argument list of X Version 11 Last change: libXt 1.0.8 1XT FUNCTIONS XtSetValues(3xt)
name/address pairs that contain the resource name and either the address into which the resource value is to be stored or their new values.DESCRIPTION
The XtSetValues function starts with the resources specified
for the Core widget fields and proceeds down the subclass chain to the widget. At each stage, it writes the new value (if specified by one of the arguments) or the existing value (if no new value is specified) to a new widget data record.XtSetValues then calls the set_values procedures for the
widget in superclass-to-subclass order. If the widget has
any non-NULL set_values_hook fields, these are called
immediately after the corresponding set_values procedure.
This procedure permits subclasses to set nonwidget data forXtSetValues.
If the widget's parent is a subclass of con-
straintWidgetClass, XtSetValues also updates the widget's
constraints. It starts with the constraint resources speci-
fied for constraintWidgetClass and proceeds down the sub-
class chain to the parent's class. At each stage, it writes the new value or the existing value to a new constraintrecord. It then calls the constraint set_values procedures
from constraintWidgetClass down to the parent's class. Theconstraint set_values procedures are called with widget
arguments, as for all set_values procedures, not just the
constraint record arguments, so that they can make adjust-
ments to the desired values based on full information about the widget.XtSetValues determines if a geometry request is needed by
comparing the current widget to the new widget. If any geometry changes are required, it makes the request, and the geometry manager returns XtGeometryYes, XtGeometryAlmost, orXtGeometryNo. If XtGeometryYes, XtSetValues calls the
widget's resize procedure. If XtGeometryNo, XtSetValues
resets the geometry fields to their original values. IfXtGeometryAlmost, XtSetValues calls the set_values_almost
procedure, which determines what should be done and writes new values for the geometry fields into the new widget.XtSetValues then repeats this process, deciding once more
whether the geometry manager should be called.Finally, if any of the set_values procedures returned True,
XtSetValues causes the widget's expose procedure to be
invoked by calling the Xlib XClearArea function on the widget's window.The XtSetSubvalues function stores resources into the struc-
ture identified by base. X Version 11 Last change: libXt 1.0.8 2XT FUNCTIONS XtSetValues(3xt)
The XtGetValues function starts with the resources specified for the core widget fields and proceeds down the subclass chain to the widget. The value field of a passed argument list should contain the address into which to store thecorresponding resource value. It is the caller's responsi-
bility to allocate and deallocate this storage according to the size of the resource representation type used within the widget.If the widget's parent is a subclass of con-
straintWidgetClass, XtGetValues then fetches the values forany constraint resources requested. It starts with the con-
straint resources specified for constraintWidgetClass andproceeds down to the subclass chain to the parent's con-
straint resources. If the argument list contains a resource name that is not found in any of the resource lists searched, the value at the corresponding address is notmodified. Finally, if the get_values_hook procedures are
non-NULL, they are called in superclass-to-subclass order
after all the resource values have been fetched by XtGet-
Values. This permits a subclass to provide nonwidget resource data to XtGetValues. The XtGetSubvalues function obtains resource values from the structure identified by base.SEE ALSO
X Toolkit Intrinsics - C Language Interface
Xlib - C Language X Interface
ATTRIBUTES
See attributes(5) for descriptions of the following attri-
butes:__________________________________________________________________
| ATTRIBUTE TYPE | ATTRIBUTE VALUE |
|_____________________________|___________________________________|
| Availability | x11/library/toolkit/libxt ||_____________________________|___________________________________|
| Interface Stability | Committed ||_____________________________|___________________________________|
| MT-Level | See XtToolkitThreadInitialize(3XT)|
|_____________________________|___________________________________|
X Version 11 Last change: libXt 1.0.8 3