1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-16 15:12:24 +00:00
plantuml/src/net/sourceforge/plantuml/wbs/WBSTextBlock.java

107 lines
3.9 KiB
Java
Raw Normal View History

2019-03-29 22:14:07 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
* (C) Copyright 2009-2020, Arnaud Roques
*
* Project Info: http://plantuml.com
*
* 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
*
* 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.
*
*
* Original Author: Arnaud Roques
*
*
*/
package net.sourceforge.plantuml.wbs;
import java.awt.geom.Point2D;
import net.sourceforge.plantuml.ColorParam;
import net.sourceforge.plantuml.ISkinParam;
2020-12-01 21:39:27 +00:00
import net.sourceforge.plantuml.UseStyle;
2021-07-25 10:41:36 +00:00
import net.sourceforge.plantuml.activitydiagram3.ftile.vertical.FtileBoxOld;
2021-03-12 18:16:16 +00:00
import net.sourceforge.plantuml.creole.CreoleMode;
2019-03-29 22:14:07 +00:00
import net.sourceforge.plantuml.cucadiagram.Display;
import net.sourceforge.plantuml.graphic.AbstractTextBlock;
import net.sourceforge.plantuml.graphic.TextBlock;
2021-03-12 18:16:16 +00:00
import net.sourceforge.plantuml.graphic.TextBlockUtils;
2019-03-29 22:14:07 +00:00
import net.sourceforge.plantuml.mindmap.IdeaShape;
2019-08-26 17:07:21 +00:00
import net.sourceforge.plantuml.style.SName;
import net.sourceforge.plantuml.style.Style;
import net.sourceforge.plantuml.style.StyleBuilder;
import net.sourceforge.plantuml.style.StyleSignature;
2019-03-29 22:14:07 +00:00
import net.sourceforge.plantuml.ugraphic.UGraphic;
import net.sourceforge.plantuml.ugraphic.ULine;
import net.sourceforge.plantuml.ugraphic.UTranslate;
2020-03-18 10:50:02 +00:00
import net.sourceforge.plantuml.ugraphic.color.HColor;
2019-03-29 22:14:07 +00:00
2019-08-26 17:07:21 +00:00
abstract class WBSTextBlock extends AbstractTextBlock {
2019-03-29 22:14:07 +00:00
protected final ISkinParam skinParam;
2019-08-26 17:07:21 +00:00
private final StyleBuilder styleBuilder;
private final int level;
2019-03-29 22:14:07 +00:00
2019-08-26 17:07:21 +00:00
public WBSTextBlock(ISkinParam skinParam, StyleBuilder styleBuilder, int level) {
2019-03-29 22:14:07 +00:00
this.skinParam = skinParam;
2019-08-26 17:07:21 +00:00
this.styleBuilder = styleBuilder;
this.level = level;
2019-03-29 22:14:07 +00:00
}
final protected void drawLine(UGraphic ug, Point2D p1, Point2D p2) {
final ULine line = new ULine(p1, p2);
2020-12-01 21:39:27 +00:00
if (UseStyle.useBetaStyle()) {
2021-05-06 21:23:05 +00:00
getStyleUsed().applyStrokeAndLineColor(ug.apply(new UTranslate(p1)), skinParam.getIHtmlColorSet(),
2021-07-25 10:41:36 +00:00
skinParam.getThemeStyle()).draw(line);
2019-08-26 17:07:21 +00:00
} else {
2020-03-18 10:50:02 +00:00
final HColor color = ColorParam.activityBorder.getDefaultValue();
2020-04-19 16:04:39 +00:00
ug.apply(new UTranslate(p1)).apply(color).draw(line);
2019-08-26 17:07:21 +00:00
}
}
private Style getStyleUsed() {
return getDefaultStyleDefinitionArrow().getMergedStyle(styleBuilder);
2019-03-29 22:14:07 +00:00
}
final protected void drawLine(UGraphic ug, double x1, double y1, double x2, double y2) {
drawLine(ug, new Point2D.Double(x1, y1), new Point2D.Double(x2, y2));
}
2019-08-26 17:07:21 +00:00
final public StyleSignature getDefaultStyleDefinitionArrow() {
return StyleSignature.of(SName.root, SName.element, SName.wbsDiagram, SName.arrow).add(SName.depth(level));
}
2019-03-29 22:14:07 +00:00
final protected TextBlock buildMain(WElement idea) {
2021-03-07 12:23:24 +00:00
final Display label = idea.getLabel();
final Style style = idea.getStyle();
2019-03-29 22:14:07 +00:00
if (idea.getShape() == IdeaShape.BOX) {
2021-07-25 10:41:36 +00:00
return FtileBoxOld.createWbs(style, idea.withBackColor(skinParam), label);
2019-03-29 22:14:07 +00:00
}
2021-05-06 21:23:05 +00:00
final TextBlock text = label.create0(
style.getFontConfiguration(skinParam.getThemeStyle(), skinParam.getIHtmlColorSet()),
2021-03-12 18:16:16 +00:00
style.getHorizontalAlignment(), skinParam, style.wrapWidth(), CreoleMode.FULL, null, null);
return TextBlockUtils.withMargin(text, 0, 3, 1, 1);
2019-03-29 22:14:07 +00:00
}
}