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
385
386
387
388
389
|
/*
* $Id: TableCell.java,v 1.52 2003/03/05 20:38:22 jeremias Exp $
* ============================================================================
* The Apache Software License, Version 1.1
* ============================================================================
*
* Copyright (C) 1999-2003 The Apache Software Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modifica-
* tion, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* 3. The end-user documentation included with the redistribution, if any, must
* include the following acknowledgment: "This product includes software
* developed by the Apache Software Foundation (http://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself, if
* and wherever such third-party acknowledgments normally appear.
*
* 4. The names "FOP" and "Apache Software Foundation" must not be used to
* endorse or promote products derived from this software without prior
* written permission. For written permission, please contact
* apache@apache.org.
*
* 5. Products derived from this software may not be called "Apache", nor may
* "Apache" appear in their name, without prior written permission of the
* Apache Software Foundation.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* APACHE SOFTWARE FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLU-
* DING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
* ============================================================================
*
* This software consists of voluntary contributions made by many individuals
* on behalf of the Apache Software Foundation and was originally created by
* James Tauber <jtauber@jtauber.com>. For more information on the Apache
* Software Foundation, please see <http://www.apache.org/>.
*/
package org.apache.fop.fo.flow;
// XML
import org.xml.sax.Attributes;
// FOP
import org.apache.fop.apps.FOPException;
import org.apache.fop.datatypes.ColorType;
import org.apache.fop.fo.FONode;
import org.apache.fop.fo.FObj;
import org.apache.fop.fo.FOTreeVisitor;
import org.apache.fop.fo.properties.BorderCollapse;
import org.apache.fop.fo.properties.DisplayAlign;
import org.apache.fop.fo.properties.CommonAccessibility;
import org.apache.fop.fo.properties.CommonAural;
import org.apache.fop.fo.properties.CommonBackground;
import org.apache.fop.fo.properties.CommonBorderAndPadding;
import org.apache.fop.fo.properties.CommonRelativePosition;
/**
* Class modelling the fo:table-cell object. See Sec. 6.7.10 of the XSL-FO
* Standard.
*/
public class TableCell extends FObj {
// private int spaceBefore;
// private int spaceAfter;
private ColorType backgroundColor;
private int numColumnsSpanned;
private int numRowsSpanned;
private int iColNumber = -1; // uninitialized
/**
* Offset of content rectangle in inline-progression-direction,
* relative to table.
*/
protected int startOffset;
/**
* Dimension of allocation rectangle in inline-progression-direction,
* determined by the width of the column(s) occupied by the cell
*/
protected int width;
/**
* Offset of content rectangle, in block-progression-direction,
* relative to the row.
*/
protected int beforeOffset = 0;
/**
* Offset of content rectangle, in inline-progression-direction,
* relative to the column start edge.
*/
protected int startAdjust = 0;
/**
* Adjust to theoretical column width to obtain content width
* relative to the column start edge.
*/
protected int widthAdjust = 0;
/** For collapsed border style */
protected int borderHeight = 0;
/** Minimum content height of cell. */
protected int minCellHeight = 0;
/** Height of cell */
protected int height = 0;
/** Ypos of cell ??? */
protected int top;
/** corresponds to display-align property */
protected int verticalAlign;
/** is this cell relatively aligned? */
protected boolean bRelativeAlign = false;
// boolean setup = false;
private boolean bSepBorders = true;
/**
* Set to true if all content completely laid out.
*/
private boolean bDone = false;
/**
* Border separation value in the block-progression dimension.
* Used in calculating cells height.
*/
private int borderSeparation = 0;
/**
* @param parent FONode that is the parent of this object
*/
public TableCell(FONode parent) {
super(parent);
}
/**
* Overriden from FObj.
* @param attlist Collection of attributes passed to us from the parser.
* @throws FOPException for FO errors
*/
public void handleAttrs(Attributes attlist) throws FOPException {
super.handleAttrs(attlist);
doSetup(); // init some basic property values
}
/**
* Set position relative to table (set by body?)
*/
public void setStartOffset(int offset) {
startOffset = offset;
}
/**
* Sets the width of the cell. Initially this width is the same as the
* width of the column containing this cell, or the sum of the spanned
* columns if numColumnsSpanned > 1
* @param width the width of the cell (in millipoints ??)
*/
public void setWidth(int width) {
this.width = width;
}
/**
* @return number of the column containing this cell
*/
public int getColumnNumber() {
return iColNumber;
}
/**
* @return the number of columns spanned by this cell
*/
public int getNumColumnsSpanned() {
return numColumnsSpanned;
}
/**
* @return the number of rows spanned by this cell
*/
public int getNumRowsSpanned() {
return numRowsSpanned;
}
private void doSetup() {
// Common Accessibility Properties
CommonAccessibility mAccProps = propMgr.getAccessibilityProps();
// Common Aural Properties
CommonAural mAurProps = propMgr.getAuralProps();
// Common Border, Padding, and Background Properties
CommonBorderAndPadding bap = propMgr.getBorderAndPadding();
CommonBackground bProps = propMgr.getBackgroundProps();
// Common Relative Position Properties
CommonRelativePosition mRelProps = propMgr.getRelativePositionProps();
// this.properties.get("border-after-precedence");
// this.properties.get("border-before-precendence");
// this.properties.get("border-end-precendence");
// this.properties.get("border-start-precendence");
// this.properties.get("block-progression-dimension");
// this.properties.get("column-number");
// this.properties.get("display-align");
// this.properties.get("relative-align");
// this.properties.get("empty-cells");
// this.properties.get("ends-row");
// this.properties.get("height");
setupID();
// this.properties.get("number-columns-spanned");
// this.properties.get("number-rows-spanned");
// this.properties.get("starts-row");
// this.properties.get("width");
this.iColNumber =
properties.get("column-number").getNumber().intValue();
if (iColNumber < 0) {
iColNumber = 0;
}
this.numColumnsSpanned =
this.properties.get("number-columns-spanned").getNumber().intValue();
if (numColumnsSpanned < 1) {
numColumnsSpanned = 1;
}
this.numRowsSpanned =
this.properties.get("number-rows-spanned").getNumber().intValue();
if (numRowsSpanned < 1) {
numRowsSpanned = 1;
}
this.backgroundColor =
this.properties.get("background-color").getColorType();
bSepBorders = (this.properties.get("border-collapse").getEnum()
== BorderCollapse.SEPARATE);
calcBorders(propMgr.getBorderAndPadding());
// Vertical cell alignment
verticalAlign = this.properties.get("display-align").getEnum();
if (verticalAlign == DisplayAlign.AUTO) {
// Depends on all cells starting in row
bRelativeAlign = true;
verticalAlign = this.properties.get("relative-align").getEnum();
} else {
bRelativeAlign = false; // Align on a per-cell basis
}
this.minCellHeight =
this.properties.get("height").getLength().getValue();
}
/**
* Calculate cell border and padding, including offset of content
* rectangle from the theoretical grid position.
*/
private void calcBorders(CommonBorderAndPadding bp) {
if (this.bSepBorders) {
/*
* Easy case.
* Cell border is the property specified directly on cell.
* Offset content rect by half the border-separation value,
* in addition to the border and padding values. Note:
* border-separate should only be specified on the table object,
* but it inherits.
*/
int iSep = properties.get(
"border-separation.inline-progression-direction").getLength().getValue();
this.startAdjust = iSep / 2 + bp.getBorderLeftWidth(false)
+ bp.getPaddingLeft(false);
/*
* int contentOffset = iSep + bp.getBorderStartWidth(false) +
* bp.getPaddingStart(false);
*/
this.widthAdjust = startAdjust + iSep - iSep / 2
+ bp.getBorderRightWidth(false)
+ bp.getPaddingRight(false);
// bp.getBorderEndWidth(false) + bp.getPaddingEnd(false);
// Offset of content rectangle in the block-progression direction
borderSeparation = properties.get(
"border-separation.block-progression-direction").getLength().getValue();
this.beforeOffset = borderSeparation / 2
+ bp.getBorderTopWidth(false)
+ bp.getPaddingTop(false);
// bp.getBorderBeforeWidth(false) + bp.getPaddingBefore(false);
} else {
// System.err.println("Collapse borders");
/*
* Hard case.
* Cell border is combination of other cell borders, or table
* border for edge cells. Also seems to border values specified
* on row and column FO in the table (if I read CR correclty.)
*/
// Set up before and after borders, taking into account row
// and table border properties.
// ??? What about table-body, header,footer
/*
* We can't calculate before and after because we aren't sure
* whether this row will be the first or last in its area, due
* to redoing break decisions (at least in the "new" architecture.)
* So in the general case, we will calculate two possible values:
* the first/last one and the "middle" one.
* Example: border-before
* 1. If the cell is in the first row in the first table body, it
* will combine with the last row of the header, or with the
* top (before) table border if there is no header.
* 2. Otherwise there are two cases:
* a. the row is first in its (non-first) Area.
* The border can combine with either:
* i. the last row of table-header and its cells, or
* ii. the table before border (no table-header or it is
* omitted on non-first Areas).
* b. the row isn't first in its Area.
* The border combines with the border of the previous
* row and the cells which end in that row.
*/
/*
* if-first
* Calculate the effective border of the cell before-border,
* it's parent row before-border, the last header row after-border,
* the after border of the cell(s) which end in the last header
* row.
*/
/*
* if-not-first
* Calculate the effective border of the cell before-border,
* it's parent row before-border, the previous row after-border,
* the after border of the cell(s) which end in the previous
* row.
*/
/* ivan demakov */
int borderStart = bp.getBorderLeftWidth(false);
int borderEnd = bp.getBorderRightWidth(false);
int borderBefore = bp.getBorderTopWidth(false);
int borderAfter = bp.getBorderBottomWidth(false);
this.startAdjust = borderStart / 2 + bp.getPaddingLeft(false);
this.widthAdjust = startAdjust + borderEnd / 2
+ bp.getPaddingRight(false);
this.beforeOffset = borderBefore / 2 + bp.getPaddingTop(false);
// Half border height to fix overestimate of area size!
this.borderHeight = (borderBefore + borderAfter) / 2;
}
}
/**
*
* @return true (TableCell can contain Markers)
*/
protected boolean containsMarkers() {
return true;
}
/**
* This is a hook for an FOTreeVisitor subclass to be able to access
* this object.
* @param fotv the FOTreeVisitor subclass that can access this object.
* @see org.apache.fop.fo.FOTreeVisitor
*/
public void acceptVisitor(FOTreeVisitor fotv) {
fotv.serveVisitor(this);
}
}
|