![JAR search and dependency download from the Maven repository](/logo.png)
net.sourceforge.plantuml.board.CardBox Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plantuml-mit Show documentation
Show all versions of plantuml-mit Show documentation
PlantUML is a component that allows to quickly write diagrams from text.
// THIS FILE HAS BEEN GENERATED BY A PREPROCESSOR.
package net.sourceforge.plantuml.board;
import net.sourceforge.plantuml.klimt.UTranslate;
import net.sourceforge.plantuml.klimt.color.HColors;
import net.sourceforge.plantuml.klimt.creole.Display;
import net.sourceforge.plantuml.klimt.drawing.UGraphic;
import net.sourceforge.plantuml.klimt.font.FontConfiguration;
import net.sourceforge.plantuml.klimt.font.StringBounder;
import net.sourceforge.plantuml.klimt.font.UFont;
import net.sourceforge.plantuml.klimt.geom.HorizontalAlignment;
import net.sourceforge.plantuml.klimt.geom.XDimension2D;
import net.sourceforge.plantuml.klimt.shape.AbstractTextBlock;
import net.sourceforge.plantuml.klimt.shape.URectangle;
import net.sourceforge.plantuml.style.ISkinParam;
public class CardBox extends AbstractTextBlock {
private final Display label;
private final ISkinParam skinParam;
public CardBox(Display label, ISkinParam skinParam) {
this.label = label;
this.skinParam = skinParam;
}
// private StyleSignature getDefaultStyleDefinitionNode() {
// return StyleSignature.of(SName.root, SName.element, SName.mindmapDiagram, SName.node);
// }
public XDimension2D calculateDimension(StringBounder stringBounder) {
return new XDimension2D(150, 70);
}
public void drawU(UGraphic ug) {
final URectangle rect = URectangle.build(calculateDimension(ug.getStringBounder()));
rect.setDeltaShadow(1);
ug.apply(HColors.BLACK).apply(HColors.LIGHT_GRAY.bg()).draw(rect);
label.create(FontConfiguration.blackBlueTrue(UFont.sansSerif(14)), HorizontalAlignment.LEFT, skinParam)
.drawU(ug.apply(new UTranslate(3, 3)));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy