plantuml/src/net/sourceforge/plantuml/activitydiagram3/ftile/vcompact/FtileFactoryDelegatorAssemb...

101 lines
4.1 KiB
Java
Raw Normal View History

2013-12-10 19:36:50 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2022-03-07 19:33:46 +00:00
* (C) Copyright 2009-2023, 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.vcompact;
import net.sourceforge.plantuml.activitydiagram3.ftile.Ftile;
import net.sourceforge.plantuml.activitydiagram3.ftile.FtileFactory;
import net.sourceforge.plantuml.activitydiagram3.ftile.FtileFactoryDelegator;
2015-04-07 18:18:37 +00:00
import net.sourceforge.plantuml.activitydiagram3.ftile.FtileGeometry;
2015-07-11 09:32:49 +00:00
import net.sourceforge.plantuml.activitydiagram3.ftile.FtileMargedRight;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.activitydiagram3.ftile.FtileUtils;
2022-09-12 20:08:34 +00:00
import net.sourceforge.plantuml.awt.geom.XPoint2D;
2016-05-11 21:31:47 +00:00
import net.sourceforge.plantuml.graphic.Rainbow;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.graphic.StringBounder;
import net.sourceforge.plantuml.graphic.TextBlock;
import net.sourceforge.plantuml.skin.rose.Rose;
import net.sourceforge.plantuml.ugraphic.UTranslate;
public class FtileFactoryDelegatorAssembly extends FtileFactoryDelegator {
2016-06-19 14:16:41 +00:00
public FtileFactoryDelegatorAssembly(FtileFactory factory) {
super(factory);
2013-12-10 19:36:50 +00:00
}
@Override
public Ftile assembly(final Ftile tile1, final Ftile tile2) {
double height = 35;
final TextBlock textBlock = getTextBlock(getInLinkRenderingDisplay(tile2));
final StringBounder stringBounder = getStringBounder();
if (textBlock != null) {
height += textBlock.calculateDimension(stringBounder).getHeight();
}
2015-04-07 18:18:37 +00:00
// final Ftile space = new FtileEmpty(getFactory().shadowing(), 1, height);
final Ftile tile1andSpace = FtileUtils.addBottom(tile1, height);
2013-12-10 19:36:50 +00:00
Ftile result = super.assembly(tile1andSpace, tile2);
2015-04-07 18:18:37 +00:00
final FtileGeometry geo = tile1.calculateDimension(stringBounder);
if (geo.hasPointOut() == false) {
2013-12-10 19:36:50 +00:00
return result;
}
2015-04-07 18:18:37 +00:00
final UTranslate translate1 = result.getTranslateFor(tile1andSpace, stringBounder);
2022-09-12 20:08:34 +00:00
final XPoint2D p1 = geo.translate(translate1).getPointOut();
2013-12-10 19:36:50 +00:00
final UTranslate translate2 = result.getTranslateFor(tile2, stringBounder);
2022-09-12 20:08:34 +00:00
final XPoint2D p2 = tile2.calculateDimension(stringBounder).translate(translate2).getPointIn();
2013-12-10 19:36:50 +00:00
2016-05-11 21:31:47 +00:00
final Rainbow color = getInLinkRenderingColor(tile2);
2013-12-10 19:36:50 +00:00
final ConnectionVerticalDown connection = new ConnectionVerticalDown(tile1, tile2, p1, p2, color, textBlock);
result = FtileUtils.addConnection(result, connection);
if (textBlock != null) {
2015-07-11 09:32:49 +00:00
final FtileGeometry dim = result.calculateDimension(stringBounder);
final double width = dim.getWidth();
2013-12-10 19:36:50 +00:00
// System.err.println("width=" + width);
// System.err.println("p1=" + p1);
// System.err.println("p2=" + p2);
final double maxX = connection.getMaxX(stringBounder);
2015-07-11 09:32:49 +00:00
// System.err.println("FtileFactoryDelegatorAssembly dim=" + dim);
2013-12-10 19:36:50 +00:00
// System.err.println("maxX=" + maxX);
final double needed = (maxX - width) * 2;
2015-07-11 09:32:49 +00:00
// result = new FtileMinWidth(result, needed);
if (width < maxX) {
result = new FtileMargedRight(result, maxX);
}
// System.err.println("FtileFactoryDelegatorAssembly result=" + result.calculateDimension(stringBounder));
2013-12-10 19:36:50 +00:00
}
return result;
}
}