1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288
|
/**
* ===========================================
* LibLayout : a free Java layouting library
* ===========================================
*
* Project Info: http://reporting.pentaho.org/liblayout/
*
* (C) Copyright 2006-2007, by Pentaho Corporation and Contributors.
*
* This library is free software; you can redistribute it and/or modify it under the terms
* of the GNU Lesser General Public License as published by the Free Software Foundation;
* either version 2.1 of the License, or (at your option) any later version.
*
* This library is 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License along with this
* library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307, USA.
*
* [Java is a trademark or registered trademark of Sun Microsystems, Inc.
* in the United States and other countries.]
*
* ------------
* $Id: LeftAlignmentProcessor.java 3524 2007-10-16 11:26:31Z tmorgner $
* ------------
* (C) Copyright 2006-2007, by Pentaho Corporation.
*/
package org.jfree.layouting.renderer.process;
import org.jfree.layouting.renderer.model.RenderBox;
import org.jfree.layouting.renderer.model.RenderNode;
import org.jfree.layouting.renderer.process.layoutrules.EndSequenceElement;
import org.jfree.layouting.renderer.process.layoutrules.InlineNodeSequenceElement;
import org.jfree.layouting.renderer.process.layoutrules.InlineSequenceElement;
import org.jfree.layouting.renderer.process.layoutrules.StartSequenceElement;
import org.jfree.layouting.renderer.process.layoutrules.TextSequenceElement;
/**
* Performs the left-alignment computations.
* <p/>
* The inf-min-step creates the initial sequence of elements. The alignment
* processor now iterates over the sequence and produces the layouted line.
* <p/>
* Elements can be split, splitting is a local operation and does not copy the
* children. Text splitting may produce a totally different text (see: TeX
* hyphenation system).
* <p/>
* The process is iterative and continues unless all elements have been
* consumed.
*
* @author Thomas Morgner
*/
public class LeftAlignmentProcessor extends AbstractAlignmentProcessor
{
private long position;
private int pageSegment;
public LeftAlignmentProcessor()
{
}
public int getPageSegment()
{
return pageSegment;
}
public void setPageSegment(final int pageSegment)
{
this.pageSegment = pageSegment;
}
protected long getPosition()
{
return position;
}
protected void setPosition(final long position)
{
this.position = position;
}
protected void addPosition(final long width)
{
this.position += width;
}
public RenderNode next()
{
position = getStartOfLine();
pageSegment = 0;
final RenderNode retval = super.next();
position = 0;
pageSegment = 0;
return retval;
}
/**
* Handle the next input chunk.
*
* @param start the start index
* @param count the number of elements in the sequence
* @return true, if processing should be finished, false if more elements are
* needed for the line.
*/
protected int handleElement(final int start, final int count)
{
final InlineSequenceElement[] sequenceElements = getSequenceElements();
final long[] elementDimensions = getElementDimensions();
final long[] elementPositions = getElementPositions();
long width = 0;
final int endIndex = start + count;
// In the given range, there should be only one content element.
InlineSequenceElement contentElement = null;
int contentIndex = start;
for (int i = start; i < endIndex; i++)
{
final InlineSequenceElement element = sequenceElements[i];
width += element.getMaximumWidth();
if (element instanceof StartSequenceElement ||
element instanceof EndSequenceElement)
{
continue;
}
contentElement = element;
contentIndex = i;
}
final long nextPosition = getPosition() + width;
final long pagebreak = getPageBreak(getPageSegment());
// Do we cross a page boundary?
if (nextPosition > pagebreak)
{
// todo: deal with the case where we have inner pagebreaks.
// check whether the current break is an inner or outer break.
// On inner break: Move element to new segment and continue processing
// On outer break: Stop processing
// Dont write through to the stored position; but prepare if
// we have to fallback ..
long position = getPosition();
for (int i = start; i < endIndex; i++)
{
final InlineSequenceElement element = sequenceElements[i];
elementPositions[i] = position;
final long elementWidth = element.getMaximumWidth();
elementDimensions[i] = elementWidth;
position += elementWidth;
}
// Yes, we cross a pagebreak. Stop working on it - we bail out here.
if (contentElement instanceof TextSequenceElement)
{
// the element may be splittable. Test, and if so, give a hint to the
// outside world ..
setSkipIndex(endIndex);
setBreakableIndex(contentIndex);
return (start);
}
else
{
// This is the first element and it still does not fit. How evil.
if (start == 0)
{
if (contentElement instanceof InlineNodeSequenceElement)
{
final RenderNode node = contentElement.getNode();
if (node instanceof RenderBox)
{
// OK, limit the size of the box to the maximum line width and
// revalidate it.
final RenderBox box = (RenderBox) node;
final long maxWidth = (getEndOfLine() - getPosition());
computeInlineBlock(box, getPosition(), maxWidth);
elementDimensions[endIndex - 1] = node.getWidth();
}
}
setSkipIndex(endIndex);
}
return(start);
}
}
// No, it is an ordinary advance ..
// Check, whether we hit an item-sequence element
if (contentElement instanceof InlineNodeSequenceElement == false)
{
for (int i = start; i < endIndex; i++)
{
final InlineSequenceElement element = sequenceElements[i];
elementPositions[i] = getPosition();
final long elementWidth = element.getMaximumWidth();
elementDimensions[i] = elementWidth;
addPosition(elementWidth);
}
return endIndex;
}
// Handle the ItemSequence element.
// This is a bit more complicated. So we encountered an inline-block
// element here. That means, the element will try to occuppy its
// maximum-content-width.
// Log.debug("Advance block at index " + contentIndex);
// final long ceWidth = contentElement.getMinimumWidth();
// final long extraSpace = contentElement.getMaximumWidth();
// Log.debug("Advance block: Min " + ceWidth);
// Log.debug("Advance block: Max " + extraSpace);
final long itemElementWidth = contentElement.getMaximumWidth();
final RenderNode node = contentElement.getNode();
if (node instanceof RenderBox)
{
final RenderBox box = (RenderBox) node;
computeInlineBlock(box, getPosition(), itemElementWidth);
}
else
{
node.setX(getPosition());
node.setWidth(itemElementWidth);
}
final long preferredEndingPos = getPosition() + itemElementWidth;
if (preferredEndingPos > getEndOfLine())
{
// We would eat the whole space up to the end of the line and more
// So lets move that element to the next line instead...
// But: We could easily end in an endless loop here. So check whether
// the element is the first in the line
if (start == 0)
{
// As it is guaranteed, that each chunk contains at least one item,
// checking for start == 0 is safe enough ..
return endIndex;
}
return start;
}
for (int i = start; i < contentIndex; i++)
{
final InlineSequenceElement element = sequenceElements[i];
final long elementWidth = element.getMaximumWidth();
elementPositions[i] = getPosition();
elementDimensions[i] = elementWidth;
addPosition(elementWidth);
}
elementPositions[contentIndex] = getPosition();
elementDimensions[contentIndex] = itemElementWidth;
setPosition(preferredEndingPos);
for (int i = contentIndex + 1; i < endIndex; i++)
{
final InlineSequenceElement element = sequenceElements[i];
final long elementWidth = element.getMaximumWidth();
elementPositions[i] = getPosition();
elementDimensions[i] = elementWidth;
addPosition(elementWidth);
}
return endIndex;
}
protected int handleLayout(final int start,
final int count,
final int contentIndex,
final long usedWidth)
{
// not used ..
return 0;
}
}
|