mirror of
https://github.com/octoleo/plantuml.git
synced 2024-11-11 16:15:50 +00:00
190 lines
5.9 KiB
Java
190 lines
5.9 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;
|
|
|
|
import java.awt.geom.AffineTransform;
|
|
import java.io.Serializable;
|
|
|
|
import net.sourceforge.plantuml.graphic.StringBounder;
|
|
|
|
/**
|
|
* A FileFormat with some parameters.
|
|
*
|
|
*
|
|
* @author Arnaud Roques
|
|
*
|
|
*/
|
|
public final class FileFormatOption implements Serializable {
|
|
|
|
private final FileFormat fileFormat;
|
|
private final AffineTransform affineTransform;
|
|
private boolean withMetadata;
|
|
private final boolean useRedForError;
|
|
private final String svgLinkTarget;
|
|
private final String hoverColor;
|
|
private final TikzFontDistortion tikzFontDistortion;
|
|
private final double scale;
|
|
private final String preserveAspectRatio;
|
|
private final String watermark;
|
|
|
|
public double getScaleCoef() {
|
|
return scale;
|
|
}
|
|
|
|
public FileFormatOption(FileFormat fileFormat) {
|
|
this(fileFormat, null, true, false, "_top", false, null, TikzFontDistortion.getDefault(), 1.0, "none", null);
|
|
}
|
|
|
|
public FileFormatOption(FileFormat fileFormat, boolean withMetadata) {
|
|
this(fileFormat, null, withMetadata, false, "_top", false, null, TikzFontDistortion.getDefault(), 1.0, "none",
|
|
null);
|
|
}
|
|
|
|
private FileFormatOption(FileFormat fileFormat, AffineTransform at, boolean withMetadata, boolean useRedForError,
|
|
String svgLinkTarget, boolean debugsvek, String hoverColor, TikzFontDistortion tikzFontDistortion,
|
|
double scale, String preserveAspectRatio, String watermark) {
|
|
this.hoverColor = hoverColor;
|
|
this.watermark = watermark;
|
|
this.fileFormat = fileFormat;
|
|
this.affineTransform = at;
|
|
this.withMetadata = withMetadata;
|
|
this.useRedForError = useRedForError;
|
|
this.svgLinkTarget = svgLinkTarget;
|
|
this.debugsvek = debugsvek;
|
|
this.tikzFontDistortion = tikzFontDistortion;
|
|
this.scale = scale;
|
|
this.preserveAspectRatio = preserveAspectRatio;
|
|
if (tikzFontDistortion == null) {
|
|
throw new IllegalArgumentException();
|
|
}
|
|
}
|
|
|
|
public StringBounder getDefaultStringBounder(SvgCharSizeHack charSizeHack) {
|
|
return fileFormat.getDefaultStringBounder(tikzFontDistortion, charSizeHack);
|
|
}
|
|
|
|
public String getSvgLinkTarget() {
|
|
return svgLinkTarget;
|
|
}
|
|
|
|
public final boolean isWithMetadata() {
|
|
return withMetadata;
|
|
}
|
|
|
|
public final String getPreserveAspectRatio() {
|
|
return preserveAspectRatio;
|
|
}
|
|
|
|
public FileFormatOption withUseRedForError() {
|
|
return new FileFormatOption(fileFormat, affineTransform, withMetadata, true, svgLinkTarget, debugsvek,
|
|
hoverColor, tikzFontDistortion, scale, preserveAspectRatio, watermark);
|
|
}
|
|
|
|
public FileFormatOption withTikzFontDistortion(TikzFontDistortion tikzFontDistortion) {
|
|
return new FileFormatOption(fileFormat, affineTransform, withMetadata, true, svgLinkTarget, debugsvek,
|
|
hoverColor, tikzFontDistortion, scale, preserveAspectRatio, watermark);
|
|
}
|
|
|
|
public FileFormatOption withSvgLinkTarget(String svgLinkTarget) {
|
|
return new FileFormatOption(fileFormat, affineTransform, withMetadata, useRedForError, svgLinkTarget, debugsvek,
|
|
hoverColor, tikzFontDistortion, scale, preserveAspectRatio, watermark);
|
|
}
|
|
|
|
public FileFormatOption withPreserveAspectRatio(String preserveAspectRatio) {
|
|
return new FileFormatOption(fileFormat, affineTransform, withMetadata, useRedForError, svgLinkTarget, debugsvek,
|
|
hoverColor, tikzFontDistortion, scale, preserveAspectRatio, watermark);
|
|
}
|
|
|
|
public FileFormatOption withHoverColor(String hoverColor) {
|
|
return new FileFormatOption(fileFormat, affineTransform, withMetadata, useRedForError, svgLinkTarget, debugsvek,
|
|
hoverColor, tikzFontDistortion, scale, preserveAspectRatio, watermark);
|
|
}
|
|
|
|
public FileFormatOption withScale(double scale) {
|
|
return new FileFormatOption(fileFormat, affineTransform, withMetadata, useRedForError, svgLinkTarget, debugsvek,
|
|
hoverColor, tikzFontDistortion, scale, preserveAspectRatio, watermark);
|
|
}
|
|
|
|
public FileFormatOption withWartermark(String watermark) {
|
|
return new FileFormatOption(fileFormat, affineTransform, withMetadata, useRedForError, svgLinkTarget, debugsvek,
|
|
hoverColor, tikzFontDistortion, scale, preserveAspectRatio, watermark);
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return fileFormat.toString() + " " + affineTransform;
|
|
}
|
|
|
|
public final FileFormat getFileFormat() {
|
|
return fileFormat;
|
|
}
|
|
|
|
public AffineTransform getAffineTransform() {
|
|
return affineTransform;
|
|
}
|
|
|
|
public final boolean isUseRedForError() {
|
|
return useRedForError;
|
|
}
|
|
|
|
private boolean debugsvek = false;
|
|
|
|
public void setDebugSvek(boolean debugsvek) {
|
|
this.debugsvek = debugsvek;
|
|
}
|
|
|
|
public boolean isDebugSvek() {
|
|
return debugsvek;
|
|
}
|
|
|
|
public final String getHoverColor() {
|
|
return hoverColor;
|
|
}
|
|
|
|
public void hideMetadata() {
|
|
this.withMetadata = false;
|
|
}
|
|
|
|
public final TikzFontDistortion getTikzFontDistortion() {
|
|
return tikzFontDistortion;
|
|
}
|
|
|
|
public final String getWatermark() {
|
|
return watermark;
|
|
}
|
|
|
|
}
|