Uses of Class
javax.swing.AbstractButton
-
Packages that use AbstractButton 软件包 描述 javax.swing 提供一套“轻量级”(全Java语言)组件,尽可能地在所有平台上工作。javax.swing.plaf.basic 提供根据“基本”外观构建的用户界面对象。javax.swing.plaf.metal 提供根据Java外观构建的用户界面对象(一旦代号为 Metal ),这是默认的外观和感觉。javax.swing.plaf.synth 合成是一种可以让所有绘画委托的外观和感觉。 -
-
Uses of AbstractButton in javax.swing
Subclasses of AbstractButton in javax.swing Modifier and Type Class 描述 classJButton实现“推”按钮。classJCheckBox复选框的实现 - 可以选择或取消选择的项目,并向用户显示其状态。classJCheckBoxMenuItem可以选择或取消选择的菜单项。classJMenu一个菜单的实现 - 一个包含JMenuItem的弹出窗口,当用户选择JMenuBar上的项目时JMenuBar。classJMenuItem菜单中项目的实现。classJRadioButton单选按钮的实现 - 可以选择或取消选择的项目,并将其状态显示给用户。classJRadioButtonMenuItem单选按钮菜单项的实现。classJToggleButton一个两状态按钮的实现。Fields in javax.swing with type parameters of type AbstractButton Modifier and Type Field 描述 protected Vector<AbstractButton>ButtonGroup. buttons参与此组的按钮列表。Methods in javax.swing that return types with arguments of type AbstractButton Modifier and Type 方法 描述 Enumeration<AbstractButton>ButtonGroup. getElements()返回参与此组的所有按钮。Methods in javax.swing with parameters of type AbstractButton Modifier and Type 方法 描述 voidButtonGroup. add(AbstractButton b)将按钮添加到组。voidButtonGroup. remove(AbstractButton b)从组中删除按钮。 -
Uses of AbstractButton in javax.swing.plaf.basic
Subclasses of AbstractButton in javax.swing.plaf.basic Modifier and Type Class 描述 classBasicArrowButtonJButton对象在其中一个主要方向上绘制了一个缩放的箭头。Methods in javax.swing.plaf.basic with parameters of type AbstractButton Modifier and Type 方法 描述 protected voidBasicButtonListener. checkOpacity(AbstractButton b)检查AbstractButton的不透明度。protected BasicButtonListenerBasicButtonUI. createButtonListener(AbstractButton b)返回一个新的实例BasicButtonListener。intBasicButtonUI. getDefaultTextIconGap(AbstractButton b)返回文本和图标之间的默认差距。protected BorderBasicToolBarUI. getNonRolloverBorder(AbstractButton b)返回按钮的非滚动边框。static DimensionBasicGraphicsUtils. getPreferredButtonSize(AbstractButton b, int textIconGap)返回按钮的首选大小。protected BorderBasicToolBarUI. getRolloverBorder(AbstractButton b)返回按钮的翻转边框。protected voidBasicButtonUI. installDefaults(AbstractButton b)安装默认属性。protected voidBasicRadioButtonUI. installDefaults(AbstractButton b)protected voidBasicButtonUI. installKeyboardActions(AbstractButton b)注册键盘操作。protected voidBasicButtonUI. installListeners(AbstractButton b)注册听众。protected voidBasicRadioButtonUI. installListeners(AbstractButton button)protected voidBasicButtonUI. paintButtonPressed(Graphics g, AbstractButton b)画一个按下的按钮。protected voidBasicButtonUI. paintFocus(Graphics g, AbstractButton b, Rectangle viewRect, Rectangle textRect, Rectangle iconRect)涂一个专注的按钮。protected voidBasicToggleButtonUI. paintIcon(Graphics g, AbstractButton b, Rectangle iconRect)在指定位置绘制图标。protected voidBasicButtonUI. paintText(Graphics g, AbstractButton b, Rectangle textRect, String text)呈现当前按钮文本的方法。protected voidBasicButtonUI. uninstallDefaults(AbstractButton b)卸载默认属性。protected voidBasicRadioButtonUI. uninstallDefaults(AbstractButton b)protected voidBasicButtonUI. uninstallKeyboardActions(AbstractButton b)取消注册键盘操作。protected voidBasicButtonUI. uninstallListeners(AbstractButton b)取消注册听众。protected voidBasicRadioButtonUI. uninstallListeners(AbstractButton button)Constructors in javax.swing.plaf.basic with parameters of type AbstractButton Constructor 描述 BasicButtonListener(AbstractButton b)构造一个新的实例BasicButtonListener。 -
Uses of AbstractButton in javax.swing.plaf.metal
Subclasses of AbstractButton in javax.swing.plaf.metal Modifier and Type Class 描述 classMetalComboBoxButtonJButton子类来帮助MetalComboBoxUIclassMetalScrollButton金属滚动条箭头的JButton对象。Methods in javax.swing.plaf.metal with parameters of type AbstractButton Modifier and Type 方法 描述 protected BasicButtonListenerMetalButtonUI. createButtonListener(AbstractButton b)voidMetalButtonUI. installDefaults(AbstractButton b)voidMetalCheckBoxUI. installDefaults(AbstractButton b)voidMetalRadioButtonUI. installDefaults(AbstractButton b)voidMetalToggleButtonUI. installDefaults(AbstractButton b)protected voidMetalButtonUI. paintButtonPressed(Graphics g, AbstractButton b)protected voidMetalToggleButtonUI. paintButtonPressed(Graphics g, AbstractButton b)protected voidMetalButtonUI. paintFocus(Graphics g, AbstractButton b, Rectangle viewRect, Rectangle textRect, Rectangle iconRect)protected voidMetalToggleButtonUI. paintFocus(Graphics g, AbstractButton b, Rectangle viewRect, Rectangle textRect, Rectangle iconRect)protected voidMetalToggleButtonUI. paintIcon(Graphics g, AbstractButton b, Rectangle iconRect)在b空间中iconRect按钮b的相应图标。voidMetalButtonUI. uninstallDefaults(AbstractButton b)protected voidMetalCheckBoxUI. uninstallDefaults(AbstractButton b)protected voidMetalRadioButtonUI. uninstallDefaults(AbstractButton b)protected voidMetalToggleButtonUI. uninstallDefaults(AbstractButton b) -
Uses of AbstractButton in javax.swing.plaf.synth
Methods in javax.swing.plaf.synth with parameters of type AbstractButton Modifier and Type 方法 描述 protected IconSynthButtonUI. getDefaultIcon(AbstractButton b)返回默认图标。protected IconSynthButtonUI. getIcon(AbstractButton b)返回用于绘制按钮的图标。protected IconSynthButtonUI. getSizingIcon(AbstractButton b)返回用于计算首选/最小/最大大小的图标。protected IconSynthRadioButtonUI. getSizingIcon(AbstractButton b)返回用于计算首选/最小/最大大小的图标。protected voidSynthButtonUI. installDefaults(AbstractButton b)安装默认属性。protected voidSynthButtonUI. installListeners(AbstractButton b)注册听众。protected voidSynthButtonUI. uninstallDefaults(AbstractButton b)卸载默认属性。protected voidSynthButtonUI. uninstallListeners(AbstractButton b)取消注册听众。
-