blob: ba4b586d7e9e9771aa77f1648fbb4277011c7fe2 [file] [log] [blame]
/*******************************************************************************
* <copyright>
*
* Copyright (c) 2005, 2010 SAP AG.
* 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:
* SAP AG - initial API, implementation and documentation
*
* </copyright>
*
*******************************************************************************/
package org.eclipse.graphiti.testtool.ecore.features.clazz;
import java.util.Collection;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.graphiti.datatypes.IDimension;
import org.eclipse.graphiti.features.IFeatureProvider;
import org.eclipse.graphiti.features.context.ILayoutContext;
import org.eclipse.graphiti.features.impl.AbstractLayoutFeature;
import org.eclipse.graphiti.mm.algorithms.GraphicsAlgorithm;
import org.eclipse.graphiti.mm.algorithms.Polyline;
import org.eclipse.graphiti.mm.algorithms.styles.Point;
import org.eclipse.graphiti.mm.pictograms.ContainerShape;
import org.eclipse.graphiti.mm.pictograms.Shape;
import org.eclipse.graphiti.services.Graphiti;
import org.eclipse.graphiti.services.IGaService;
/**
* The Class TestLayoutClassFeature.
*/
public class TestLayoutClassFeature extends AbstractLayoutFeature {
private static final int MIN_HEIGHT = 40;
private static final int MIN_WIDTH = 25;
/**
* Instantiates a new test layout class feature.
*
* @param fp
* the fp
*/
public TestLayoutClassFeature(IFeatureProvider fp) {
super(fp);
}
public boolean canLayout(ILayoutContext context) {
if (!(context.getPictogramElement() instanceof ContainerShape)) {
return false;
}
// return true, if linked business object is a Class
Object bo = getBusinessObjectForPictogramElement(context.getPictogramElement());
return (bo instanceof EClass);
}
public boolean layout(ILayoutContext context) {
boolean ret = false;
ContainerShape containerShape = (ContainerShape) context.getPictogramElement();
GraphicsAlgorithm containerGa = containerShape.getGraphicsAlgorithm();
// height
{
int containerHeight = containerGa.getHeight();
if (containerHeight < MIN_HEIGHT) {
containerGa.setHeight(MIN_HEIGHT);
ret = true;
}
}
// width
{
int containerWidth = containerGa.getWidth();
if (containerWidth < MIN_WIDTH) {
containerGa.setWidth(MIN_WIDTH);
ret = true;
}
Collection<Shape> children = containerShape.getChildren();
for (Shape shape : children) {
GraphicsAlgorithm graphicsAlgorithm = shape.getGraphicsAlgorithm();
IGaService gaService = Graphiti.getGaService();
IDimension size = gaService.calculateSize(graphicsAlgorithm);
if (containerWidth != size.getWidth()) {
if (graphicsAlgorithm instanceof Polyline) {
Polyline polyline = (Polyline) graphicsAlgorithm;
Point secondPoint = polyline.getPoints().get(1);
polyline.getPoints().set(1, gaService.createPoint(containerWidth, secondPoint.getY()));
ret = true;
} else {
gaService.setWidth(graphicsAlgorithm, containerWidth);
ret = true;
}
}
}
}
return ret;
}
}