1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-02 00:20:49 +00:00
plantuml/src/net/sourceforge/plantuml/svek/image/EntityImageStateBorder.java

134 lines
4.8 KiB
Java
Raw Normal View History

2013-12-10 19:36:50 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2019-01-16 18:34:41 +00:00
* (C) Copyright 2009-2020, Arnaud Roques
2013-12-10 19:36:50 +00:00
*
2016-03-06 16:47:34 +00:00
* Project Info: http://plantuml.com
2013-12-10 19:36:50 +00:00
*
2017-03-15 19:13:31 +00:00
* If you like this project or if you find it useful, you can support us at:
*
* http://plantuml.com/patreon (only 1$ per month!)
* http://plantuml.com/paypal
*
2013-12-10 19:36:50 +00:00
* This file is part of PlantUML.
*
* PlantUML is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* PlantUML distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
* License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
* USA.
*
*
* Original Author: Arnaud Roques
*
*
*/
package net.sourceforge.plantuml.svek.image;
import java.awt.geom.Dimension2D;
import java.awt.geom.Point2D;
import net.sourceforge.plantuml.ColorParam;
import net.sourceforge.plantuml.FontParam;
import net.sourceforge.plantuml.ISkinParam;
import net.sourceforge.plantuml.SkinParamUtils;
import net.sourceforge.plantuml.cucadiagram.EntityPosition;
import net.sourceforge.plantuml.cucadiagram.ILeaf;
2016-04-04 19:05:10 +00:00
import net.sourceforge.plantuml.cucadiagram.Rankdir;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.cucadiagram.Stereotype;
import net.sourceforge.plantuml.graphic.FontConfiguration;
import net.sourceforge.plantuml.graphic.HorizontalAlignment;
import net.sourceforge.plantuml.graphic.HtmlColor;
import net.sourceforge.plantuml.graphic.StringBounder;
import net.sourceforge.plantuml.graphic.TextBlock;
2015-09-28 20:42:17 +00:00
import net.sourceforge.plantuml.graphic.color.ColorType;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.svek.AbstractEntityImage;
import net.sourceforge.plantuml.svek.Bibliotekon;
import net.sourceforge.plantuml.svek.Cluster;
2020-02-18 21:24:31 +00:00
import net.sourceforge.plantuml.svek.Node;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.svek.ShapeType;
import net.sourceforge.plantuml.ugraphic.UChangeBackColor;
import net.sourceforge.plantuml.ugraphic.UChangeColor;
import net.sourceforge.plantuml.ugraphic.UGraphic;
import net.sourceforge.plantuml.ugraphic.UStroke;
import net.sourceforge.plantuml.ugraphic.UTranslate;
public class EntityImageStateBorder extends AbstractEntityImage {
private final TextBlock desc;
private final Cluster stateParent;
private final EntityPosition entityPosition;
private final Bibliotekon bibliotekon;
2016-04-04 19:05:10 +00:00
private final Rankdir rankdir;
2013-12-10 19:36:50 +00:00
public EntityImageStateBorder(ILeaf leaf, ISkinParam skinParam, Cluster stateParent, final Bibliotekon bibliotekon) {
super(leaf, skinParam);
this.bibliotekon = bibliotekon;
2016-04-04 19:05:10 +00:00
this.rankdir = skinParam.getRankdir();
2013-12-10 19:36:50 +00:00
this.entityPosition = leaf.getEntityPosition();
if (entityPosition == EntityPosition.NORMAL) {
throw new IllegalArgumentException();
}
this.stateParent = stateParent;
final Stereotype stereotype = leaf.getStereotype();
2015-09-28 20:42:17 +00:00
this.desc = leaf.getDisplay().create(new FontConfiguration(getSkinParam(), FontParam.STATE, stereotype),
HorizontalAlignment.CENTER, skinParam);
2013-12-10 19:36:50 +00:00
}
private boolean upPosition() {
final Point2D clusterCenter = stateParent.getClusterPosition().getPointCenter();
2020-02-18 21:24:31 +00:00
final Node node = bibliotekon.getNode(getEntity());
return node.getMinY() < clusterCenter.getY();
2013-12-10 19:36:50 +00:00
}
public Dimension2D calculateDimension(StringBounder stringBounder) {
2016-04-04 19:05:10 +00:00
return entityPosition.getDimension(rankdir);
2013-12-10 19:36:50 +00:00
}
public double getMaxWidthFromLabelForEntryExit(StringBounder stringBounder) {
final Dimension2D dimDesc = desc.calculateDimension(stringBounder);
return dimDesc.getWidth();
}
final public void drawU(UGraphic ug) {
double y = 0;
final Dimension2D dimDesc = desc.calculateDimension(ug.getStringBounder());
2016-04-04 19:05:10 +00:00
final double x = 0 - (dimDesc.getWidth() - 2 * EntityPosition.RADIUS) / 2;
2013-12-10 19:36:50 +00:00
if (upPosition()) {
2016-04-04 19:05:10 +00:00
y -= 2 * EntityPosition.RADIUS + dimDesc.getHeight();
2013-12-10 19:36:50 +00:00
} else {
2016-04-04 19:05:10 +00:00
y += 2 * EntityPosition.RADIUS;
2013-12-10 19:36:50 +00:00
}
desc.drawU(ug.apply(new UTranslate(x, y)));
ug = ug.apply(new UStroke(1.5)).apply(
2019-01-16 18:34:41 +00:00
new UChangeColor(SkinParamUtils.getColor(getSkinParam(), getStereo(), ColorParam.stateBorder)));
2015-09-28 20:42:17 +00:00
HtmlColor backcolor = getEntity().getColors(getSkinParam()).getColor(ColorType.BACK);
2013-12-10 19:36:50 +00:00
if (backcolor == null) {
2019-01-16 18:34:41 +00:00
backcolor = SkinParamUtils.getColor(getSkinParam(), getStereo(), ColorParam.stateBackground);
2013-12-10 19:36:50 +00:00
}
ug = ug.apply(new UChangeBackColor(backcolor));
2016-04-04 19:05:10 +00:00
entityPosition.drawSymbol(ug, rankdir);
2013-12-10 19:36:50 +00:00
}
public ShapeType getShapeType() {
2016-04-04 19:05:10 +00:00
return entityPosition.getShapeType();
2013-12-10 19:36:50 +00:00
}
}