1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-21 17:42:20 +00:00
plantuml/src/net/sourceforge/plantuml/activitydiagram3/ftile/vertical/FtileBlackBlock.java

134 lines
4.3 KiB
Java
Raw Normal View History

2013-12-10 19:36:50 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2019-01-16 18:34:41 +00:00
* (C) Copyright 2009-2020, 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
*
*
*/
package net.sourceforge.plantuml.activitydiagram3.ftile.vertical;
2017-01-21 22:25:28 +00:00
import java.awt.geom.Dimension2D;
2020-11-21 17:33:24 +00:00
import java.util.Collection;
2013-12-10 19:36:50 +00:00
import java.util.Collections;
2021-05-09 21:14:40 +00:00
import java.util.Objects;
2013-12-10 19:36:50 +00:00
import java.util.Set;
2016-06-19 14:16:41 +00:00
import net.sourceforge.plantuml.ISkinParam;
2022-02-01 20:21:45 +00:00
import net.sourceforge.plantuml.UseStyle;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.activitydiagram3.ftile.AbstractFtile;
2020-11-21 17:33:24 +00:00
import net.sourceforge.plantuml.activitydiagram3.ftile.Ftile;
2015-04-07 18:18:37 +00:00
import net.sourceforge.plantuml.activitydiagram3.ftile.FtileGeometry;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.activitydiagram3.ftile.Swimlane;
import net.sourceforge.plantuml.graphic.StringBounder;
2017-01-21 22:25:28 +00:00
import net.sourceforge.plantuml.graphic.TextBlock;
import net.sourceforge.plantuml.graphic.TextBlockUtils;
2022-02-01 20:21:45 +00:00
import net.sourceforge.plantuml.style.PName;
import net.sourceforge.plantuml.style.SName;
import net.sourceforge.plantuml.style.Style;
import net.sourceforge.plantuml.style.StyleSignature;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.ugraphic.UGraphic;
import net.sourceforge.plantuml.ugraphic.URectangle;
2017-01-21 22:25:28 +00:00
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 FtileBlackBlock extends AbstractFtile {
2017-01-21 22:25:28 +00:00
private final double labelMargin = 5;
2015-04-07 18:18:37 +00:00
private double width;
private double height;
2017-01-21 22:25:28 +00:00
private TextBlock label = TextBlockUtils.empty(0, 0);
2020-03-18 10:50:02 +00:00
private final HColor colorBar;
2013-12-10 19:36:50 +00:00
private final Swimlane swimlane;
2020-03-18 10:50:02 +00:00
public FtileBlackBlock(ISkinParam skinParam, HColor colorBar, Swimlane swimlane) {
2016-06-19 14:16:41 +00:00
super(skinParam);
2013-12-10 19:36:50 +00:00
this.colorBar = colorBar;
this.swimlane = swimlane;
}
2017-01-21 22:25:28 +00:00
public void setBlackBlockDimension(double width, double height) {
2015-04-07 18:18:37 +00:00
this.height = height;
this.width = width;
2013-12-10 19:36:50 +00:00
}
2017-01-21 22:25:28 +00:00
public void setLabel(TextBlock label) {
2021-05-09 21:14:40 +00:00
this.label = Objects.requireNonNull(label);
2017-01-21 22:25:28 +00:00
}
2017-11-20 16:10:36 +00:00
@Override
protected FtileGeometry calculateDimensionFtile(StringBounder stringBounder) {
2017-01-21 22:25:28 +00:00
double supp = label.calculateDimension(stringBounder).getWidth();
2022-02-01 20:21:45 +00:00
if (supp > 0)
2017-01-21 22:25:28 +00:00
supp += labelMargin;
2022-02-01 20:21:45 +00:00
2017-01-21 22:25:28 +00:00
return new FtileGeometry(width + supp, height, width / 2, 0, height);
2013-12-10 19:36:50 +00:00
}
2022-02-01 20:21:45 +00:00
private StyleSignature getDefaultStyleDefinitionBar() {
return StyleSignature.of(SName.root, SName.element, SName.activityBar);
}
2015-04-07 18:18:37 +00:00
public void drawU(UGraphic ug) {
2020-04-05 15:13:04 +00:00
final URectangle rect = new URectangle(width, height).rounded(5).ignoreForCompressionOnX();
2022-02-01 20:21:45 +00:00
if (UseStyle.useBetaStyle()) {
final Style style = getDefaultStyleDefinitionBar().getMergedStyle(skinParam().getCurrentStyleBuilder());
final double shadowing = style.value(PName.Shadowing).asDouble();
rect.setDeltaShadow(shadowing);
} else {
if (skinParam().shadowing(null))
rect.setDeltaShadow(3);
2015-04-07 18:18:37 +00:00
}
2022-02-01 20:21:45 +00:00
2020-04-19 16:04:39 +00:00
ug.apply(colorBar).apply(colorBar.bg()).draw(rect);
2017-01-21 22:25:28 +00:00
final Dimension2D dimLabel = label.calculateDimension(ug.getStringBounder());
label.drawU(ug.apply(new UTranslate(width + labelMargin, -dimLabel.getHeight() / 2)));
2013-12-10 19:36:50 +00:00
}
public Set<Swimlane> getSwimlanes() {
return Collections.singleton(swimlane);
}
public Swimlane getSwimlaneIn() {
return swimlane;
}
public Swimlane getSwimlaneOut() {
return swimlane;
}
2021-05-09 21:14:40 +00:00
2020-11-21 17:33:24 +00:00
@Override
public Collection<Ftile> getMyChildren() {
return Collections.emptyList();
}
2013-12-10 19:36:50 +00:00
}