- java.lang.Object
-
- javax.swing.border.AbstractBorder
-
- javax.swing.border.EmptyBorder
-
- javax.swing.border.MatteBorder
-
- All Implemented Interfaces:
-
Serializable
,Border
public class MatteBorder extends EmptyBorder
一个提供纯色或平铺图标的无光泽边框的课程。警告:此类的序列化对象与将来的Swing版本不兼容。 当前的序列化支持适用于运行相同版本的Swing的应用程序之间的短期存储或RMI。 从1.4开始,支持所有JavaBeans的长期存储已被添加到
java.beans
包中。 请参阅XMLEncoder
。- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 MatteBorder(int top, int left, int bottom, int right, Color matteColor)
创建具有指定插图和颜色的无光泽边框。MatteBorder(int top, int left, int bottom, int right, Icon tileIcon)
使用指定的插图和图块图标创建无光泽边框。MatteBorder(Insets borderInsets, Color matteColor)
创建具有指定插图和颜色的无光泽边框。MatteBorder(Insets borderInsets, Icon tileIcon)
使用指定的插图和图块图标创建无光泽边框。MatteBorder(Icon tileIcon)
使用指定的图块图标创建无光泽边框。
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 Insets
getBorderInsets()
返回边框的插入。Insets
getBorderInsets(Component c, Insets insets)
使用此Border的当前Insets重新初始化insets参数。Color
getMatteColor()
返回用于平铺边框的颜色,如果正在使用图块图标,则返回null。Icon
getTileIcon()
返回用于平铺边框的图标,如果使用纯色,则返回null。boolean
isBorderOpaque()
返回边框是否不透明。void
paintBorder(Component c, Graphics g, int x, int y, int width, int height)
涂抹无光泽的边框。-
Methods inherited from class javax.swing.border.AbstractBorder
getBaseline, getBaselineResizeBehavior, getBorderInsets, getInteriorRectangle, getInteriorRectangle
-
-
-
-
构造方法详细信息
-
MatteBorder
public MatteBorder(int top, int left, int bottom, int right, Color matteColor)
创建具有指定插图和颜色的无光泽边框。- 参数
-
top
- 边界的顶部插图 -
left
- 边框的左边插图 -
bottom
- 边框的底部插图 -
right
- 边界的正确插图 -
matteColor
- 为边框呈现的颜色
-
MatteBorder
public MatteBorder(Insets borderInsets, Color matteColor)
创建具有指定插图和颜色的无光泽边框。- 参数
-
borderInsets
- 边界的插图 -
matteColor
- 为边框呈现的颜色 - 从以下版本开始:
- 1.3
-
MatteBorder
public MatteBorder(int top, int left, int bottom, int right, Icon tileIcon)
使用指定的插图和图块图标创建无光泽边框。- 参数
-
top
- 边界的顶级插图 -
left
- 边框的左边插图 -
bottom
- 边框的底部插图 -
right
- 边界的正确插图 -
tileIcon
- 用于平铺边框的图标
-
MatteBorder
public MatteBorder(Insets borderInsets, Icon tileIcon)
使用指定的插图和图块图标创建无光泽边框。- 参数
-
borderInsets
- 边界的插图 -
tileIcon
- 用于平铺边框的图标 - 从以下版本开始:
- 1.3
-
MatteBorder
public MatteBorder(Icon tileIcon)
使用指定的图块图标创建无光泽边框。 将根据瓦片图标的大小动态计算插值,其中顶部和底部将等于瓦片图标的高度,左侧和右侧将等于瓦片图标的宽度。- 参数
-
tileIcon
- 用于平铺边框的图标
-
-
方法详细信息
-
paintBorder
public void paintBorder(Component c, Graphics g, int x, int y, int width, int height)
涂抹无光泽的边框。- Specified by:
-
paintBorder
在接口Border
- 重写:
-
paintBorder
在EmptyBorder
- 参数
-
c
- 正在绘制此边框的组件 -
g
- 油漆图形 -
x
- 绘画边框的x位置 -
y
- 绘画边框的y位置 -
width
- 绘制边框的宽度 -
height
- 绘画边框的高度
-
getBorderInsets
public Insets getBorderInsets(Component c, Insets insets)
使用此Border的当前Insets重新初始化insets参数。- 重写:
-
getBorderInsets
在EmptyBorder
- 参数
-
c
- 应用此边界插入值的组件 -
insets
- 要重新初始化的对象 - 结果
-
insets
对象 - 从以下版本开始:
- 1.3
-
getBorderInsets
public Insets getBorderInsets()
返回边框的插入。- 重写:
-
getBorderInsets
在EmptyBorder
- 结果
-
一个
Insets
对象,包含顶部,左侧,底部和右侧的插入 - 从以下版本开始:
- 1.3
-
getMatteColor
public Color getMatteColor()
返回用于平铺边框的颜色,如果正在使用图块图标,则返回null。- 结果
-
用于渲染边框的
Color
对象或null
如果使用瓦片图标 - 从以下版本开始:
- 1.3
-
getTileIcon
public Icon getTileIcon()
返回用于平铺边框的图标,如果使用纯色,则返回null。- 结果
-
Icon
用于平铺边框或null
如果使用纯色填充边框 - 从以下版本开始:
- 1.3
-
isBorderOpaque
public boolean isBorderOpaque()
返回边框是否不透明。- Specified by:
-
isBorderOpaque
在接口Border
- 重写:
-
isBorderOpaque
在EmptyBorder
- 结果
-
true
如果边界是不透明的,false
否则
-
-