net.sourceforge.plantuml.wbs.ITFComposed Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plantuml-asl Show documentation
Show all versions of plantuml-asl Show documentation
PlantUML is a component that allows to quickly write diagrams from text.
The newest version!
// THIS FILE HAS BEEN GENERATED BY A PREPROCESSOR.
/* +=======================================================================
* |
* | PlantUML : a free UML diagram generator
* |
* +=======================================================================
*
* (C) Copyright 2009-2024, Arnaud Roques
*
* Project Info: https://plantuml.com
*
* If you like this project or if you find it useful, you can support us at:
*
* https://plantuml.com/patreon (only 1$ per month!)
* https://plantuml.com/liberapay (only 1€ per month!)
* https://plantuml.com/paypal
*
*
* PlantUML is free software; you can redistribute it and/or modify it
* under the terms of the Apache Software License.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* PlantUML can occasionally display sponsored or advertising messages. Those
* messages are usually generated on welcome or error images and never on
* functional diagrams.
* See https://plantuml.com/professional if you want to remove them
*
* Images (whatever their format : PNG, SVG, EPS...) generated by running PlantUML
* are owned by the author of their corresponding sources code (that is, their
* textual description in PlantUML language). Those images are not covered by
* this APACHE license.
*
* The generated images can then be used without any reference to the APACHE license.
* It is not even necessary to stipulate that they have been generated with PlantUML,
* although this will be appreciated by the PlantUML team.
*
* There is an exception : if the textual description in PlantUML language is also covered
* by any license, then the generated images are logically covered
* by the very same license.
*
* This is the IGY distribution (Install GraphViz by Yourself).
* You have to install GraphViz and to setup the GRAPHVIZ_DOT environment variable
* (see https://plantuml.com/graphviz-dot )
*
* Icons provided by OpenIconic : https://useiconic.com/open
* Archimate sprites provided by Archi : http://www.archimatetool.com
* Stdlib AWS provided by https://github.com/milo-minderbinder/AWS-PlantUML
* Stdlib Icons provided https://github.com/tupadr3/plantuml-icon-font-sprites
* ASCIIMathML (c) Peter Jipsen http://www.chapman.edu/~jipsen
* ASCIIMathML (c) David Lippman http://www.pierce.ctc.edu/dlippman
* CafeUndZopfli ported by Eugene Klyuchnikov https://github.com/eustas/CafeUndZopfli
* Brotli (c) by the Brotli Authors https://github.com/google/brotli
* Themes (c) by Brett Schwarz https://github.com/bschwarz/puml-themes
* Twemoji (c) by Twitter at https://twemoji.twitter.com/
*
*/
package net.sourceforge.plantuml.wbs;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import net.sourceforge.plantuml.klimt.UTranslate;
import net.sourceforge.plantuml.klimt.color.HColor;
import net.sourceforge.plantuml.klimt.color.HColors;
import net.sourceforge.plantuml.klimt.drawing.AbstractCommonUGraphic;
import net.sourceforge.plantuml.klimt.drawing.UGraphic;
import net.sourceforge.plantuml.klimt.font.StringBounder;
import net.sourceforge.plantuml.klimt.geom.XDimension2D;
import net.sourceforge.plantuml.klimt.geom.XPoint2D;
import net.sourceforge.plantuml.klimt.shape.TextBlock;
import net.sourceforge.plantuml.stereo.Stereotype;
import net.sourceforge.plantuml.style.ISkinParam;
import net.sourceforge.plantuml.style.PName;
import net.sourceforge.plantuml.style.SName;
import net.sourceforge.plantuml.style.Style;
import net.sourceforge.plantuml.style.StyleSignatureBasic;
import net.sourceforge.plantuml.utils.Direction;
class ITFComposed extends WBSTextBlock implements ITF {
private final List left;
private final List right;
private final TextBlock main;
final private double delta1x = 10;
final private double marginBottom;// = 15;
private final WElement idea;
private ITFComposed(ISkinParam skinParam, WElement idea, List left, List right) {
super(skinParam, idea.getStyleBuilder(), idea.getLevel(), idea.getStereotype());
this.idea = idea;
this.left = left;
this.right = right;
this.main = buildMain(idea);
final Style style = idea.getStyle();
this.marginBottom = style.getMargin().getBottom();
}
public static ITF build2(ISkinParam skinParam, WElement idea) {
if (idea.isLeaf())
return new ITFLeaf(idea, idea.withBackColor(skinParam));
final List left = new ArrayList<>();
final List right = new ArrayList<>();
for (WElement child : idea.getChildren(Direction.LEFT))
left.add(build2(skinParam, child));
for (WElement child : idea.getChildren(Direction.RIGHT))
right.add(build2(skinParam, child));
return new ITFComposed(skinParam, idea, left, right);
}
final protected double getw1(StringBounder stringBounder) {
final XDimension2D mainDim = main.calculateDimension(stringBounder);
final double mainWidth = mainDim.getWidth();
return Math.max(mainWidth / 2, delta1x + getCollWidth(stringBounder, left));
}
final public XPoint2D getT1(StringBounder stringBounder) {
final double x = getw1(stringBounder);
final double y = 0;
return new XPoint2D(x, y);
}
final public XPoint2D getT2(StringBounder stringBounder) {
final XDimension2D mainDim = main.calculateDimension(stringBounder);
final double x = getw1(stringBounder);
final double y = mainDim.getHeight();
return new XPoint2D(x, y);
}
final public XPoint2D getF1(StringBounder stringBounder) {
final XDimension2D mainDim = main.calculateDimension(stringBounder);
final double x = getw1(stringBounder) - mainDim.getWidth() / 2;
final double y = mainDim.getHeight() / 2;
return new XPoint2D(x, y);
}
final public XPoint2D getF2(StringBounder stringBounder) {
final XDimension2D mainDim = main.calculateDimension(stringBounder);
final double x = getw1(stringBounder) + mainDim.getWidth() / 2;
final double y = mainDim.getHeight() / 2;
return new XPoint2D(x, y);
}
public final XDimension2D calculateDimension(StringBounder stringBounder) {
final XDimension2D mainDim = main.calculateDimension(stringBounder);
final double mainWidth = mainDim.getWidth();
final double height = mainDim.getHeight() + Math.max(getCollHeight(stringBounder, left, marginBottom),
getCollHeight(stringBounder, right, marginBottom));
final double width = Math.max(mainWidth / 2, delta1x + getCollWidth(stringBounder, left))
+ Math.max(mainWidth / 2, delta1x + getCollWidth(stringBounder, right));
return new XDimension2D(width, height);
}
public void drawU(final UGraphic ug) {
final StringBounder stringBounder = ug.getStringBounder();
final XDimension2D mainDim = main.calculateDimension(stringBounder);
if (ug instanceof AbstractCommonUGraphic) {
final UTranslate translate = ((AbstractCommonUGraphic) ug).getTranslate();
idea.setGeometry(translate, mainDim);
}
final double wx = getw1(stringBounder) - mainDim.getWidth() / 2;
main.drawU(ug.apply(UTranslate.dx(wx)));
final double x = getw1(stringBounder);
double y = mainDim.getHeight();
double lastY1 = y;
final HColor lineColor = getLinkColor();
for (ITF child : left) {
y += marginBottom;
final XDimension2D childDim = child.calculateDimension(stringBounder);
lastY1 = y + child.getF2(stringBounder).getY();
drawLine(ug.apply(lineColor), x - childDim.getWidth() - delta1x + child.getF2(stringBounder).getX(), lastY1, x, lastY1);
child.drawU(ug.apply(new UTranslate(x - childDim.getWidth() - delta1x, y)));
y += childDim.getHeight();
}
y = mainDim.getHeight();
double lastY2 = y;
for (ITF child : right) {
y += marginBottom;
final XDimension2D childDim = child.calculateDimension(stringBounder);
lastY2 = y + child.getF1(stringBounder).getY();
drawLine(ug.apply(lineColor), x, lastY2, x + delta1x + child.getF1(stringBounder).getX(), lastY2);
child.drawU(ug.apply(new UTranslate(x + delta1x, y)));
y += childDim.getHeight();
}
drawLine(ug.apply(lineColor), x, mainDim.getHeight(), x, Math.max(lastY1, lastY2));
}
private HColor getLinkColor() {
final Style styleArrow = idea.getStyle().getSignature().withTOBECHANGED(idea.getStereotype())
.getMergedStyle(idea.getStyleBuilder());
return styleArrow.value(PName.LineColor).asColor(skinParam.getIHtmlColorSet());
}
final private double getCollWidth(StringBounder stringBounder, Collection extends TextBlock> all) {
double result = 0;
for (TextBlock child : all)
result = Math.max(result, child.calculateDimension(stringBounder).getWidth());
return result;
}
final private double getCollHeight(StringBounder stringBounder, Collection extends TextBlock> all,
double deltay) {
double result = 0;
for (TextBlock child : all)
result += deltay + child.calculateDimension(stringBounder).getHeight();
return result;
}
}