blob: 8e553b2e2fc46895d5b400e7fef5c28f3b33ba97 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2013, 2016 CEA LIST, Esterel Technologies SAS and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* RĂ©gis CHEVREL: chevrel.regis <at> gmail.com
* CEA LIST - Initial API and implementation
* Alain Le Guennec (Esterel Technologies SAS) - bug 497400
*
*****************************************************************************/
package org.eclipse.papyrus.sysml.diagram.parametric.policies;
import java.util.ArrayList;
import java.util.List;
import java.util.Set;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.transaction.RunnableWithResult;
import org.eclipse.gef.commands.Command;
import org.eclipse.gef.commands.UnexecutableCommand;
import org.eclipse.gmf.runtime.common.core.command.ICommand;
import org.eclipse.gmf.runtime.diagram.ui.commands.CommandProxy;
import org.eclipse.gmf.runtime.diagram.ui.commands.ICommandProxy;
import org.eclipse.gmf.runtime.diagram.ui.editparts.GraphicalEditPart;
import org.eclipse.gmf.runtime.diagram.ui.requests.DropObjectsRequest;
import org.eclipse.papyrus.infra.gmfdiag.common.commands.SelectAndExecuteCommand;
import org.eclipse.papyrus.sysml.diagram.internalblock.utils.TypeDropHelper;
import org.eclipse.papyrus.sysml.diagram.parametric.provider.CustomGraphicalTypeRegistry;
import org.eclipse.papyrus.sysml.diagram.parametric.utils.ConstraintParameterDropHelper;
import org.eclipse.papyrus.uml.diagram.common.utils.UMLGraphicalTypes;
import org.eclipse.swt.widgets.Display;
import org.eclipse.ui.PlatformUI;
import org.eclipse.uml2.uml.Property;
/**
* <pre>
* Customization of the DND edit policy for BlockPropertyComposite that enables
* type modification, or creation of new Port and FlowPort by a drop on target.
* </pre>
*/
public class CustomBlockCompositeDropEditPolicy extends CustomDragDropEditPolicy {
/** Default constructor */
public CustomBlockCompositeDropEditPolicy() {
super();
registry = new CustomGraphicalTypeRegistry();
}
/**
* {@inheritDoc}
*/
@Override
protected Set<String> getSpecificDropBehaviorTypes() {
Set<String> specificDropBehaviorTypes = super.getSpecificDropBehaviorTypes();
specificDropBehaviorTypes.add(UMLGraphicalTypes.SHAPE_UML_PROPERTY_AS_AFFIXED_ID);
return specificDropBehaviorTypes;
}
/**
* {@inheritDoc}
*/
@Override
protected ICommand getSpecificDropCommand(DropObjectsRequest dropRequest, EObject droppedEObject, String nodeType, String edgeType) {
if (UMLGraphicalTypes.SHAPE_UML_PROPERTY_AS_AFFIXED_ID.equals(nodeType)) {
ConstraintParameterDropHelper constraintParameterDropHelper = new ConstraintParameterDropHelper(getEditingDomain());
Command commandParameterDropCommand = constraintParameterDropHelper.getDropConstraintParameter((Property) droppedEObject, dropRequest.getLocation().getCopy(), (GraphicalEditPart) getHost());
return new CommandProxy(commandParameterDropCommand);
}
return super.getSpecificDropCommand(dropRequest, droppedEObject, nodeType, edgeType);
}
/**
* {@inheritedDoc}.
*/
@Override
public Command getDropObjectsCommand(DropObjectsRequest dropRequest) {
TypeDropHelper helper = new TypeDropHelper(getEditingDomain());
// Single drop management possible drop action list can be proposed
if (dropRequest.getObjects().size() == 1) {
// List of available drop commands
final List<Command> commandChoice = new ArrayList<Command>();
// 1. Try to set the target element type with dropped object
Command dropAsSetType = helper.getDropAsTypedElementType(dropRequest, (GraphicalEditPart) getHost());
if ((dropAsSetType != null) && (dropAsSetType.canExecute())) {
commandChoice.add(dropAsSetType);
}
// 2. Build default drop command (show view of the dropped object)
Command defaultDropCommand = super.getDropObjectsCommand(dropRequest);
if ((defaultDropCommand != null) && (defaultDropCommand.canExecute())) {
defaultDropCommand.setLabel("Default drop (Show dropped object in diagram)");
commandChoice.add(defaultDropCommand);
}
// Prepare the selection command (if several command are available) or return the drop command
if (commandChoice.size() > 1) {
RunnableWithResult<ICommand> runnable;
Display.getDefault().syncExec(runnable = new RunnableWithResult.Impl<ICommand>() {
public void run() {
setResult(new SelectAndExecuteCommand("Select drop action for ", PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell(), commandChoice));
}
});
ICommand selectCommand = runnable.getResult();
return new ICommandProxy(selectCommand);
} else if (commandChoice.size() == 1) {
return commandChoice.get(0);
}
// else (command choice is empty)
return UnexecutableCommand.INSTANCE;
}
return super.getDropObjectsCommand(dropRequest);
}
}