aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/apache/fop/fo/flow/TableCell.java
blob: 8b24159db0e25c38a4d2cd7e37d832f96d516fc5 (plain)
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
/*-- $Id$ --
 * Copyright (C) 2001 The Apache Software Foundation. All rights reserved.
 * For details on use and redistribution please refer to the
 * LICENSE file included with these sources.
 */

package org.apache.fop.fo.flow;

// FOP
import org.apache.fop.fo.*;
import org.apache.fop.fo.properties.*;
import org.apache.fop.layout.*;
import org.apache.fop.apps.FOPException;
import org.apache.fop.datatypes.*;

public class TableCell extends FObj {

		public static class Maker extends FObj.Maker {
				public FObj make(FObj parent, PropertyList propertyList)
						throws FOPException {
						return new TableCell(parent, propertyList);
				}
		}

		public static FObj.Maker maker() {
				return new TableCell.Maker();
		}

		//		int spaceBefore;
		//		int spaceAfter;
		ColorType backgroundColor;

		String id;
		int numColumnsSpanned;
		int numRowsSpanned;
    int iColNumber = -1; // uninitialized

		/** Offset of content rectangle in inline-progression-direction,
		 * relative to table.
		 */
		protected int startOffset;

		/** Dimension of content rectangle in inline-progression-direction */
		protected int width;

		/** Offset of content rectangle, in block-progression-direction,
		 * relative to the row.
		 */
		protected int beforeOffset;

		/* ivan demakov */
		protected int borderHeight = 0;
		protected int cellHeight = 0;

		protected int height = 0;
		protected int top; // Ypos of cell ???
		protected int verticalAlign ;
		protected boolean bRelativeAlign = false;

		//	boolean setup = false;
		boolean bSepBorders = true;

		/** Border separation value in the block-progression dimension.
		 *  Used in calculating cells height.
		 */
		int m_borderSeparation = 0;

		AreaContainer cellArea;

		public TableCell(FObj parent, PropertyList propertyList) {
				super(parent, propertyList);
				this.name = "fo:table-cell";
				doSetup(); // init some basic property values
		}

		// Set position relative to table (set by body?)
		public void setStartOffset(int offset) {
				startOffset = offset;
		}

		// Initially same as the column width containg this cell or the
		// sum of the spanned columns if numColumnsSpanned > 1
		public void setWidth(int width) {
				this.width = width;
		}

		public int getColumnNumber()
		{
		    return iColNumber;
		}

		public int getNumColumnsSpanned()
		{
				return numColumnsSpanned;
		}

		public int getNumRowsSpanned()
		{
				return numRowsSpanned;
		}

		public void doSetup()// throws FOPException
		{
			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();

			this.id =	this.properties.get("id").getString();

			bSepBorders = (this.properties.get("border-collapse").getEnum() ==
													BorderCollapse.SEPARATE);
			// 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.cellHeight = this.properties.get("height").getLength().mvalue();
		}


		public Status layout(Area area) throws FOPException {
				int originalAbsoluteHeight = area.getAbsoluteHeight();
				if (this.marker == BREAK_AFTER) {
						return new Status(Status.OK);
				}

				if (this.marker == START) {
// 						if (!setup) {
// 								doSetup(area);
// 						}

						// Calculate cell borders
						calcBorders(propMgr.getBorderAndPadding());

						area.getIDReferences().createID(id);

						this.marker = 0;
				}

				/*
					if ((spaceBefore != 0) && (this.marker ==0)) {
					area.increaseHeight(spaceBefore);
					}
				*/

				if ( marker==0 ) {
						// configure id
						area.getIDReferences().configureID(id,area);
				}

				int spaceLeft = area.spaceLeft() - m_borderSeparation/2 + borderHeight/2 ;

				// The Area position defines the content rectangle! Borders
				// and padding are outside of this rectangle.
				this.cellArea =
						new AreaContainer(propMgr.getFontState(area.getFontInfo()),
															startOffset, beforeOffset,
															width, spaceLeft,
															Position.RELATIVE);

				cellArea.foCreator=this;	// G Seshadri
				cellArea.setPage(area.getPage());
				cellArea.setBorderAndPadding(propMgr.getBorderAndPadding());
				cellArea.setBackgroundColor(this.backgroundColor);
				cellArea.start();

				cellArea.setAbsoluteHeight(area.getAbsoluteHeight()); //???
				cellArea.setIDReferences(area.getIDReferences());
				//******** CHECK THIS: we've changed startOffset (KL)
				cellArea.setTableCellXOffset(startOffset);

				int numChildren = this.children.size();
				for (int i = this.marker; i < numChildren; i++) {
						FObj fo = (FObj) children.elementAt(i);
						fo.setIsInTableCell();
						fo.forceWidth(width); // ???

						// Overflows may cause a row to be re-layedout,
						// need to pass already processed content.
						this.marker = i;

						Status status;
						if ((status = fo.layout(cellArea)).isIncomplete()) {
								//this.marker = i;
								if ((i == 0) && (status.getCode() == Status.AREA_FULL_NONE)) {
										return new Status(Status.AREA_FULL_NONE);
								} else {
										// hani Elabed 11/21/2000
										area.addChild(cellArea);
										// area.setAbsoluteHeight(cellArea.getAbsoluteHeight());
										return new Status(Status.AREA_FULL_SOME);
								}
						}

						area.setMaxHeight(area.getMaxHeight() - spaceLeft +
															this.cellArea.getMaxHeight());
				}
				cellArea.end();
				area.addChild(cellArea);

				// This is the allocation height of the cell (including borders
				// and padding
				// ALSO need to include offsets if using "separate borders"
				height = cellArea.getHeight();
				top = cellArea.getCurrentYPosition(); // CHECK THIS!!!

				// reset absoluteHeight to beginning of row
				// area.setHeight(cellArea.getHeight() + spaceBefore + spaceAfter);
				// I don't think we should do this here (KL) !!!
				// area.setHeight(cellArea.getHeight());
				//area.setAbsoluteHeight(originalAbsoluteHeight);

				return new Status(Status.OK);
		}

		// TableRow calls this. Anyone else?
		public int getHeight() {
				// return cellArea.getHeight() + spaceBefore + spaceAfter;
				if (cellHeight > 0) return cellHeight;
				return cellArea.getHeight() + m_borderSeparation - borderHeight/2;
		}

		/** Called by TableRow to set final size of cell content rectangles and
		 * to vertically align the actual content within the cell rectangle.
		 * Passed value is height of this row in the grid : allocation height
		 * of the cells (including any border separation values).
		 */
		public void setRowHeight(int h) {
				// This seems wierd. It's very old.
				// The height passed here is the total row height.
				// But we need to align the content of the cell.
				//	cellArea.setMaxHeight(h);
				// Increase content height by difference of row content height
				// and current cell allocation height (includes borders & padding)
				cellArea.increaseHeight(h + borderHeight/2 - cellArea.getHeight());
				if (bRelativeAlign) {
						// Must get info for all cells starting in row!
						// verticalAlign can be BEFORE or BASELINE
				}
				else {
						int delta = h - getHeight();
						if (delta > 0) {
						switch(verticalAlign) {
						  case DisplayAlign.CENTER:
								// Increase cell padding before and after and change
								// "Y" position of content rectangle
									//	cellArea.getBorderAndPadding().setPaddingBefore(delta/2);
									//cellArea.getBorderAndPadding().setPaddingAfter(delta-delta/2);
									cellArea.shiftYPosition(delta/2);
								break;
						  case DisplayAlign.AFTER:
								// Increase cell padding before and change
								// "Y" position of content rectangle
									//cellArea.getBorderAndPadding().setPaddingBefore(delta);
									cellArea.shiftYPosition(delta);
								break;
						  case DisplayAlign.BEFORE:
						  default: // OK
								break;
						}
						}
				}
		}

		// Calculate cell border and padding
		private void calcBorders(BorderAndPadding 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().mvalue()/2;
						int contentOffset = iSep + bp.getBorderLeftWidth(false) +
								bp.getPaddingLeft(false);
						/*
						int contentOffset = iSep + bp.getBorderStartWidth(false) +
								bp.getPaddingStart(false);
						*/
						this.startOffset += contentOffset;
						this.width -= (contentOffset + iSep +
								bp.getBorderRightWidth(false) + bp.getPaddingRight(false));
						// bp.getBorderEndWidth(false) + bp.getPaddingEnd(false);
						// Offset of content rectangle in the block-progression direction
						m_borderSeparation =
							properties.get("border-separation.block-progression-direction").getLength().mvalue();
						this.beforeOffset = m_borderSeparation/2 +
								bp.getBorderTopWidth(false) +	bp.getPaddingTop(false);
						// bp.getBorderBeforeWidth(false) +	bp.getPaddingBefore(false);
						if (this.cellHeight > 0) {
								this.cellHeight += this.beforeOffset + m_borderSeparation/2 +
										bp.getBorderBottomWidth(false) + bp.getPaddingBottom(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.)
						 */
						/*
							border-start
							If cell in column 1, then combine with table border-start props
							else combine with border-end props for preceding cell in this
							row. Look out for spanning rows.
							border-end
							If cell in last column, then combine with table border-end props
							else combine with border-start props for following cell in this
							row. Look out for spanning rows.
							border-before
							If cell in row 1 (of whole table, not just body),
							then combine with table border-before props,
							else combine with border-after props for preceding cell in this
							column. Look out for spanning columns.
							border-after
							If cell in last row (of whole table, not just body),
							then combine with table border-after props,
							else combine with border-before props for following cell in this
							column. Look out for spanning columns.
						*/

						/* ivan demakov */
						int borderStart  = bp.getBorderLeftWidth(false);
						int borderEnd    = bp.getBorderRightWidth(false);
						int borderBefore = bp.getBorderTopWidth(false);
						int borderAfter  = bp.getBorderBottomWidth(false);

						int contentOffset = borderStart/2 + bp.getPaddingLeft(false);

						this.startOffset += contentOffset;
						this.width -= (contentOffset + borderEnd/2 + bp.getPaddingRight(false));

						this.beforeOffset = borderBefore/2 + bp.getPaddingTop(false);
						this.borderHeight = borderBefore + borderAfter;
						if (this.cellHeight > 0) {
								this.cellHeight += this.beforeOffset + borderAfter/2 + bp.getPaddingBottom(false);
						}
				}
		}
}