SubstanceBorderPainter, SubstanceTraitpublic class DelegateFractionBasedBorderPainter extends java.lang.Object implements SubstanceBorderPainter
| Modifier and Type | Field | Description |
|---|---|---|
protected FractionBasedBorderPainter |
delegate |
The delegate border painter.
|
protected java.lang.String |
displayName |
Display name of this border painter.
|
protected int[] |
masks |
8-digit hexadecimal masks applied on the colors painted by
delegate. |
protected ColorSchemeTransform |
transform |
Transformation to be applied on the color schemes prior to compute the
colors to be used for border painting.
|
protected static org.pushingpixels.substance.internal.utils.LazyResettableHashMap<SubstanceColorScheme> |
transformMap |
Map of transformed color schemes (to speed up the subsequent lookups).
|
| Constructor | Description |
|---|---|
DelegateFractionBasedBorderPainter(java.lang.String displayName,
FractionBasedBorderPainter delegate,
int[] masks,
ColorSchemeTransform transform) |
Creates a new delegate border painter
|
| Modifier and Type | Method | Description |
|---|---|---|
java.lang.String |
getDisplayName() |
Returns the display name of
this trait. |
java.awt.Color |
getRepresentativeColor(SubstanceColorScheme borderScheme) |
|
boolean |
isPaintingInnerContour() |
Returns boolean indication whether this border painter is painting the
inner contours.
|
void |
paintBorder(java.awt.Graphics g,
java.awt.Component c,
float width,
float height,
java.awt.Shape contour,
java.awt.Shape innerContour,
SubstanceColorScheme borderScheme) |
Paints the control border.
|
protected java.lang.String displayName
protected FractionBasedBorderPainter delegate
protected int[] masks
delegate. Can be used to apply custom translucency. For example,
value 0x80FFFFFF will result in 50% translucency of the original border
color.protected ColorSchemeTransform transform
protected static final org.pushingpixels.substance.internal.utils.LazyResettableHashMap<SubstanceColorScheme> transformMap
public DelegateFractionBasedBorderPainter(java.lang.String displayName,
FractionBasedBorderPainter delegate,
int[] masks,
ColorSchemeTransform transform)
displayName - Display name of this border painter.delegate - The delegate border painter.masks - Array of 8-digit hexadecimal masks applied on the relevant
colors painted by the delegate.transform - Transformation to be applied on the color schemes prior to
compute the colors to be used for border painting.public boolean isPaintingInnerContour()
SubstanceBorderPainterisPaintingInnerContour in interface SubstanceBorderPaintertrue if this border painter is painting the inner
contours, false otherwise.public void paintBorder(java.awt.Graphics g,
java.awt.Component c,
float width,
float height,
java.awt.Shape contour,
java.awt.Shape innerContour,
SubstanceColorScheme borderScheme)
SubstanceBorderPainterpaintBorder in interface SubstanceBorderPainterg - Graphics.c - Component.width - Width of a UI component.height - Height of a UI component.contour - Contour of a UI component.innerContour - Inner contour of a UI component. May be ignored if the
specific implementation paints only the outside border.borderScheme - The border color scheme.public java.lang.String getDisplayName()
SubstanceTraitthis trait. This method is part
of officially supported API.getDisplayName in interface SubstanceTraitthis trait.public java.awt.Color getRepresentativeColor(SubstanceColorScheme borderScheme)
getRepresentativeColor in interface SubstanceBorderPainter