Name
XtIsOverrideShell — test whether a widget is a subclass of the OverrideShell widget class.
Synopsis
Boolean XtIsOverrideShell(object)
Widget object;
Arguments
objectSpecifies the object whose class is to be checked; may be of class Object or any subclass thereof.
Description
XtIsOverrideShell tests whether a widget is a subclass of the OverrideShell widget class. This is really just a convenience function equivalent to calling XtIsSubclass with overrideShellWidgetClass as the object_class argument. XtIsOverrideShell is defined as a macro in <X11/Intrinsic.h>:
#define XtIsOverrideShell(widget) \
(_XtIsSubclassOf(widget, (WidgetClass)overrideShellWidgetClass, \
(WidgetClass)shellWidgetClass, (XtEnum)0x20))