1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-05 01:50:49 +00:00
plantuml/src/net/sourceforge/plantuml/skin/rose/ComponentRoseNoteBox.java

115 lines
3.9 KiB
Java
Raw Normal View History

2011-09-07 20:41:58 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2015-04-07 18:18:37 +00:00
* (C) Copyright 2009-2014, Arnaud Roques
2011-09-07 20:41:58 +00:00
*
* Project Info: http://plantuml.sourceforge.net
*
* 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.
*
* [Java is a trademark or registered trademark of Sun Microsystems, Inc.
* in the United States and other countries.]
*
* Original Author: Arnaud Roques
*
* Revision $Revision: 6590 $
*
*/
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;
import net.sourceforge.plantuml.graphic.HorizontalAlignment;
2011-09-07 20:41:58 +00:00
import net.sourceforge.plantuml.graphic.HtmlColor;
import net.sourceforge.plantuml.graphic.StringBounder;
import net.sourceforge.plantuml.skin.AbstractTextualComponent;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.skin.Area;
2015-04-20 19:45:13 +00:00
import net.sourceforge.plantuml.skin.BiColor;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.ugraphic.UChangeBackColor;
import net.sourceforge.plantuml.ugraphic.UChangeColor;
2015-04-20 19:45:13 +00:00
import net.sourceforge.plantuml.ugraphic.UFont2;
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 {
private final HtmlColor back;
private final HtmlColor foregroundColor;
2013-12-10 19:36:50 +00:00
private final double deltaShadow;
private final UStroke stroke;
2011-09-07 20:41:58 +00:00
2015-04-20 19:45:13 +00:00
public ComponentRoseNoteBox(BiColor biColor, UFont2 font,
Display strings, ISkinSimple spriteContainer, double deltaShadow, UStroke stroke) {
super(strings, font, HorizontalAlignment.LEFT, 4, 4, 4, spriteContainer, 0, false,
null, null);
this.back = biColor.getYellowBack();
this.foregroundColor = biColor.getRedBorder();
2013-12-10 19:36:50 +00:00
this.deltaShadow = deltaShadow;
this.stroke = stroke;
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);
if (diffX < 0) {
throw new IllegalArgumentException();
}
if (area.getDimensionToUse().getWidth() > getPreferredWidth(stringBounder)) {
x2 = (int) (area.getDimensionToUse().getWidth() - 2 * getPaddingX());
}
2011-09-07 20:41:58 +00:00
2013-12-10 19:36:50 +00:00
ug = ug.apply(new UChangeBackColor(back)).apply(new UChangeColor(foregroundColor));
ug = ug.apply(stroke);
final URectangle rect = new URectangle(x2, textHeight);
rect.setDeltaShadow(deltaShadow);
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
}
}