- java.lang.Object
-
- javax.swing.plaf.ComponentUI
-
- javax.swing.plaf.SpinnerUI
-
- javax.swing.plaf.basic.BasicSpinnerUI
-
- javax.swing.plaf.synth.SynthSpinnerUI
-
- All Implemented Interfaces:
- PropertyChangeListener, EventListener, SynthConstants, SynthUI
public class SynthSpinnerUI extends BasicSpinnerUI implements PropertyChangeListener, SynthUI
Provides the Synth L&F UI delegate forJSpinner
.- Since:
- 1.7
-
-
Field Summary
-
Fields inherited from class javax.swing.plaf.basic.BasicSpinnerUI
spinner
-
-
Constructor Summary
Constructors Constructor and Description SynthSpinnerUI()
-
Method Summary
Methods Modifier and Type Method and Description protected JComponent
createEditor()
This method is called by installUI to get the editor component of theJSpinner
.protected LayoutManager
createLayout()
Creates aLayoutManager
that manages theeditor
,nextButton
, andpreviousButton
children of the JSpinner.protected Component
createNextButton()
Creates an increment button, i.e.protected Component
createPreviousButton()
Creates a decrement button, i.e.static ComponentUI
createUI(JComponent c)
Returns a new instance of SynthSpinnerUI.SynthContext
getContext(JComponent c)
Returns the Context for the specified component.protected void
installDefaults()
Initializes theJSpinner
border
,foreground
, andbackground
, properties based on the corresponding "Spinner.*" properties from defaults table.protected void
installListeners()
InitializesPropertyChangeListener
with a shared object that delegates interesting PropertyChangeEvents to protected methods.void
paint(Graphics g, JComponent c)
Paints the specified component according to the Look and Feel.protected void
paint(SynthContext context, Graphics g)
Paints the specified component.void
paintBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
Paints the border.void
propertyChange(PropertyChangeEvent e)
This method gets called when a bound property is changed.protected void
replaceEditor(JComponent oldEditor, JComponent newEditor)
Called by thePropertyChangeListener
when theJSpinner
editor property changes.protected void
uninstallDefaults()
Sets theJSpinner's
layout manager to null.protected void
uninstallListeners()
Removes thePropertyChangeListener
added by installListeners.void
update(Graphics g, JComponent c)
Notifies this UI delegate to repaint the specified component.-
Methods inherited from class javax.swing.plaf.basic.BasicSpinnerUI
createPropertyChangeListener, getBaseline, getBaselineResizeBehavior, installKeyboardActions, installNextButtonListeners, installPreviousButtonListeners, installUI, uninstallUI
-
Methods inherited from class javax.swing.plaf.ComponentUI
contains, getAccessibleChild, getAccessibleChildrenCount, getMaximumSize, getMinimumSize, getPreferredSize
-
-
-
-
Method Detail
-
createUI
public static ComponentUI createUI(JComponent c)
Returns a new instance of SynthSpinnerUI.- Parameters:
c
- the JSpinner (not used)- Returns:
- a new SynthSpinnerUI object
- See Also:
ComponentUI.createUI(javax.swing.JComponent)
-
installListeners
protected void installListeners()
Description copied from class:BasicSpinnerUI
InitializesPropertyChangeListener
with a shared object that delegates interesting PropertyChangeEvents to protected methods.This method is called by
installUI
.
-
uninstallListeners
protected void uninstallListeners()
Description copied from class:BasicSpinnerUI
Removes thePropertyChangeListener
added by installListeners.This method is called by
uninstallUI
.- Overrides:
uninstallListeners
in classBasicSpinnerUI
- See Also:
BasicSpinnerUI.installListeners()
-
installDefaults
protected void installDefaults()
Initializes theJSpinner
border
,foreground
, andbackground
, properties based on the corresponding "Spinner.*" properties from defaults table. TheJSpinners
layout is set to the value returned bycreateLayout
. This method is called byinstallUI
.- Overrides:
installDefaults
in classBasicSpinnerUI
- See Also:
uninstallDefaults()
,BasicSpinnerUI.installUI(javax.swing.JComponent)
,createLayout()
,LookAndFeel.installBorder(javax.swing.JComponent, java.lang.String)
,LookAndFeel.installColors(javax.swing.JComponent, java.lang.String, java.lang.String)
-
uninstallDefaults
protected void uninstallDefaults()
Sets theJSpinner's
layout manager to null. This method is called byuninstallUI
.- Overrides:
uninstallDefaults
in classBasicSpinnerUI
- See Also:
installDefaults()
,BasicSpinnerUI.uninstallUI(javax.swing.JComponent)
-
createLayout
protected LayoutManager createLayout()
Description copied from class:BasicSpinnerUI
Creates aLayoutManager
that manages theeditor
,nextButton
, andpreviousButton
children of the JSpinner. These three children must be added with a constraint that identifies their role: "Editor", "Next", and "Previous". The default layout manager can handle the absence of any of these children.- Overrides:
createLayout
in classBasicSpinnerUI
- Returns:
- a LayoutManager for the editor, next button, and previous button.
- See Also:
BasicSpinnerUI.createNextButton()
,BasicSpinnerUI.createPreviousButton()
,BasicSpinnerUI.createEditor()
-
createPreviousButton
protected Component createPreviousButton()
Description copied from class:BasicSpinnerUI
Creates a decrement button, i.e. component that replaces the spinner value with the object returned byspinner.getPreviousValue
. By default thepreviousButton
is aJButton
. If the decrement button is not needed this method should returnnull
.- Overrides:
createPreviousButton
in classBasicSpinnerUI
- Returns:
- a component that will replace the spinner's value with the
previous value in the sequence, or
null
- See Also:
BasicSpinnerUI.installUI(javax.swing.JComponent)
,BasicSpinnerUI.createNextButton()
,BasicSpinnerUI.installPreviousButtonListeners(java.awt.Component)
-
createNextButton
protected Component createNextButton()
Description copied from class:BasicSpinnerUI
Creates an increment button, i.e. component that replaces the spinner value with the object returned byspinner.getNextValue
. By default thenextButton
is aJButton
. If the increment button is not needed this method should returnnull
.- Overrides:
createNextButton
in classBasicSpinnerUI
- Returns:
- a component that will replace the spinner's value with the
next value in the sequence, or
null
- See Also:
BasicSpinnerUI.installUI(javax.swing.JComponent)
,BasicSpinnerUI.createPreviousButton()
,BasicSpinnerUI.installNextButtonListeners(java.awt.Component)
-
createEditor
protected JComponent createEditor()
This method is called by installUI to get the editor component of theJSpinner
. By default it just returnsJSpinner.getEditor()
. Subclasses can overridecreateEditor
to return a component that contains the spinner's editor or null, if they're going to handle adding the editor to theJSpinner
in aninstallUI
override.Typically this method would be overridden to wrap the editor with a container with a custom border, since one can't assume that the editors border can be set directly.
The
replaceEditor
method is called when the spinners editor is changed withJSpinner.setEditor
. If you've overriden this method, then you'll probably want to overridereplaceEditor
as well.- Overrides:
createEditor
in classBasicSpinnerUI
- Returns:
- the JSpinners editor JComponent, spinner.getEditor() by default
- See Also:
BasicSpinnerUI.installUI(javax.swing.JComponent)
,replaceEditor(javax.swing.JComponent, javax.swing.JComponent)
,JSpinner.getEditor()
-
replaceEditor
protected void replaceEditor(JComponent oldEditor, JComponent newEditor)
Called by thePropertyChangeListener
when theJSpinner
editor property changes. It's the responsibility of this method to remove the old editor and add the new one. By default this operation is just:spinner.remove(oldEditor); spinner.add(newEditor, "Editor");
The implementation ofreplaceEditor
should be coordinated with thecreateEditor
method.- Overrides:
replaceEditor
in classBasicSpinnerUI
- See Also:
createEditor()
,BasicSpinnerUI.createPropertyChangeListener()
-
getContext
public SynthContext getContext(JComponent c)
Description copied from interface:SynthUI
Returns the Context for the specified component.- Specified by:
getContext
in interfaceSynthUI
- Parameters:
c
- Component requesting SynthContext.- Returns:
- SynthContext describing component.
-
update
public void update(Graphics g, JComponent c)
Notifies this UI delegate to repaint the specified component. This method paints the component background, then calls thepaint(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.- Overrides:
update
in classComponentUI
- Parameters:
g
- theGraphics
object used for paintingc
- the component being painted- See Also:
paint(SynthContext,Graphics)
-
paint
public void paint(Graphics g, JComponent c)
Paints the specified component according to the Look and Feel.This method is not used by Synth Look and Feel. Painting is handled by the
paint(SynthContext,Graphics)
method.- Overrides:
paint
in classComponentUI
- Parameters:
g
- theGraphics
object used for paintingc
- the component being painted- See Also:
paint(SynthContext,Graphics)
-
paint
protected void paint(SynthContext context, Graphics g)
Paints the specified component. This implementation does nothing.- Parameters:
context
- context for the component being paintedg
- theGraphics
object used for painting- See Also:
update(Graphics,JComponent)
-
paintBorder
public void paintBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
Description copied from interface:SynthUI
Paints the border.- Specified by:
paintBorder
in interfaceSynthUI
- Parameters:
context
- a component contextg
-Graphics
to paint onx
- the X coordinatey
- the Y coordinatew
- width of the borderh
- height of the border
-
propertyChange
public void propertyChange(PropertyChangeEvent e)
Description copied from interface:PropertyChangeListener
This method gets called when a bound property is changed.- Specified by:
propertyChange
in interfacePropertyChangeListener
- Parameters:
e
- A PropertyChangeEvent object describing the event source and the property that has changed.
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
17/11/2024 19:54:24 Cette version de la page est en cache (à la date du 17/11/2024 19:54:24) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 11/06/2005, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-javax/swing/plaf/synth/SynthSpinnerUI.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.