plantuml/src/net/sourceforge/plantuml/graphic/GraphicStrings.java

209 lines
7.3 KiB
Java
Raw Normal View History

2010-11-15 20:35:36 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2022-03-07 19:33:46 +00:00
* (C) Copyright 2009-2023, Arnaud Roques
2010-11-15 20:35:36 +00:00
*
2016-03-06 16:47:34 +00:00
* Project Info: http://plantuml.com
2010-11-15 20:35:36 +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
*
2010-11-15 20:35:36 +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
2010-11-15 20:35:36 +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.graphic;
import java.awt.image.BufferedImage;
import java.util.List;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.SpriteContainerEmpty;
2022-09-12 20:08:34 +00:00
import net.sourceforge.plantuml.awt.geom.XDimension2D;
2019-05-24 19:59:31 +00:00
import net.sourceforge.plantuml.creole.CreoleMode;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.cucadiagram.Display;
2011-08-08 17:48:29 +00:00
import net.sourceforge.plantuml.svek.IEntityImage;
2017-04-05 17:37:42 +00:00
import net.sourceforge.plantuml.svek.Margins;
2011-08-08 17:48:29 +00:00
import net.sourceforge.plantuml.svek.ShapeType;
2016-11-18 21:12:09 +00:00
import net.sourceforge.plantuml.svek.TextBlockBackcolored;
2020-06-07 10:03:18 +00:00
import net.sourceforge.plantuml.ugraphic.AffineTransformType;
import net.sourceforge.plantuml.ugraphic.PixelImage;
2011-08-08 17:48:29 +00:00
import net.sourceforge.plantuml.ugraphic.UFont;
2010-11-15 20:35:36 +00:00
import net.sourceforge.plantuml.ugraphic.UGraphic;
import net.sourceforge.plantuml.ugraphic.UImage;
2022-10-05 20:32:57 +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;
2022-08-19 16:34:21 +00:00
import net.sourceforge.plantuml.ugraphic.color.HColors;
2010-11-15 20:35:36 +00:00
2015-06-07 10:23:10 +00:00
public class GraphicStrings extends AbstractTextBlock implements IEntityImage {
2010-11-15 20:35:36 +00:00
2016-11-18 21:12:09 +00:00
private final double margin = 5;
2020-03-18 10:50:02 +00:00
private final HColor background;
2010-11-15 20:35:36 +00:00
2022-08-19 16:34:21 +00:00
private final static HColor hyperlinkColor = HColors.BLUE;
2010-11-15 20:35:36 +00:00
2022-10-05 20:32:57 +00:00
private final static UStroke useUnderlineForHyperlink = new UStroke();
2015-04-07 18:18:37 +00:00
2010-11-15 20:35:36 +00:00
private final List<String> strings;
private final BufferedImage image;
2019-09-14 18:12:04 +00:00
private final double imagePadding = 30;
2010-11-15 20:35:36 +00:00
private final GraphicPosition position;
2019-05-24 19:59:31 +00:00
private final FontConfiguration fontConfiguration;
2016-11-18 21:12:09 +00:00
public static IEntityImage createForError(List<String> strings, boolean useRed) {
2019-05-24 19:59:31 +00:00
return new GraphicStrings(strings, sansSerif14(getForeColor(useRed)).bold(), getBackColor(useRed), null, null,
CreoleMode.NO_CREOLE);
}
2020-03-18 10:50:02 +00:00
private static HColor getForeColor(boolean useRed) {
2019-05-24 19:59:31 +00:00
if (useRed) {
2022-08-19 16:34:21 +00:00
return HColors.BLACK;
2019-05-24 19:59:31 +00:00
}
2022-08-19 16:34:21 +00:00
return HColors.MY_GREEN;
2019-05-24 19:59:31 +00:00
}
2020-03-18 10:50:02 +00:00
private static HColor getBackColor(boolean useRed) {
2015-04-07 18:18:37 +00:00
if (useRed) {
2022-08-19 16:34:21 +00:00
return HColors.RED_LIGHT;
2015-04-07 18:18:37 +00:00
}
2022-08-19 16:34:21 +00:00
return HColors.BLACK;
2016-11-18 21:12:09 +00:00
}
public static TextBlockBackcolored createGreenOnBlackMonospaced(List<String> strings) {
2022-08-19 16:34:21 +00:00
return new GraphicStrings(strings, monospaced14(HColors.GREEN), HColors.BLACK, null, null,
2019-05-24 19:59:31 +00:00
CreoleMode.SIMPLE_LINE);
2016-11-18 21:12:09 +00:00
}
public static TextBlockBackcolored createBlackOnWhite(List<String> strings) {
2022-10-05 20:32:57 +00:00
return new GraphicStrings(strings, sansSerif12(HColors.BLACK), HColors.WHITE, null, null, CreoleMode.FULL);
2016-11-18 21:12:09 +00:00
}
public static TextBlockBackcolored createBlackOnWhiteMonospaced(List<String> strings) {
2022-10-05 20:32:57 +00:00
return new GraphicStrings(strings, monospaced14(HColors.BLACK), HColors.WHITE, null, null, CreoleMode.FULL);
2016-11-18 21:12:09 +00:00
}
public static TextBlockBackcolored createBlackOnWhite(List<String> strings, BufferedImage image,
GraphicPosition position) {
2022-08-19 16:34:21 +00:00
return new GraphicStrings(strings, sansSerif12(HColors.BLACK), HColors.WHITE, image, position,
2022-09-15 17:24:26 +00:00
CreoleMode.FULL_BUT_UNDERSCORE);
2016-11-18 21:12:09 +00:00
}
2020-06-28 12:40:33 +00:00
public static FontConfiguration sansSerif12(HColor color) {
2022-03-19 12:48:23 +00:00
return FontConfiguration.create(UFont.sansSerif(12), color, hyperlinkColor, useUnderlineForHyperlink);
2010-11-15 20:35:36 +00:00
}
2020-03-18 10:50:02 +00:00
public static FontConfiguration sansSerif14(HColor color) {
2022-03-19 12:48:23 +00:00
return FontConfiguration.create(UFont.sansSerif(14), color, hyperlinkColor, useUnderlineForHyperlink);
2010-11-15 20:35:36 +00:00
}
2020-03-18 10:50:02 +00:00
private static FontConfiguration monospaced14(HColor color) {
2022-03-19 12:48:23 +00:00
return FontConfiguration.create(UFont.monospaced(14), color, hyperlinkColor, useUnderlineForHyperlink);
2019-05-24 19:59:31 +00:00
}
private final CreoleMode mode;
2020-03-18 10:50:02 +00:00
private GraphicStrings(List<String> strings, FontConfiguration fontConfiguration, HColor background,
2019-05-24 19:59:31 +00:00
BufferedImage image, GraphicPosition position, CreoleMode mode) {
2010-11-15 20:35:36 +00:00
this.strings = strings;
this.background = background;
this.image = image;
this.position = position;
2019-05-24 19:59:31 +00:00
this.mode = mode;
this.fontConfiguration = fontConfiguration;
2010-11-15 20:35:36 +00:00
}
2015-04-07 18:18:37 +00:00
private TextBlock getTextBlock() {
2019-05-24 19:59:31 +00:00
final Display display = Display.create(strings);
if (mode == CreoleMode.NO_CREOLE) {
return new TextBlockRaw(strings, fontConfiguration);
} else {
2020-04-05 15:13:04 +00:00
return display.create7(fontConfiguration, HorizontalAlignment.LEFT, new SpriteContainerEmpty(), mode);
2019-05-24 19:59:31 +00:00
}
2013-12-10 19:36:50 +00:00
}
2015-04-07 18:18:37 +00:00
public void drawU(UGraphic ug) {
2016-11-18 21:12:09 +00:00
ug = ug.apply(new UTranslate(margin, margin));
2022-09-12 20:08:34 +00:00
final XDimension2D size = calculateDimensionInternal(ug.getStringBounder());
2020-04-19 16:04:39 +00:00
getTextBlock().drawU(ug.apply(fontConfiguration.getColor()));
2010-11-15 20:35:36 +00:00
if (image != null) {
if (position == GraphicPosition.BOTTOM) {
2015-04-07 18:18:37 +00:00
ug.apply(new UTranslate((size.getWidth() - image.getWidth()) / 2, size.getHeight() - image.getHeight()))
2020-06-07 10:03:18 +00:00
.draw(new UImage(new PixelImage(image, AffineTransformType.TYPE_BILINEAR)));
2015-04-07 18:18:37 +00:00
} else if (position == GraphicPosition.BACKGROUND_CORNER_BOTTOM_RIGHT) {
2013-12-10 19:36:50 +00:00
ug.apply(new UTranslate(size.getWidth() - image.getWidth(), size.getHeight() - image.getHeight()))
2020-06-07 10:03:18 +00:00
.draw(new UImage(new PixelImage(image, AffineTransformType.TYPE_BILINEAR)));
2015-04-07 18:18:37 +00:00
} else if (position == GraphicPosition.BACKGROUND_CORNER_TOP_RIGHT) {
2020-06-07 10:03:18 +00:00
ug.apply(new UTranslate(size.getWidth() - image.getWidth() - 1, 1))
.draw(new UImage(new PixelImage(image, AffineTransformType.TYPE_BILINEAR)));
2010-11-15 20:35:36 +00:00
}
}
2011-08-08 17:48:29 +00:00
}
2022-09-12 20:08:34 +00:00
public XDimension2D calculateDimension(StringBounder stringBounder) {
return XDimension2D.delta(calculateDimensionInternal(stringBounder), 2 * margin);
2016-11-18 21:12:09 +00:00
}
2022-09-12 20:08:34 +00:00
private XDimension2D calculateDimensionInternal(StringBounder stringBounder) {
XDimension2D dim = getTextBlock().calculateDimension(stringBounder);
2015-04-07 18:18:37 +00:00
if (image != null) {
if (position == GraphicPosition.BOTTOM) {
2022-09-12 20:08:34 +00:00
dim = new XDimension2D(dim.getWidth(), dim.getHeight() + image.getHeight());
2015-04-07 18:18:37 +00:00
} else if (position == GraphicPosition.BACKGROUND_CORNER_BOTTOM_RIGHT) {
2022-09-12 20:08:34 +00:00
dim = new XDimension2D(dim.getWidth() + imagePadding + image.getWidth(), dim.getHeight());
2015-04-07 18:18:37 +00:00
} else if (position == GraphicPosition.BACKGROUND_CORNER_TOP_RIGHT) {
2022-09-12 20:08:34 +00:00
dim = new XDimension2D(dim.getWidth() + imagePadding + image.getWidth(), dim.getHeight());
2015-04-07 18:18:37 +00:00
}
}
return dim;
2011-08-08 17:48:29 +00:00
}
public ShapeType getShapeType() {
return ShapeType.RECTANGLE;
}
2020-03-18 10:50:02 +00:00
public HColor getBackcolor() {
2011-08-08 17:48:29 +00:00
return background;
}
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 false;
}
2019-05-24 19:59:31 +00:00
2018-12-22 11:11:40 +00:00
public double getOverscanX(StringBounder stringBounder) {
return 0;
}
2010-11-15 20:35:36 +00:00
}