plantuml/src/net/sourceforge/plantuml/sequencediagram/graphic/SequenceDiagramArea.java

221 lines
6.0 KiB
Java
Raw Normal View History

2010-11-15 20:35:36 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2022-03-07 19:33:46 +00:00
* (C) Copyright 2009-2023, Arnaud Roques
2010-11-15 20:35:36 +00:00
*
2016-03-06 16:47:34 +00:00
* Project Info: http://plantuml.com
2010-11-15 20:35:36 +00:00
*
2017-03-15 19:13:31 +00:00
* 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
*
2010-11-15 20:35:36 +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
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.
*
*
* Original Author: Arnaud Roques
*
*
*/
package net.sourceforge.plantuml.sequencediagram.graphic;
2022-09-12 20:08:34 +00:00
import net.sourceforge.plantuml.awt.geom.XDimension2D;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.graphic.HorizontalAlignment;
2016-08-25 20:45:37 +00:00
import net.sourceforge.plantuml.graphic.StringBounder;
2016-01-30 12:20:07 +00:00
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;
2020-09-19 15:43:24 +00:00
private double legendWidth;
private double legendHeight;
private boolean isLegendTop;
private HorizontalAlignment legendHorizontalAlignment;
2022-09-12 20:08:34 +00:00
public void setLegend(XDimension2D dimLegend, boolean isLegendTop, HorizontalAlignment horizontalAlignment) {
2020-09-19 15:43:24 +00:00
this.legendHorizontalAlignment = horizontalAlignment;
this.legendWidth = dimLegend.getWidth();
this.legendHeight = dimLegend.getHeight();
this.isLegendTop = isLegendTop;
}
public double getLegendWidth() {
return legendWidth;
}
public boolean hasLegend() {
return legendHeight > 0 && legendWidth > 0;
}
public double getLegendX() {
2022-05-21 09:41:00 +00:00
if (legendHorizontalAlignment == HorizontalAlignment.LEFT)
2020-09-19 15:43:24 +00:00
return 0;
2022-05-21 09:41:00 +00:00
else if (legendHorizontalAlignment == HorizontalAlignment.RIGHT)
2020-09-19 15:43:24 +00:00
return Math.max(0, getWidth() - legendWidth);
2022-05-21 09:41:00 +00:00
else
2020-09-19 15:43:24 +00:00
return Math.max(0, getWidth() - legendWidth) / 2;
2022-05-21 09:41:00 +00:00
2020-09-19 15:43:24 +00:00
}
2010-11-15 20:35:36 +00:00
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;
}
2022-09-12 20:08:34 +00:00
public void setCaptionArea(XDimension2D dim) {
2016-01-30 12:20:07 +00:00
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() {
2020-09-19 15:43:24 +00:00
return sequenceHeight + headerHeight + headerMargin + titleHeight + footerMargin + footerHeight + captionHeight
+ legendHeight;
}
public double getFooterY() {
return sequenceHeight + headerHeight + headerMargin + titleHeight + footerMargin + captionHeight + legendHeight;
}
public double getCaptionY() {
return sequenceHeight + headerHeight + headerMargin + titleHeight + legendHeight;
}
public double getLegendY() {
2022-10-05 20:32:57 +00:00
if (isLegendTop)
2020-09-19 15:43:24 +00:00
return titleHeight + headerHeight + headerMargin;
2022-10-05 20:32:57 +00:00
2020-09-19 15:43:24 +00:00
return sequenceHeight + headerHeight + headerMargin + titleHeight;
2010-11-15 20:35:36 +00:00
}
public double getTitleX() {
return (getWidth() - titleWidth) / 2;
}
public double getTitleY() {
return headerHeight + headerMargin;
}
2019-06-26 19:24:49 +00:00
public double getHeaderHeightMargin() {
return headerHeight + headerMargin;
}
2016-01-30 12:20:07 +00:00
public double getCaptionX() {
return (getWidth() - captionWidth) / 2;
}
2010-11-15 20:35:36 +00:00
public double getSequenceAreaX() {
return (getWidth() - sequenceWidth) / 2;
}
public double getSequenceAreaY() {
2022-05-21 09:41:00 +00:00
if (isLegendTop)
2020-09-19 15:43:24 +00:00
return getTitleY() + titleHeight + legendHeight;
2022-05-21 09:41:00 +00:00
2010-11-15 20:35:36 +00:00
return getTitleY() + titleHeight;
}
public double getHeaderY() {
return 0;
}
2013-12-10 19:36:50 +00:00
public double getFooterX(HorizontalAlignment align) {
2022-05-21 09:41:00 +00:00
if (align == HorizontalAlignment.LEFT)
2010-11-15 20:35:36 +00:00
return 0;
2022-05-21 09:41:00 +00:00
if (align == HorizontalAlignment.RIGHT)
2010-11-15 20:35:36 +00:00
return getWidth() - footerWidth;
2022-05-21 09:41:00 +00:00
if (align == HorizontalAlignment.CENTER)
2010-11-15 20:35:36 +00:00
return (getWidth() - footerWidth) / 2;
2022-05-21 09:41:00 +00:00
2010-11-15 20:35:36 +00:00
throw new IllegalStateException();
}
2013-12-10 19:36:50 +00:00
public double getHeaderX(HorizontalAlignment align) {
2022-05-21 09:41:00 +00:00
if (align == HorizontalAlignment.LEFT)
2010-11-15 20:35:36 +00:00
return 0;
2022-05-21 09:41:00 +00:00
if (align == HorizontalAlignment.RIGHT)
2010-11-15 20:35:36 +00:00
return getWidth() - headerWidth;
2022-05-21 09:41:00 +00:00
if (align == HorizontalAlignment.CENTER)
2010-11-15 20:35:36 +00:00
return (getWidth() - headerWidth) / 2;
2022-05-21 09:41:00 +00:00
2010-11-15 20:35:36 +00:00
throw new IllegalStateException();
}
2016-08-25 20:45:37 +00:00
public void initFooter(PngTitler pngTitler, StringBounder stringBounder) {
2022-09-12 20:08:34 +00:00
final XDimension2D dim = pngTitler.getTextDimension(stringBounder);
2022-05-21 09:41:00 +00:00
if (dim != null)
setFooterArea(dim.getWidth(), dim.getHeight(), 0);
2016-01-30 12:20:07 +00:00
}
2016-08-25 20:45:37 +00:00
public void initHeader(PngTitler pngTitler, StringBounder stringBounder) {
2022-09-12 20:08:34 +00:00
final XDimension2D dim = pngTitler.getTextDimension(stringBounder);
2022-05-21 09:41:00 +00:00
if (dim != null)
setHeaderArea(dim.getWidth(), dim.getHeight(), 0);
2016-01-30 12:20:07 +00:00
}
2010-11-15 20:35:36 +00:00
}