1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-03 09:00:48 +00:00
plantuml/src/net/sourceforge/plantuml/ugraphic/tikz/UGraphicTikz.java

126 lines
4.1 KiB
Java
Raw Normal View History

2015-04-07 18:26:58 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2016-01-09 12:15:40 +00:00
* (C) Copyright 2009-2017, Arnaud Roques
2015-04-07 18:26:58 +00:00
*
2016-03-06 16:47:34 +00:00
* Project Info: http://plantuml.com
2015-04-07 18:26:58 +00:00
*
* 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.ugraphic.tikz;
import java.io.IOException;
import java.io.OutputStream;
2016-08-25 20:45:37 +00:00
import net.sourceforge.plantuml.FileFormat;
2015-04-07 18:26:58 +00:00
import net.sourceforge.plantuml.Url;
import net.sourceforge.plantuml.creole.AtomText;
import net.sourceforge.plantuml.graphic.StringBounder;
import net.sourceforge.plantuml.posimo.DotPath;
import net.sourceforge.plantuml.tikz.TikzGraphics;
import net.sourceforge.plantuml.ugraphic.AbstractCommonUGraphic;
import net.sourceforge.plantuml.ugraphic.AbstractUGraphic;
import net.sourceforge.plantuml.ugraphic.ClipContainer;
import net.sourceforge.plantuml.ugraphic.ColorMapper;
import net.sourceforge.plantuml.ugraphic.UCenteredCharacter;
import net.sourceforge.plantuml.ugraphic.UEllipse;
import net.sourceforge.plantuml.ugraphic.UGraphic2;
import net.sourceforge.plantuml.ugraphic.UImage;
import net.sourceforge.plantuml.ugraphic.UImageSvg;
import net.sourceforge.plantuml.ugraphic.ULine;
import net.sourceforge.plantuml.ugraphic.UPath;
import net.sourceforge.plantuml.ugraphic.UPolygon;
import net.sourceforge.plantuml.ugraphic.URectangle;
import net.sourceforge.plantuml.ugraphic.UText;
public class UGraphicTikz extends AbstractUGraphic<TikzGraphics> implements ClipContainer, UGraphic2 {
private final StringBounder stringBounder;
private UGraphicTikz(ColorMapper colorMapper, TikzGraphics tikz) {
super(colorMapper, tikz);
2016-08-25 20:45:37 +00:00
this.stringBounder = FileFormat.PNG.getDefaultStringBounder();
2015-04-07 18:26:58 +00:00
register();
}
2016-11-18 21:12:09 +00:00
public UGraphicTikz(ColorMapper colorMapper, double scale, boolean withPreamble) {
this(colorMapper, new TikzGraphics(scale, withPreamble));
2015-04-07 18:26:58 +00:00
}
@Override
protected AbstractCommonUGraphic copyUGraphic() {
return new UGraphicTikz(this);
}
private UGraphicTikz(UGraphicTikz other) {
super(other);
this.stringBounder = other.stringBounder;
register();
}
private void register() {
registerDriver(URectangle.class, new DriverRectangleTikz());
registerDriver(UText.class, new DriverUTextTikz());
registerDriver(AtomText.class, new DriverAtomTextTikz());
registerDriver(ULine.class, new DriverLineTikz());
registerDriver(UPolygon.class, new DriverPolygonTikz());
registerDriver(UEllipse.class, new DriverEllipseTikz());
registerDriver(UImage.class, new DriverNoneTikz());
registerDriver(UImageSvg.class, new DriverNoneTikz());
registerDriver(UPath.class, new DriverUPathTikz());
registerDriver(DotPath.class, new DriverDotPathTikz());
registerDriver(UCenteredCharacter.class, new DriverCenteredCharacterTikz());
}
public StringBounder getStringBounder() {
return stringBounder;
}
public void startUrl(Url url) {
2015-07-11 09:32:49 +00:00
getGraphicObject().openLink(url.getUrl(), url.getTooltip());
2015-04-07 18:26:58 +00:00
}
public void closeAction() {
2015-07-11 09:32:49 +00:00
getGraphicObject().closeLink();
2015-04-07 18:26:58 +00:00
}
public void writeImageTOBEMOVED(OutputStream os, String metadata, int dpi) throws IOException {
createTikz(os);
}
public void createTikz(OutputStream os) throws IOException {
getGraphicObject().createData(os);
}
2016-12-01 20:29:25 +00:00
@Override
public boolean matchesProperty(String propertyName) {
if ("SPECIALTXT".equalsIgnoreCase(propertyName)) {
return true;
}
return false;
2015-04-07 18:26:58 +00:00
}
}