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