Class RadianceThemingSlices.DecorationAreaType
- java.lang.Object
-
- org.pushingpixels.radiance.theming.api.RadianceThemingSlices.DecorationAreaType
-
- Enclosing class:
- RadianceThemingSlices
public static final class RadianceThemingSlices.DecorationAreaType extends java.lang.Object
Enumeration of available decoration area types. This class is part of officially supported API.
-
-
Field Summary
Fields Modifier and Type Field Description static RadianceThemingSlices.DecorationAreaType
CONTROL_PANE
Control pane area, such as sidebars / task panes or ribbon bands in Component.private java.lang.String
displayName
static RadianceThemingSlices.DecorationAreaType
FOOTER
Any area that can be placed in the bottom portion of its window.static RadianceThemingSlices.DecorationAreaType
HEADER
Any area that can be placed in the top portion of its window.static RadianceThemingSlices.DecorationAreaType
NONE
The default decoration area type.static RadianceThemingSlices.DecorationAreaType
PRIMARY_TITLE_PANE
Title pane of primary, top-level windows (frames, dialogs).static RadianceThemingSlices.DecorationAreaType
SECONDARY_TITLE_PANE
Title pane of secondary, non top-level windows (internal frames, desktop icons).static RadianceThemingSlices.DecorationAreaType
TOOLBAR
Tool 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.String
getDisplayName()
java.lang.String
toString()
-
-
-
Field Detail
-
displayName
private java.lang.String displayName
-
PRIMARY_TITLE_PANE
public static final RadianceThemingSlices.DecorationAreaType PRIMARY_TITLE_PANE
Title pane of primary, top-level windows (frames, dialogs).
-
SECONDARY_TITLE_PANE
public static final RadianceThemingSlices.DecorationAreaType SECONDARY_TITLE_PANE
Title pane of secondary, non top-level windows (internal frames, desktop icons).
-
TOOLBAR
public static final RadianceThemingSlices.DecorationAreaType TOOLBAR
Tool bar.
-
HEADER
public static final RadianceThemingSlices.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 RadianceThemingSlices.DecorationAreaType FOOTER
Any area that can be placed in the bottom portion of its window.
-
CONTROL_PANE
public static final RadianceThemingSlices.DecorationAreaType CONTROL_PANE
Control pane area, such as sidebars / task panes or ribbon bands in Component.
-
NONE
public static final RadianceThemingSlices.DecorationAreaType NONE
The default decoration area type. Components placed in areas with this type do not get any special background decoration painting.
-
-