net.sourceforge.plantuml.klimt.drawing.visio.VisioText 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.klimt.drawing.visio;
import java.io.IOException;
import java.io.OutputStream;
public class VisioText implements VisioShape {
private final int id;
private final String text;
private final int fontSize;
private final double x;
private final double y;
private final double width;
private final double height;
private final double coefFont = 150.0;
public static VisioText createInches(int id, String text, int fontSize, double x, double y, double width,
double height) {
final double coef = 1.8;
return new VisioText(id, text, fontSize, toInches(x), toInches(y + 2.5), toInches(width * coef),
toInches(height * coef));
}
private static double toInches(double val) {
return val / 72.0;
}
private VisioText(int id, String text, int fontSize, double x, double y, double width, double height) {
this.id = id;
this.text = text;
this.x = x;
this.y = y;
this.height = height;
this.width = width;
this.fontSize = fontSize;
}
public void print(OutputStream os) throws IOException {
out(os, "");
out(os, "");
out(os, "" + x + " ");
out(os, "" + y + " ");
out(os, "" + width + " ");
out(os, "" + height + " ");
// out(os, "1.0625 ");
// out(os, "1.9375 ");
out(os, "0 ");
out(os, "0 ");
out(os, "0 ");
out(os, "0 ");
out(os, "0 ");
out(os, "0 ");
out(os, " ");
out(os, "");
out(os, "0 ");
out(os, " ");
out(os, "");
out(os, "0");
out(os, "0 ");
out(os, "");
out(os, "0 ");
out(os, "0 ");
out(os, "1 ");
out(os, "0 ");
out(os, "" + fontSize / coefFont + " ");
out(os, "0 ");
out(os, "0 ");
out(os, "0 ");
out(os, "0 ");
out(os, "0 ");
out(os, "0 ");
out(os, " ");
out(os, "");
out(os, "0 ");
out(os, " ");
out(os, " " + text + " ");
out(os, " ");
}
public VisioShape yReverse(double maxY) {
final double y2 = maxY - y;
return new VisioText(id, text, fontSize, x, y2, width, height);
}
private void out(OutputStream os, String s) throws IOException {
os.write(s.getBytes());
os.write("\n".getBytes());
}
}