1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-16 23:22:24 +00:00
plantuml/src/net/sourceforge/plantuml/ugraphic/comp/TextBlockCompressedOnXorY.java

100 lines
3.6 KiB
Java
Raw Normal View History

2013-12-10 19:36:50 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2016-01-09 12:15:40 +00:00
* (C) Copyright 2009-2017, Arnaud Roques
2013-12-10 19:36:50 +00:00
*
2016-03-06 16:47:34 +00:00
* Project Info: http://plantuml.com
2013-12-10 19:36:50 +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
*
2013-12-10 19:36:50 +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
*
*
*/
2018-07-27 21:56:46 +00:00
package net.sourceforge.plantuml.ugraphic.comp;
2013-12-10 19:36:50 +00:00
import java.awt.geom.Dimension2D;
import net.sourceforge.plantuml.Dimension2DDouble;
2018-07-27 21:56:46 +00:00
import net.sourceforge.plantuml.graphic.AbstractTextBlock;
import net.sourceforge.plantuml.graphic.StringBounder;
import net.sourceforge.plantuml.graphic.TextBlock;
import net.sourceforge.plantuml.graphic.TextBlockUtils;
2017-11-20 16:10:36 +00:00
import net.sourceforge.plantuml.ugraphic.MinMax;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.ugraphic.UGraphic;
2018-07-27 21:56:46 +00:00
public class TextBlockCompressedOnXorY extends AbstractTextBlock implements TextBlock {
2013-12-10 19:36:50 +00:00
private final TextBlock textBlock;
2018-07-27 21:56:46 +00:00
private final CompressionMode mode;
2013-12-10 19:36:50 +00:00
2018-07-27 21:56:46 +00:00
public TextBlockCompressedOnXorY(CompressionMode mode, TextBlock textBlock) {
2013-12-10 19:36:50 +00:00
this.textBlock = textBlock;
2018-07-27 21:56:46 +00:00
this.mode = mode;
2013-12-10 19:36:50 +00:00
}
public void drawU(final UGraphic ug) {
final StringBounder stringBounder = ug.getStringBounder();
final CompressionTransform compressionTransform = getCompressionTransform(stringBounder);
2018-07-27 21:56:46 +00:00
textBlock.drawU(new UGraphicCompressOnXorY(mode, ug, compressionTransform));
2013-12-10 19:36:50 +00:00
}
2017-11-20 16:10:36 +00:00
private MinMax cachedMinMax;
@Override
public MinMax getMinMax(StringBounder stringBounder) {
if (cachedMinMax == null) {
cachedMinMax = TextBlockUtils.getMinMax(this, stringBounder);
}
return cachedMinMax;
}
private CompressionTransform cachedCompressionTransform;
2013-12-10 19:36:50 +00:00
private CompressionTransform getCompressionTransform(final StringBounder stringBounder) {
2017-11-20 16:10:36 +00:00
if (cachedCompressionTransform == null) {
cachedCompressionTransform = getCompressionTransformSlow(stringBounder);
}
return cachedCompressionTransform;
}
private CompressionTransform getCompressionTransformSlow(final StringBounder stringBounder) {
2018-07-27 21:56:46 +00:00
final SlotFinder slotFinder = new SlotFinder(mode, stringBounder);
2013-12-10 19:36:50 +00:00
textBlock.drawU(slotFinder);
2018-07-27 21:56:46 +00:00
final SlotSet ysSlotSet = slotFinder.getSlotSet().reverse().smaller(5.0);
2013-12-10 19:36:50 +00:00
final CompressionTransform compressionTransform = new CompressionTransform(ysSlotSet);
return compressionTransform;
}
public Dimension2D calculateDimension(StringBounder stringBounder) {
final CompressionTransform compressionTransform = getCompressionTransform(stringBounder);
final Dimension2D dim = textBlock.calculateDimension(stringBounder);
2018-07-27 21:56:46 +00:00
if (mode == CompressionMode.ON_X) {
return new Dimension2DDouble(compressionTransform.transform(dim.getWidth()), dim.getHeight());
} else {
return new Dimension2DDouble(dim.getWidth(), compressionTransform.transform(dim.getHeight()));
}
2013-12-10 19:36:50 +00:00
}
}