1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-05-28 22:20:49 +00:00
plantuml/src/net/sourceforge/plantuml/wbs/WElement.java
2021-03-07 13:23:24 +01:00

170 lines
5.4 KiB
Java

/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
* (C) Copyright 2009-2020, Arnaud Roques
*
* Project Info: http://plantuml.com
*
* 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
*
* 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
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
* 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.wbs;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import net.sourceforge.plantuml.Direction;
import net.sourceforge.plantuml.ISkinParam;
import net.sourceforge.plantuml.SkinParamColors;
import net.sourceforge.plantuml.cucadiagram.Display;
import net.sourceforge.plantuml.graphic.color.ColorType;
import net.sourceforge.plantuml.graphic.color.Colors;
import net.sourceforge.plantuml.mindmap.IdeaShape;
import net.sourceforge.plantuml.style.SName;
import net.sourceforge.plantuml.style.Style;
import net.sourceforge.plantuml.style.StyleBuilder;
import net.sourceforge.plantuml.style.StyleSignature;
import net.sourceforge.plantuml.ugraphic.color.HColor;
final class WElement {
private final HColor backColor;
private final Display label;
private final int level;
private final String stereotype;
private final WElement parent;
private final StyleBuilder styleBuilder;
private final List<WElement> childrenLeft = new ArrayList<WElement>();
private final List<WElement> childrenRight = new ArrayList<WElement>();
private final IdeaShape shape;
private StyleSignature getDefaultStyleDefinitionNode(int level) {
final String depth = SName.depth(level);
if (level == 0) {
return StyleSignature.of(SName.root, SName.element, SName.wbsDiagram, SName.node, SName.rootNode)
.add(stereotype).add(depth);
}
if (shape == IdeaShape.NONE && isLeaf()) {
return StyleSignature
.of(SName.root, SName.element, SName.wbsDiagram, SName.node, SName.leafNode, SName.boxless)
.add(stereotype).add(depth);
}
if (isLeaf()) {
return StyleSignature.of(SName.root, SName.element, SName.wbsDiagram, SName.node, SName.leafNode)
.add(stereotype).add(depth);
}
if (shape == IdeaShape.NONE) {
return StyleSignature.of(SName.root, SName.element, SName.wbsDiagram, SName.node, SName.boxless)
.add(stereotype).add(depth);
}
return StyleSignature.of(SName.root, SName.element, SName.wbsDiagram, SName.node).add(stereotype).add(depth);
}
public ISkinParam withBackColor(ISkinParam skinParam) {
if (backColor == null) {
return skinParam;
}
return new SkinParamColors(skinParam, Colors.empty().add(ColorType.BACK, backColor));
}
public Style getStyle() {
Style result = getDefaultStyleDefinitionNode(level).getMergedStyle(styleBuilder);
for (WElement up = parent; up != null; up = up.parent) {
final StyleSignature ss = up.getDefaultStyleDefinitionNode(level).addStar();
final Style p = ss.getMergedStyle(styleBuilder);
result = result.mergeWith(p);
}
return result;
}
public WElement(HColor backColor, Display label, String stereotype, StyleBuilder styleBuilder) {
this(backColor, 0, label, stereotype, null, IdeaShape.BOX, styleBuilder);
}
private WElement(HColor backColor, int level, Display label, String stereotype, WElement parent, IdeaShape shape,
StyleBuilder styleBuilder) {
this.label = label;
this.backColor = backColor;
this.level = level;
this.parent = parent;
this.shape = shape;
this.styleBuilder = styleBuilder;
this.stereotype = stereotype;
}
public boolean isLeaf() {
return childrenLeft.size() == 0 && childrenRight.size() == 0;
}
public WElement createElement(HColor backColor, int newLevel, Display newLabel, String stereotype,
Direction direction, IdeaShape shape, StyleBuilder styleBuilder) {
final WElement result = new WElement(backColor, newLevel, newLabel, stereotype, this, shape, styleBuilder);
if (direction == Direction.LEFT) {
this.childrenLeft.add(result);
} else {
this.childrenRight.add(result);
}
return result;
}
@Override
public String toString() {
return label.toString();
}
public final int getLevel() {
return level;
}
public final Display getLabel() {
return label;
}
public Collection<WElement> getChildren(Direction direction) {
if (direction == Direction.LEFT) {
return Collections.unmodifiableList(childrenLeft);
}
return Collections.unmodifiableList(childrenRight);
}
public WElement getParent() {
return parent;
}
public final IdeaShape getShape() {
return shape;
}
public final StyleBuilder getStyleBuilder() {
return styleBuilder;
}
}