Package org.pushingpixels.substance.api
Class SubstanceSlices.DecorationAreaType
- java.lang.Object
-
- org.pushingpixels.substance.api.SubstanceSlices.DecorationAreaType
-
- Enclosing class:
- SubstanceSlices
public static final class SubstanceSlices.DecorationAreaType extends java.lang.ObjectEnumeration of available decoration area types. This class is part of officially supported API.
-
-
Field Summary
Fields Modifier and Type Field Description static SubstanceSlices.DecorationAreaTypeCONTROL_PANEControl pane area, such as sidebars / task panes or ribbon bands in Flamingo.static SubstanceSlices.DecorationAreaTypeFOOTERAny area that can be placed in the bottom portion of its window.static SubstanceSlices.DecorationAreaTypeHEADERAny area that can be placed in the top portion of its window.static SubstanceSlices.DecorationAreaTypeNONEThe default decoration area type.static SubstanceSlices.DecorationAreaTypePRIMARY_TITLE_PANETitle pane of primary, top-level windows (frames, dialogs).static SubstanceSlices.DecorationAreaTypeSECONDARY_TITLE_PANETitle pane of secondary, non top-level windows (internal frames, desktop icons).static SubstanceSlices.DecorationAreaTypeTOOLBARTool bar.
-
Constructor Summary
Constructors Constructor Description DecorationAreaType(java.lang.String displayName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDisplayName()java.lang.StringtoString()
-
-
-
Field Detail
-
PRIMARY_TITLE_PANE
public static final SubstanceSlices.DecorationAreaType PRIMARY_TITLE_PANE
Title pane of primary, top-level windows (frames, dialogs).
-
SECONDARY_TITLE_PANE
public static final SubstanceSlices.DecorationAreaType SECONDARY_TITLE_PANE
Title pane of secondary, non top-level windows (internal frames, desktop icons).
-
TOOLBAR
public static final SubstanceSlices.DecorationAreaType TOOLBAR
Tool bar.
-
HEADER
public static final SubstanceSlices.DecorationAreaType HEADER
Any area that can be placed in the top portion of its window. Menu bar is an example of a core Swing component.
-
FOOTER
public static final SubstanceSlices.DecorationAreaType FOOTER
Any area that can be placed in the bottom portion of its window.
-
CONTROL_PANE
public static final SubstanceSlices.DecorationAreaType CONTROL_PANE
Control pane area, such as sidebars / task panes or ribbon bands in Flamingo.
-
NONE
public static final SubstanceSlices.DecorationAreaType NONE
The default decoration area type. Components placed in areas with this type do not get any special background decoration painting.
-
-