public class CompositeBorderPainter extends java.lang.Object implements SubstanceBorderPainter
Constructor and Description |
---|
CompositeBorderPainter(java.lang.String displayName,
SubstanceBorderPainter outer,
SubstanceBorderPainter inner)
Creates a new composite border painter.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getDisplayName()
Returns the display name of
this trait. |
boolean |
isPaintingInnerContour()
Returns boolean indication whether this border painter is painting the
inner contours.
|
void |
paintBorder(java.awt.Graphics g,
java.awt.Component c,
int width,
int height,
java.awt.Shape contour,
java.awt.Shape innerContour,
SubstanceColorScheme colorScheme1,
SubstanceColorScheme colorScheme2,
float cyclePos,
boolean useCyclePosAsInterpolation)
Paints the control border.
|
public CompositeBorderPainter(java.lang.String displayName, SubstanceBorderPainter outer, SubstanceBorderPainter inner)
displayName
- Display name.outer
- Delegate painter for painting the outer contours.inner
- Delegate painter for painting the inner contrours.public boolean isPaintingInnerContour()
SubstanceBorderPainter
isPaintingInnerContour
in interface SubstanceBorderPainter
true
if this border painter is painting the inner
contours, false
otherwise.public void paintBorder(java.awt.Graphics g, java.awt.Component c, int width, int height, java.awt.Shape contour, java.awt.Shape innerContour, SubstanceColorScheme colorScheme1, SubstanceColorScheme colorScheme2, float cyclePos, boolean useCyclePosAsInterpolation)
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.colorScheme1
- The first color scheme.colorScheme2
- The second color scheme.cyclePos
- Cycle position. Is used for rollover and pulsation effects.
Must be in 0..1 range.useCyclePosAsInterpolation
- Indicates the algorithm to use for computing various colors.
If true
, the cyclePos
is used to
interpolate colors between different color components of both
color schemes. If false
, the
cyclePos
is used to interpolate colors between
different color components of the first color scheme.public java.lang.String getDisplayName()
SubstanceTrait
this
trait. This method is part
of officially supported API.getDisplayName
in interface SubstanceTrait
this
trait.