SoftBevelBorderpublic class SoftBevelBorder extends BevelBorder A class which implements a raised or lowered bevel with
softened corners.
Warning:
Serialized objects of this class will not be compatible with
future Swing releases. The current serialization support is
appropriate for short term storage or RMI between applications running
the same version of Swing. As of 1.4, support for long term storage
of all JavaBeansTM
has been added to the java.beans package.
Please see {@link java.beans.XMLEncoder}. |
Constructors Summary |
---|
public SoftBevelBorder(int bevelType)Creates a bevel border with the specified type and whose
colors will be derived from the background color of the
component passed into the paintBorder method.
super(bevelType);
| public SoftBevelBorder(int bevelType, Color highlight, Color shadow)Creates a bevel border with the specified type, highlight and
shadow colors.
super(bevelType, highlight, shadow);
| public SoftBevelBorder(int bevelType, Color highlightOuterColor, Color highlightInnerColor, Color shadowOuterColor, Color shadowInnerColor)Creates a bevel border with the specified type, highlight
shadow colors.
super(bevelType, highlightOuterColor, highlightInnerColor,
shadowOuterColor, shadowInnerColor);
|
Methods Summary |
---|
public java.awt.Insets | getBorderInsets(java.awt.Component c)Returns the insets of the border.
return getBorderInsets(c, new Insets(0,0,0,0));
| public java.awt.Insets | getBorderInsets(java.awt.Component c, java.awt.Insets insets)Reinitialize the insets parameter with this Border's current Insets.
insets.top = insets.left = insets.bottom = insets.right = 3;
return insets;
| public boolean | isBorderOpaque()Returns whether or not the border is opaque. return false;
| public void | paintBorder(java.awt.Component c, java.awt.Graphics g, int x, int y, int width, int height)Paints the border for the specified component with the specified
position and size.
Color oldColor = g.getColor();
g.translate(x, y);
if (bevelType == RAISED) {
g.setColor(getHighlightOuterColor(c));
g.drawLine(0, 0, width-2, 0);
g.drawLine(0, 0, 0, height-2);
g.drawLine(1, 1, 1, 1);
g.setColor(getHighlightInnerColor(c));
g.drawLine(2, 1, width-2, 1);
g.drawLine(1, 2, 1, height-2);
g.drawLine(2, 2, 2, 2);
g.drawLine(0, height-1, 0, height-2);
g.drawLine(width-1, 0, width-1, 0);
g.setColor(getShadowOuterColor(c));
g.drawLine(2, height-1, width-1, height-1);
g.drawLine(width-1, 2, width-1, height-1);
g.setColor(getShadowInnerColor(c));
g.drawLine(width-2, height-2, width-2, height-2);
} else if (bevelType == LOWERED) {
g.setColor(getShadowOuterColor(c));
g.drawLine(0, 0, width-2, 0);
g.drawLine(0, 0, 0, height-2);
g.drawLine(1, 1, 1, 1);
g.setColor(getShadowInnerColor(c));
g.drawLine(2, 1, width-2, 1);
g.drawLine(1, 2, 1, height-2);
g.drawLine(2, 2, 2, 2);
g.drawLine(0, height-1, 0, height-2);
g.drawLine(width-1, 0, width-1, 0);
g.setColor(getHighlightOuterColor(c));
g.drawLine(2, height-1, width-1, height-1);
g.drawLine(width-1, 2, width-1, height-1);
g.setColor(getHighlightInnerColor(c));
g.drawLine(width-2, height-2, width-2, height-2);
}
g.translate(-x, -y);
g.setColor(oldColor);
|
|