Class SubstanceBorder
- java.lang.Object
-
- org.pushingpixels.substance.internal.utils.border.SubstanceBorder
-
- All Implemented Interfaces:
Border,UIResource
public class SubstanceBorder extends Object implements Border, UIResource
Gradient border for the Substance look and feel. This class is for internal use only.
-
-
Field Summary
Fields Modifier and Type Field Description protected floatalphaBorder alpha.protected InsetsmyInsetsInsets ofthisborder.protected floatradiusScaleFactorWhen the border is painted, the default radius is multiplied by this factor.
-
Constructor Summary
Constructors Constructor Description SubstanceBorder()Creates a new border with dynamic insets (computed at the invocation time ofgetBorderInsets(Component)call).SubstanceBorder(float radiusScaleFactor)Creates a new border with dynamic insets (computed at the invocation time ofgetBorderInsets(Component)call).SubstanceBorder(Insets insets)Creates a new border with the specified insets.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description InsetsgetBorderInsets(Component c)floatgetRadiusScaleFactor()Returns the radius scale factor of this border.booleanisBorderOpaque()voidpaintBorder(Component c, Graphics g, int x, int y, int width, int height)voidsetAlpha(float alpha)Sets the alpha for this border.
-
-
-
Field Detail
-
myInsets
protected Insets myInsets
Insets ofthisborder.
-
alpha
protected float alpha
Border alpha.
-
radiusScaleFactor
protected float radiusScaleFactor
When the border is painted, the default radius is multiplied by this factor.
-
-
Constructor Detail
-
SubstanceBorder
public SubstanceBorder()
Creates a new border with dynamic insets (computed at the invocation time ofgetBorderInsets(Component)call).
-
SubstanceBorder
public SubstanceBorder(float radiusScaleFactor)
Creates a new border with dynamic insets (computed at the invocation time ofgetBorderInsets(Component)call).- Parameters:
radiusScaleFactor- Radius scale factor.
-
SubstanceBorder
public SubstanceBorder(Insets insets)
Creates a new border with the specified insets.- Parameters:
insets- Insets.
-
-
Method Detail
-
setAlpha
public void setAlpha(float alpha)
Sets the alpha for this border.- Parameters:
alpha- Alpha factor.
-
paintBorder
public void paintBorder(Component c, Graphics g, int x, int y, int width, int height)
- Specified by:
paintBorderin interfaceBorder
-
getBorderInsets
public Insets getBorderInsets(Component c)
- Specified by:
getBorderInsetsin interfaceBorder
-
isBorderOpaque
public boolean isBorderOpaque()
- Specified by:
isBorderOpaquein interfaceBorder
-
getRadiusScaleFactor
public float getRadiusScaleFactor()
Returns the radius scale factor of this border.- Returns:
- The radius scale factor of this border.
-
-