1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-01 08:00:48 +00:00
plantuml/src/net/sourceforge/plantuml/graphic/GraphicStrings.java

209 lines
7.1 KiB
Java
Raw Normal View History

2010-11-15 20:35:36 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2019-01-16 18:34:41 +00:00
* (C) Copyright 2009-2020, 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.geom.Dimension2D;
import java.awt.image.BufferedImage;
import java.util.List;
import net.sourceforge.plantuml.Dimension2DDouble;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.SpriteContainerEmpty;
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;
2015-04-07 18:18:37 +00:00
import net.sourceforge.plantuml.ugraphic.UChangeColor;
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;
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;
import net.sourceforge.plantuml.ugraphic.color.HColorUtils;
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
2020-03-18 10:50:02 +00:00
private final static HColor hyperlinkColor = HColorUtils.BLUE;
2010-11-15 20:35:36 +00:00
2019-05-24 19:59:31 +00:00
private final static boolean useUnderlineForHyperlink = true;
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) {
2020-03-18 10:50:02 +00:00
return HColorUtils.BLACK;
2019-05-24 19:59:31 +00:00
}
2020-03-18 10:50:02 +00:00
return HColorUtils.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) {
2020-03-18 10:50:02 +00:00
return HColorUtils.RED_LIGHT;
2015-04-07 18:18:37 +00:00
}
2020-03-18 10:50:02 +00:00
return HColorUtils.BLACK;
2016-11-18 21:12:09 +00:00
}
public static TextBlockBackcolored createGreenOnBlackMonospaced(List<String> strings) {
2020-03-18 10:50:02 +00:00
return new GraphicStrings(strings, monospaced14(HColorUtils.GREEN), HColorUtils.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) {
2020-03-18 10:50:02 +00:00
return new GraphicStrings(strings, sansSerif12(HColorUtils.BLACK), HColorUtils.WHITE, null, null,
2019-05-24 19:59:31 +00:00
CreoleMode.FULL);
2016-11-18 21:12:09 +00:00
}
public static TextBlockBackcolored createBlackOnWhiteMonospaced(List<String> strings) {
2020-03-18 10:50:02 +00:00
return new GraphicStrings(strings, monospaced14(HColorUtils.BLACK), HColorUtils.WHITE, null, null,
2019-05-24 19:59:31 +00:00
CreoleMode.FULL);
2016-11-18 21:12:09 +00:00
}
public static TextBlockBackcolored createBlackOnWhite(List<String> strings, BufferedImage image,
GraphicPosition position) {
2020-03-18 10:50:02 +00:00
return new GraphicStrings(strings, sansSerif12(HColorUtils.BLACK), HColorUtils.WHITE, image, position,
2019-05-24 19:59:31 +00:00
CreoleMode.FULL);
2016-11-18 21:12:09 +00:00
}
2020-03-18 10:50:02 +00:00
private static FontConfiguration sansSerif12(HColor color) {
2019-05-24 19:59:31 +00:00
return new FontConfiguration(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) {
2019-05-24 19:59:31 +00:00
return new FontConfiguration(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) {
2019-05-24 19:59:31 +00:00
return new FontConfiguration(UFont.monospaced(14), color, hyperlinkColor, useUnderlineForHyperlink);
}
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));
final Dimension2D size = calculateDimensionInternal(ug.getStringBounder());
2019-05-24 19:59:31 +00:00
getTextBlock().drawU(ug.apply(new UChangeColor(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()))
.draw(new UImage(image));
} 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()))
.draw(new UImage(image));
2015-04-07 18:18:37 +00:00
} else if (position == GraphicPosition.BACKGROUND_CORNER_TOP_RIGHT) {
ug.apply(new UTranslate(size.getWidth() - image.getWidth() - 1, 1)).draw(new UImage(image));
2010-11-15 20:35:36 +00:00
}
}
2011-08-08 17:48:29 +00:00
}
2013-12-10 19:36:50 +00:00
public Dimension2D calculateDimension(StringBounder stringBounder) {
2016-11-18 21:12:09 +00:00
return Dimension2DDouble.delta(calculateDimensionInternal(stringBounder), 2 * margin);
}
private Dimension2D calculateDimensionInternal(StringBounder stringBounder) {
2015-04-07 18:18:37 +00:00
Dimension2D dim = getTextBlock().calculateDimension(stringBounder);
if (image != null) {
if (position == GraphicPosition.BOTTOM) {
dim = new Dimension2DDouble(dim.getWidth(), dim.getHeight() + image.getHeight());
} else if (position == GraphicPosition.BACKGROUND_CORNER_BOTTOM_RIGHT) {
2019-09-14 18:12:04 +00:00
dim = new Dimension2DDouble(dim.getWidth() + imagePadding + image.getWidth(), dim.getHeight());
2015-04-07 18:18:37 +00:00
} else if (position == GraphicPosition.BACKGROUND_CORNER_TOP_RIGHT) {
2019-09-14 18:12:04 +00:00
dim = new Dimension2DDouble(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
}