XT FUNCTIONS XtCreateWidget(3xt)
NAME
XtCreateWidget, XtVaCreateWidget, XtCreateManagedWidget,XtVaCreateManagedWidget, XtDestroyWidget - create and des-
troy widgets SYNTAXcc [ flag... ] file... -lXt [ library... ]
Widget XtCreateWidget(String name, WidgetClass widget_class,
Widget parent, ArgList args, Cardinal num_args);
Widget XtVaCreateWidget(String name, WidgetClasswidget_class, Widget parent, ...);
Widget XtCreateManagedWidget(String name, WidgetClasswidget_class, Widget parent, ArgList args, Cardinal
num_args);
Widget XtVaCreateManagedWidget(String name, WidgetClass
widget_class, Widget parent, ...);
void XtDestroyWidget(Widget w); ARGUMENTS args Specifies the argument list to override the resource defaults.name Specifies the resource name for the created wid-
get, which is used for retrieving resources and, for that reason, should not be the same as any other widget that is a child of same parent.num_args Specifies the number of arguments in the argument
list. parent Specifies the parent widget. w Specifies the widget.widget_class
Specifies the widget class pointer for the created widget. ... Specifies the variable argument list to override the resource defaults.DESCRIPTION
The XtCreateWidget function performs much of the boilerplate operations of widget creation:+o Checks to see if the class_initialize procedure has
been called for this class and for all superclasses X Version 11 Last change: libXt 1.0.8 1 XT FUNCTIONS XtCreateWidget(3xt)and, if not, calls those necessary in a superclass-to-
subclass order. +o Allocates memory for the widget instance. +o If the parent is a subclass of constraintWidgetClass, it allocates memory for the parent's constraints and stores the address of this memory into the constraints field.+o Initializes the core nonresource data fields (for exam-
ple, parent and visible). +o Initializes the resource fields (for example,background_pixel) by using the resource lists specified
for this class and all superclasses. +o If the parent is a subclass of constraintWidgetClass, it initializes the resource fields of the constraints record by using the constraint resource list specifiedfor the parent's class and all superclasses up to con-
straintWidgetClass. +o Calls the initialize procedures for the widget by starting at the Core initialize procedure on down to the widget's initialize procedure. +o If the parent is a subclass of compositeWidgetClass, itputs the widget into its parent's children list by cal-
ling its parent's insert_child procedure. For further
information, see Section 3.5. +o If the parent is a subclass of constraintWidgetClass, it calls the constraint initialize procedures, startingat constraintWidgetClass on down to the parent's con-
straint initialize procedure. Note that you can determine the number of arguments in an argument list by using the XtNumber macro. For further information, see Section 11.1. The XtCreateManagedWidget function is a convenience routine that calls XtCreateWidget and XtManageChild. The XtDestroyWidget function provides the only method of destroying a widget, including widgets that need to destroy themselves. It can be called at any time, including from an application callback routine of the widget being destroyed.This requires a two-phase destroy process in order to avoid
dangling references to destroyed widgets. X Version 11 Last change: libXt 1.0.8 2 XT FUNCTIONS XtCreateWidget(3xt) In phase one, XtDestroyWidget performs the following:+o If the being_destroyed field of the widget is True, it
returns immediately. +o Recursively descends the widget tree and sets thebeing_destroyed field to True for the widget and all
children. +o Adds the widget to a list of widgets (the destroy list) that should be destroyed when it is safe to do so. Entries on the destroy list satisfy the invariant that if w2occurs after w1 on the destroy list then w2 is not a descen-
dent of w1. (A descendant refers to both normal and pop-up
children.) Phase two occurs when all procedures that should execute as a result of the current event have been called (including all procedures registered with the event and translation managers), that is, when the current invocation of XtDispatchEvent is about to return or immediately if not in XtDispatchEvent. In phase two, XtDestroyWidget performs the following on each entry in the destroy list: +o Calls the destroy callback procedures registered on thewidget (and all descendants) in post-order (it calls
children callbacks before parent callbacks).+o If the widget's parent is a subclass of composi-
teWidgetClass and if the parent is not being destroyed, it calls XtUnmanageChild on the widget and then callsthe widget's parent's delete_child procedure (see Sec-
tion 3.4).+o If the widget's parent is a subclass of con-
straintWidgetClass, it calls the constraint destroy procedure for the parent, then the parent's superclass, until finally it calls the constraint destroy procedure for constraintWidgetClass.+o Calls the destroy methods for the widget (and all des-
cendants) in post-order. For each such widget, it
calls the destroy procedure declared in the widget class, then the destroy procedure declared in itssuperclass, until finally it calls the destroy pro-
cedure declared in the Core class record. +o Calls XDestroyWindow if the widget is realized (that is, has an X window). The server recursively destroys X Version 11 Last change: libXt 1.0.8 3 XT FUNCTIONS XtCreateWidget(3xt) all descendant windows.+o Recursively descends the tree and deallocates all pop-
up widgets, constraint records, callback lists and, ifthe widget is a subclass of compositeWidgetClass, chil-
dren.SEE ALSO
XtAppCreateShell(3Xt), XtCreatePopupShell(3Xt)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 4