1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-03 09:00:48 +00:00
plantuml/src/net/sourceforge/plantuml/svek/ClusterDecoration.java

92 lines
3.1 KiB
Java
Raw Normal View History

2013-12-10 19:36:50 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2022-03-07 19:33:46 +00:00
* (C) Copyright 2009-2023, Arnaud Roques
2013-12-10 19:36:50 +00:00
*
2016-03-06 16:47:34 +00:00
* Project Info: http://plantuml.com
2013-12-10 19:36:50 +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
*
2013-12-10 19:36:50 +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
* 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
* Modified by : Arno Peterson
*
*
*/
package net.sourceforge.plantuml.svek;
2017-12-11 21:02:10 +00:00
import net.sourceforge.plantuml.graphic.HorizontalAlignment;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.graphic.SymbolContext;
import net.sourceforge.plantuml.graphic.TextBlock;
import net.sourceforge.plantuml.graphic.USymbol;
import net.sourceforge.plantuml.ugraphic.UGraphic;
import net.sourceforge.plantuml.ugraphic.UStroke;
import net.sourceforge.plantuml.ugraphic.UTranslate;
2020-03-18 10:50:02 +00:00
import net.sourceforge.plantuml.ugraphic.color.HColor;
2013-12-10 19:36:50 +00:00
public class ClusterDecoration {
2019-08-26 17:07:21 +00:00
private final UStroke defaultStroke;
2013-12-10 19:36:50 +00:00
final private USymbol symbol;
final private TextBlock title;
final private TextBlock stereo;
final private double minX;
final private double minY;
final private double maxX;
final private double maxY;
2015-08-05 20:17:01 +00:00
public ClusterDecoration(PackageStyle style, USymbol symbol, TextBlock title, TextBlock stereo, double minX,
double minY, double maxX, double maxY, UStroke stroke) {
this.symbol = guess(symbol, style);
2013-12-10 19:36:50 +00:00
this.stereo = stereo;
this.title = title;
this.minX = minX;
this.minY = minY;
this.maxX = maxX;
this.maxY = maxY;
2015-04-07 18:18:37 +00:00
this.defaultStroke = stroke;
2013-12-10 19:36:50 +00:00
}
2015-08-05 20:17:01 +00:00
private static USymbol guess(USymbol symbol, PackageStyle style) {
2013-12-10 19:36:50 +00:00
if (symbol != null) {
2015-08-05 20:17:01 +00:00
return symbol;
2013-12-10 19:36:50 +00:00
}
2015-08-05 20:17:01 +00:00
return style.toUSymbol();
2013-12-10 19:36:50 +00:00
}
2020-03-18 10:50:02 +00:00
public void drawU(UGraphic ug, HColor backColor, HColor borderColor, double shadowing, double roundCorner,
2022-02-24 18:18:19 +00:00
HorizontalAlignment titleAlignment, HorizontalAlignment stereoAlignment, double diagonalCorner) {
2015-08-05 20:17:01 +00:00
final SymbolContext biColor = new SymbolContext(backColor, borderColor);
2022-02-24 18:18:19 +00:00
if (symbol == null)
2015-08-05 20:17:01 +00:00
throw new UnsupportedOperationException();
2022-02-24 18:18:19 +00:00
2016-12-14 21:01:03 +00:00
final SymbolContext symbolContext = biColor.withShadow(shadowing).withStroke(defaultStroke)
2022-02-24 18:18:19 +00:00
.withCorner(roundCorner, diagonalCorner);
2021-04-20 20:19:49 +00:00
symbol.asBig(title, titleAlignment, stereo, maxX - minX, maxY - minY, symbolContext, stereoAlignment)
.drawU(ug.apply(new UTranslate(minX, minY)));
2015-08-05 20:17:01 +00:00
}
2013-12-10 19:36:50 +00:00
}