SubstanceBorderPainter
, SubstanceTrait
ClassicBorderPainter
, DelegateBorderPainter
, FlatBorderPainter
, GlassBorderPainter
, SimplisticSoftBorderPainter
public class StandardBorderPainter extends Object implements SubstanceBorderPainter
Constructor | Description |
---|---|
StandardBorderPainter() |
Modifier and Type | Method | Description |
---|---|---|
Color |
getBottomBorderColor(SubstanceColorScheme borderScheme) |
Computes the color of the bottom portion of the border.
|
String |
getDisplayName() |
Returns the display name of
this trait. |
Color |
getMidBorderColor(SubstanceColorScheme borderScheme) |
Computes the color of the middle portion of the border.
|
Color |
getTopBorderColor(SubstanceColorScheme borderScheme) |
Computes the color of the top portion of the border.
|
boolean |
isPaintingInnerContour() |
Returns boolean indication whether this border painter is painting the
inner contours.
|
void |
paintBorder(Graphics g,
Component c,
int width,
int height,
Shape contour,
Shape innerContour,
SubstanceColorScheme borderScheme) |
Paints the control border.
|
public String getDisplayName()
SubstanceTrait
this
trait. This method is part
of officially supported API.getDisplayName
in interface SubstanceTrait
this
trait.public boolean isPaintingInnerContour()
SubstanceBorderPainter
isPaintingInnerContour
in interface SubstanceBorderPainter
true
if this border painter is painting the inner
contours, false
otherwise.public void paintBorder(Graphics g, Component c, int width, int height, Shape contour, Shape innerContour, SubstanceColorScheme borderScheme)
SubstanceBorderPainter
paintBorder
in interface SubstanceBorderPainter
g
- 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 Color getTopBorderColor(SubstanceColorScheme borderScheme)
borderScheme
- The border color scheme.public Color getMidBorderColor(SubstanceColorScheme borderScheme)
borderScheme
- The border color scheme.public Color getBottomBorderColor(SubstanceColorScheme borderScheme)
borderScheme
- The border color scheme.