所有类
javax.swing.border
类 SoftBevelBorder
java.lang.Object
javax.swing.border.AbstractBorder
javax.swing.border.BevelBorder
javax.swing.border.SoftBevelBorder
-
所有已实现的接口:
-
Serializable, Border
-
public class SoftBevelBorder
- extends BevelBorder
实现某种斜面的类,这种斜面要么凸出要么凹入且拐角圆滑。
警告:此类的已序列化对象与以后的 Swing 版本不兼容。当前序列化支持适用于短期存储,或适用于在运行相同 Swing 版本的应用程序之间进行 RMI(Remote Method Invocation,远程方法调用)。从 1.4 版本开始,已在 java.beans
包中添加了支持所有 JavaBeansTM 长期存储的功能。请参见 XMLEncoder
。
从类 javax.swing.border.BevelBorder 继承的方法 |
getBevelType, getHighlightInnerColor, getHighlightInnerColor, getHighlightOuterColor, getHighlightOuterColor, getShadowInnerColor, getShadowInnerColor, getShadowOuterColor, getShadowOuterColor, paintLoweredBevel, paintRaisedBevel |
从类 java.lang.Object 继承的方法 |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
SoftBevelBorder
public SoftBevelBorder(int bevelType)
-
创建具有用指定类型的斜面边框,其颜色将从传递给 paintBorder 方法的组件背景色派生。
-
参数:
-
bevelType
- 边框斜面类型
SoftBevelBorder
public SoftBevelBorder(int bevelType,
Color highlight,
Color shadow)
-
创建具有指定类型、高亮和阴影颜色的斜面边框。
-
参数:
-
bevelType
- 边框的斜面类型
-
highlight
- 斜面高亮所用颜色
-
shadow
- 斜面阴影所用颜色
SoftBevelBorder
public SoftBevelBorder(int bevelType,
Color highlightOuterColor,
Color highlightInnerColor,
Color shadowOuterColor,
Color shadowInnerColor)
-
创建具有指定类型、高亮和阴影颜色的斜面边框。
-
参数:
-
bevelType
- 边框的斜面类型
-
highlightOuterColor
- 斜面外部高亮所用颜色
-
highlightInnerColor
- 斜面内部高亮所用颜色
-
shadowOuterColor
- 斜面外部阴影所用颜色
-
shadowInnerColor
- 斜面内部阴影所用颜色
paintBorder
public void paintBorder(Component c,
Graphics g,
int x,
int y,
int width,
int height)
-
按照指定的位置和尺寸绘制指定组件的边框。
-
-
指定者:
-
接口
Border
中的 paintBorder
-
覆盖:
-
类
BevelBorder
中的 paintBorder
-
-
参数:
-
c
- 要为其绘制边框的组件
-
g
- 绘制的图形
-
x
- 所绘制边框的 x 坐标位置
-
y
- 所绘制边框的 y 坐标位置
-
width
- 所绘制边框的宽度
-
height
- 所绘制边框的高度
getBorderInsets
public Insets getBorderInsets(Component c)
-
返回边框的 insets。
-
-
指定者:
-
接口
Border
中的 getBorderInsets
-
覆盖:
-
类
BevelBorder
中的 getBorderInsets
-
-
参数:
-
c
- 要应用此边框 insets 值的组件
-
返回:
-
已初始化为 0 的新
Insets
对象
getBorderInsets
public Insets getBorderInsets(Component c,
Insets insets)
-
用此边框的当前 Insets 重新初始化 insets 参数。
-
-
覆盖:
-
类
BevelBorder
中的 getBorderInsets
-
-
参数:
-
c
- 应用此边框 insets 值的组件
-
insets
- 要重新初始化的对象
-
返回:
-
insets
对象
isBorderOpaque
public boolean isBorderOpaque()
-
返回边框是否透明。
-
-
指定者:
-
接口
Border
中的 isBorderOpaque
-
覆盖:
-
类
BevelBorder
中的 isBorderOpaque
-
-
返回:
-
false
所有类