1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-05-31 23:50:49 +00:00
plantuml/src/net/sourceforge/plantuml/activitydiagram3/ftile/vcompact/FtileFactoryDelegatorAssembly.java

109 lines
4.4 KiB
Java
Raw Normal View History

2013-12-10 19:36:50 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2016-01-09 12:15:40 +00:00
* (C) Copyright 2009-2017, 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
*
* 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.
*
* [Java is a trademark or registered trademark of Sun Microsystems, Inc.
* in the United States and other countries.]
*
* Original Author: Arnaud Roques
*
* Revision $Revision: 8475 $
*
*/
package net.sourceforge.plantuml.activitydiagram3.ftile.vcompact;
import java.awt.geom.Point2D;
import net.sourceforge.plantuml.FontParam;
import net.sourceforge.plantuml.ISkinParam;
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;
2015-07-11 09:32:49 +00:00
import net.sourceforge.plantuml.creole.CreoleMode;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.cucadiagram.Display;
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;
import net.sourceforge.plantuml.skin.rose.Rose;
import net.sourceforge.plantuml.ugraphic.UFont;
import net.sourceforge.plantuml.ugraphic.UTranslate;
public class FtileFactoryDelegatorAssembly extends FtileFactoryDelegator {
public FtileFactoryDelegatorAssembly(FtileFactory factory, ISkinParam skinParam) {
super(factory, skinParam);
}
@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);
final Point2D p1 = geo.translate(translate1).getPointOut();
2013-12-10 19:36:50 +00:00
final UTranslate translate2 = result.getTranslateFor(tile2, stringBounder);
2015-04-07 18:18:37 +00:00
final Point2D p2 = tile2.calculateDimension(stringBounder).translate(translate2).getPointIn();
2013-12-10 19:36:50 +00:00
final HtmlColor color = getInLinkRenderingColor(tile2);
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;
}
private final Rose rose = new Rose();
}