NAME
XtVaCreateManagedWidget − create and manage a widget, specifying resources with a varargs list.
SYNOPSIS
Widget XtVaCreateManagedWidget(name, widget_class, parent, ..., NULL)
String name;
WidgetClass widget_class;
Widget parent;
Inputs
nameSpecifies the resource name for the created widget.
widget_class
Specifies the widget class pointer for the created widget. Must be rectObjClass or any subclass.
parentSpecifies the parent widget. Must be of class Composite or any subclass thereof.
..., NULLA NULL-terminated variable-length list of resource name/value pairs to override any other resource specifications.
Returns
The created and managed widget.
AVAILABILITY
Release 4 and later.
DESCRIPTION
XtVaCreateManagedWidget() creates a widget or object named name, of class widget_class, as a child of parent, and with resource values as specified in the remaining arguments. It is identical to XtCreateManagedWidget() except that the args array of resource names and values and the num_args argument of that function are replaced with a NULL-terminated variable-length argument list.
See XtCreateManagedWidget() for more information on this function. See XtVaSetValues() for more information on using variable-length argument lists to specify resources.
SEE ALSO
XtCreateWidgetUNIX SYSTEM V/68, XtCreateManagedWidgetUNIX SYSTEM V/68, XtManageChildUNIX SYSTEM V/68, XtVaCreateWidgetUNIX SYSTEM V/68, XtVaSetValuesUNIX SYSTEM V/68.