|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.pushingpixels.substance.api.painter.border.StandardBorderPainter
org.pushingpixels.substance.api.painter.border.DelegateBorderPainter
public class DelegateBorderPainter
Delegate border painter that allows tweaking the visual appearance of borders.
| Field Summary | |
|---|---|
protected int |
bottomMask
8-digit hexadecimal mask applied on the bottom color painted by delegate. |
protected StandardBorderPainter |
delegate
The delegate border painter. |
protected java.lang.String |
displayName
Display name of this border painter. |
protected int |
midMask
8-digit hexadecimal mask applied on the middle color painted by delegate. |
protected int |
topMask
8-digit hexadecimal mask applied on the top color 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 LazyResettableHashMap<SubstanceColorScheme> |
transformMap
Map of transformed color schemes (to speed up the subsequent lookups). |
| Constructor Summary | |
|---|---|
DelegateBorderPainter(java.lang.String displayName,
StandardBorderPainter delegate,
ColorSchemeTransform transform)
Creates a new delegate border painter |
|
DelegateBorderPainter(java.lang.String displayName,
StandardBorderPainter delegate,
int topMask,
int midMask,
int bottomMask,
ColorSchemeTransform transform)
Creates a new delegate border painter |
|
| Method Summary | |
|---|---|
java.awt.Color |
getBottomBorderColor(SubstanceColorScheme borderScheme)
Computes the color of the bottom portion of the border. |
java.lang.String |
getDisplayName()
Returns the display name of this trait. |
java.awt.Color |
getMidBorderColor(SubstanceColorScheme borderScheme)
Computes the color of the middle portion of the border. |
java.awt.Color |
getTopBorderColor(SubstanceColorScheme borderScheme)
Computes the color of the top portion of the border. |
void |
paintBorder(java.awt.Graphics g,
java.awt.Component c,
int width,
int height,
java.awt.Shape contour,
java.awt.Shape innerContour,
SubstanceColorScheme borderScheme)
Paints the control border. |
| Methods inherited from class org.pushingpixels.substance.api.painter.border.StandardBorderPainter |
|---|
isPaintingInnerContour |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
protected java.lang.String displayName
protected StandardBorderPainter delegate
protected int topMask
delegate. Can be used to apply custom translucency. For example,
value 0x80FFFFFF will result in 50% translucency of the original top
border color.
protected int midMask
delegate. Can be used to apply custom translucency. For example,
value 0x80FFFFFF will result in 50% translucency of the original middle
border color.
protected int bottomMask
delegate. Can be used to apply custom translucency. For example,
value 0x80FFFFFF will result in 50% translucency of the original bottom
border color.
protected ColorSchemeTransform transform
protected static final LazyResettableHashMap<SubstanceColorScheme> transformMap
| Constructor Detail |
|---|
public DelegateBorderPainter(java.lang.String displayName,
StandardBorderPainter delegate,
ColorSchemeTransform transform)
displayName - Display name of this border painter.delegate - The delegate border painter.transform - Transformation to be applied on the color schemes prior to
compute the colors to be used for border painting.
public DelegateBorderPainter(java.lang.String displayName,
StandardBorderPainter delegate,
int topMask,
int midMask,
int bottomMask,
ColorSchemeTransform transform)
displayName - Display name of this border painter.delegate - The delegate border painter.topMask - 8-digit hexadecimal mask applied on the top color painted by
the delegate.midMask - 8-digit hexadecimal mask applied on the middle color painted
by the delegate.bottomMask - 8-digit hexadecimal mask applied on the bottom color painted
by the delegate.transform - Transformation to be applied on the color schemes prior to
compute the colors to be used for border painting.| Method Detail |
|---|
public java.awt.Color getTopBorderColor(SubstanceColorScheme borderScheme)
StandardBorderPainter
getTopBorderColor in class StandardBorderPainterborderScheme - The border color scheme.
public java.awt.Color getMidBorderColor(SubstanceColorScheme borderScheme)
StandardBorderPainter
getMidBorderColor in class StandardBorderPainterborderScheme - The border color scheme.
public java.awt.Color getBottomBorderColor(SubstanceColorScheme borderScheme)
StandardBorderPainter
getBottomBorderColor in class StandardBorderPainterborderScheme - The border color scheme.
public void paintBorder(java.awt.Graphics g,
java.awt.Component c,
int width,
int height,
java.awt.Shape contour,
java.awt.Shape innerContour,
SubstanceColorScheme borderScheme)
SubstanceBorderPainter
paintBorder in interface SubstanceBorderPainterpaintBorder in class StandardBorderPainterg - 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 SubstanceTraitgetDisplayName in class StandardBorderPainterthis trait.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||