![JAR search and dependency download from the Maven repository](/logo.png)
net.sourceforge.plantuml.activitydiagram3.gtile.Gtiles 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.activitydiagram3.gtile;
import net.sourceforge.plantuml.activitydiagram3.ftile.Hexagon;
import net.sourceforge.plantuml.activitydiagram3.ftile.Swimlane;
import net.sourceforge.plantuml.klimt.LineBreakStrategy;
import net.sourceforge.plantuml.klimt.UStroke;
import net.sourceforge.plantuml.klimt.color.HColor;
import net.sourceforge.plantuml.klimt.creole.CreoleMode;
import net.sourceforge.plantuml.klimt.creole.Display;
import net.sourceforge.plantuml.klimt.creole.Sheet;
import net.sourceforge.plantuml.klimt.creole.SheetBlock1;
import net.sourceforge.plantuml.klimt.creole.SheetBlock2;
import net.sourceforge.plantuml.klimt.font.FontConfiguration;
import net.sourceforge.plantuml.klimt.font.StringBounder;
import net.sourceforge.plantuml.klimt.geom.HorizontalAlignment;
import net.sourceforge.plantuml.klimt.shape.TextBlock;
import net.sourceforge.plantuml.klimt.shape.TextBlockUtils;
import net.sourceforge.plantuml.style.ISkinParam;
import net.sourceforge.plantuml.style.PName;
import net.sourceforge.plantuml.style.Style;
import net.sourceforge.plantuml.style.StyleSignatureBasic;
public class Gtiles {
static public GtileHexagonInside hexagonInside(Swimlane swimlane, StringBounder stringBounder, ISkinParam skinParam,
StyleSignatureBasic styleSignature, HColor color, Display label) {
final Style style = styleSignature.getMergedStyle(skinParam.getCurrentStyleBuilder());
final HColor borderColor = style.value(PName.LineColor).asColor(skinParam.getIHtmlColorSet());
final HColor backColor = color == null
? style.value(PName.BackGroundColor).asColor(skinParam.getIHtmlColorSet())
: color;
final FontConfiguration fcTest = style.getFontConfiguration(skinParam.getIHtmlColorSet());
final Sheet sheet = skinParam
.sheet(fcTest, skinParam.getDefaultTextAlignment(HorizontalAlignment.LEFT), CreoleMode.FULL)
.createSheet(label);
final SheetBlock1 sheetBlock1 = new SheetBlock1(sheet, LineBreakStrategy.NONE, skinParam.getPadding());
final TextBlock tbTest = new SheetBlock2(sheetBlock1, Hexagon.asStencil(sheetBlock1), UStroke.simple());
return new GtileHexagonInside(stringBounder, tbTest, skinParam, backColor, borderColor, swimlane);
}
static public AbstractGtileRoot diamondEmpty(Swimlane swimlane, StringBounder stringBounder, ISkinParam skinParam,
StyleSignatureBasic styleSignature, HColor color) {
final Style style = styleSignature.getMergedStyle(skinParam.getCurrentStyleBuilder());
final HColor borderColor = style.value(PName.LineColor).asColor(skinParam.getIHtmlColorSet());
final HColor backColor = color == null
? style.value(PName.BackGroundColor).asColor(skinParam.getIHtmlColorSet())
: color;
return new GtileHexagonInside(stringBounder, TextBlockUtils.EMPTY_TEXT_BLOCK, skinParam, backColor, borderColor,
swimlane);
}
static public Gtile withSouthMargin(Gtile orig, double south) {
return new GtileWithMargin((AbstractGtileRoot) orig, 0, south, 0);
}
static public Gtile withNorthMargin(Gtile orig, double north) {
return new GtileWithMargin((AbstractGtileRoot) orig, north, 0, 0);
}
// static public Gtile withEastMargin(Gtile orig, double east) {
// return new GtileWithMargin((AbstractGtileRoot) orig, 0, 0, east);
// }
public static Gtile withIncomingArrow(Gtile orig, double margin) {
if (orig instanceof GtileEmpty)
return orig;
return new GtileWithIncomingArrow((AbstractGtileRoot) orig, margin);
}
public static Gtile withOutgoingArrow(Gtile orig, double margin) {
if (orig instanceof GtileEmpty)
return orig;
return new GtileWithOutgoingArrow((AbstractGtileRoot) orig, margin);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy