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

149 lines
5.2 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.skin.rose;
2015-04-07 18:18:37 +00:00
import net.sourceforge.plantuml.ISkinSimple;
2020-12-01 21:39:27 +00:00
import net.sourceforge.plantuml.UseStyle;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.creole.Stencil;
import net.sourceforge.plantuml.cucadiagram.Display;
2015-05-03 15:36:36 +00:00
import net.sourceforge.plantuml.graphic.FontConfiguration;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.graphic.HorizontalAlignment;
2010-11-15 20:35:36 +00:00
import net.sourceforge.plantuml.graphic.StringBounder;
2015-05-03 15:36:36 +00:00
import net.sourceforge.plantuml.graphic.SymbolContext;
2010-11-15 20:35:36 +00:00
import net.sourceforge.plantuml.skin.AbstractTextualComponent;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.skin.Area;
2019-07-14 20:09:26 +00:00
import net.sourceforge.plantuml.style.PName;
import net.sourceforge.plantuml.style.Style;
2018-01-28 22:08:15 +00:00
import net.sourceforge.plantuml.svek.image.Opale;
2010-11-15 20:35:36 +00:00
import net.sourceforge.plantuml.ugraphic.UGraphic;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.ugraphic.UGraphicStencil;
2018-01-28 22:08:15 +00:00
import net.sourceforge.plantuml.ugraphic.UPath;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.ugraphic.UStroke;
import net.sourceforge.plantuml.ugraphic.UTranslate;
2010-11-15 20:35:36 +00:00
2013-12-10 19:36:50 +00:00
final public class ComponentRoseNote extends AbstractTextualComponent implements Stencil {
2010-11-15 20:35:36 +00:00
2011-09-08 10:42:27 +00:00
private final double paddingX;
private final double paddingY;
2015-05-03 15:36:36 +00:00
private final SymbolContext symbolContext;
2018-01-28 22:08:15 +00:00
private final double roundCorner;
2021-06-27 16:50:40 +00:00
private final HorizontalAlignment position;
2015-05-03 15:36:36 +00:00
2019-07-14 20:09:26 +00:00
public ComponentRoseNote(Style style, SymbolContext symbolContext, FontConfiguration font, Display strings,
double paddingX, double paddingY, ISkinSimple spriteContainer, double roundCorner,
2021-06-27 16:50:40 +00:00
HorizontalAlignment textAlignment, HorizontalAlignment position) {
super(style, spriteContainer.wrapWidth(), strings, font, textAlignment,
textAlignment == HorizontalAlignment.CENTER ? 15 : 6, 15, 5, spriteContainer, true, null, null);
2011-09-08 10:42:27 +00:00
this.paddingX = paddingX;
this.paddingY = paddingY;
2021-06-27 16:50:40 +00:00
this.position = position;
2020-12-01 21:39:27 +00:00
if (UseStyle.useBetaStyle()) {
2021-05-06 21:23:05 +00:00
this.symbolContext = style.getSymbolContext(spriteContainer.getThemeStyle(), getIHtmlColorSet());
2019-07-14 20:09:26 +00:00
this.roundCorner = style.value(PName.RoundCorner).asInt();
} else {
this.symbolContext = symbolContext;
this.roundCorner = roundCorner;
}
2010-11-15 20:35:36 +00:00
}
@Override
final public double getPreferredWidth(StringBounder stringBounder) {
2015-05-03 15:36:36 +00:00
final double result = getTextWidth(stringBounder) + 2 * getPaddingX() + symbolContext.getDeltaShadow();
2010-11-15 20:35:36 +00:00
return result;
}
@Override
final public double getPreferredHeight(StringBounder stringBounder) {
2015-05-03 15:36:36 +00:00
return getTextHeight(stringBounder) + 2 * getPaddingY() + symbolContext.getDeltaShadow();
2010-11-15 20:35:36 +00:00
}
@Override
public double getPaddingX() {
2011-09-08 10:42:27 +00:00
return paddingX;
2010-11-15 20:35:36 +00:00
}
@Override
public double getPaddingY() {
2011-09-08 10:42:27 +00:00
return paddingY;
2010-11-15 20:35:36 +00:00
}
@Override
2013-12-10 19:36:50 +00:00
protected void drawInternalU(UGraphic ug, Area area) {
2011-09-07 20:41:58 +00:00
2010-11-15 20:35:36 +00:00
final StringBounder stringBounder = ug.getStringBounder();
final int textHeight = (int) getTextHeight(stringBounder);
2013-12-10 19:36:50 +00:00
int x2 = (int) getTextWidth(stringBounder);
final double diffX = area.getDimensionToUse().getWidth() - getPreferredWidth(stringBounder);
if (diffX < 0) {
throw new IllegalArgumentException();
}
if (area.getDimensionToUse().getWidth() > getPreferredWidth(stringBounder)) {
x2 = (int) (area.getDimensionToUse().getWidth() - 2 * getPaddingX());
}
2010-11-15 20:35:36 +00:00
2018-01-28 22:08:15 +00:00
final UPath polygon = Opale.getPolygonNormal(x2, textHeight, roundCorner);
2015-05-03 15:36:36 +00:00
polygon.setDeltaShadow(symbolContext.getDeltaShadow());
2010-11-15 20:35:36 +00:00
2015-05-03 15:36:36 +00:00
ug = symbolContext.apply(ug);
2013-12-10 19:36:50 +00:00
ug.draw(polygon);
2010-11-15 20:35:36 +00:00
2018-01-28 22:08:15 +00:00
ug.draw(Opale.getCorner(x2, roundCorner));
2016-12-01 20:29:25 +00:00
UGraphic ug2 = UGraphicStencil.create(ug, this, new UStroke());
2021-06-27 16:50:40 +00:00
if (position == HorizontalAlignment.LEFT) {
ug2 = ug2.apply(new UTranslate(getMarginX1(), getMarginY()));
} else if (position == HorizontalAlignment.RIGHT) {
ug2 = ug2.apply(
new UTranslate(area.getDimensionToUse().getWidth() - getTextWidth(stringBounder), getMarginY()));
} else {
ug2 = ug2.apply(new UTranslate(getMarginX1() + diffX / 2, getMarginY()));
}
2010-11-15 20:35:36 +00:00
2013-12-10 19:36:50 +00:00
getTextBlock().drawU(ug2);
2010-11-15 20:35:36 +00:00
}
2015-04-07 18:18:37 +00:00
2013-12-10 19:36:50 +00:00
public double getStartingX(StringBounder stringBounder, double y) {
return 0;
}
public double getEndingX(StringBounder stringBounder, double y) {
return getTextWidth(stringBounder);
}
2010-11-15 20:35:36 +00:00
}