*** UNIX MANUAL PAGE BROWSER ***

A Nergahak database for man pages research.

Navigation

Directory Browser

1Browse 4.4BSD4.4BSD
1Browse Digital UNIXDigital UNIX 4.0e
1Browse FreeBSDFreeBSD 14.3
1Browse MINIXMINIX 3.4.0rc6-d5e4fc0
1Browse NetBSDNetBSD 10.1
1Browse OpenBSDOpenBSD 7.7
1Browse UNIX v7Version 7 UNIX
1Browse UNIX v10Version 10 UNIX

Manual Page Search

Manual Page Result

0 Command: XtCreateWidget | Section: 3 | Source: Digital UNIX | File: XtCreateWidget.3Xt.gz
XtCreateWidget(3Xt) XtCreateWidget(3Xt) NAME XtCreateWidget, XtVaCreateWidget, XtCreateManagedWidget, XtVaCreateMan- agedWidget, XtDestroyWidget - create and destroy widgets SYNOPSIS Widget XtCreateWidget(name, widget_class, parent, args, num_args) String name; WidgetClass widget_class; Widget parent; ArgList args; Cardinal num_args; Widget XtVaCreateWidget(name, widget_class, parent, ...) String name; WidgetClass widget_class; Widget parent; Widget XtCreateManagedWidget(name, widget_class, parent, args, num_args) String name; WidgetClass widget_class; Widget parent; ArgList args; Cardinal num_args; Widget XtVaCreateManagedWidget(name, widget_class, parent, ...) String name; WidgetClass widget_class; Widget parent; void XtDestroyWidget(w) Widget w; ARGUMENTS Specifies the argument list to override the resource defaults. Speci- fies the resource name for the created widget, which is used for re- trieving resources and, for that reason, should not be the same as any other widget that is a child of same parent. Specifies the number of arguments in the argument list. Specifies the parent widget. Speci- fies the widget. 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: Checks to see if the class_initialize procedure has been called for this class and for all superclasses and, if not, calls those necessary in a superclass-to-subclass order. Allocates memory for the widget instance. If the parent is a subclass of constraintWid- getClass, it allocates memory for the parent's constraints and stores the address of this memory into the constraints field. Initializes the core nonresource data fields (for example, parent and visible). Ini- tializes the resource fields (for example, background_pixel) by using the resource lists specified for this class and all superclasses. If the parent is a subclass of constraintWidgetClass, it initializes the resource fields of the constraints record by using the constraint re- source list specified for the parent's class and all superclasses up to constraintWidgetClass. Calls the initialize procedures for the widget by starting at the Core initialize procedure on down to the widget's initialize procedure. If the parent is a subclass of compositeWidget- Class, it puts the widget into its parent's children list by calling its parent's insert_child procedure. For further information, see Sec- tion 3.5. If the parent is a subclass of constraintWidgetClass, it calls the constraint initialize procedures, starting at constraintWid- getClass on down to the parent's constraint 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. In phase one, XtDestroyWidget performs the following: If the being_de- stroyed field of the widget is True, it returns immediately. Recur- sively descends the widget tree and sets the being_destroyed field to True for the widget and all children. 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 w2 occurs af- ter w1 on the destroy list then w2 is not a descendent of w1. (A de- scendant 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 in- vocation 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: Calls the destroy callback procedures registered on the widget (and all descendants) in post-order (it calls children call- backs before parent callbacks). If the widget's parent is a subclass of compositeWidgetClass and if the parent is not being destroyed, it calls XtUnmanageChild on the widget and then calls the widget's par- ent's delete_child procedure (see Section 3.4). If the widget's parent is a subclass of constraintWidgetClass, it calls the constraint destroy procedure for the parent, then the parent's superclass, until finally it calls the constraint destroy procedure for constraintWidgetClass. Calls the destroy methods for the widget (and all descendants) in post- order. For each such widget, it calls the destroy procedure declared in the widget class, then the destroy procedure declared in its super- class, until finally it calls the destroy procedure declared in the Core class record. Calls XDestroyWindow if the widget is realized (that is, has an X window). The server recursively destroys all descen- dant windows. Recursively descends the tree and deallocates all pop-up widgets, constraint records, callback lists and, if the widget is a subclass of compositeWidgetClass, children. SEE ALSO XtAppCreateShell(3Xt), XtCreatePopupShell(3Xt) X Toolkit Intrinsics -- C Language Interface Xlib -- C Language X Interface XtCreateWidget(3Xt)

Navigation Options