Package ptolemy.vergil.toolbox

Source Code of ptolemy.vergil.toolbox.EditIconAction

/* Action to edit a custom icon.

Copyright (c) 2003-2006 The Regents of the University of California.
All rights reserved.
Permission is hereby granted, without written agreement and without
license or royalty fees, to use, copy, modify, and distribute this
software and its documentation for any purpose, provided that the above
copyright notice and the following two paragraphs appear in all copies
of this software.

IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY
FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF
THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.

THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE
PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
CALIFORNIA HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES,
ENHANCEMENTS, OR MODIFICATIONS.

PT_COPYRIGHT_VERSION_2
COPYRIGHTENDKEY

*/
package ptolemy.vergil.toolbox;

import java.awt.event.ActionEvent;
import java.util.Iterator;
import java.util.List;

import ptolemy.actor.gui.Configuration;
import ptolemy.kernel.util.ChangeRequest;
import ptolemy.kernel.util.NamedObj;
import ptolemy.util.MessageHandler;
import ptolemy.vergil.icon.EditorIcon;
import ptolemy.vergil.icon.XMLIcon;

//////////////////////////////////////////////////////////////////////////
//// EditIconAction

/** Action to edit a custom icon.
@author Edward A. Lee
@version $Id: EditIconAction.java,v 1.24 2006/02/27 21:37:26 cxh Exp $
@since Ptolemy II 4.0
@Pt.ProposedRating Red (eal)
@Pt.AcceptedRating Red (johnr)
*/
public class EditIconAction extends FigureAction {

    /** Create an action to edit an icon. */
    public EditIconAction() {
        super("Edit Custom Icon");

        // For some inexplicable reason, the I key doesn't work here.
        // putValue(GUIUtilities.ACCELERATOR_KEY,
        //       KeyStroke.getKeyStroke(KeyEvent.VK_I, Event.CTRL_MASK));
    }

    ///////////////////////////////////////////////////////////////////
    ////                         public methods                    ////

    /** Process the edit icon command.
     *  @param e The event.
     */
    public void actionPerformed(ActionEvent e) {
        if (_configuration == null) {
            MessageHandler.error("Cannot edit icon without a configuration.");
            return;
        }

        // Determine which entity was selected for the action.
        super.actionPerformed(e);

        final NamedObj object = getTarget();

        // Do this as a change request since it may add a new icon.
        ChangeRequest request = new ChangeRequest(this, "Edit Custom Icon") {
            protected void _execute() throws Exception {
                EditorIcon icon = null;
                List iconList = object.attributeList(EditorIcon.class);

                if (iconList.size() > 0) {
                    // Get the last icon.
                    icon = (EditorIcon) iconList.get(iconList.size() - 1);
                }

                if (icon == null) {
                    icon = new EditorIcon(object, "_icon");
                } else if (icon instanceof XMLIcon) {
                    // There is an icon currently that is not custom.
                    // Without trashing the _iconDescription, we can remove
                    // this icon and replace it.
                    icon.setContainer(null);
                    icon = new EditorIcon(object, "_icon");

                    // Propagate this to derived objects, being
                    // careful to not trash their custom icons
                    // if they have them.  However, there is a trickiness.
                    // They may not have a custom icon, but rather have
                    // an instance of XMLIcon.  We have to remove that
                    // first.
                    Iterator derivedObjects = object.getDerivedList()
                            .iterator();

                    while (derivedObjects.hasNext()) {
                        NamedObj derived = (NamedObj) derivedObjects.next();

                        // See whether it has an icon.
                        EditorIcon derivedIcon = null;
                        List derivedIconList = derived
                                .attributeList(EditorIcon.class);

                        if (derivedIconList.size() > 0) {
                            // Get the last icon.
                            derivedIcon = (EditorIcon) derivedIconList
                                    .get(derivedIconList.size() - 1);
                        }

                        if (derivedIcon instanceof XMLIcon) {
                            // There is an icon currently that is not custom.
                            // Without trashing the _iconDescription, we can remove
                            // this icon and replace it.
                            derivedIcon.setContainer(null);
                        }
                    }

                    // Now it is safe to propagate.
                    icon.propagateExistence();
                }

                _configuration.openModel(icon);
            }
        };

        object.requestChange(request);
    }

    /** Specify the configuration.  This has to be called with a
     *  non-null argument for this action to work.
     *  @param configuration The configuration.
     */
    public void setConfiguration(Configuration configuration) {
        _configuration = configuration;
    }

    ///////////////////////////////////////////////////////////////////
    ////                         private members                   ////
    // The configuration.
    private Configuration _configuration;
}
TOP

Related Classes of ptolemy.vergil.toolbox.EditIconAction

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.