blob: 5f08c748d43579b7f3edbf4f86c9ef15e50e4ef8 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2004 IBM 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:
* IBM Corporation - initial API and implementation
****************************************************************************/
package org.eclipse.gmf.examples.runtime.diagram.logic.internal.editparts;
import org.eclipse.draw2d.geometry.Dimension;
import org.eclipse.emf.ecore.EStructuralFeature;
import org.eclipse.gef.EditPolicy;
import org.eclipse.gmf.examples.runtime.diagram.logic.internal.figures.LogicColorConstants;
import org.eclipse.gmf.examples.runtime.diagram.logic.internal.figures.LogicFlowFigure;
import org.eclipse.gmf.runtime.diagram.ui.editparts.ShapeNodeEditPart;
import org.eclipse.gmf.runtime.draw2d.ui.figures.ConstrainedToolbarLayout;
import org.eclipse.gmf.runtime.draw2d.ui.figures.FigureUtilities;
import org.eclipse.gmf.runtime.gef.ui.figures.NodeFigure;
import org.eclipse.gmf.runtime.notation.NotationPackage;
import org.eclipse.gmf.runtime.notation.View;
/**
* @author qili
*
* Holds the EditPart signifying a LogicFlowFigure
*/
public class LogicFlowContainerEditPart
extends ShapeNodeEditPart
{
/**
* @param view
*/
public LogicFlowContainerEditPart(View view) {
super(view);
}
protected void createDefaultEditPolicies() {
super.createDefaultEditPolicies();
installEditPolicy(EditPolicy.NODE_ROLE, null);
installEditPolicy(EditPolicy.GRAPHICAL_NODE_ROLE, null);
}
/**
* Overwrite createNodeFigure() in super class
*/
protected NodeFigure createNodeFigure() {
NodeFigure newFigure = new LogicFlowFigure(new Dimension(getMapMode().DPtoLP(100), getMapMode().DPtoLP(100)));
ConstrainedToolbarLayout layout = new ConstrainedToolbarLayout();
layout.setStretchMinorAxis(true);
newFigure.setLayoutManager(layout);
return newFigure;
}
public Object getPreferredValue(EStructuralFeature feature) {
if (feature == NotationPackage.eINSTANCE.getFillStyle_FillColor()) {
return FigureUtilities
.colorToInteger(LogicColorConstants.logicGreen);
} else if (feature == NotationPackage.eINSTANCE
.getLineStyle_LineColor()) {
return FigureUtilities
.colorToInteger(LogicColorConstants.logicBlack);
}
return super.getPreferredValue(feature);
}
}