ApplicationShell(Xm) UNIX System V
NAME
ApplicationShell - the ApplicationShell widget class.
SYNOPSIS
#include <Xm/Xm.h>
#include <X11/Shell.h>
DESCRIPTION
ApplicationShell is used as the main top-level window for an
application. An application should only have more than one
ApplicationShell if it implements multiple logical
applications.
Classes
ApplicationShell inherits behavior and resources from Core,
Composite, Shell, WMShell, VendorShell, and TopLevelShell.
The class pointer is applicationShellWidgetClass.
The class name is ApplicationShell.
New Resources
The following table defines a set of widget resources used
by the programmer to specify data. The programmer can also
set the resource values for the inherited classes to set
attributes for this widget. To reference a resource by name
or by class in a .Xdefaults file, remove the XmN or XmC
prefix and use the remaining letters. To specify one of the
defined values for a resource in a .Xdefaults file, remove
the Xm prefix and use the remaining letters (in either lower
case or upper case, but include any underscores between
words). The codes in the access column indicate if the
given resource can be set at creation time (C), set by using
XtSetValues (S), retrieved by using XtGetValues (G), or is
not applicable (N/A).
ApplicationShell Resource Set
Name Class Type Default Access
________________________________________________
XmNargc XmCNargc int NULL CSG
XmNargv XmCNargv String * NULL CSG
XmNargc
Specifies the number of arguments given in the XmNargv
resource. The function XtInitialize will set this
resource on the shell widget instance it creates by
using its parameters as the values.
XmNargv
Specifies the argument list required by a session
manager to restart the application, should it be
killed. This list should be updated at appropriate
points by the application if a new state has been
reached which can be directly restarted. The function
XtInitialize will set this resource on the shell widget
instance it creates by using its parameters as the
values.
Inherited Resources
ApplicationShell inherits behavior and resources from the
following superclasses. For a complete description of these
resources, refer to the man page for that superclass.
TopLevelShell Resource Set
Name Class Type Default Access
______________________________________________________
XmNiconic XmCIconic Boolean False CSG
XmNiconName XmCIconName String NULL CSG
VendorShell Resource Set
Name Class Type Default Access
_____________________________________________________________________________________
XmNdeleteResponse XmCDeleteResponse unsigned char XmDESTROY CSG
XmNkeyboardFocusPolicy XmCKeyboardFocusPolicy unsigned char XmEXPLICIT CSG
XmNmwmDecorations XmCMwmDecorations int -1 CSG
XmNmwmFunctions XmCMwmFunctions int -1 CSG
XmNmwmInputMode XmCMwmInputMode int -1 CSG
XmNmwmMenu XmCMwmMenu String NULL CSG
XmNshellUnitType XmCShellUnitType unsigned char XmPIXELS CSG
WMShell Resource Set
Name Class Type Default Access
_________________________________________________________________
XmNheightInc XmCHeightInc int -1 CSG
XmNiconMask XmCIconMask Pixmap NULL CSG
XmNiconPixmap XmCIconPixmap Pixmap NULL CSG
XmNiconWindow XmCIconWindow Window NULL CSG
XmNiconX XmCIconX int -1 CSG
XmNiconY XmCIconY int -1 CSG
XmNinitialState XmCInitialState int 1 CSG
XmNinput XmCInput Boolean True CSG
XmNmaxAspectX XmCMaxAspectX int -1 CSG
XmNmaxAspectY XmCMaxAspectY int -1 CSG
XmNmaxHeight XmCMaxHeight int -1 CSG
XmNmaxWidth XmCMaxWidth int -1 CSG
XmNminAspectX XmCMinAspectX int -1 CSG
XmNminAspectY XmCMinAspectY int -1 CSG
XmNminHeight XmCMinHeight int -1 CSG
XmNminWidth XmCMinWidth int -1 CSG
XmNtitle XmCTitle char * NULL CSG
XmNtransient XmCTransient Boolean False CSG
XmNwaitForWm XmCWaitForWm Boolean True CSG
XmNwidthInc XmCWidthInc int -1 CSG
XmNwindowGroup XmCWindowGroup XID None CSG
XmNwmTimeout XmCWmTimeout int fivesecond CSG
Shell Resource Set
Name Class Type Default Access
_____________________________________________________________________________________________
XmNallowShellResize XmCAllowShellResize Boolean False CSG
XmNcreatePopupChildProc XmCCreatePopupChildProc XmCreatePopupChildProc NULL CSG
XmNgeometry XmCGeometry String NULL CSG
XmNoverrideRedirect XmCOverrideRedirect Boolean False CSG
XmNpopdownCallback XmCCallback XtCallbackList NULL C
XmNpopupCallback XmCCallback XtCallbackList NULL C
XmNsaveUnder XmCSaveUnder Boolean False CSG
Composite Resource Set
Name Class Type Default Access
______________________________________________________________
XmNinsertPosition XmCInsertPosition XmRFunction NULL CSG
Core Resource Set
Name Class Type Default Access
______________________________________________________________________________________
XmNaccelerators XmCAccelerators XtTranslations NULL CSG
XmNancestorSensitive XmCSensitive Boolean ShellAncestorSensitive G
XmNbackground XmCBackground Pixel White CSG
XmNbackgroundPixmap XmCPixmap Pixmap XmUNSPECIFIED_PIXMAP CSG
XmNborderColor XmCBorderColor Pixel Black CSG
XmNborderPixmap XmCPixmap Pixmap XmUNSPECIFIED_PIXMAP CSG
XmNborderWidth XmCBorderWidth Dimension 1 CSG
XmNcolormap XmCColormap Colormap ShellColormap CG
XmNdepth XmCDepth int ShellDepth CG
XmNdestroyCallback XmCCallback XtCallbackList NULL C
XmNheight XmCHeight Dimension 0 CSG
XmNmappedWhenManaged XmCMappedWhenManaged Boolean True CSG
XmNscreen XmCScreen Pointer XtCopyScreen CG
XmNsensitive XmCSensitive Boolean True CSG
XmNtranslations XmCTranslations XtTranslations NULL CSG
XmNwidth XmCWidth Dimension 0 CSG
XmNx XmCPosition Position 0 CSG
XmNy XmCPosition Position 0 CSG
RELATED INFORMATION
Composite(Xm), Core(Xm), Shell(Xm), WMShell(Xm),
VendorShell(Xm), and TopLevelShell(Xm).
(printed 2/14/90) ApplicationShell(Xm)