com.alee.laf.spinner.WebSpinnerUI Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weblaf-ui Show documentation
Show all versions of weblaf-ui Show documentation
WebLaf is a Java Swing Look and Feel and extended components library for cross-platform applications
/*
* This file is part of WebLookAndFeel library.
*
* WebLookAndFeel library is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* WebLookAndFeel library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with WebLookAndFeel library. If not, see .
*/
package com.alee.laf.spinner;
import com.alee.laf.button.WebButton;
import com.alee.managers.style.*;
import com.alee.managers.style.Bounds;
import com.alee.painter.DefaultPainter;
import com.alee.painter.Painter;
import com.alee.painter.PainterSupport;
import com.alee.utils.swing.DataRunnable;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicSpinnerUI;
import javax.swing.text.JTextComponent;
import java.awt.*;
/**
* @author Mikle Garin
*/
public class WebSpinnerUI extends BasicSpinnerUI implements Styleable, ShapeProvider, MarginSupport, PaddingSupport
{
/**
* Spinner button icons.
*/
protected static final ImageIcon UP_ICON = new ImageIcon ( WebSpinnerUI.class.getResource ( "icons/up.png" ) );
protected static final ImageIcon DOWN_ICON = new ImageIcon ( WebSpinnerUI.class.getResource ( "icons/down.png" ) );
/**
* Component painter.
*/
@DefaultPainter ( SpinnerPainter.class )
protected ISpinnerPainter painter;
/**
* Runtime variables.
*/
protected Insets margin = null;
protected Insets padding = null;
/**
* Returns an instance of the WebSpinnerUI for the specified component.
* This tricky method is used by UIManager to create component UIs when needed.
*
* @param c component that will use UI instance
* @return instance of the WebSpinnerUI
*/
@SuppressWarnings ( "UnusedParameters" )
public static ComponentUI createUI ( final JComponent c )
{
return new WebSpinnerUI ();
}
/**
* Installs UI in the specified component.
*
* @param c component for this UI
*/
@Override
public void installUI ( final JComponent c )
{
// Installing UI
super.installUI ( c );
// Applying skin
StyleManager.installSkin ( spinner );
}
/**
* Uninstalls UI from the specified component.
*
* @param c component with this UI
*/
@Override
public void uninstallUI ( final JComponent c )
{
// Uninstalling applied skin
StyleManager.uninstallSkin ( spinner );
// Uninstalling UI
super.uninstallUI ( c );
}
@Override
protected LayoutManager createLayout ()
{
return new WebSpinnerLayout ();
}
@Override
protected JComponent createEditor ()
{
final JComponent editor = spinner.getEditor ();
editor.setInheritsPopupMenu ( true );
if ( editor instanceof JTextComponent )
{
configureEditor ( ( JTextComponent ) editor, spinner );
}
else
{
final JSpinner.DefaultEditor container = ( JSpinner.DefaultEditor ) editor;
configureEditorContainer ( container, spinner );
configureEditor ( container.getTextField (), spinner );
}
return editor;
}
/**
* Configures spinner editor container.
*
* @param container spinner editor container
* @param spinner spinner
*/
protected void configureEditorContainer ( final JSpinner.DefaultEditor container, final JSpinner spinner )
{
// Installing proper styling
StyleId.spinnerEditorContainer.at ( spinner ).set ( container );
}
/**
* Configures spinner editor.
*
* @param field spinner editor
* @param spinner spinner
*/
protected void configureEditor ( final JTextComponent field, final JSpinner spinner )
{
// Installing proper styling
StyleId.spinnerEditor.at ( spinner ).set ( field );
}
@Override
protected Component createNextButton ()
{
final WebButton nextButton = new WebButton ( StyleId.spinnerNextButton.at ( spinner ), UP_ICON );
nextButton.setName ( "Spinner.nextButton" );
installNextButtonListeners ( nextButton );
return nextButton;
}
@Override
protected Component createPreviousButton ()
{
final WebButton prevButton = new WebButton ( StyleId.spinnerPreviousButton.at ( spinner ), DOWN_ICON );
prevButton.setName ( "Spinner.previousButton" );
installPreviousButtonListeners ( prevButton );
return prevButton;
}
@Override
public StyleId getStyleId ()
{
return StyleManager.getStyleId ( spinner );
}
@Override
public StyleId setStyleId ( final StyleId id )
{
return StyleManager.setStyleId ( spinner, id );
}
@Override
public Shape provideShape ()
{
return PainterSupport.getShape ( spinner, painter );
}
@Override
public Insets getMargin ()
{
return margin;
}
@Override
public void setMargin ( final Insets margin )
{
this.margin = margin;
PainterSupport.updateBorder ( getPainter () );
}
@Override
public Insets getPadding ()
{
return padding;
}
@Override
public void setPadding ( final Insets padding )
{
this.padding = padding;
PainterSupport.updateBorder ( getPainter () );
}
/**
* Returns spinner painter.
*
* @return spinner painter
*/
public Painter getPainter ()
{
return PainterSupport.getAdaptedPainter ( painter );
}
/**
* Sets spinner painter.
* Pass null to remove spinner painter.
*
* @param painter new spinner painter
*/
public void setPainter ( final Painter painter )
{
PainterSupport.setPainter ( spinner, new DataRunnable ()
{
@Override
public void run ( final ISpinnerPainter newPainter )
{
WebSpinnerUI.this.painter = newPainter;
}
}, this.painter, painter, ISpinnerPainter.class, AdaptiveSpinnerPainter.class );
}
@Override
public void paint ( final Graphics g, final JComponent c )
{
if ( painter != null )
{
painter.paint ( ( Graphics2D ) g, Bounds.component.of ( c ), c, this );
}
}
@Override
public Dimension getPreferredSize ( final JComponent c )
{
return PainterSupport.getPreferredSize ( c, super.getPreferredSize ( c ), painter );
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy