- java.lang.Object
- 
- javax.swing.plaf.ComponentUI
- 
- javax.swing.plaf.ButtonUI
- 
- javax.swing.plaf.MenuItemUI
- 
- javax.swing.plaf.basic.BasicMenuItemUI
 
 
 
 
- 
- Direct Known Subclasses:
- BasicCheckBoxMenuItemUI,- BasicMenuUI,- BasicRadioButtonMenuItemUI,- SynthMenuItemUI
 
 
 public class BasicMenuItemUI extends MenuItemUI BasicMenuItem implementation
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description protected classBasicMenuItemUI.MouseInputHandlerMouse input handler
 - 
Field SummaryFields Modifier and Type Field Description protected StringacceleratorDelimiterAccelerator delimiter string, such as'+'in'Ctrl+C'.protected FontacceleratorFontThe accelerator font.protected ColoracceleratorForegroundThe color of the accelerator foreground.protected ColoracceleratorSelectionForegroundThe color of the accelerator selection.protected IconarrowIconThe arrow icon.protected IconcheckIconThe check icon.protected intdefaultTextIconGapThe gap between the text and the icon.protected ColordisabledForegroundThe color of the disabled foreground.protected MenuDragMouseListenermenuDragMouseListenerThe instance ofMenuDragMouseListener.protected JMenuItemmenuItemThe instance ofJMenuItem.protected MenuKeyListenermenuKeyListenerThe instance ofMenuKeyListener.protected MouseInputListenermouseInputListenerThe instance ofMouseInputListener.protected booleanoldBorderPaintedThe value represents if the old border is painted.protected PropertyChangeListenerpropertyChangeListenerPropertyChangeListenerreturned fromcreatePropertyChangeListener.protected ColorselectionBackgroundThe color of the selection background.protected ColorselectionForegroundThe color of the selection foreground.
 - 
Constructor SummaryConstructors Constructor Description BasicMenuItemUI()
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected MenuDragMouseListenercreateMenuDragMouseListener(JComponent c)Returns an instance ofMenuDragMouseListener.protected MenuKeyListenercreateMenuKeyListener(JComponent c)Returns an instance ofMenuKeyListener.protected MouseInputListenercreateMouseInputListener(JComponent c)Returns an instance ofMouseInputListener.protected PropertyChangeListenercreatePropertyChangeListener(JComponent c)Creates aPropertyChangeListenerwhich will be added to the menu item.static ComponentUIcreateUI(JComponent c)Returns a new instance ofBasicMenuItemUI.protected voiddoClick(MenuSelectionManager msm)Call this method when a menu item is to be activated.DimensiongetMaximumSize(JComponent c)Returns the specified component's maximum size appropriate for the look and feel.DimensiongetMinimumSize(JComponent c)Returns the specified component's minimum size appropriate for the look and feel.MenuElement[]getPath()Returns a menu element path.protected DimensiongetPreferredMenuItemSize(JComponent c, Icon checkIcon, Icon arrowIcon, int defaultTextIconGap)Returns the preferred size of a menu item.DimensiongetPreferredSize(JComponent c)Returns the specified component's preferred size appropriate for the look and feel.protected StringgetPropertyPrefix()Returns a property prefix.protected voidinstallComponents(JMenuItem menuItem)protected voidinstallDefaults()Installs default properties.protected voidinstallKeyboardActions()Registers keyboard action.protected voidinstallListeners()Registers listeners.voidinstallUI(JComponent c)Configures the specified component appropriately for the look and feel.voidpaint(Graphics g, JComponent c)Paints the specified component appropriately for the look and feel.protected voidpaintBackground(Graphics g, JMenuItem menuItem, Color bgColor)Draws the background of the menu item.protected voidpaintMenuItem(Graphics g, JComponent c, Icon checkIcon, Icon arrowIcon, Color background, Color foreground, int defaultTextIconGap)Paints a menu item.protected voidpaintText(Graphics g, JMenuItem menuItem, Rectangle textRect, String text)Renders the text of the current menu item.protected voiduninstallComponents(JMenuItem menuItem)Unregisters components.protected voiduninstallDefaults()Uninstalls default properties.protected voiduninstallKeyboardActions()Unregisters keyboard actions.protected voiduninstallListeners()Unregisters listeners.voiduninstallUI(JComponent c)Reverses configuration which was done on the specified component duringinstallUI.voidupdate(Graphics g, JComponent c)We draw the background in paintMenuItem() so override update (which fills the background of opaque components by default) to just call paint().- 
Methods inherited from class javax.swing.plaf.ComponentUIcontains, getAccessibleChild, getAccessibleChildrenCount, getBaseline, getBaselineResizeBehavior
 
- 
 
- 
- 
- 
Field Detail- 
menuItemprotected JMenuItem menuItem The instance ofJMenuItem.
 - 
selectionBackgroundprotected Color selectionBackground The color of the selection background.
 - 
selectionForegroundprotected Color selectionForeground The color of the selection foreground.
 - 
disabledForegroundprotected Color disabledForeground The color of the disabled foreground.
 - 
acceleratorForegroundprotected Color acceleratorForeground The color of the accelerator foreground.
 - 
acceleratorSelectionForegroundprotected Color acceleratorSelectionForeground The color of the accelerator selection.
 - 
acceleratorDelimiterprotected String acceleratorDelimiter Accelerator delimiter string, such as'+'in'Ctrl+C'.- Since:
- 1.7
 
 - 
defaultTextIconGapprotected int defaultTextIconGap The gap between the text and the icon.
 - 
acceleratorFontprotected Font acceleratorFont The accelerator font.
 - 
mouseInputListenerprotected MouseInputListener mouseInputListener The instance ofMouseInputListener.
 - 
menuDragMouseListenerprotected MenuDragMouseListener menuDragMouseListener The instance ofMenuDragMouseListener.
 - 
menuKeyListenerprotected MenuKeyListener menuKeyListener The instance ofMenuKeyListener.
 - 
propertyChangeListenerprotected PropertyChangeListener propertyChangeListener PropertyChangeListenerreturned fromcreatePropertyChangeListener. You should not need to access this field, rather if you want to customize thePropertyChangeListeneroverridecreatePropertyChangeListener.- Since:
- 1.6
- See Also:
- createPropertyChangeListener(javax.swing.JComponent)
 
 - 
arrowIconprotected Icon arrowIcon The arrow icon.
 - 
checkIconprotected Icon checkIcon The check icon.
 - 
oldBorderPaintedprotected boolean oldBorderPainted The value represents if the old border is painted.
 
- 
 - 
Method Detail- 
createUIpublic static ComponentUI createUI(JComponent c) Returns a new instance ofBasicMenuItemUI.- Parameters:
- c- a component
- Returns:
- a new instance of BasicMenuItemUI
 
 - 
installUIpublic void installUI(JComponent c) Description copied from class:ComponentUIConfigures the specified component appropriately for the look and feel. This method is invoked when theComponentUIinstance is being installed as the UI delegate on the specified component. This method should completely configure the component for the look and feel, including the following:- Install default property values for color, fonts, borders, icons, opacity, etc. on the component. Whenever possible, property values initialized by the client program should not be overridden.
- Install a LayoutManageron the component if necessary.
- Create/add any required sub-components to the component.
- Create/install event listeners on the component.
- Create/install a PropertyChangeListeneron the component in order to detect and respond to component property changes appropriately.
- Install keyboard UI (mnemonics, traversal, etc.) on the component.
- Initialize any appropriate instance data.
 - Overrides:
- installUIin class- ComponentUI
- Parameters:
- c- the component where this UI delegate is being installed
- See Also:
- ComponentUI.uninstallUI(javax.swing.JComponent),- JComponent.setUI(javax.swing.plaf.ComponentUI),- JComponent.updateUI()
 
 - 
installDefaultsprotected void installDefaults() Installs default properties.
 - 
installComponentsprotected void installComponents(JMenuItem menuItem) - Parameters:
- menuItem- a menu item
- Since:
- 1.3
 
 - 
getPropertyPrefixprotected String getPropertyPrefix() Returns a property prefix.- Returns:
- a property prefix
 
 - 
installListenersprotected void installListeners() Registers listeners.
 - 
installKeyboardActionsprotected void installKeyboardActions() Registers keyboard action.
 - 
uninstallUIpublic void uninstallUI(JComponent c) Description copied from class:ComponentUIReverses configuration which was done on the specified component duringinstallUI. This method is invoked when thisUIComponentinstance is being removed as the UI delegate for the specified component. This method should undo the configuration performed ininstallUI, being careful to leave theJComponentinstance in a clean state (no extraneous listeners, look-and-feel-specific property objects, etc.). This should include the following:- Remove any UI-set borders from the component.
- Remove any UI-set layout managers on the component.
- Remove any UI-added sub-components from the component.
- Remove any UI-added event/property listeners from the component.
- Remove any UI-installed keyboard UI from the component.
- Nullify any allocated instance data objects to allow for GC.
 - Overrides:
- uninstallUIin class- ComponentUI
- Parameters:
- c- the component from which this UI delegate is being removed; this argument is often ignored, but might be used if the UI object is stateless and shared by multiple components
- See Also:
- ComponentUI.installUI(javax.swing.JComponent),- JComponent.updateUI()
 
 - 
uninstallDefaultsprotected void uninstallDefaults() Uninstalls default properties.
 - 
uninstallComponentsprotected void uninstallComponents(JMenuItem menuItem) Unregisters components.- Parameters:
- menuItem- a menu item
- Since:
- 1.3
 
 - 
uninstallListenersprotected void uninstallListeners() Unregisters listeners.
 - 
uninstallKeyboardActionsprotected void uninstallKeyboardActions() Unregisters keyboard actions.
 - 
createMouseInputListenerprotected MouseInputListener createMouseInputListener(JComponent c) Returns an instance ofMouseInputListener.- Parameters:
- c- a component
- Returns:
- an instance of MouseInputListener
 
 - 
createMenuDragMouseListenerprotected MenuDragMouseListener createMenuDragMouseListener(JComponent c) Returns an instance ofMenuDragMouseListener.- Parameters:
- c- a component
- Returns:
- an instance of MenuDragMouseListener
 
 - 
createMenuKeyListenerprotected MenuKeyListener createMenuKeyListener(JComponent c) Returns an instance ofMenuKeyListener.- Parameters:
- c- a component
- Returns:
- an instance of MenuKeyListener
 
 - 
createPropertyChangeListenerprotected PropertyChangeListener createPropertyChangeListener(JComponent c) Creates aPropertyChangeListenerwhich will be added to the menu item. If this method returns null then it will not be added to the menu item.- Parameters:
- c- a component
- Returns:
- an instance of a PropertyChangeListeneror null
- Since:
- 1.6
 
 - 
getMinimumSizepublic Dimension getMinimumSize(JComponent c) Description copied from class:ComponentUIReturns the specified component's minimum size appropriate for the look and feel. Ifnullis returned, the minimum size will be calculated by the component's layout manager instead (this is the preferred approach for any component with a specific layout manager installed). The default implementation of this method invokesgetPreferredSizeand returns that value.- Overrides:
- getMinimumSizein class- ComponentUI
- Parameters:
- c- the component whose minimum size is being queried; this argument is often ignored, but might be used if the UI object is stateless and shared by multiple components
- Returns:
- a Dimensionobject ornull
- See Also:
- JComponent.getMinimumSize(),- LayoutManager.minimumLayoutSize(java.awt.Container),- ComponentUI.getPreferredSize(javax.swing.JComponent)
 
 - 
getPreferredSizepublic Dimension getPreferredSize(JComponent c) Description copied from class:ComponentUIReturns the specified component's preferred size appropriate for the look and feel. Ifnullis returned, the preferred size will be calculated by the component's layout manager instead (this is the preferred approach for any component with a specific layout manager installed). The default implementation of this method returnsnull.- Overrides:
- getPreferredSizein class- ComponentUI
- Parameters:
- c- the component whose preferred size is being queried; this argument is often ignored, but might be used if the UI object is stateless and shared by multiple components
- Returns:
- a Dimensionobject containing given component's preferred size appropriate for the look and feel
- See Also:
- JComponent.getPreferredSize(),- LayoutManager.preferredLayoutSize(java.awt.Container)
 
 - 
getMaximumSizepublic Dimension getMaximumSize(JComponent c) Description copied from class:ComponentUIReturns the specified component's maximum size appropriate for the look and feel. Ifnullis returned, the maximum size will be calculated by the component's layout manager instead (this is the preferred approach for any component with a specific layout manager installed). The default implementation of this method invokesgetPreferredSizeand returns that value.- Overrides:
- getMaximumSizein class- ComponentUI
- Parameters:
- c- the component whose maximum size is being queried; this argument is often ignored, but might be used if the UI object is stateless and shared by multiple components
- Returns:
- a Dimensionobject ornull
- See Also:
- JComponent.getMaximumSize(),- LayoutManager2.maximumLayoutSize(java.awt.Container)
 
 - 
getPreferredMenuItemSizeprotected Dimension getPreferredMenuItemSize(JComponent c, Icon checkIcon, Icon arrowIcon, int defaultTextIconGap) Returns the preferred size of a menu item.- Parameters:
- c- a component
- checkIcon- a check icon
- arrowIcon- an arrow icon
- defaultTextIconGap- a gap between a text and an icon
- Returns:
- the preferred size of a menu item
 
 - 
updatepublic void update(Graphics g, JComponent c) We draw the background in paintMenuItem() so override update (which fills the background of opaque components by default) to just call paint().- Overrides:
- updatein class- ComponentUI
- Parameters:
- g- the- Graphicscontext in which to paint
- c- the component being painted; this argument is often ignored, but might be used if the UI object is stateless and shared by multiple components
- See Also:
- ComponentUI.paint(java.awt.Graphics, javax.swing.JComponent),- JComponent.paintComponent(java.awt.Graphics)
 
 - 
paintpublic void paint(Graphics g, JComponent c) Description copied from class:ComponentUIPaints the specified component appropriately for the look and feel. This method is invoked from theComponentUI.updatemethod when the specified component is being painted. Subclasses should override this method and use the specifiedGraphicsobject to render the content of the component.- Overrides:
- paintin class- ComponentUI
- Parameters:
- g- the- Graphicscontext in which to paint
- c- the component being painted; this argument is often ignored, but might be used if the UI object is stateless and shared by multiple components
- See Also:
- ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)
 
 - 
paintMenuItemprotected void paintMenuItem(Graphics g, JComponent c, Icon checkIcon, Icon arrowIcon, Color background, Color foreground, int defaultTextIconGap) Paints a menu item.- Parameters:
- g- an instance of- Graphics
- c- a component
- checkIcon- a check icon
- arrowIcon- an arrow icon
- background- a background color
- foreground- a foreground color
- defaultTextIconGap- a gap between a text and an icon
 
 - 
paintBackgroundprotected void paintBackground(Graphics g, JMenuItem menuItem, Color bgColor) Draws the background of the menu item.- Parameters:
- g- the paint graphics
- menuItem- menu item to be painted
- bgColor- selection background color
- Since:
- 1.4
 
 - 
paintTextprotected void paintText(Graphics g, JMenuItem menuItem, Rectangle textRect, String text) Renders the text of the current menu item.- Parameters:
- g- graphics context
- menuItem- menu item to render
- textRect- bounding rectangle for rendering the text
- text- string to render
- Since:
- 1.4
 
 - 
getPathpublic MenuElement[] getPath() Returns a menu element path.- Returns:
- a menu element path
 
 - 
doClickprotected void doClick(MenuSelectionManager msm) Call this method when a menu item is to be activated. This method handles some of the details of menu item activation such as clearing the selected path and messaging the JMenuItem's doClick() method.- Parameters:
- msm- A MenuSelectionManager. The visual feedback and internal bookkeeping tasks are delegated to this MenuSelectionManager. If- nullis passed as this argument, the- MenuSelectionManager.defaultManageris used.
- Since:
- 1.4
- See Also:
- MenuSelectionManager,- AbstractButton.doClick(int)
 
 
- 
 
-