blob: 7a5bf841279da9d4513840cc30a392538731c8d2 [file] [log] [blame]
/*
* Copyright (c) 2006, 2009 Borland Software Corporation 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:
* Borland Software Corporation - initial API and implementation
*/
package org.eclipse.gmf.graphdef.editor.providers;
import org.eclipse.emf.ecore.EAnnotation;
import org.eclipse.gef.EditPart;
import org.eclipse.gmf.graphdef.editor.edit.parts.CanvasEditPart;
import org.eclipse.gmf.graphdef.editor.part.GMFGraphDiagramEditorPlugin;
import org.eclipse.gmf.graphdef.editor.part.GMFGraphVisualIDRegistry;
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;
/**
* @generated
*/
public class GMFGraphShortcutsDecoratorProvider 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 && CanvasEditPart.MODEL_ID.equals(GMFGraphVisualIDRegistry.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 = GMFGraphDiagramEditorPlugin.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));
}
}
}
}