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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
|
/*
* Copyright 1999-2005 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/* $Id$ */
package org.apache.fop.layoutmgr.table;
import org.apache.fop.fo.flow.TableRow;
import org.apache.fop.layoutmgr.BlockStackingLayoutManager;
import org.apache.fop.layoutmgr.LayoutManager;
import org.apache.fop.layoutmgr.LeafPosition;
import org.apache.fop.layoutmgr.BreakPoss;
import org.apache.fop.layoutmgr.LayoutContext;
import org.apache.fop.layoutmgr.PositionIterator;
import org.apache.fop.layoutmgr.BreakPossPosIter;
import org.apache.fop.layoutmgr.Position;
import org.apache.fop.layoutmgr.TraitSetter;
import org.apache.fop.area.Area;
import org.apache.fop.area.Block;
import org.apache.fop.traits.MinOptMax;
import java.util.Iterator;
import java.util.ArrayList;
import java.util.List;
/**
* LayoutManager for a table-row FO.
* The row contains cells that are organised according to the columns.
* A break in a table row will contain breaks for each table cell.
* If there are row spanning cells then these cells belong to this row
* but effect the occupied columns of future rows.
*/
public class Row extends BlockStackingLayoutManager {
private TableRow fobj;
private List cellList = null;
private List columns = null;
private int rowHeight;
private int xoffset;
private int yoffset;
private class RowPosition extends LeafPosition {
protected List cellBreaks;
protected RowPosition(LayoutManager lm, int pos, List l) {
super(lm, pos);
cellBreaks = l;
}
}
/**
* Create a new row layout manager.
*
*/
public Row(TableRow node) {
super(node);
fobj = node;
}
/**
* Set the columns from the table.
*
* @param cols the list of columns for this table
*/
public void setColumns(List cols) {
columns = cols;
}
private void setupCells() {
cellList = new ArrayList();
// add cells to list
while (childLMiter.hasNext()) {
curChildLM = (LayoutManager) childLMiter.next();
curChildLM.setParent(this);
curChildLM.initialize();
cellList.add(curChildLM);
}
}
/**
* Get the layout manager for a cell.
*
* @param pos the position of the cell
* @return the cell layout manager
*/
protected Cell getCellLM(int pos) {
if (cellList == null) {
setupCells();
}
if (pos < cellList.size()) {
return (Cell)cellList.get(pos);
}
return null;
}
/**
* Get the next break possibility.
* A row needs to get the possible breaks for each cell
* in the row and find a suitable break across all cells.
*
* @param context the layout context for getting breaks
* @return the next break possibility
*/
public BreakPoss getNextBreakPoss(LayoutContext context) {
LayoutManager curLM; // currently active LM
BreakPoss lastPos = null;
List breakList = new ArrayList();
int min = 0;
int opt = 0;
int max = 0;
int cellcount = 0;
boolean over = false;
while ((curLM = getCellLM(cellcount++)) != null) {
List childBreaks = new ArrayList();
MinOptMax stackSize = new MinOptMax();
// Set up a LayoutContext
// the ipd is from the current column
int ipd = context.getRefIPD();
BreakPoss bp;
LayoutContext childLC = new LayoutContext(0);
childLC.setStackLimit(
MinOptMax.subtract(context.getStackLimit(),
stackSize));
int size = columns.size();
Column col;
if (cellcount > size - 1) {
col = (Column)columns.get(size - 1);
} else {
col = (Column)columns.get(cellcount - 1);
}
childLC.setRefIPD(col.getWidth().getValue());
while (!curLM.isFinished()) {
if ((bp = curLM.getNextBreakPoss(childLC)) != null) {
if (stackSize.opt + bp.getStackingSize().opt > context.getStackLimit().max) {
// reset to last break
if (lastPos != null) {
LayoutManager lm = lastPos.getLayoutManager();
lm.resetPosition(lastPos.getPosition());
if (lm != curLM) {
curLM.resetPosition(null);
}
} else {
curLM.resetPosition(null);
}
over = true;
break;
}
stackSize.add(bp.getStackingSize());
lastPos = bp;
childBreaks.add(bp);
if (bp.nextBreakOverflows()) {
over = true;
break;
}
childLC.setStackLimit(MinOptMax.subtract(
context.getStackLimit(), stackSize));
}
}
// the min is the maximum min of all cells
if (stackSize.min > min) {
min = stackSize.min;
}
// the optimum is the maximum of all optimums
if (stackSize.opt > opt) {
opt = stackSize.opt;
}
// the maximum is the largest maximum
if (stackSize.max > max) {
max = stackSize.max;
}
breakList.add(childBreaks);
}
rowHeight = opt;
MinOptMax rowSize = new MinOptMax(min, opt, max);
boolean fin = true;
cellcount = 0;
while ((curLM = getCellLM(cellcount++)) != null) {
if (!curLM.isFinished()) {
fin = false;
break;
}
}
setFinished(fin);
RowPosition rp = new RowPosition(this, breakList.size() - 1, breakList);
BreakPoss breakPoss = new BreakPoss(rp);
if (over) {
breakPoss.setFlag(BreakPoss.NEXT_OVERFLOWS, true);
}
breakPoss.setStackingSize(rowSize);
return breakPoss;
}
/**
* Reset the layoutmanager "iterator" so that it will start
* with the passed Position's generating LM
* on the next call to getChildLM.
* @param pos a Position returned by a child layout manager
* representing a potential break decision.
* If pos is null, then back up to the first child LM.
*/
protected void reset(Position pos) {
LayoutManager curLM; // currently active LM
int cellcount = 0;
if (pos == null) {
while ((curLM = getCellLM(cellcount)) != null) {
curLM.resetPosition(null);
cellcount++;
}
} else {
RowPosition rpos = (RowPosition)pos;
List breaks = rpos.cellBreaks;
while ((curLM = getCellLM(cellcount)) != null) {
List childbreaks = (List)breaks.get(cellcount);
curLM.resetPosition((Position)childbreaks.get(childbreaks.size() - 1));
cellcount++;
}
}
setFinished(false);
}
/**
* Set the x position offset of this row.
* This is used to set the position of the areas returned by this row.
*
* @param off the x offset
*/
public void setXOffset(int off) {
xoffset = off;
}
/**
* Set the y position offset of this row.
* This is used to set the position of the areas returned by this row.
*
* @param off the y offset
*/
public void setYOffset(int off) {
yoffset = off;
}
/**
* Add the areas for the break points.
* This sets the offset of each cell as it is added.
*
* @param parentIter the position iterator
* @param layoutContext the layout context for adding areas
*/
public void addAreas(PositionIterator parentIter,
LayoutContext layoutContext) {
getParentArea(null);
addID(fobj.getId());
Cell childLM;
int iStartPos = 0;
LayoutContext lc = new LayoutContext(0);
while (parentIter.hasNext()) {
RowPosition lfp = (RowPosition) parentIter.next();
// Add the block areas to Area
int cellcount = 0;
int x = this.xoffset;
//int x = (TableLayoutManager)getParent()).;
for (Iterator iter = lfp.cellBreaks.iterator(); iter.hasNext();) {
List cellsbr = (List)iter.next();
PositionIterator breakPosIter;
breakPosIter = new BreakPossPosIter(cellsbr, 0, cellsbr.size());
iStartPos = lfp.getLeafPos() + 1;
int size = columns.size();
Column col;
if (cellcount > size - 1) {
col = (Column)columns.get(size - 1);
} else {
col = (Column)columns.get(cellcount);
cellcount++;
}
while ((childLM = (Cell)breakPosIter.getNextChildLM()) != null) {
childLM.setXOffset(x);
childLM.setYOffset(yoffset);
childLM.setRowHeight(rowHeight);
childLM.addAreas(breakPosIter, lc);
}
x += col.getWidth().getValue();
}
}
flush();
}
/**
* Get the row height of the row after adjusting.
* Should only be called after adding the row areas.
*
* @return the row height of this row after adjustment
*/
public int getRowHeight() {
return rowHeight;
}
/**
* Return an Area which can contain the passed childArea. The childArea
* may not yet have any content, but it has essential traits set.
* In general, if the LayoutManager already has an Area it simply returns
* it. Otherwise, it makes a new Area of the appropriate class.
* It gets a parent area for its area by calling its parent LM.
* Finally, based on the dimensions of the parent area, it initializes
* its own area. This includes setting the content IPD and the maximum
* BPD.
*
* @param childArea the child area
* @return the parent are for the child
*/
public Area getParentArea(Area childArea) {
return parentLM.getParentArea(childArea);
}
/**
* Add the child.
* Rows return the areas returned by the child elements.
* This simply adds the area to the parent layout manager.
*
* @param childArea the child area
*/
public void addChild(Area childArea) {
parentLM.addChild(childArea);
}
/**
* Reset the position of this layout manager.
*
* @param resetPos the position to reset to
*/
public void resetPosition(Position resetPos) {
if (resetPos == null) {
reset(null);
}
}
/**
* Get the area for this row for background.
*
* @return the row area
*/
public Area getRowArea() {
Area block = new Block();
TraitSetter.addBackground(block, fobj.getCommonBorderPaddingBackground());
return block;
}
}
|