All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alee.managers.drag.transfer.ImageTransferable Maven / Gradle / Ivy

/*
 * 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.managers.drag.transfer;

import javax.swing.*;
import java.awt.*;
import java.awt.datatransfer.DataFlavor;
import java.awt.datatransfer.Transferable;
import java.awt.datatransfer.UnsupportedFlavorException;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;

/**
 * Custom transferable that represents {@link Image}.
 *
 * @author Mikle Garin
 * @see How to use DragManager
 * @see com.alee.managers.drag.DragManager
 */
public class ImageTransferable implements Transferable
{
    /**
     * {@link ImageTransferable} data flavors.
     */
    public static final DataFlavor[] flavors = new DataFlavor[]{ DataFlavor.imageFlavor };

    /**
     * Transferred image.
     */
    protected final Image image;

    /**
     * Constructs new {@link ImageTransferable} for image.
     *
     * @param image transferred image
     */
    public ImageTransferable ( final Image image )
    {
        super ();
        this.image = image;
    }

    @Override
    public DataFlavor[] getTransferDataFlavors ()
    {
        return flavors;
    }

    @Override
    public boolean isDataFlavorSupported ( final DataFlavor flavor )
    {
        return flavor.equals ( DataFlavor.imageFlavor );
    }

    @Override
    public Object getTransferData ( final DataFlavor flavor ) throws UnsupportedFlavorException
    {
        if ( flavor.equals ( DataFlavor.imageFlavor ) )
        {
            return image;
        }
        else
        {
            throw new UnsupportedFlavorException ( flavor );
        }
    }

    /**
     * Returns whether or not transferable contains images.
     *
     * @param transferable transferable
     * @return true if transferable contains images, false otherwise
     */
    public static boolean hasImagesList ( final Transferable transferable )
    {
        final DataFlavor[] df = transferable.getTransferDataFlavors ();
        return hasImageFlavor ( df ) || FilesTransferable.hasURIListFlavor ( df ) || FilesTransferable.hasFileListFlavor ( df );
    }

    /**
     * Returns list of imported images retrieved from the specified transferable.
     *
     * @param transferable transferable
     * @return list of imported images
     */
    public static List getImagesList ( final Transferable transferable )
    {
        final List images = new ArrayList ();

        // Check imported files
        final List files = FilesTransferable.getFilesList ( transferable );
        if ( files != null )
        {
            for ( final File file : files )
            {
                images.add ( new ImageIcon ( file.getAbsolutePath () ) );
            }
        }

        // Check imported raw image
        final Image image = getImage ( transferable );
        if ( image != null )
        {
            images.add ( new ImageIcon ( image ) );
        }

        return images;
    }

    /**
     * Returns whether flavors array has image flavor or not.
     *
     * @param flavors flavors array
     * @return true if flavors array has image flavor, false otherwise
     */
    public static boolean hasImageFlavor ( final DataFlavor[] flavors )
    {
        for ( final DataFlavor flavor : flavors )
        {
            if ( DataFlavor.imageFlavor.equals ( flavor ) )
            {
                return true;
            }
        }
        return false;
    }

    /**
     * Returns imported image retrieved from the specified transferable.
     *
     * @param t transferable
     * @return imported image
     */
    public static Image getImage ( final Transferable t )
    {
        if ( t.isDataFlavorSupported ( DataFlavor.imageFlavor ) )
        {
            try
            {
                final Object data = t.getTransferData ( DataFlavor.imageFlavor );
                if ( data instanceof Image )
                {
                    return ( Image ) data;
                }
            }
            catch ( final UnsupportedFlavorException ignored )
            {
                //
            }
            catch ( final IOException ignored )
            {
                //
            }
        }
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy