1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-02 08:30:49 +00:00
plantuml/src/net/sourceforge/plantuml/svek/InnerStateAutonom.java

149 lines
5.3 KiB
Java
Raw Normal View History

2011-08-08 17:48:29 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2016-01-09 12:15:40 +00:00
* (C) Copyright 2009-2017, Arnaud Roques
2011-08-08 17:48:29 +00:00
*
* Project Info: http://plantuml.sourceforge.net
*
* 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.
*
* [Java is a trademark or registered trademark of Sun Microsystems, Inc.
* in the United States and other countries.]
*
* Original Author: Arnaud Roques
*
* Revision $Revision: 6711 $
*
*/
package net.sourceforge.plantuml.svek;
import java.awt.geom.Dimension2D;
import net.sourceforge.plantuml.Dimension2DDouble;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.Url;
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.HtmlColor;
import net.sourceforge.plantuml.graphic.StringBounder;
import net.sourceforge.plantuml.graphic.TextBlock;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.graphic.TextBlockWidth;
import net.sourceforge.plantuml.svek.image.EntityImageState;
import net.sourceforge.plantuml.ugraphic.UChangeColor;
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;
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;
2013-12-10 19:36:50 +00:00
private final TextBlockWidth attribute;
2011-08-08 17:48:29 +00:00
private final HtmlColor borderColor;
private final HtmlColor backColor;
2013-12-10 19:36:50 +00:00
private final boolean shadowing;
private final Url url;
private final boolean withSymbol;
2015-04-07 18:18:37 +00:00
private final UStroke stroke;
2011-08-08 17:48:29 +00:00
2013-12-10 19:36:50 +00:00
public InnerStateAutonom(final IEntityImage im, final TextBlock title, TextBlockWidth attribute,
2015-04-07 18:18:37 +00:00
HtmlColor borderColor, HtmlColor backColor, boolean shadowing, Url url, boolean withSymbol, UStroke stroke) {
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;
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,
2015-04-07 18:18:37 +00:00
borderColor, backColor, im.getBackcolor(), stroke);
2011-08-08 17:48:29 +00:00
2013-12-10 19:36:50 +00:00
if (url != null) {
ug.startUrl(url);
}
r.drawU(ug, shadowing);
title.drawU(ug.apply(new UTranslate((total.getWidth() - text.getWidth()) / 2, IEntityImage.MARGIN)));
attribute.asTextBlock(total.getWidth()).drawU(
ug.apply(new UTranslate(0 + IEntityImage.MARGIN, IEntityImage.MARGIN + text.getHeight()
+ IEntityImage.MARGIN)));
final double spaceYforURL = getSpaceYforURL(ug.getStringBounder());
im.drawU(ug.apply(new UTranslate(IEntityImage.MARGIN, spaceYforURL)));
if (withSymbol) {
EntityImageState.drawSymbol(ug.apply(new UChangeColor(borderColor)), total.getWidth(), total.getHeight());
}
if (url != null) {
ug.closeAction();
}
}
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
}
public HtmlColor getBackcolor() {
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
2013-12-10 19:36:50 +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
2011-09-07 20:41:58 +00:00
public int getShield() {
return 0;
}
2013-12-10 19:36:50 +00:00
public boolean isHidden() {
return im.isHidden();
}
2011-08-08 17:48:29 +00:00
}