所有类
javax.swing.plaf.basic
类 BasicButtonUI
java.lang.Object
javax.swing.plaf.ComponentUI
javax.swing.plaf.ButtonUI
javax.swing.plaf.basic.BasicButtonUI
- 直接已知子类:
- BasicToggleButtonUI, MetalButtonUI
-
public class BasicButtonUI
- extends ButtonUI
BasicButton 实现
方法摘要 |
protected void |
clearTextShiftOffset() |
protected BasicButtonListener |
createButtonListener(AbstractButton b) |
static ComponentUI |
createUI(JComponent c) |
int |
getDefaultTextIconGap(AbstractButton b) |
Dimension |
getMaximumSize(JComponent c) 返回指定组件的适合外观的最大大小。 |
Dimension |
getMinimumSize(JComponent c) 返回指定组件的适合外观的最小大小。 |
Dimension |
getPreferredSize(JComponent c) 返回指定组件的适合外观的首选大小。 |
protected String |
getPropertyPrefix() |
protected int |
getTextShiftOffset() |
protected void |
installDefaults(AbstractButton b) |
protected void |
installKeyboardActions(AbstractButton b) |
protected void |
installListeners(AbstractButton b) |
void |
installUI(JComponent c) 配置指定组件,使其适合外观。 |
void |
paint(Graphics g, JComponent c) 绘制指定组件,使其适合外观。 |
protected void |
paintButtonPressed(Graphics g, AbstractButton b) |
protected void |
paintFocus(Graphics g, AbstractButton b, Rectangle viewRect, Rectangle textRect, Rectangle iconRect) |
protected void |
paintIcon(Graphics g, JComponent c, Rectangle iconRect) |
protected void |
paintText(Graphics g, AbstractButton b, Rectangle textRect, String text) 呈现当前按钮文本的方法。 |
protected void |
paintText(Graphics g, JComponent c, Rectangle textRect, String text) 从 Java 2 平台 v 1.4 开始,不应再使用或重写此方法。 |
protected void |
setTextShiftOffset() |
protected void |
uninstallDefaults(AbstractButton b) |
protected void |
uninstallKeyboardActions(AbstractButton b) |
protected void |
uninstallListeners(AbstractButton b) |
void |
uninstallUI(JComponent c) 在 installUI 期间,在指定组件上反向执行的配置操作。 |
从类 java.lang.Object 继承的方法 |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
defaultTextIconGap
protected int defaultTextIconGap
defaultTextShiftOffset
protected int defaultTextShiftOffset
BasicButtonUI
public BasicButtonUI()
createUI
public static ComponentUI createUI(JComponent c)
-
getPropertyPrefix
protected String getPropertyPrefix()
-
installUI
public void installUI(JComponent c)
- 从类
ComponentUI
复制的描述
-
配置指定组件,使其适合外观。当
ComponentUI
实例将作为 UI 委托安装在指定组件上时,可调用此方法。此方法应该为外观完整地配置组件,包括以下方面:
- 在组件上安装用于颜色、字体、边框、图标、不透明性等方面的所有默认属性值。只要有可能,就不 应该重写由客户端程序初始化的属性值。
- 如有必要,可在组件上安装一个
LayoutManager
。
- 将所需的所有子组件创建/添加到组件中。
- 在组件上创建/安装事件侦听器。
- 为了检测和适当响应组件属性更改,可在组件上创建/安装一个
PropertyChangeListener
。
- 在组件上安装键盘 UI(助记符、遍历等等)。
- 初始化任何适当的实例数据。
-
- 覆盖:
-
类
ComponentUI
中的 installUI
-
- 参数:
c
- 将安装此 UI 委托的组件
- 另请参见:
ComponentUI.uninstallUI(javax.swing.JComponent)
, JComponent.setUI(javax.swing.plaf.ComponentUI)
, JComponent.updateUI()
installDefaults
protected void installDefaults(AbstractButton b)
-
installListeners
protected void installListeners(AbstractButton b)
-
installKeyboardActions
protected void installKeyboardActions(AbstractButton b)
-