blob: 4a65dde9f97d41abd166ba2ae4eec6c5506b2011 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 Fundación Tecnalia Research & Innovation.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Huascar Espinoza - initial API and implementation
* Alejandra Ruíz - initial API and implementation
* Idoya Del Río - initial API and implementation
* Mari Carmen Palacios - initial API and implementation
* Angel López - initial API and implementation
*******************************************************************************/
package org.eclipse.opencert.sam.arg.arg.diagram.providers;
import org.eclipse.emf.ecore.EAnnotation;
import org.eclipse.gef.EditPart;
import org.eclipse.gmf.runtime.common.core.service.AbstractProvider;
import org.eclipse.gmf.runtime.common.core.service.IOperation;
import org.eclipse.gmf.runtime.diagram.ui.editparts.ConnectionEditPart;
import org.eclipse.gmf.runtime.diagram.ui.editparts.ShapeEditPart;
import org.eclipse.gmf.runtime.diagram.ui.services.decorator.AbstractDecorator;
import org.eclipse.gmf.runtime.diagram.ui.services.decorator.CreateDecoratorsOperation;
import org.eclipse.gmf.runtime.diagram.ui.services.decorator.IDecoratorProvider;
import org.eclipse.gmf.runtime.diagram.ui.services.decorator.IDecoratorTarget;
import org.eclipse.gmf.runtime.notation.View;
import org.eclipse.swt.graphics.Image;
import org.eclipse.opencert.sam.arg.arg.diagram.edit.parts.CaseEditPart;
import org.eclipse.opencert.sam.arg.arg.diagram.part.ArgDiagramEditorPlugin;
import org.eclipse.opencert.sam.arg.arg.diagram.part.ArgVisualIDRegistry;
/**
* @generated
*/
public class ArgShortcutsDecoratorProvider extends AbstractProvider implements
IDecoratorProvider {
/**
* @generated
*/
public static final String SHORTCUTS_DECORATOR_ID = "shortcuts"; //$NON-NLS-1$
/**
* @generated
*/
public boolean provides(IOperation operation) {
if (!(operation instanceof CreateDecoratorsOperation)) {
return false;
}
IDecoratorTarget decoratorTarget = ((CreateDecoratorsOperation) operation)
.getDecoratorTarget();
View view = (View) decoratorTarget.getAdapter(View.class);
return view != null
&& CaseEditPart.MODEL_ID.equals(ArgVisualIDRegistry
.getModelID(view));
}
/**
* @generated
*/
public void createDecorators(IDecoratorTarget decoratorTarget) {
View view = (View) decoratorTarget.getAdapter(View.class);
if (view != null) {
EAnnotation annotation = view.getEAnnotation("Shortcut"); //$NON-NLS-1$
if (annotation != null) {
decoratorTarget.installDecorator(SHORTCUTS_DECORATOR_ID,
new ShortcutsDecorator(decoratorTarget));
}
}
}
/**
* @generated
*/
protected class ShortcutsDecorator extends AbstractDecorator {
/**
* @generated
*/
public ShortcutsDecorator(IDecoratorTarget decoratorTarget) {
super(decoratorTarget);
}
/**
* @generated
*/
public void activate() {
refresh();
}
/**
* @generated
*/
public void refresh() {
removeDecoration();
EditPart editPart = (EditPart) getDecoratorTarget().getAdapter(
EditPart.class);
Image image = ArgDiagramEditorPlugin.getInstance().getBundledImage(
"icons/shortcut.gif"); //$NON-NLS-1$
if (editPart instanceof ShapeEditPart) {
setDecoration(getDecoratorTarget().addShapeDecoration(image,
IDecoratorTarget.Direction.SOUTH_WEST, 0, false));
} else if (editPart instanceof ConnectionEditPart) {
setDecoration(getDecoratorTarget().addConnectionDecoration(
image, 50, false));
}
}
}
}