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