模块  java.desktop

Class BasicMenuItemUI

    • 字段详细信息

      • menuItem

        protected JMenuItem menuItem
        JMenuItem的实例。
      • selectionBackground

        protected Color selectionBackground
        选择背景的颜色。
      • selectionForeground

        protected Color selectionForeground
        选择前景的颜色。
      • disabledForeground

        protected Color disabledForeground
        禁用前景的颜色。
      • acceleratorForeground

        protected Color acceleratorForeground
        加速器前景的颜色。
      • acceleratorSelectionForeground

        protected Color acceleratorSelectionForeground
        加速器选择的颜色。
      • acceleratorDelimiter

        protected String acceleratorDelimiter
        加速器分隔符字符串,例如 '+''Ctrl+C'
        从以下版本开始:
        1.7
      • defaultTextIconGap

        protected int defaultTextIconGap
        文本和图标之间的差距。
      • acceleratorFont

        protected Font acceleratorFont
        加速器字体。
      • mouseInputListener

        protected MouseInputListener mouseInputListener
        MouseInputListener的实例。
      • menuDragMouseListener

        protected MenuDragMouseListener menuDragMouseListener
        MenuDragMouseListener的实例。
      • menuKeyListener

        protected MenuKeyListener menuKeyListener
        MenuKeyListener的实例。
      • arrowIcon

        protected Icon arrowIcon
        箭头图标。
      • checkIcon

        protected Icon checkIcon
        检查图标。
      • oldBorderPainted

        protected boolean oldBorderPainted
        该值表示是否绘制了旧边框。
    • 构造方法详细信息

      • BasicMenuItemUI

        public BasicMenuItemUI()
    • 方法详细信息

      • createUI

        public static ComponentUI createUI​(JComponent c)
        返回 BasicMenuItemUI的新实例。
        参数
        c - 一个组件
        结果
        BasicMenuItemUI的新实例
      • installDefaults

        protected void installDefaults()
        安装默认属性。
      • installComponents

        protected void installComponents​(JMenuItem menuItem)
        参数
        menuItem - 菜单项
        从以下版本开始:
        1.3
      • getPropertyPrefix

        protected String getPropertyPrefix()
        返回属性前缀。
        结果
        属性前缀
      • installListeners

        protected void installListeners()
        注册听众。
      • installKeyboardActions

        protected void installKeyboardActions()
        注册键盘操作。
      • uninstallDefaults

        protected void uninstallDefaults()
        卸载默认属性。
      • uninstallComponents

        protected void uninstallComponents​(JMenuItem menuItem)
        取消注册组件。
        参数
        menuItem - 菜单项
        从以下版本开始:
        1.3
      • uninstallListeners

        protected void uninstallListeners()
        取消注册听众。
      • uninstallKeyboardActions

        protected void uninstallKeyboardActions()
        取消注册键盘操作。
      • createMouseInputListener

        protected MouseInputListener createMouseInputListener​(JComponent c)
        返回 MouseInputListener的实例。
        参数
        c - 一个组件
        结果
        MouseInputListener一个实例
      • createMenuDragMouseListener

        protected MenuDragMouseListener createMenuDragMouseListener​(JComponent c)
        返回 MenuDragMouseListener的实例。
        参数
        c - 一个组件
        结果
        MenuDragMouseListener一个实例
      • createMenuKeyListener

        protected MenuKeyListener createMenuKeyListener​(JComponent c)
        返回 MenuKeyListener的实例。
        参数
        c - 一个组件
        结果
        MenuKeyListener一个实例
      • createPropertyChangeListener

        protected PropertyChangeListener createPropertyChangeListener​(JComponent c)
        创建一个PropertyChangeListener ,它将添加到菜单项中。 如果此方法返回null,则不会将其添加到菜单项。
        参数
        c - 一个组件
        结果
        PropertyChangeListener的实例或null
        从以下版本开始:
        1.6
      • getPreferredMenuItemSize

        protected Dimension getPreferredMenuItemSize​(JComponent c,
                                                     Icon checkIcon,
                                                     Icon arrowIcon,
                                                     int defaultTextIconGap)
        返回菜单项的首选大小。
        参数
        c - 一个组件
        checkIcon - 一个检查图标
        arrowIcon - 箭头图标
        defaultTextIconGap - 文本和图标之间的间隙
        结果
        菜单项的首选大小
      • paintMenuItem

        protected void paintMenuItem​(Graphics g,
                                     JComponent c,
                                     Icon checkIcon,
                                     Icon arrowIcon,
                                     Color background,
                                     Color foreground,
                                     int defaultTextIconGap)
        绘制菜单项。
        参数
        g -实例 Graphics
        c - 一个组件
        checkIcon - 一个检查图标
        arrowIcon - 箭头图标
        background - 背景颜色
        foreground - 前景色
        defaultTextIconGap - 文本和图标之间的间隙
      • paintBackground

        protected void paintBackground​(Graphics g,
                                       JMenuItem menuItem,
                                       Color bgColor)
        绘制菜单项的背景。
        参数
        g - 油漆图形
        menuItem - 要绘制的菜单项
        bgColor - 选择背景颜色
        从以下版本开始:
        1.4
      • paintText

        protected void paintText​(Graphics g,
                                 JMenuItem menuItem,
                                 Rectangle textRect,
                                 String text)
        呈现当前菜单项的文本。
        参数
        g - 图形上下文
        menuItem - 要渲染的菜单项
        textRect - 用于渲染文本的边界矩形
        text - 要渲染的字符串
        从以下版本开始:
        1.4
      • getPath

        public MenuElement[] getPath()
        返回菜单元素路径。
        结果
        菜单元素路径
      • doClick

        protected void doClick​(MenuSelectionManager msm)
        要激活菜单项时调用此方法。 此方法处理菜单项激活的一些细节,例如清除所选路径和发送JMenuItem的doClick()方法。
        参数
        msm - MenuSelectionManager。 视觉反馈和内部簿记任务被委托给此MenuSelectionManager。 如果将null作为此参数传递,则使用MenuSelectionManager.defaultManager
        从以下版本开始:
        1.4
        另请参见:
        MenuSelectionManagerAbstractButton.doClick(int)