All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sourceforge.plantuml.klimt.drawing.visio.VisioText Maven / Gradle / Ivy

There is a newer version: 1.2024.8
Show newest version
// 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());
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy