java.lang.Object
javax.swing.plaf.ComponentUI
javax.swing.plaf.TableHeaderUI
javax.swing.plaf.basic.BasicTableHeaderUI
- Direct Known Subclasses:
- SynthTableHeaderUI
public class BasicTableHeaderUI extends TableHeaderUI
BasicTableHeaderUI implementation
- 
Nested Class SummaryNested Classes Modifier and Type Class Description classBasicTableHeaderUI.MouseInputHandlerThis class should be treated as a "protected" inner class.
- 
Field SummaryFields Modifier and Type Field Description protected JTableHeaderheaderTheJTableHeaderthat is delegating the painting to this UI.protected MouseInputListenermouseInputListenerListeners that are attached to theJTableprotected CellRendererPanerendererPaneThe instance ofCellRendererPane.
- 
Constructor SummaryConstructors Constructor Description BasicTableHeaderUI()
- 
Method SummaryModifier and Type Method Description protected MouseInputListenercreateMouseInputListener()Creates the mouse listener for theJTableHeader.static ComponentUIcreateUI(JComponent h)Returns a new instance ofBasicTableHeaderUI.intgetBaseline(JComponent c, int width, int height)Returns the baseline.DimensiongetMaximumSize(JComponent c)Return the maximum size of the header.DimensiongetMinimumSize(JComponent c)Return the minimum size of the header.DimensiongetPreferredSize(JComponent c)Return the preferred size of the header.protected intgetRolloverColumn()Returns the index of the column header over which the mouse currently is.protected voidinstallDefaults()Initializes JTableHeader properties such as font, foreground, and background.protected voidinstallKeyboardActions()Register all keyboard actions on the JTableHeader.protected voidinstallListeners()Attaches listeners to the JTableHeader.protected voidrolloverColumnUpdated(int oldColumn, int newColumn)This method gets called every time when a rollover column in the table header is updated.protected voiduninstallDefaults()Uninstalls default propertiesprotected voiduninstallKeyboardActions()Unregisters default key actions.protected voiduninstallListeners()Unregisters listeners.Methods declared in class javax.swing.plaf.ComponentUIcontains, getAccessibleChild, getAccessibleChildrenCount, getBaselineResizeBehavior, installUI, paint, uninstallUI, update
- 
Field Details- 
headerTheJTableHeaderthat is delegating the painting to this UI.
- 
rendererPaneThe instance ofCellRendererPane.
- 
mouseInputListenerListeners that are attached to theJTable
 
- 
- 
Constructor Details- 
BasicTableHeaderUIpublic BasicTableHeaderUI()
 
- 
- 
Method Details- 
createMouseInputListenerCreates the mouse listener for theJTableHeader.- Returns:
- the mouse listener for the JTableHeader
 
- 
createUIReturns a new instance ofBasicTableHeaderUI.- Parameters:
- h- a component.
- Returns:
- a new instance of BasicTableHeaderUI
 
- 
installDefaultsprotected void installDefaults()Initializes JTableHeader properties such as font, foreground, and background. The font, foreground, and background properties are only set if their current value is either null or a UIResource, other properties are set if the current value is null.
- 
installListenersprotected void installListeners()Attaches listeners to the JTableHeader.
- 
installKeyboardActionsprotected void installKeyboardActions()Register all keyboard actions on the JTableHeader.
- 
uninstallDefaultsprotected void uninstallDefaults()Uninstalls default properties
- 
uninstallListenersprotected void uninstallListeners()Unregisters listeners.
- 
uninstallKeyboardActionsprotected void uninstallKeyboardActions()Unregisters default key actions.
- 
getRolloverColumnprotected int getRolloverColumn()Returns the index of the column header over which the mouse currently is. When the mouse is not over the table header, -1 is returned.- Returns:
- the index of the current rollover column
- Since:
- 1.6
- See Also:
- rolloverColumnUpdated(int, int)
 
- 
rolloverColumnUpdatedprotected void rolloverColumnUpdated(int oldColumn, int newColumn)This method gets called every time when a rollover column in the table header is updated. Every look and feel that supports a rollover effect in a table header should override this method and repaint the header.- Parameters:
- oldColumn- the index of the previous rollover column or -1 if the mouse was not over a column
- newColumn- the index of the new rollover column or -1 if the mouse is not over a column
- Since:
- 1.6
- See Also:
- getRolloverColumn(),- JTableHeader.getHeaderRect(int)
 
- 
getBaselineReturns the baseline.- Overrides:
- getBaselinein class- ComponentUI
- Parameters:
- c-- JComponentbaseline 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- cis- null
- IllegalArgumentException- if width or height is < 0
- Since:
- 1.6
- See Also:
- JComponent.getBaseline(int, int)
 
- 
getMinimumSizeReturn the minimum size of the header. The minimum width is the sum of the minimum widths of each column (plus inter-cell spacing).- 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)
 
- 
getPreferredSizeReturn the preferred size of the header. The preferred height is the maximum of the preferred heights of all of the components provided by the header renderers. The preferred width is the sum of the preferred widths of each column (plus inter-cell spacing).- 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)
 
- 
getMaximumSizeReturn the maximum size of the header. The maximum width is the sum of the maximum widths of each column (plus inter-cell spacing).- 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)
 
 
-