blob: 6dfbc909523c26b48972c36ec8b5fb586b27f862 [file] [log] [blame]
/*********************************************************************
* Copyright (c) 2005, 2019 SAP SE
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* SAP SE - initial API, implementation and documentation
* mwenz - Bug 423573 - Angles should never be integer
*
* SPDX-License-Identifier: EPL-2.0
**********************************************************************/
package org.eclipse.graphiti.testtool.sketch.features;
import org.eclipse.graphiti.features.IFeatureProvider;
import org.eclipse.graphiti.features.context.IAddContext;
import org.eclipse.graphiti.features.impl.AbstractAddFeature;
import org.eclipse.graphiti.mm.algorithms.Rectangle;
import org.eclipse.graphiti.mm.algorithms.Text;
import org.eclipse.graphiti.mm.pictograms.PictogramElement;
import org.eclipse.graphiti.mm.pictograms.Shape;
import org.eclipse.graphiti.services.Graphiti;
import org.eclipse.graphiti.services.IGaService;
import org.eclipse.graphiti.util.IColorConstant;
/**
* The Class AddAnythingFeature.
*/
public class AddAnythingFeature extends AbstractAddFeature {
/**
* Instantiates a new adds the anything feature.
*
* @param fp
* the fp
*/
public AddAnythingFeature(IFeatureProvider fp) {
super(fp);
}
public PictogramElement add(IAddContext context) {
Object newObject = context.getNewObject();
Shape shape = Graphiti.getPeCreateService().createShape(context.getTargetContainer(), true);
IGaService gaService = Graphiti.getGaService();
Rectangle r = gaService.createRectangle(shape);
gaService.setLocationAndSize(r, context.getX(), context.getY(), 400, 100);
r.setBackground(gaService.manageColor(getDiagram(), IColorConstant.WHITE));
String text = newObject.getClass().getName() + " - " + newObject.toString();
Text textGa = gaService.createDefaultText(getDiagram(), r, text);
gaService.setLocationAndSize(textGa, 0, 0, 400, 100);
textGa.setRotation(-1d);
// Create an italic font to use it later in the rich tooltip
gaService.manageFont(getDiagram(), IGaService.DEFAULT_FONT, IGaService.DEFAULT_FONT_SIZE, true, false);
return shape;
}
public boolean canAdd(IAddContext context) {
return context.getTargetContainer() != null;
}
}