net.sourceforge.plantuml.mindmap.Branch 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.mindmap;
import net.sourceforge.plantuml.command.CommandExecutionResult;
import net.sourceforge.plantuml.klimt.color.HColor;
import net.sourceforge.plantuml.klimt.creole.Display;
import net.sourceforge.plantuml.klimt.drawing.UGraphic;
import net.sourceforge.plantuml.klimt.font.StringBounder;
import net.sourceforge.plantuml.klimt.shape.UDrawable;
import net.sourceforge.plantuml.style.ISkinParam;
import net.sourceforge.plantuml.style.StyleBuilder;
class Branch implements UDrawable {
private Idea root;
private Idea last;
private Finger finger;
void initRoot(StyleBuilder styleBuilder, HColor backColor, Display label, IdeaShape shape, String stereotype) {
root = Idea.createIdeaSimple(styleBuilder, backColor, label, shape, stereotype);
last = root;
}
void initFinger(ISkinParam skinParam, boolean direction) {
finger = FingerImpl.build(root, skinParam, direction);
}
Idea getParentOfLast(int nb) {
Idea result = last;
for (int i = 0; i < nb; i++)
result = result.getParent();
return result;
}
CommandExecutionResult add(StyleBuilder styleBuilder, HColor backColor, int level, Display label, IdeaShape shape,
String stereotype) {
if (last == null)
return CommandExecutionResult.error("Check your indentation ?");
if (level == last.getLevel() + 1) {
final Idea newIdea = last.createIdea(styleBuilder, backColor, level, label, shape, stereotype);
last = newIdea;
return CommandExecutionResult.ok();
}
if (level <= last.getLevel()) {
final int diff = last.getLevel() - level + 1;
final Idea newIdea = getParentOfLast(diff).createIdea(styleBuilder, backColor, level, label, shape,
stereotype);
last = newIdea;
return CommandExecutionResult.ok();
}
return CommandExecutionResult.error("error42L");
}
public boolean hasFinger() {
return finger != null;
}
public void drawU(UGraphic ug) {
if (finger != null)
finger.drawU(ug);
}
public double getHalfThickness(StringBounder stringBounder) {
if (finger == null)
return 0;
return finger.getFullThickness(stringBounder) / 2;
}
public double getFullElongation(StringBounder stringBounder) {
if (finger == null)
return 0;
return finger.getFullElongation(stringBounder);
}
public boolean hasChildren() {
return root.hasChildren();
}
public boolean hasRoot() {
return root != null;
}
public void doNotDrawFirstPhalanx() {
finger.doNotDrawFirstPhalanx();
}
public double getX12(StringBounder stringBounder) {
if (finger == null)
return 0;
return finger.getFullElongation(stringBounder) + ((FingerImpl) finger).getX12();
}
}