1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-03 17:10:49 +00:00
plantuml/src/net/sourceforge/plantuml/activitydiagram3/ftile/vertical/FtileDiamondInside.java

204 lines
7.9 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.activitydiagram3.ftile.vertical;
import java.awt.geom.Dimension2D;
2016-12-14 21:01:03 +00:00
import java.util.Collection;
2013-12-10 19:36:50 +00:00
import java.util.Collections;
import java.util.Set;
import net.sourceforge.plantuml.Dimension2DDouble;
2016-06-19 14:16:41 +00:00
import net.sourceforge.plantuml.ISkinParam;
2019-08-26 17:07:21 +00:00
import net.sourceforge.plantuml.SkinParam;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.activitydiagram3.ftile.AbstractFtile;
import net.sourceforge.plantuml.activitydiagram3.ftile.Diamond;
2015-09-06 17:28:59 +00:00
import net.sourceforge.plantuml.activitydiagram3.ftile.Ftile;
2015-04-07 18:18:37 +00:00
import net.sourceforge.plantuml.activitydiagram3.ftile.FtileGeometry;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.activitydiagram3.ftile.Swimlane;
import net.sourceforge.plantuml.graphic.HtmlColor;
import net.sourceforge.plantuml.graphic.StringBounder;
import net.sourceforge.plantuml.graphic.TextBlock;
import net.sourceforge.plantuml.graphic.TextBlockUtils;
2019-08-26 17:07:21 +00:00
import net.sourceforge.plantuml.style.PName;
import net.sourceforge.plantuml.style.SName;
import net.sourceforge.plantuml.style.Style;
import net.sourceforge.plantuml.style.StyleSignature;
import net.sourceforge.plantuml.style.Styleable;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.ugraphic.UChangeBackColor;
import net.sourceforge.plantuml.ugraphic.UChangeColor;
import net.sourceforge.plantuml.ugraphic.UGraphic;
import net.sourceforge.plantuml.ugraphic.UTranslate;
2019-08-26 17:07:21 +00:00
public class FtileDiamondInside extends AbstractFtile implements Styleable {
2013-12-10 19:36:50 +00:00
private final HtmlColor backColor;
private final HtmlColor borderColor;
private final Swimlane swimlane;
private final TextBlock label;
private final TextBlock west;
private final TextBlock east;
private final TextBlock north;
2015-04-07 18:18:37 +00:00
private final TextBlock south;
2019-08-26 17:07:21 +00:00
private final double shadowing;
2013-12-10 19:36:50 +00:00
2016-12-14 21:01:03 +00:00
@Override
public Collection<Ftile> getMyChildren() {
return Collections.emptyList();
}
2019-08-26 17:07:21 +00:00
public StyleSignature getDefaultStyleDefinition() {
return StyleSignature.of(SName.root, SName.element, SName.activityDiagram, SName.activity, SName.diamond);
}
2016-06-19 14:16:41 +00:00
public FtileDiamondInside(ISkinParam skinParam, HtmlColor backColor, HtmlColor borderColor, Swimlane swimlane,
2013-12-10 19:36:50 +00:00
TextBlock label) {
2016-06-19 14:16:41 +00:00
this(skinParam, backColor, borderColor, swimlane, label, TextBlockUtils.empty(0, 0),
2015-04-07 18:18:37 +00:00
TextBlockUtils.empty(0, 0), TextBlockUtils.empty(0, 0), TextBlockUtils.empty(0, 0));
2013-12-10 19:36:50 +00:00
}
public FtileDiamondInside withNorth(TextBlock north) {
2016-06-19 14:16:41 +00:00
return new FtileDiamondInside(skinParam(), backColor, borderColor, swimlane, label, north, south, west, east);
2013-12-10 19:36:50 +00:00
}
public FtileDiamondInside withWest(TextBlock west) {
2016-06-19 14:16:41 +00:00
return new FtileDiamondInside(skinParam(), backColor, borderColor, swimlane, label, north, south, west, east);
2013-12-10 19:36:50 +00:00
}
public FtileDiamondInside withEast(TextBlock east) {
2016-06-19 14:16:41 +00:00
return new FtileDiamondInside(skinParam(), backColor, borderColor, swimlane, label, north, south, west, east);
2015-04-07 18:18:37 +00:00
}
2015-09-06 17:28:59 +00:00
public Ftile withWestAndEast(TextBlock tb1, TextBlock tb2) {
return withWest(tb1).withEast(tb2);
}
2015-04-07 18:18:37 +00:00
public FtileDiamondInside withSouth(TextBlock south) {
2016-06-19 14:16:41 +00:00
return new FtileDiamondInside(skinParam(), backColor, borderColor, swimlane, label, north, south, west, east);
2013-12-10 19:36:50 +00:00
}
2016-06-19 14:16:41 +00:00
private FtileDiamondInside(ISkinParam skinParam, HtmlColor backColor, HtmlColor borderColor, Swimlane swimlane,
2015-04-07 18:18:37 +00:00
TextBlock label, TextBlock north, TextBlock south, TextBlock west, TextBlock east) {
2016-06-19 14:16:41 +00:00
super(skinParam);
2019-08-26 17:07:21 +00:00
if (SkinParam.USE_STYLES()) {
final Style style = getDefaultStyleDefinition().getMergedStyle(skinParam.getCurrentStyleBuilder());
this.borderColor = style.value(PName.LineColor).asColor(getIHtmlColorSet());
this.backColor = style.value(PName.BackGroundColor).asColor(getIHtmlColorSet());
this.shadowing = style.value(PName.Shadowing).asDouble();
} else {
this.backColor = backColor;
this.borderColor = borderColor;
this.shadowing = skinParam().shadowing(null) ? 3 : 0;
}
2013-12-10 19:36:50 +00:00
this.swimlane = swimlane;
this.label = label;
this.west = west;
this.east = east;
this.north = north;
2015-04-07 18:18:37 +00:00
this.south = south;
2013-12-10 19:36:50 +00:00
}
public Set<Swimlane> getSwimlanes() {
if (swimlane == null) {
return Collections.emptySet();
}
return Collections.singleton(swimlane);
}
public Swimlane getSwimlaneIn() {
return swimlane;
}
public Swimlane getSwimlaneOut() {
return swimlane;
}
2015-04-07 18:18:37 +00:00
public void drawU(UGraphic ug) {
final StringBounder stringBounder = ug.getStringBounder();
final Dimension2D dimLabel = label.calculateDimension(stringBounder);
final Dimension2D dimTotal = calculateDimensionAlone(stringBounder);
2016-06-19 14:16:41 +00:00
ug = ug.apply(new UChangeColor(borderColor)).apply(getThickness()).apply(new UChangeBackColor(backColor));
2019-08-26 17:07:21 +00:00
ug.draw(Diamond.asPolygon(shadowing, dimTotal.getWidth(), dimTotal.getHeight()));
2013-12-10 19:36:50 +00:00
2015-04-07 18:18:37 +00:00
north.drawU(ug.apply(new UTranslate(4 + dimTotal.getWidth() / 2, dimTotal.getHeight())));
south.drawU(ug.apply(new UTranslate(4 + dimTotal.getWidth() / 2, dimTotal.getHeight())));
2013-12-10 19:36:50 +00:00
2015-04-07 18:18:37 +00:00
final double lx = (dimTotal.getWidth() - dimLabel.getWidth()) / 2;
final double ly = (dimTotal.getHeight() - dimLabel.getHeight()) / 2;
label.drawU(ug.apply(new UTranslate(lx, ly)));
2013-12-10 19:36:50 +00:00
2015-09-06 17:28:59 +00:00
final Dimension2D dimWest = west.calculateDimension(stringBounder);
west.drawU(ug.apply(new UTranslate(-dimWest.getWidth(), -dimWest.getHeight() + dimTotal.getHeight() / 2)));
2013-12-10 19:36:50 +00:00
2015-04-07 18:18:37 +00:00
final Dimension2D dimEast = east.calculateDimension(stringBounder);
east.drawU(ug.apply(new UTranslate(dimTotal.getWidth(), -dimEast.getHeight() + dimTotal.getHeight() / 2)));
2013-12-10 19:36:50 +00:00
2015-04-07 18:18:37 +00:00
}
2013-12-10 19:36:50 +00:00
2015-04-07 18:18:37 +00:00
private FtileGeometry calculateDimensionAlone(StringBounder stringBounder) {
2013-12-10 19:36:50 +00:00
final Dimension2D dimLabel = label.calculateDimension(stringBounder);
2015-04-07 18:18:37 +00:00
final Dimension2D dim;
2013-12-10 19:36:50 +00:00
if (dimLabel.getWidth() == 0 || dimLabel.getHeight() == 0) {
2015-04-07 18:18:37 +00:00
dim = new Dimension2DDouble(Diamond.diamondHalfSize * 2, Diamond.diamondHalfSize * 2);
} else {
dim = Dimension2DDouble.delta(
Dimension2DDouble.atLeast(dimLabel, Diamond.diamondHalfSize * 2, Diamond.diamondHalfSize * 2),
Diamond.diamondHalfSize * 2, 0);
2013-12-10 19:36:50 +00:00
}
2015-04-07 18:18:37 +00:00
return new FtileGeometry(dim, dim.getWidth() / 2, 0, dim.getHeight());
2013-12-10 19:36:50 +00:00
}
2017-11-20 16:10:36 +00:00
@Override
protected FtileGeometry calculateDimensionFtile(StringBounder stringBounder) {
2016-01-09 12:15:40 +00:00
final FtileGeometry dimDiamonAlone = calculateDimensionAlone(stringBounder);
final Dimension2D dimWest = west.calculateDimension(stringBounder);
final Dimension2D dimEast = east.calculateDimension(stringBounder);
final double northHeight = north.calculateDimension(stringBounder).getHeight();
return dimDiamonAlone.incHeight(northHeight);
// return dimDiamonAlone.incHeight(northHeight).addMarginX(dimWest.getWidth(), dimEast.getWidth());
}
2016-11-04 21:39:29 +00:00
public double getEastLabelWidth(StringBounder stringBounder) {
final Dimension2D dimEast = east.calculateDimension(stringBounder);
return dimEast.getWidth();
}
2016-12-14 21:01:03 +00:00
public double getSouthLabelHeight(StringBounder stringBounder) {
final Dimension2D dimSouth = south.calculateDimension(stringBounder);
return dimSouth.getHeight();
}
2013-12-10 19:36:50 +00:00
}