is new.
java.lang.Objectjavax.swing.plaf.ComponentUI
javax.swing.plaf.ComboBoxUI
javax.swing.plaf.basic.BasicComboBoxUI
public class BasicComboBoxUI
Basic UI implementation for JComboBox.
The combo box is a compound component which means that it is an agregate of many simpler components. This class creates and manages the listeners on the combo box and the combo box model. These listeners update the user interface in response to changes in the properties and state of the combo box.
All event handling is handled by listener classes created with the createxxxListener() methods and internal classes. You can change the behavior of this class by overriding the createxxxListener() methods and supplying your own event listeners or subclassing from the ones supplied in this class.
For adding specific actions, overide installKeyboardActions to add actions in response to KeyStroke bindings. See the article Keyboard Bindings in Swing at The Swing Connection .
| Nested Class Summary | |
|---|---|
| class |
BasicComboBoxUI.ComboBoxLayoutManager
This layout manager handles the 'standard' layout of combo boxes. |
| class |
BasicComboBoxUI.FocusHandler
This listener hides the popup when the focus is lost. |
| class |
BasicComboBoxUI.ItemHandler
This listener watches for changes to the selection in the combo box. |
| class |
BasicComboBoxUI.KeyHandler
This listener checks to see if the key event isn't a navigation key. |
| class |
BasicComboBoxUI.ListDataHandler
This listener watches for changes in the ComboBoxModel. |
| class |
BasicComboBoxUI.PropertyChangeHandler
This listener watches for bound properties that have changed in the combo box. |
| Field Summary | |
|---|---|
| protected JButton |
arrowButton
|
| protected Dimension |
cachedMinimumSize
|
| protected JComboBox |
comboBox
|
| protected CellRendererPane |
currentValuePane
|
| protected Component |
editor
|
| protected FocusListener |
focusListener
This protected field is implementation specific. |
| protected boolean |
hasFocus
This protected field is implementation specific. |
| protected boolean |
isMinimumSizeDirty
|
| protected ItemListener |
itemListener
This protected field is implementation specific. |
| protected KeyListener |
keyListener
This protected field is implementation specific. |
| protected JList |
listBox
|
| protected ListDataListener |
listDataListener
This protected field is implementation specific. |
| protected ComboPopup |
popup
|
| protected KeyListener |
popupKeyListener
|
| protected MouseListener |
popupMouseListener
|
| protected MouseMotionListener |
popupMouseMotionListener
|
| protected PropertyChangeListener |
propertyChangeListener
This protected field is implementation specific. |
| Constructor Summary | |
|---|---|
|
BasicComboBoxUI
() |
|
| Method Summary | |
|---|---|
| void |
addEditor
() This public method is implementation specific and should be private. |
| void |
configureArrowButton
() This public method is implementation specific and should be private. |
| protected void |
configureEditor
() This protected method is implementation specific and should be private. |
| protected JButton |
createArrowButton
() Creates an button which will be used as the control to show or hide the popup portion of the combo box. |
| protected ComboBoxEditor |
createEditor
() Creates the default editor that will be used in editable combo boxes. |
| protected FocusListener |
createFocusListener
() Creates a FocusListener which will be added to the combo box. |
| protected ItemListener |
createItemListener
() Creates an ItemListener which will be added to the combo box. |
| protected KeyListener |
createKeyListener
() Creates a KeyListener which will be added to the combo box. |
| protected LayoutManager |
createLayoutManager
() Creates a layout manager for managing the components which make up the combo box. |
| protected ListDataListener |
createListDataListener
() Creates a list data listener which will be added to the ComboBoxModel. |
| protected ComboPopup |
createPopup
() Creates the popup portion of the combo box. |
| protected PropertyChangeListener |
createPropertyChangeListener
() Creates a PropertyChangeListener which will be added to the combo box. |
| protected ListCellRenderer |
createRenderer
() Creates the default renderer that will be used in a non-editiable combo box. |
| static ComponentUI |
createUI
(
JComponent
c) |
| Accessible |
getAccessibleChild
(
JComponent
c, int i) Returns the ith Accessible child of the object. |
| int |
getAccessibleChildrenCount
(
JComponent
c) Returns the number of accessible children in the object. |
int
|
getBaseline
(
JComponent
Returns the baseline.
|
Component.BaselineResizeBehavior
|
getBaselineResizeBehavior
(
JComponent
Returns an enum indicating how the baseline of the component changes as the size changes.
|
| protected Dimension |
getDefaultSize
() Return the default size of an empty display area of the combo box using the current renderer and font. |
| protected Dimension |
getDisplaySize
() Returns the calculated size of the display area. |
| protected Insets |
getInsets
() Gets the insets from the JComboBox. |
| Dimension |
getMaximumSize
(
JComponent
c) Returns the specified component's maximum size appropriate for the look and feel. |
| Dimension |
getMinimumSize
(
JComponent
c) The minumum size is the size of the display area plus insets plus the button. |
| Dimension |
getPreferredSize
(
JComponent
c) Returns the specified component's preferred size appropriate for the look and feel. |
| protected void |
installComponents
() Creates and initializes the components which make up the aggregate combo box. |
| protected void |
installDefaults
() Installs the default colors, default font, default renderer, and default editor into the JComboBox. |
| protected void |
installKeyboardActions
() Adds keyboard actions to the JComboBox. |
| protected void |
installListeners
() Create and install the listeners for the combo box and its model. |
| void |
installUI
(
JComponent
c) Configures the specified component appropriate for the look and feel. |
| boolean |
isFocusTraversable
(
JComboBox
c) Determines if the JComboBox is focus traversable. |
| protected boolean |
isNavigationKey
(int keyCode) Returns whether or not the supplied keyCode maps to a key that is used for navigation. |
| boolean |
isPopupVisible
(
JComboBox
c) Tells if the popup is visible or not. |
| void |
paint
(
Graphics
g,
JComponent
c) Paints the specified component appropriate for the look and feel. |
| void |
paintCurrentValue
(
Graphics
g,
Rectangle
bounds, boolean hasFocus) Paints the currently selected item. |
| void |
paintCurrentValueBackground
(
Graphics
g,
Rectangle
bounds, boolean hasFocus) Paints the background of the currently selected item. |
| protected Rectangle |
rectangleForCurrentValue
() Returns the area that is reserved for drawing the currently selected item. |
| void |
removeEditor
() This public method is implementation specific and should be private. |
| protected void |
selectNextPossibleValue
() Selects the next item in the list. |
| protected void |
selectPreviousPossibleValue
() Selects the previous item in the list. |
| void |
setPopupVisible
(
JComboBox
c, boolean v) Hides the popup. |
| protected void |
toggleOpenClose
() Hides the popup if it is showing and shows the popup if it is hidden. |
| void |
unconfigureArrowButton
() This public method is implementation specific and should be private. |
| protected void |
unconfigureEditor
() This protected method is implementation specific and should be private. |
| protected void |
uninstallComponents
() The aggregate components which compise the combo box are unregistered and uninitialized. |
| protected void |
uninstallDefaults
() Uninstalls the default colors, default font, default renderer, and default editor into the JComboBox. |
| protected void |
uninstallKeyboardActions
() Removes the focus InputMap and ActionMap. |
| protected void |
uninstallListeners
() Remove the installed listeners from the combo box and its model. |
| void |
uninstallUI
(
JComponent
c) Reverses configuration which was done on the specified component during installUI. |
| Methods inherited from class javax.swing.plaf. ComponentUI |
|---|
| contains , update |
| Methods inherited from class java.lang. Object |
|---|
| clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait |
| Field Detail |
|---|
protected JComboBox comboBox
protected boolean hasFocus
protected JList listBox
protected CellRendererPane currentValuePane
protected ComboPopup popup
protected Component editor
protected JButton arrowButton
protected KeyListener keyListener
protected FocusListener focusListener
protected PropertyChangeListener propertyChangeListener
protected ItemListener itemListener
protected MouseListener popupMouseListener
protected MouseMotionListener popupMouseMotionListener
protected KeyListener popupKeyListener
protected ListDataListener listDataListener
protected boolean isMinimumSizeDirty
protected Dimension cachedMinimumSize
| Constructor Detail |
|---|
public BasicComboBoxUI()
| Method Detail |
|---|
public static ComponentUI createUI(JComponent c)
public void installUI(JComponent c)
public void uninstallUI(JComponent c)
protected void installDefaults()
protected void installListeners()
protected void uninstallDefaults()
protected void uninstallListeners()
protected ComboPopup createPopup()
protected KeyListener createKeyListener()
protected FocusListener createFocusListener()
protected ListDataListener createListDataListener()
protected ItemListener createItemListener()
Subclasses may override this method to return instances of their own ItemEvent handlers.
protected PropertyChangeListener createPropertyChangeListener()
protected LayoutManager createLayoutManager()
protected ListCellRenderer createRenderer()
protected ComboBoxEditor createEditor()
protected void installComponents()
protected void uninstallComponents()
public void addEditor()
public void removeEditor()
protected void configureEditor()
protected void unconfigureEditor()
public void configureArrowButton()
public void unconfigureArrowButton()
protected JButton createArrowButton()
public boolean isPopupVisible(JComboBox c)
public void setPopupVisible(JComboBox c,
boolean v)
public boolean isFocusTraversable(JComboBox c)
public void paint(Graphics g,
JComponent c)
public Dimension getPreferredSize(JComponent c)
public Dimension getMinimumSize(JComponent c)
public Dimension getMaximumSize(JComponent c)
getBaseline
public int
getBaseline
(
JComponent
c, int width, int height)
Returns the baseline.
Overrides:
getBaseline
in class
ComponentUI
Parameters:
c - JComponent baseline is being requested for
width - the width to get the baseline for
height - the height to get the baseline for
Returns:
baseline or a value < 0 indicating there is no reasonable baseline
Throws:
NullPointerException
- if c is null
IllegalArgumentException
- if width or height is < 0
Since:
1.6
See Also:
JComponent.getBaseline(int, int)
getBaselineResizeBehavior
public
Component.BaselineResizeBehavior
getBaselineResizeBehavior
(
JComponent
c)
Returns an enum indicating how the baseline of the component changes as the size changes.
Overrides:
getBaselineResizeBehavior
in class
ComponentUI
Parameters:
c - JComponent to return baseline resize behavior for
Returns:
an enum indicating how the baseline changes as the component size changes
Throws:
NullPointerException
- if c is null
Since:
1.6
See Also:
JComponent.getBaseline(int, int)
public int getAccessibleChildrenCount(JComponent c)
public Accessible getAccessibleChild(JComponent c,
int i)
Note: As of v1.3, it is recommended that developers call Component.AccessibleAWTComponent.getAccessibleChild() instead of this method.
protected boolean isNavigationKey(int keyCode)
protected void selectNextPossibleValue()
protected void selectPreviousPossibleValue()
protected void toggleOpenClose()
protected Rectangle rectangleForCurrentValue()
protected Insets getInsets()
public void paintCurrentValue(Graphics g,
Rectangle bounds,
boolean hasFocus)
public void paintCurrentValueBackground(Graphics g,
Rectangle bounds,
boolean hasFocus)
protected Dimension getDefaultSize()
protected Dimension getDisplaySize()
For combo boxes with a non trivial number of items, it is recommended to use a prototype display value to significantly speed up the display size calculation.
protected void installKeyboardActions()
protected void uninstallKeyboardActions()