public class BasicHeaderUI extends HeaderUI
Modifier and Type | Class | Description |
---|---|---|
protected class |
BasicHeaderUI.DescriptionPane |
Modifier and Type | Field | Description |
---|---|---|
protected BasicHeaderUI.DescriptionPane |
descriptionPane |
|
protected javax.swing.JLabel |
imagePanel |
|
protected javax.swing.JLabel |
titleLabel |
Constructor | Description |
---|---|
BasicHeaderUI() |
Creates a new instance of BasicHeaderUI
|
Modifier and Type | Method | Description |
---|---|---|
protected Painter |
createBackgroundPainter() |
|
static javax.swing.plaf.ComponentUI |
createUI(javax.swing.JComponent c) |
Returns an instance of the UI delegate for the specified component.
|
protected void |
installComponents(JXHeader h) |
|
protected void |
installDefaults(JXHeader h) |
|
protected void |
installListeners(JXHeader header) |
|
void |
installUI(javax.swing.JComponent c) |
Configures the specified component appropriate for the look and feel.
|
protected void |
onPropertyChange(JXHeader h,
java.lang.String propertyName,
java.lang.Object oldValue,
java.lang.Object newValue) |
|
protected void |
uninstallComponents(JXHeader h) |
|
protected void |
uninstallDefaults(JXHeader h) |
|
protected void |
uninstallListeners(JXHeader h) |
|
void |
uninstallUI(javax.swing.JComponent c) |
Reverses configuration which was done on the specified component during
installUI . |
protected javax.swing.JLabel titleLabel
protected BasicHeaderUI.DescriptionPane descriptionPane
protected javax.swing.JLabel imagePanel
public static javax.swing.plaf.ComponentUI createUI(javax.swing.JComponent c)
createUI
method that returns an instance of that UI delegate subclass.
If the UI delegate subclass is stateless, it may return an instance
that is shared by multiple components. If the UI delegate is
stateful, then it should return a new instance per component.
The default implementation of this method throws an error, as it
should never be invoked.public void installUI(javax.swing.JComponent c)
ComponentUI
instance 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:
LayoutManager
on the component if necessary.
PropertyChangeListener
on the component in order
to detect and respond to component property changes appropriately.
installUI
in class javax.swing.plaf.ComponentUI
c
- the component where this UI delegate is being installeduninstallUI(javax.swing.JComponent)
,
JComponent.setUI(javax.swing.plaf.ComponentUI)
,
JComponent.updateUI()
public void uninstallUI(javax.swing.JComponent c)
installUI
. This method is invoked when this
UIComponent
instance is being removed as the UI delegate
for the specified component. This method should undo the
configuration performed in installUI
, being careful to
leave the JComponent
instance in a clean state (no
extraneous listeners, look-and-feel-specific property objects, etc.).
This should include the following:
uninstallUI
in class javax.swing.plaf.ComponentUI
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 componentsinstallUI(javax.swing.JComponent)
,
JComponent.updateUI()
protected void installDefaults(JXHeader h)
protected void uninstallDefaults(JXHeader h)
protected void installListeners(JXHeader header)
protected void uninstallListeners(JXHeader h)
protected void onPropertyChange(JXHeader h, java.lang.String propertyName, java.lang.Object oldValue, java.lang.Object newValue)
protected void installComponents(JXHeader h)
protected void uninstallComponents(JXHeader h)
protected Painter createBackgroundPainter()