blob: 1f960da09cbcc12c0501e64efe97498913d8cab8 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2003, 2008 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.runtime.diagram.ui.geoshapes.internal.editparts;
import org.eclipse.draw2d.IFigure;
import org.eclipse.gmf.runtime.diagram.ui.geoshapes.internal.draw2d.figures.GeoShapeFigure;
import org.eclipse.gmf.runtime.diagram.ui.geoshapes.internal.draw2d.figures.GeoShapeHexagonFigure;
import org.eclipse.gmf.runtime.gef.ui.figures.NodeFigure;
import org.eclipse.gmf.runtime.notation.View;
/**
* @author jschofie
*
* Controls the interactions between the figure and
* its underlying view
*/
public class HexagonEditPart extends GeoShapeEditPart {
/**
* Constructor - Create an EditPart for a given model object (View)
*
* @param shapeView model object that represents the associated figure
*/
public HexagonEditPart(View shapeView) {
super(shapeView);
}
protected NodeFigure createNodeFigure() {
return new GeoShapeHexagonFigure( getMapMode().DPtoLP(50), getMapMode().DPtoLP(5) );
}
public IFigure getContentPane() {
return ((GeoShapeFigure) getFigure()).getContentPane();
}
}