XtUnmapWidget() XtUnmapWidget()
Name
XtUnmapWidget - unmap a widget explicitly.
Synopsis
XtUnmapWidget(w)
Widget w;
Inputs
w Specifies the widget to be unmapped; must be of class core or any subclass thereof.
Description
XtUnmapWidget() unmaps a widget's window from its display, causing it to become invisible. The widget remains under the geometry manage-
ment of its parent, and will continue to have screen space allocated for it.
Usage
Most widgets are automatically mapped when they are managed, as controlled by the
XtNmappedWhenManaged resource. Widgets that are not mapped automatically can be mapped and unmapped explicitly with XtMapWidget() and
XtUnmapWidget().
Unmanaging a widget, rather than unmapping it, is the usual method for temporarily removing a widget from the display.
See Also
XtMapWidget(1), XtSetMappedWhenManaged(1), XtUnmanageChild(1).
Xt - Widget Lifecycle XtUnmapWidget()