public class SynthTableHeaderUI extends BasicTableHeaderUIimplements PropertyChangeListener , SynthUI
JTableHeader.
BasicTableHeaderUI.MouseInputHandler header, mouseInputListener, rendererPaneDEFAULT, DISABLED, ENABLED, FOCUSED, MOUSE_OVER, PRESSED, SELECTED| Constructor and Description |
|---|
SynthTableHeaderUI()
|
| Modifier and Type | Method and Description |
|---|---|
static ComponentUI |
createUI(JComponent
Creates a new UI object for the given component.
|
SynthContext |
getContext(JComponent
Returns the Context for the specified component.
|
protected void |
installDefaults()
Initializes JTableHeader properties such as font, foreground, and background.
|
protected void |
installListeners()
Attaches listeners to the JTableHeader.
|
void |
paint(Graphics
Paints the specified component according to the Look and Feel.
|
protected void |
paint(SynthContext
Paints the specified component.
|
void |
paintBorder(SynthContext
Paints the border.
|
void |
propertyChange(PropertyChangeEvent
This method gets called when a bound property is changed.
|
protected void |
rolloverColumnUpdated(int oldColumn, int newColumn)
This method gets called every time when a rollover column in the table header is updated.
|
protected void |
uninstallDefaults()
|
protected void |
uninstallListeners()
|
void |
update(Graphics
Notifies this UI delegate to repaint the specified component.
|
createMouseInputListener, getBaseline, getMaximumSize, getMinimumSize, getPreferredSize, getRolloverColumn, installKeyboardActions, installUI, uninstallKeyboardActions, uninstallUIcontains, getAccessibleChild, getAccessibleChildrenCount, getBaselineResizeBehaviorpublic static ComponentUIcreateUI(JComponent h)
h - component to create UI object for
protected void installDefaults()
installDefaults in class
BasicTableHeaderUI
BasicTableHeaderUI.installUI(javax.swing.JComponent)
protected void installListeners()
protected void uninstallDefaults()
protected void uninstallListeners()
public void update(Graphicsg, JComponent c)
paint(SynthContext,Graphics) method.
In general, this method does not need to be overridden by subclasses. All Look and Feel rendering code should reside in the paint method.
update in class
ComponentUI
g - the
Graphics object used for painting
c - the component being painted
paint(SynthContext,Graphics)
public void paint(Graphicsg, JComponent c)
This method is not used by Synth Look and Feel. Painting is handled by the paint(SynthContext,Graphics) method.
paint in class
BasicTableHeaderUI
g - the
Graphics object used for painting
c - the component being painted
paint(SynthContext,Graphics)
protected void paint(SynthContextcontext, Graphics g)
context - context for the component being painted
g - the
Graphics object used for painting
update(Graphics,JComponent)
public void paintBorder(SynthContextcontext, Graphics g, int x, int y, int w, int h)
paintBorder in interface
SynthUI
context - a component context
g -
Graphics to paint on
x - the X coordinate
y - the Y coordinate
w - width of the border
h - height of the border
public SynthContextgetContext(JComponent c)
getContext in interface
SynthUI
c - Component requesting SynthContext.
protected void rolloverColumnUpdated(int oldColumn,
int newColumn)
rolloverColumnUpdated in class
BasicTableHeaderUI
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
BasicTableHeaderUI.getRolloverColumn() ,
JTableHeader.getHeaderRect(int)
public void propertyChange(PropertyChangeEventevt)
propertyChange in interface
PropertyChangeListener
evt - A PropertyChangeEvent object describing the event source and the property that has changed.