java.lang.Object
javax.swing.border.AbstractBorder
org.gjt.sp.jedit.gui.DropShadowBorder
- All Implemented Interfaces:
Serializable
,Border
A drop shadow border. Draws a 1 pixel line completely around the component,
and a drop shadow effect on the right and bottom sides. Use this like any
other border in javax.swing.borders.
- Version:
- $Revision: 1.3 $
- Author:
- Dale Anson, 25 Feb 2004
- See Also:
-
Constructor Summary
ConstructorDescriptionDrop shadow with default width of 3 pixels and black color.DropShadowBorder
(int width) Drop shadow, default shadow color is black.DropShadowBorder
(int width, Color color) Drop shadow, width and color are adjustable. -
Method Summary
Modifier and TypeMethodDescriptionThis implementation returns a new Insets instance where the top and left are 1, the bottom and right fields are the border width + 1.getBorderInsets
(Component c, Insets insets) Reinitializes theinsets
parameter with this DropShadowBorder's current Insets.boolean
This implementation always returns true.void
paintBorder
(Component c, Graphics g, int x, int y, int width, int height) Paints the drop shadow border around the given component.Methods inherited from class javax.swing.border.AbstractBorder
getBaseline, getBaselineResizeBehavior, getInteriorRectangle, getInteriorRectangle
-
Constructor Details
-
DropShadowBorder
public DropShadowBorder()Drop shadow with default width of 3 pixels and black color. -
DropShadowBorder
public DropShadowBorder(int width) Drop shadow, default shadow color is black.- Parameters:
width
- the width of the shadow.
-
DropShadowBorder
Drop shadow, width and color are adjustable.- Parameters:
width
- the width of the shadow.color
- the color of the shadow.
-
-
Method Details
-
getBorderInsets
This implementation returns a new Insets instance where the top and left are 1, the bottom and right fields are the border width + 1.- Specified by:
getBorderInsets
in interfaceBorder
- Overrides:
getBorderInsets
in classAbstractBorder
- Parameters:
c
- the component for which this border insets value applies- Returns:
- a new Insets object initialized as stated above.
-
getBorderInsets
Reinitializes theinsets
parameter with this DropShadowBorder's current Insets.- Overrides:
getBorderInsets
in classAbstractBorder
- Parameters:
c
- the component for which this border insets value appliesinsets
- the object to be reinitialized- Returns:
- the given
insets
object
-
isBorderOpaque
public boolean isBorderOpaque()This implementation always returns true.- Specified by:
isBorderOpaque
in interfaceBorder
- Overrides:
isBorderOpaque
in classAbstractBorder
- Returns:
- true
-
paintBorder
Paints the drop shadow border around the given component.- Specified by:
paintBorder
in interfaceBorder
- Overrides:
paintBorder
in classAbstractBorder
- Parameters:
c
- - the component for which this border is being paintedg
- - the paint graphicsx
- - the x position of the painted bordery
- - the y position of the painted borderwidth
- - the width of the painted borderheight
- - the height of the painted border
-