1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-08 11:20:53 +00:00
plantuml/src/net/sourceforge/plantuml/sequencediagram/graphic/SequenceDiagramArea.java

174 lines
4.8 KiB
Java
Raw Normal View History

2010-11-15 20:35:36 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2016-01-09 12:15:40 +00:00
* (C) Copyright 2009-2017, Arnaud Roques
2010-11-15 20:35:36 +00:00
*
* Project Info: http://plantuml.sourceforge.net
*
* 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
2013-12-10 19:36:50 +00:00
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
2010-11-15 20:35:36 +00:00
* 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.
*
* [Java is a trademark or registered trademark of Sun Microsystems, Inc.
* in the United States and other countries.]
*
* Original Author: Arnaud Roques
*
2016-01-30 12:20:07 +00:00
* Revision $Revision: 18806 $
2010-11-15 20:35:36 +00:00
*
*/
package net.sourceforge.plantuml.sequencediagram.graphic;
2016-01-30 12:20:07 +00:00
import java.awt.geom.Dimension2D;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.graphic.HorizontalAlignment;
2016-01-30 12:20:07 +00:00
import net.sourceforge.plantuml.graphic.TextBlockUtils;
import net.sourceforge.plantuml.png.PngTitler;
import net.sourceforge.plantuml.utils.MathUtils;
2010-11-15 20:35:36 +00:00
public class SequenceDiagramArea {
private final double sequenceWidth;
private final double sequenceHeight;
private double headerWidth;
private double headerHeight;
private double headerMargin;
private double titleWidth;
private double titleHeight;
2016-01-30 12:20:07 +00:00
private double captionWidth;
private double captionHeight;
2010-11-15 20:35:36 +00:00
private double footerWidth;
private double footerHeight;
private double footerMargin;
public SequenceDiagramArea(double width, double height) {
this.sequenceWidth = width;
this.sequenceHeight = height;
}
2016-01-30 12:20:07 +00:00
public void setTitleArea(double width, double height) {
this.titleWidth = width;
this.titleHeight = height;
}
private void setCaptionArea(double width, double height) {
this.captionWidth = width;
this.captionHeight = height;
}
public void setCaptionArea(Dimension2D dim) {
setCaptionArea(dim.getWidth(), dim.getHeight());
2010-11-15 20:35:36 +00:00
}
public void setHeaderArea(double headerWidth, double headerHeight, double headerMargin) {
this.headerWidth = headerWidth;
this.headerHeight = headerHeight;
this.headerMargin = headerMargin;
}
public void setFooterArea(double footerWidth, double footerHeight, double footerMargin) {
this.footerWidth = footerWidth;
this.footerHeight = footerHeight;
this.footerMargin = footerMargin;
}
public double getWidth() {
2016-01-30 12:20:07 +00:00
return MathUtils.max(sequenceWidth, headerWidth, titleWidth, footerWidth, captionWidth);
2010-11-15 20:35:36 +00:00
}
public double getHeight() {
2016-01-30 12:20:07 +00:00
return sequenceHeight + headerHeight + headerMargin + titleHeight + footerMargin + footerHeight + captionHeight;
2010-11-15 20:35:36 +00:00
}
public double getTitleX() {
return (getWidth() - titleWidth) / 2;
}
public double getTitleY() {
return headerHeight + headerMargin;
}
2016-01-30 12:20:07 +00:00
public double getCaptionX() {
return (getWidth() - captionWidth) / 2;
}
public double getCaptionY() {
return sequenceHeight + headerHeight + headerMargin + titleHeight;
}
2010-11-15 20:35:36 +00:00
public double getSequenceAreaX() {
return (getWidth() - sequenceWidth) / 2;
}
public double getSequenceAreaY() {
return getTitleY() + titleHeight;
}
public double getHeaderY() {
return 0;
}
public double getFooterY() {
2016-01-30 12:20:07 +00:00
return sequenceHeight + headerHeight + headerMargin + titleHeight + footerMargin + captionHeight;
2010-11-15 20:35:36 +00:00
}
2013-12-10 19:36:50 +00:00
public double getFooterX(HorizontalAlignment align) {
if (align == HorizontalAlignment.LEFT) {
2010-11-15 20:35:36 +00:00
return 0;
}
2013-12-10 19:36:50 +00:00
if (align == HorizontalAlignment.RIGHT) {
2010-11-15 20:35:36 +00:00
return getWidth() - footerWidth;
}
2013-12-10 19:36:50 +00:00
if (align == HorizontalAlignment.CENTER) {
2010-11-15 20:35:36 +00:00
return (getWidth() - footerWidth) / 2;
}
throw new IllegalStateException();
}
2013-12-10 19:36:50 +00:00
public double getHeaderX(HorizontalAlignment align) {
if (align == HorizontalAlignment.LEFT) {
2010-11-15 20:35:36 +00:00
return 0;
}
2013-12-10 19:36:50 +00:00
if (align == HorizontalAlignment.RIGHT) {
2010-11-15 20:35:36 +00:00
return getWidth() - headerWidth;
}
2013-12-10 19:36:50 +00:00
if (align == HorizontalAlignment.CENTER) {
2010-11-15 20:35:36 +00:00
return (getWidth() - headerWidth) / 2;
}
throw new IllegalStateException();
}
2016-01-30 12:20:07 +00:00
public void initFooter(PngTitler pngTitler) {
final Dimension2D dim = pngTitler.getTextDimension(TextBlockUtils.getDummyStringBounder());
if (dim != null) {
setFooterArea(dim.getWidth(), dim.getHeight(), 3);
}
}
public void initHeader(PngTitler pngTitler) {
final Dimension2D dim = pngTitler.getTextDimension(TextBlockUtils.getDummyStringBounder());
if (dim != null) {
setHeaderArea(dim.getWidth(), dim.getHeight(), 3);
}
}
2010-11-15 20:35:36 +00:00
}