/* *------------------------------------------------------------------------------ * Copyright (C) 2006-2014 University of Dundee. All rights reserved. * * * This program 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 2 of the License, or * (at your option) any later version. * This program 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 this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * *------------------------------------------------------------------------------ */ package org.openmicroscopy.shoola.agents.events.iviewer; import org.openmicroscopy.shoola.env.event.RequestEvent; import org.openmicroscopy.shoola.env.rnd.RndProxyDef; import omero.gateway.model.ImageData; /** * Event to copy rendering settings across a collection of pixels set. * * @author Jean-Marie Burel      * <a href="mailto:j.burel@dundee.ac.uk">j.burel@dundee.ac.uk</a> * @author Donald MacDonald      * <a href="mailto:donald@lifesci.dundee.ac.uk">donald@lifesci.dundee.ac.uk</a> * @version 3.0 * @since OME3.0 */ public class CopyRndSettings extends RequestEvent { /** The image to copy the renderig settings from. */ private ImageData image; /** 'Pending' rendering settings */ private RndProxyDef rndDef; /** * Creates a new instance. * Used to copy saved rendering settings from an other image. * * @param image The image to copy the rendering settings from. */ public CopyRndSettings(ImageData image) { this(image, null); } /** * Creates a new instance. * Used for copying 'pending' rendering settings, i.e. * which have not yet been saved with an image. * * @param image The image the rendering settings belong to. * @param rndDef The copied rendering settings (can be null, in this case * the image's current rendering settings will be used) */ public CopyRndSettings(ImageData image, RndProxyDef rndDef) { this.image = image; this.rndDef = rndDef; if (rndDef != null && rndDef.getData().getPixels().getId().getValue() != image .getDefaultPixels().getId()) throw new IllegalArgumentException( "The provided rendering settings (pixels id=" + rndDef.getData().getPixels().getId().getValue() + " don't belong to the given image (pixels id=" + image.getDefaultPixels().getId() + ")"); } /** * Returns the image to copy the rendering settings from. * * @return See above. */ public ImageData getImage() { return image; } /** * Returns the copied rendering settings; * @return See above. */ public RndProxyDef getRndDef() { return rndDef; } }