Name
XtCreateManagedWidget — create and manage a child widget.
Synopsis
Widget XtCreateManagedWidget(name, widget_class, parent, args, num_args)
String name;
WidgetClass widget_class;
Widget parent;
ArgList args;
Cardinal num_args;
Arguments
nameSpecifies the text name for the created shell widget.
widget_class
Specifies the widget class pointer for the created widget.
parentSpecifies the parent widget.
argsSpecifies the argument list to override the resource defaults.
num_argsSpecifies the number of arguments in the argument list.
Description
XtCreateManagedWidget combines creation and management of a widget into one routine. It calls XtCreateWidget and XtManageChild consecutively. XtCreateManagedWidget or XtVaCreateManagedWidget is the usual way to create new widget instances.
See Also
XtCreateWidget(1), XtManageChild(1), XtManageChildren(1), XtVaCreateManagedWidget(1).