Class ClassicDecorationPainter
- java.lang.Object
-
- org.pushingpixels.substance.api.painter.decoration.ClassicDecorationPainter
-
- All Implemented Interfaces:
SubstanceDecorationPainter
,SubstanceTrait
public class ClassicDecorationPainter extends Object implements SubstanceDecorationPainter
Decoration painter that paints a classic gradient. This class is part of officially supported API.- Since:
- version 4.3
-
-
Field Summary
Fields Modifier and Type Field Description static String
DISPLAY_NAME
The display name for the decoraion painters of this class.protected ClassicFillPainter
painter
Single gradient painter instance.protected static LazyResettableHashMap<BufferedImage>
smallImageCache
Cache for small objects.
-
Constructor Summary
Constructors Constructor Description ClassicDecorationPainter()
Creates new classic title painter.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDisplayName()
Returns the display name ofthis
trait.protected void
internalPaint(Graphics2D graphics, Component comp, int width, int height, SubstanceColorScheme scheme)
Paints the specified area.void
paintDecorationArea(Graphics2D graphics, Component comp, DecorationAreaType decorationAreaType, int width, int height, SubstanceSkin skin)
Paints the decoration area.
-
-
-
Field Detail
-
DISPLAY_NAME
public static final String DISPLAY_NAME
The display name for the decoraion painters of this class.- See Also:
- Constant Field Values
-
smallImageCache
protected static final LazyResettableHashMap<BufferedImage> smallImageCache
Cache for small objects.
-
painter
protected ClassicFillPainter painter
Single gradient painter instance.
-
-
Method Detail
-
getDisplayName
public String getDisplayName()
Description copied from interface:SubstanceTrait
Returns the display name ofthis
trait. This method is part of officially supported API.- Specified by:
getDisplayName
in interfaceSubstanceTrait
- Returns:
- The display name of
this
trait.
-
paintDecorationArea
public void paintDecorationArea(Graphics2D graphics, Component comp, DecorationAreaType decorationAreaType, int width, int height, SubstanceSkin skin)
Description copied from interface:SubstanceDecorationPainter
Paints the decoration area.- Specified by:
paintDecorationArea
in interfaceSubstanceDecorationPainter
- Parameters:
graphics
- Graphics context.comp
- Component.decorationAreaType
- Decoration area type. Must not benull
.width
- Width.height
- Height.skin
- Skin for painting the decoration area.
-
internalPaint
protected void internalPaint(Graphics2D graphics, Component comp, int width, int height, SubstanceColorScheme scheme)
Paints the specified area.- Parameters:
graphics
- Graphics context.comp
- Component.width
- Width.height
- Height.scheme
- Substance color scheme for painting the area.
-
-