Class BasicTableHeaderUI
java.lang.Object
javax.swing.plaf.ComponentUI
javax.swing.plaf.TableHeaderUI
javax.swing.plaf.basic.BasicTableHeaderUI
- Direct Known Subclasses:
SynthTableHeaderUI
BasicTableHeaderUI implementation
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionclassThis class should be treated as a "protected" inner class. -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected JTableHeaderTheJTableHeaderthat is delegating the painting to this UI.protected MouseInputListenerListeners that are attached to theJTableprotected CellRendererPaneThe instance ofCellRendererPane. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected MouseInputListenerCreates the mouse listener for theJTableHeader.static ComponentUIReturns a new instance ofBasicTableHeaderUI.intgetBaseline(JComponent c, int width, int height) Returns the baseline.Return the maximum size of the header.Return the minimum size of the header.Return the preferred size of the header.protected intReturns the index of the column header over which the mouse currently is.protected voidInitializes JTableHeader properties such as font, foreground, and background.protected voidRegister all keyboard actions on the JTableHeader.protected voidAttaches 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 voidUninstalls default propertiesprotected voidUnregisters default key actions.protected voidUnregisters listeners.Methods declared in class ComponentUI
contains, getAccessibleChild, getAccessibleChildrenCount, getBaselineResizeBehavior, installUI, paint, uninstallUI, updateModifier and TypeMethodDescriptionbooleancontains(JComponent c, int x, int y) Returnstrueif the specified x,y location is contained within the look and feel's defined shape of the specified component.getAccessibleChild(JComponent c, int i) Returns theithAccessiblechild of the object.intReturns the number of accessible children in the object.Returns an enum indicating how the baseline of the component changes as the size changes.voidConfigures the specified component appropriately for the look and feel.voidpaint(Graphics g, JComponent c) Paints the specified component appropriately for the look and feel.voidReverses configuration which was done on the specified component duringinstallUI.voidupdate(Graphics g, JComponent c) Notifies this UI delegate that it is time to paint the specified component.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.toString()Returns a string representation of the object.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Field Details
-
header
TheJTableHeaderthat is delegating the painting to this UI. -
rendererPane
The instance ofCellRendererPane. -
mouseInputListener
Listeners that are attached to theJTable
-
-
Constructor Details
-
BasicTableHeaderUI
public BasicTableHeaderUI()Constructs aBasicTableHeaderUI.
-
-
Method Details
-
createMouseInputListener
Creates the mouse listener for theJTableHeader.- Returns:
- the mouse listener for the
JTableHeader
-
createUI
Returns a new instance ofBasicTableHeaderUI.- Parameters:
h- a component.- Returns:
- a new instance of
BasicTableHeaderUI
-
installDefaults
protected 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.- See Also:
-
installListeners
protected void installListeners()Attaches listeners to the JTableHeader. -
installKeyboardActions
protected void installKeyboardActions()Register all keyboard actions on the JTableHeader. -
uninstallDefaults
protected void uninstallDefaults()Uninstalls default properties -
uninstallListeners
protected void uninstallListeners()Unregisters listeners. -
uninstallKeyboardActions
protected void uninstallKeyboardActions()Unregisters default key actions. -
getRolloverColumn
protected 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
protected 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 columnnewColumn- the index of the new rollover column or -1 if the mouse is not over a column- Since:
- 1.6
- See Also:
-
getBaseline
Returns the baseline.- Overrides:
getBaselinein classComponentUI- Parameters:
c-JComponentbaseline is being requested forwidth- the width to get the baseline forheight- the height to get the baseline for- Returns:
- baseline or a value < 0 indicating there is no reasonable baseline
- Throws:
NullPointerException- ifcisnullIllegalArgumentException- if width or height is < 0- Since:
- 1.6
- See Also:
-
getMinimumSize
Return 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 classComponentUI- 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:
-
getPreferredSize
Return 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 classComponentUI- 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:
-
getMaximumSize
Return 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 classComponentUI- 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:
-