diff options
author | Jeremias Maerki <jeremias@apache.org> | 2007-03-23 13:08:32 +0000 |
---|---|---|
committer | Jeremias Maerki <jeremias@apache.org> | 2007-03-23 13:08:32 +0000 |
commit | 26f685652daa9d59317c326270231a81a9290709 (patch) | |
tree | c581f2d34eda21a82f4ec89e5597606f782dd174 /src/java/org/apache/fop/layoutmgr | |
parent | 40b3642340e89fe4b7baf5f4d130f8b34b0eaaf7 (diff) | |
download | xmlgraphics-fop-26f685652daa9d59317c326270231a81a9290709.tar.gz xmlgraphics-fop-26f685652daa9d59317c326270231a81a9290709.zip |
Better document some of the code in RowPainter.
Added a check in table-cell_number-rows-spanned_bug38397.xml which is the reason for one of the if-branches in RowPainter. It wan't tested previously so that if-branch could easily be mistaken to be useless.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@521713 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/layoutmgr')
-rw-r--r-- | src/java/org/apache/fop/layoutmgr/table/RowPainter.java | 30 |
1 files changed, 23 insertions, 7 deletions
diff --git a/src/java/org/apache/fop/layoutmgr/table/RowPainter.java b/src/java/org/apache/fop/layoutmgr/table/RowPainter.java index d8c294a07..3e298d71c 100644 --- a/src/java/org/apache/fop/layoutmgr/table/RowPainter.java +++ b/src/java/org/apache/fop/layoutmgr/table/RowPainter.java @@ -48,6 +48,11 @@ class RowPainter { * part present on the current page. */ private int[] firstRow = new int[3]; + /** + * Keeps track of the y-offsets of each row on a page (for body, header and footer separately). + * This is particularly needed for spanned cells where you need to know the y-offset + * of the starting row when the area is generated at the time the cell is closed. + */ private Map[] rowOffsets = new Map[] {new java.util.HashMap(), new java.util.HashMap(), new java.util.HashMap()}; @@ -237,17 +242,26 @@ class RowPainter { tclm.addRowBackgroundArea(rowFO, actualRowHeight, layoutContext.getRefIPD(), yoffset); for (int i = 0; i < primaryGridUnits.length; i++) { GridUnit currentGU = lastRow.safelyGetGridUnit(i); + //currentGU can be null if there's no grid unit + //at this place in the current row (empty cell and no borders to process) + if ((primaryGridUnits[i] != null) && (forcedFlush || (end[i] == primaryGridUnits[i].getElements().size() - 1) - && (currentGU == null || currentGU.isLastGridUnitRowSpan())) - || (primaryGridUnits[i] == null && currentGU != null)) { - //the last line in the "if" above is to avoid a premature end of an + && /*[1]*/ (currentGU == null || currentGU.isLastGridUnitRowSpan())) + || /*[2]*/ (primaryGridUnits[i] == null && currentGU != null)) { + + //[1] the last line in the "if" above is to avoid a premature end of a //row-spanned cell because no GridUnitParts are generated after a cell is - //finished with its content. currentGU can be null if there's no grid unit - //at this place in the current row (empty cell and no borders to process) + //finished with its content. + //See table-cell_number-rows-spanned_bug38397.xml + + //[2] A row-spanned cell has finished contributing content on the previous page + //and now still has to cause grid units to be painted. + //See table-cell_page-break_span.xml + if (log.isDebugEnabled()) { - log.debug((forcedFlush ? "FORCED " : "") + "flushing..." + i + " " - + start[i] + "-" + end[i]); + log.debug((forcedFlush ? "FORCED " : "") + "flushing... col=" + i + + " elem-list:" + start[i] + "-" + end[i]); } PrimaryGridUnit gu = primaryGridUnits[i]; if (gu == null @@ -282,6 +296,8 @@ class RowPainter { //Determine y offset for the cell Integer offset = (Integer)rowOffsets[bt].get(new Integer(startRow)); while (offset == null) { + //TODO Figure out what this does and when it's triggered + //This block is probably never used, at least it's not triggered by any of our tests startRow--; offset = (Integer)rowOffsets[bt].get(new Integer(startRow)); } |