public class PaletteFontChooserUI extends FontChooserUI
Constructor and Description |
---|
PaletteFontChooserUI(JFontChooser fontChooser) |
Modifier and Type | Method and Description |
---|---|
static javax.swing.plaf.ComponentUI |
createUI(javax.swing.JComponent c)
Returns an instance of the UI delegate for the specified component.
|
protected void |
installComponents(JFontChooser fc) |
protected void |
installListeners(JFontChooser fc) |
void |
installUI(javax.swing.JComponent c)
Configures the specified component appropriate for the look and feel.
|
protected void |
uninstallComponents(JFontChooser fc) |
protected void |
uninstallListeners(JFontChooser fc) |
void |
uninstallUI(javax.swing.JComponent c)
Reverses configuration which was done on the specified component during
installUI . |
public PaletteFontChooserUI(JFontChooser fontChooser)
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()
protected void installComponents(JFontChooser fc)
protected void installListeners(JFontChooser fc)
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 uninstallComponents(JFontChooser fc)
protected void uninstallListeners(JFontChooser fc)