Package com.alee.managers.effects

Source Code of com.alee.managers.effects.EffectsManager

/*
* 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 <http://www.gnu.org/licenses/>.
*/

package com.alee.managers.effects;

import com.alee.extended.window.TestFrame;
import com.alee.global.StyleConstants;
import com.alee.laf.WebLookAndFeel;
import com.alee.laf.button.WebButton;
import com.alee.laf.toolbar.WebToolBar;
import com.alee.managers.glasspane.GlassPaneManager;
import com.alee.managers.glasspane.WebGlassPane;
import com.alee.utils.SwingUtils;
import com.alee.utils.swing.WebTimer;

import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.image.BufferedImage;

/**
* This manager provides easy-to-use effects (like "fade in" and "fade out"), applyable to any Swing component without additional efforts.
* Some of methods relies on other WebLaF managers and requires that they are properly initialized (through installing WebLaF or manually
* initializing them, one by one).
*
* @author Mikle Garin
*/

public class EffectsManager
{
    /**
     * Makes any Swing component fade out using glass pane trick
     */

    public static void fadeOut ( final JComponent component )
    {
        final BufferedImage bi = SwingUtils.createComponentSnapshot ( component );
        final Rectangle b = SwingUtils.getBoundsInWindow ( component );
        final WebGlassPane wgp = GlassPaneManager.getGlassPane ( component );

        // Initial image palcement
        wgp.setPaintedImage ( bi, b.getLocation (), 100 );

        // Hiding component
        component.setVisible ( false );

        // Animating fade
        WebTimer.repeat ( "EffectsManager.fadeOut", StyleConstants.avgAnimationDelay, new ActionListener ()
        {
            private int opacity = 100;

            @Override
            public void actionPerformed ( final ActionEvent e )
            {
                if ( opacity > 0 )
                {
                    opacity -= 5;
                    final Point l = b.getLocation ();
                    l.y += ( 100 - opacity ) / 2;
                    wgp.setPaintedImage ( bi, l, opacity );
                }
                else
                {
                    wgp.clearPaintedImage ();
                    ( ( WebTimer ) e.getSource () ).stop ();
                }
            }
        } );
    }

    public static void main ( final String[] args )
    {
        WebLookAndFeel.install ();

        final WebButton b1 = new WebButton ( "1" );
        b1.addActionListener ( new ActionListener ()
        {
            @Override
            public void actionPerformed ( final ActionEvent e )
            {
                EffectsManager.fadeOut ( b1 );
            }
        } );

        final WebButton b2 = new WebButton ( "2" );
        b2.addActionListener ( new ActionListener ()
        {
            @Override
            public void actionPerformed ( final ActionEvent e )
            {
                EffectsManager.fadeOut ( b2 );
            }
        } );

        final WebButton b3 = new WebButton ( "3" );
        b3.addActionListener ( new ActionListener ()
        {
            @Override
            public void actionPerformed ( final ActionEvent e )
            {
                EffectsManager.fadeOut ( b3 );
            }
        } );

        new TestFrame ( new WebToolBar ()
        {
            {
                setFloatable ( false );
                add ( b1 );
                add ( b2 );
                add ( b3 );
            }
        }, 50 );
    }
}
TOP

Related Classes of com.alee.managers.effects.EffectsManager

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.