Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

xtunmanagechild(3x) [hpux man page]

XtUnmanageChild(3X)						   XT FUNCTIONS 					       XtUnmanageChild(3X)

NAME
XtUnmanageChild - unmanage child SYNTAX
void XtUnmanageChild(child) Widget child; ARGUMENTS
child Specifies the child. DESCRIPTION
The XtUnmanageChild function constructs a widget list of length one and calls XtUnmanageChildren. SEE ALSO
XtManageChildren.(3X), XtManageChild(3X), XtUnmanageChildren(3X), XtChangeManagedSet(3X), XtIsManaged(3X) X Version 11 Release 6 XtUnmanageChild(3X)

Check Out this Related Man Page

XtManageChild() 														   XtManageChild()

Name
  XtManageChild - bring a widget under its parent's geometry management.

Synopsis
  void XtManageChild(w)
	 Widget w;

Inputs
  w	    Specifies the child widget to be managed; Must be of class RectObj or any subclass thereof.

Description
  XtManageChild()  brings  a child widget under the geometry management of its parent.	All widgets (except shell widgets) must be managed in
  order to be visible.	Managing a widget will generally make it visible, unless its XtNmappedWhenManaged resource is False.

  XtManageChild() constructs a WidgetList of length one and calls XtManageChildren().  See XtManageChildren() for more information.

Usage
  Calls to XtCreateWidget() and XtManageChild() can be combined into a single call to XtCreateManagedWidget() or XtVaCreateManagedWidget().

  If you are going to manage multiple children of the same managed and realized parent, it is more efficient to place those  children  widget
  into an array and call XtManageChildren() just once, as this results in only a single call to the parent's change_managed() method.  If you
  are creating widgets before the widget tree has been realized, however, managing them one at a time is fine.

  A widget can be unmanaged by calling XtUnmanageChild().

See Also
  XtCreateManagedWidget(1), XtIsManaged(1), XtManageChildren(1), XtSetMappedWhenManaged(1), XtUnmanageChild(1), XtUnmanageChildren(1).

Xt - Widget Lifecycle														   XtManageChild()
Man Page