plantuml/src/net/sourceforge/plantuml/svek/InnerStateAutonom.java

150 lines
5.3 KiB
Java
Raw Normal View History

2011-08-08 17:48:29 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2022-03-07 19:33:46 +00:00
* (C) Copyright 2009-2023, Arnaud Roques
2011-08-08 17:48:29 +00:00
*
2016-03-06 16:47:34 +00:00
* Project Info: http://plantuml.com
2011-08-08 17:48:29 +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
*
2011-08-08 17:48:29 +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
2013-12-10 19:36:50 +00:00
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
2011-08-08 17:48:29 +00:00
* 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;
import net.sourceforge.plantuml.Dimension2DDouble;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.Url;
2022-05-04 17:52:00 +00:00
import net.sourceforge.plantuml.awt.geom.Dimension2D;
2015-06-07 10:23:10 +00:00
import net.sourceforge.plantuml.graphic.AbstractTextBlock;
2011-08-08 17:48:29 +00:00
import net.sourceforge.plantuml.graphic.StringBounder;
import net.sourceforge.plantuml.graphic.TextBlock;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.svek.image.EntityImageState;
2011-08-08 17:48:29 +00:00
import net.sourceforge.plantuml.ugraphic.UGraphic;
2015-04-07 18:18:37 +00:00
import net.sourceforge.plantuml.ugraphic.UStroke;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.ugraphic.UTranslate;
2020-03-18 10:50:02 +00:00
import net.sourceforge.plantuml.ugraphic.color.HColor;
2011-08-08 17:48:29 +00:00
2015-06-07 10:23:10 +00:00
public final class InnerStateAutonom extends AbstractTextBlock implements IEntityImage {
2011-08-08 17:48:29 +00:00
private final IEntityImage im;
private final TextBlock title;
2020-12-14 18:31:06 +00:00
private final TextBlock attribute;
2020-03-18 10:50:02 +00:00
private final HColor borderColor;
private final HColor backColor;
2013-12-10 19:36:50 +00:00
private final Url url;
private final boolean withSymbol;
2015-04-07 18:18:37 +00:00
private final UStroke stroke;
2021-10-17 09:02:33 +00:00
private final double rounded;
private final double shadowing;
2011-08-08 17:48:29 +00:00
2021-10-17 09:02:33 +00:00
public InnerStateAutonom(IEntityImage im, TextBlock title, TextBlock attribute, HColor borderColor,
HColor backColor, Url url, boolean withSymbol, UStroke stroke, double rounded, double shadowing) {
2011-08-08 17:48:29 +00:00
this.im = im;
2013-12-10 19:36:50 +00:00
this.withSymbol = withSymbol;
2011-08-08 17:48:29 +00:00
this.title = title;
this.borderColor = borderColor;
this.backColor = backColor;
2013-12-10 19:36:50 +00:00
this.shadowing = shadowing;
this.attribute = attribute;
this.url = url;
2015-04-07 18:18:37 +00:00
this.stroke = stroke;
2021-10-17 09:02:33 +00:00
this.rounded = rounded;
2011-08-08 17:48:29 +00:00
}
2013-12-10 19:36:50 +00:00
public void drawU(UGraphic ug) {
2011-08-08 17:48:29 +00:00
final Dimension2D text = title.calculateDimension(ug.getStringBounder());
2013-12-10 19:36:50 +00:00
final Dimension2D attr = attribute.calculateDimension(ug.getStringBounder());
final Dimension2D total = calculateDimension(ug.getStringBounder());
final double marginForFields = attr.getHeight() > 0 ? IEntityImage.MARGIN : 0;
2011-08-08 17:48:29 +00:00
2013-12-10 19:36:50 +00:00
final double titreHeight = IEntityImage.MARGIN + text.getHeight() + IEntityImage.MARGIN_LINE;
final RoundedContainer r = new RoundedContainer(total, titreHeight, attr.getHeight() + marginForFields,
2021-10-17 09:02:33 +00:00
borderColor, backColor, im.getBackcolor(), stroke, rounded, shadowing);
2011-08-08 17:48:29 +00:00
2022-02-12 17:27:51 +00:00
if (url != null)
2013-12-10 19:36:50 +00:00
ug.startUrl(url);
2021-10-17 09:02:33 +00:00
r.drawU(ug);
2013-12-10 19:36:50 +00:00
title.drawU(ug.apply(new UTranslate((total.getWidth() - text.getWidth()) / 2, IEntityImage.MARGIN)));
2020-12-14 18:31:06 +00:00
attribute.drawU(ug.apply(
new UTranslate(0 + IEntityImage.MARGIN, IEntityImage.MARGIN + text.getHeight() + IEntityImage.MARGIN)));
2013-12-10 19:36:50 +00:00
final double spaceYforURL = getSpaceYforURL(ug.getStringBounder());
im.drawU(ug.apply(new UTranslate(IEntityImage.MARGIN, spaceYforURL)));
2022-02-12 17:27:51 +00:00
if (withSymbol)
2020-04-19 16:04:39 +00:00
EntityImageState.drawSymbol(ug.apply(borderColor), total.getWidth(), total.getHeight());
2013-12-10 19:36:50 +00:00
2022-02-12 17:27:51 +00:00
if (url != null)
2020-05-17 21:15:50 +00:00
ug.closeUrl();
2022-02-12 17:27:51 +00:00
2013-12-10 19:36:50 +00:00
}
private double getSpaceYforURL(StringBounder stringBounder) {
final Dimension2D text = title.calculateDimension(stringBounder);
final Dimension2D attr = attribute.calculateDimension(stringBounder);
final double marginForFields = attr.getHeight() > 0 ? IEntityImage.MARGIN : 0;
final double titreHeight = IEntityImage.MARGIN + text.getHeight() + IEntityImage.MARGIN_LINE;
final double suppY = titreHeight + marginForFields + attr.getHeight();
return suppY + IEntityImage.MARGIN_LINE;
2011-08-08 17:48:29 +00:00
}
2020-03-18 10:50:02 +00:00
public HColor getBackcolor() {
2011-08-08 17:48:29 +00:00
return null;
}
2013-12-10 19:36:50 +00:00
public Dimension2D calculateDimension(StringBounder stringBounder) {
final Dimension2D img = im.calculateDimension(stringBounder);
2011-08-08 17:48:29 +00:00
final Dimension2D text = title.calculateDimension(stringBounder);
2013-12-10 19:36:50 +00:00
final Dimension2D attr = attribute.calculateDimension(stringBounder);
2011-08-08 17:48:29 +00:00
2013-12-10 19:36:50 +00:00
final Dimension2D dim = Dimension2DDouble.mergeTB(text, attr, img);
final double marginForFields = attr.getHeight() > 0 ? IEntityImage.MARGIN : 0;
2011-08-08 17:48:29 +00:00
2020-12-14 18:31:06 +00:00
final Dimension2D result = Dimension2DDouble.delta(dim,
IEntityImage.MARGIN * 2 + 2 * IEntityImage.MARGIN_LINE + marginForFields);
2011-08-08 17:48:29 +00:00
return result;
}
public ShapeType getShapeType() {
return ShapeType.ROUND_RECTANGLE;
}
2013-12-10 19:36:50 +00:00
2017-04-05 17:37:42 +00:00
public Margins getShield(StringBounder stringBounder) {
return Margins.NONE;
2011-09-07 20:41:58 +00:00
}
2013-12-10 19:36:50 +00:00
public boolean isHidden() {
return im.isHidden();
}
2020-12-14 18:31:06 +00:00
2018-12-22 11:11:40 +00:00
public double getOverscanX(StringBounder stringBounder) {
return 0;
}
2011-08-08 17:48:29 +00:00
}