/** * Copyright (c) 2005-2011 by Appcelerator, Inc. All Rights Reserved. * Licensed under the terms of the Eclipse Public License (EPL). * Please see the license.txt included with this distribution for details. * Any modifications to this file must keep this entire header intact. */ package org.python.pydev.navigator.actions; import java.util.ArrayList; import java.util.Iterator; import java.util.List; import org.eclipse.core.resources.IResource; import org.eclipse.core.runtime.IAdaptable; import org.eclipse.jface.viewers.ISelection; import org.eclipse.jface.viewers.ISelectionProvider; import org.eclipse.jface.viewers.IStructuredSelection; import org.eclipse.jface.viewers.StructuredSelection; import org.eclipse.swt.dnd.Clipboard; import org.eclipse.swt.widgets.Shell; import org.python.pydev.navigator.actions.copied.PasteAction; public class PyPasteAction extends PasteAction { private ISelectionProvider provider; private ArrayList<IResource> selected; public PyPasteAction(Shell shell, ISelectionProvider selectionProvider, Clipboard clipboard) { super(shell, clipboard); this.provider = selectionProvider; } /* * (non-Javadoc) * * @see org.eclipse.jface.action.Action#isEnabled() */ public boolean isEnabled() { fillSelection(); boolean enabled = selected != null && selected.size() > 0; return enabled; } private boolean fillSelection() { selected = new ArrayList<IResource>(); ISelection selection = provider.getSelection(); if (!selection.isEmpty()) { IStructuredSelection sSelection = (IStructuredSelection) selection; if (sSelection.size() >= 1) { Iterator iterator = sSelection.iterator(); while (iterator.hasNext()) { Object element = iterator.next(); if (element instanceof IAdaptable) { IAdaptable adaptable = (IAdaptable) element; IResource resource = (IResource) adaptable.getAdapter(IResource.class); if (resource != null) { selected.add(resource); continue; } } // one of the elements did not satisfy the condition selected = null; return false; } } } return true; } @Override protected List getSelectedResources() { return selected; } @Override public IStructuredSelection getStructuredSelection() { return new StructuredSelection(selected); } /* * (non-Javadoc) Method declared on IAction. */ public void run() { if (!fillSelection()) { //will also update the list of resources (main change from the DeleteResourceAction) return; } super.run(); } }