2011-09-07 20:41:58 +00:00
|
|
|
/* ========================================================================
|
|
|
|
* PlantUML : a free UML diagram generator
|
|
|
|
* ========================================================================
|
|
|
|
*
|
2022-03-07 19:33:46 +00:00
|
|
|
* (C) Copyright 2009-2023, Arnaud Roques
|
2011-09-07 20:41:58 +00:00
|
|
|
*
|
2016-03-06 16:47:34 +00:00
|
|
|
* Project Info: http://plantuml.com
|
2011-09-07 20:41:58 +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
|
|
|
|
*
|
2011-09-07 20:41:58 +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
|
2011-09-07 20:41:58 +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;
|
2013-12-10 19:36:50 +00:00
|
|
|
import net.sourceforge.plantuml.cucadiagram.Display;
|
2011-09-07 20:41:58 +00:00
|
|
|
import net.sourceforge.plantuml.graphic.StringBounder;
|
2015-05-03 15:36:36 +00:00
|
|
|
import net.sourceforge.plantuml.graphic.SymbolContext;
|
2022-08-30 19:15:53 +00:00
|
|
|
import net.sourceforge.plantuml.graphic.color.Colors;
|
2011-09-07 20:41:58 +00:00
|
|
|
import net.sourceforge.plantuml.skin.AbstractTextualComponent;
|
2013-12-10 19:36:50 +00:00
|
|
|
import net.sourceforge.plantuml.skin.Area;
|
2019-09-14 18:12:04 +00:00
|
|
|
import net.sourceforge.plantuml.style.PName;
|
2019-07-14 20:09:26 +00:00
|
|
|
import net.sourceforge.plantuml.style.Style;
|
2011-09-07 20:41:58 +00:00
|
|
|
import net.sourceforge.plantuml.ugraphic.UGraphic;
|
|
|
|
import net.sourceforge.plantuml.ugraphic.URectangle;
|
2013-12-10 19:36:50 +00:00
|
|
|
import net.sourceforge.plantuml.ugraphic.UStroke;
|
|
|
|
import net.sourceforge.plantuml.ugraphic.UTranslate;
|
2011-09-07 20:41:58 +00:00
|
|
|
|
|
|
|
final public class ComponentRoseNoteBox extends AbstractTextualComponent {
|
|
|
|
|
2015-05-03 15:36:36 +00:00
|
|
|
private final SymbolContext symbolContext;
|
2019-07-14 20:09:26 +00:00
|
|
|
private final double roundCorner;
|
2011-09-07 20:41:58 +00:00
|
|
|
|
2022-08-30 19:15:53 +00:00
|
|
|
public ComponentRoseNoteBox(Style style, Display strings, ISkinSimple spriteContainer, Colors colors) {
|
2022-05-21 09:41:00 +00:00
|
|
|
super(style, spriteContainer.wrapWidth(), 4, 4, 4, spriteContainer, strings, false);
|
|
|
|
|
2022-09-18 17:08:06 +00:00
|
|
|
this.symbolContext = style.getSymbolContext(getIHtmlColorSet(), colors);
|
2022-05-21 09:41:00 +00:00
|
|
|
this.roundCorner = style.value(PName.RoundCorner).asInt();
|
2011-09-07 20:41:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
final public double getPreferredWidth(StringBounder stringBounder) {
|
|
|
|
final double result = getTextWidth(stringBounder) + 2 * getPaddingX();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
final public double getPreferredHeight(StringBounder stringBounder) {
|
|
|
|
return getTextHeight(stringBounder) + 2 * getPaddingY();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public double getPaddingX() {
|
|
|
|
return 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public double getPaddingY() {
|
|
|
|
return 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2013-12-10 19:36:50 +00:00
|
|
|
protected void drawInternalU(UGraphic ug, Area area) {
|
2011-09-07 20:41:58 +00:00
|
|
|
final StringBounder stringBounder = ug.getStringBounder();
|
|
|
|
final int textHeight = (int) getTextHeight(stringBounder);
|
|
|
|
|
2015-04-07 18:18:37 +00:00
|
|
|
int x2 = (int) getTextWidth(stringBounder);
|
|
|
|
final double diffX = area.getDimensionToUse().getWidth() - getPreferredWidth(stringBounder);
|
2022-05-21 09:41:00 +00:00
|
|
|
if (diffX < 0)
|
2015-04-07 18:18:37 +00:00
|
|
|
throw new IllegalArgumentException();
|
2022-05-21 09:41:00 +00:00
|
|
|
|
|
|
|
if (area.getDimensionToUse().getWidth() > getPreferredWidth(stringBounder))
|
2015-04-07 18:18:37 +00:00
|
|
|
x2 = (int) (area.getDimensionToUse().getWidth() - 2 * getPaddingX());
|
2011-09-07 20:41:58 +00:00
|
|
|
|
2015-05-03 15:36:36 +00:00
|
|
|
ug = symbolContext.apply(ug);
|
2020-03-18 10:50:02 +00:00
|
|
|
final URectangle rect = new URectangle(x2, textHeight).rounded(roundCorner);
|
2015-05-03 15:36:36 +00:00
|
|
|
rect.setDeltaShadow(symbolContext.getDeltaShadow());
|
2013-12-10 19:36:50 +00:00
|
|
|
ug.draw(rect);
|
|
|
|
ug = ug.apply(new UStroke());
|
2011-09-07 20:41:58 +00:00
|
|
|
|
2015-04-07 18:18:37 +00:00
|
|
|
getTextBlock().drawU(ug.apply(new UTranslate(getMarginX1() + diffX / 2, getMarginY())));
|
2011-09-07 20:41:58 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|