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 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443
|
/**
* $Id: RtfRow.java,v 1.38 2006/02/09 17:25:25 hallm Exp $
* $Name: $
*
* Copyright 2001, 2002 by Mark Hall
*
* The contents of this file are subject to the Mozilla Public License Version 1.1
* (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.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the License.
*
* The Original Code is 'iText, a free JAVA-PDF library'.
*
* The Initial Developer of the Original Code is Bruno Lowagie. Portions created by
* the Initial Developer are Copyright (C) 1999, 2000, 2001, 2002 by Bruno Lowagie.
* All Rights Reserved.
* Co-Developer of the code is Paulo Soares. Portions created by the Co-Developer
* are Copyright (C) 2000, 2001, 2002 by Paulo Soares. All Rights Reserved.
*
* Contributor(s): all the names of the contributors are added in the source code
* where applicable.
*
* Alternatively, the contents of this file may be used under the terms of the
* LGPL license (the ?GNU LIBRARY GENERAL PUBLIC LICENSE?), in which case the
* provisions of LGPL are applicable instead of those above. If you wish to
* allow use of your version of this file only under the terms of the LGPL
* License and not to allow others to use your version of this file under
* the MPL, indicate your decision by deleting the provisions above and
* replace them with the notice and other provisions required by the LGPL.
* If you do not delete the provisions above, a recipient may use your version
* of this file under either the MPL or the GNU LIBRARY GENERAL PUBLIC LICENSE.
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the MPL as stated above or under the terms of the GNU
* Library General Public License as published by the Free Software Foundation;
* either version 2 of the License, or 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 Library general Public License for more
* details.
*
* If you didn't download this code from the following link, you should check if
* you aren't using an obsolete version:
* http://www.lowagie.com/iText/
*/
package com.lowagie.text.rtf;
import com.lowagie.text.*;
import java.util.ArrayList;
import java.util.Iterator;
import java.io.*;
import java.awt.Color;
/**
* A Helper Class for the <CODE>RtfWriter</CODE>.
* <P>
* Do not use it directly
*
* ONLY FOR USE WITH THE RtfWriter NOT with the RtfWriter2.
*
* Parts of this Class were contributed by Steffen Stundzig. Many thanks for the
* improvements.
* Code added by c
* @deprecated Please move to the RtfWriter2 and associated classes.
*/
public class RtfRow {
/** Table border solid */
public static final byte[] tableBorder = "brdrs".getBytes();
/** Table border width */
public static final byte[] tableBorderWidth = "brdrw".getBytes();
/** Table border color */
public static final byte[] tableBorderColor = "brdrcf".getBytes();
/** Table row defaults */
private static final byte[] rowBegin = "trowd".getBytes();
/** End of table row */
private static final byte[] rowEnd = "row".getBytes();
/** Table row autofit */
private static final byte[] rowAutofit = "trautofit1".getBytes();
private static final byte[] graphLeft = "trgaph".getBytes();
/** Row border left */
private static final byte[] rowBorderLeft = "trbrdrl".getBytes();
/** Row border right */
private static final byte[] rowBorderRight = "trbrdrr".getBytes();
/** Row border top */
private static final byte[] rowBorderTop = "trbrdrt".getBytes();
/** Row border bottom */
private static final byte[] rowBorderBottom = "trbrdrb".getBytes();
/** Row border horiz inline */
private static final byte[] rowBorderInlineHorizontal = "trbrdrh".getBytes();
/** Row border bottom */
private static final byte[] rowBorderInlineVertical = "trbrdrv".getBytes();
/** Default cell spacing left */
private static final byte[] rowSpacingLeft = "trspdl".getBytes();
/** Default cell spacing right */
private static final byte[] rowSpacingRight = "trspdr".getBytes();
/** Default cell spacing top */
private static final byte[] rowSpacingTop = "trspdt".getBytes();
/** Default cell spacing bottom */
private static final byte[] rowSpacingBottom = "trspdb".getBytes();
/** Default cell spacing format left */
private static final byte[] rowSpacingLeftStyle = "trspdfl3".getBytes();
/** Default cell spacing format right */
private static final byte[] rowSpacingRightStyle = "trspdfr3".getBytes();
/** Default cell spacing format top */
private static final byte[] rowSpacingTopStyle = "trspdft3".getBytes();
/** Default cell spacing format bottom */
private static final byte[] rowSpacingBottomStyle = "trspdfb3".getBytes();
/** Default cell padding left */
private static final byte[] rowPaddingLeft = "trpaddl".getBytes();
/** Default cell padding right */
private static final byte[] rowPaddingRight = "trpaddr".getBytes();
/** Default cell padding format left */
private static final byte[] rowPaddingLeftStyle = "trpaddfl3".getBytes();
/** Default cell padding format right */
private static final byte[] rowPaddingRightStyle = "trpaddfr3".getBytes();
/** Row width format */
private static final byte[] rowWidthStyle = "trftsWidth3".getBytes();
/** Row width */
private static final byte[] rowWidth = "trwWidth".getBytes();
/**
* Table row header. This row should appear at the top of every
* page the current table appears on.
*/
private static final byte[] rowHeader = "trhdr".getBytes();
/**
* Table row keep together. This row cannot be split by a page break.
* This property is assumed to be off unless the control word is
* present.
*/
private static final byte[] rowKeep = "trkeep".getBytes();
/** Table alignment left */
private static final byte[] rowAlignLeft = "trql".getBytes();
/** Table alignment center */
private static final byte[] rowAlignCenter = "trqc".getBytes();
/** Table alignment right */
private static final byte[] rowAlignRight = "trqr".getBytes();
/** List of <code>RtfCell</code>s in this <code>RtfRow</code> */
private ArrayList cells = new ArrayList();
/** The <code>RtfWriter</code> to which this <code>RtfRow</code> belongs */
private RtfWriter writer = null;
/** The <coce>RtfTable</code> to which this <code>RtfRow</code> belongs */
private RtfTable mainTable = null;
/** The width of this <code>RtfRow</code> (in percent) */
private int width = 100;
/** The default cellpadding of <code>RtfCells</code> in this
* <code>RtfRow</code> */
private int cellpadding = 115;
/** The default cellspacing of <code>RtfCells</code> in this
* <code>RtfRow</code> */
private int cellspacing = 14;
/** The borders of this <code>RtfRow</code> */
private int borders = 0;
/** The border color of this <code>RtfRow</code> */
private java.awt.Color borderColor = null;
/** The border width of this <code>RtfRow</code> */
private float borderWidth = 0;
/** Original Row */
private Row origRow = null;
/**
* Create a new <code>RtfRow</code>.
*
* @param writer The <code>RtfWriter</code> that this <code>RtfRow</code> belongs to
* @param mainTable The <code>RtfTable</code> that created this
* <code>RtfRow</code>
*/
public RtfRow(RtfWriter writer, RtfTable mainTable) {
super();
this.writer = writer;
this.mainTable = mainTable;
}
/**
* Pregenerate the <code>RtfCell</code>s in this <code>RtfRow</code>.
*
* @param columns The number of <code>RtfCell</code>s to be generated.
*/
public void pregenerateRows(int columns) {
for (int i = 0; i < columns; i++) {
RtfCell rtfCell = new RtfCell(writer, mainTable);
cells.add(rtfCell);
}
}
/**
* Import a <code>Row</code>.
* <P>
* All the parameters are taken from the <code>RtfTable</code> which contains
* this <code>RtfRow</code> and they do exactely what they say
* @param row
* @param propWidths in percent
* @param tableWidth in percent
* @param pageWidth
* @param cellpadding
* @param cellspacing
* @param borders
* @param borderColor
* @param borderWidth
* @param y
* @return true if importing the row succeeded
*/
public boolean importRow(Row row, float[] propWidths, int tableWidth, int pageWidth, int cellpadding,
int cellspacing, int borders, java.awt.Color borderColor, float borderWidth,
int y) {
// the width of this row is the absolute witdh, calculated from the
// proportional with of the table and the total width of the page
this.origRow = row;
this.width = pageWidth / 100 * tableWidth;
this.cellpadding = cellpadding;
this.cellspacing = cellspacing;
this.borders = borders;
this.borderColor = borderColor;
this.borderWidth = borderWidth;
if (this.borderWidth > 2) this.borderWidth = 2;
int cellLeft = 0;
for (int i = 0; i < row.columns(); i++) {
Element cell = (Element) row.getCell(i);
// cellWidth is an absolute argument
// it's based on the absolute of this row and the proportional
// width of this column
int cellWidth = (int) (width / 100 * propWidths[i]);
if (cell != null) {
if (cell.type() == Element.CELL) {
RtfCell rtfCell = (RtfCell) cells.get(i);
cellLeft = rtfCell.importCell((Cell) cell, cellLeft, cellWidth, i, y, cellpadding);
}
} else {
RtfCell rtfCell = (RtfCell) cells.get(i);
cellLeft = rtfCell.importCell(null, cellLeft, cellWidth, i, y, cellpadding);
}
}
// recalculate the cell right border and the cumulative width
// on col spanning cells.
// col + row spanning cells are also handled by this loop, because the real cell of
// the upper left corner in such an col, row matrix is copied as first cell
// in each row in this matrix
int columns = row.columns();
for (int i = 0; i < columns; i++) {
RtfCell firstCell = (RtfCell) cells.get(i);
Cell cell = firstCell.getStore();
int cols = 0;
if(cell != null) {
cols = cell.colspan();
}
if (cols > 1) {
RtfCell lastCell = (RtfCell) cells.get(i + cols - 1);
firstCell.setCellRight(lastCell.getCellRight());
int width = firstCell.getCellWidth();
for (int j = i + 1; j < i + cols; j++) {
RtfCell cCell = (RtfCell) cells.get(j);
width += cCell.getCellWidth();
}
firstCell.setCellWidth(width);
i += cols - 1;
}
}
return true;
}
/**
* Write the <code>RtfRow</code> to the specified <code>OutputStream</code>.
*
* @param os The <code>OutputStream</code> to which this <code>RtfRow</code>
* should be written to.
* @param rowNum The <code>index</code> of this row in the containing table.
* @param table The <code>Table</code> which contains the original <code>Row</code>.
* @return true if writing the row succeeded
* @throws DocumentException
* @throws IOException
*/
public boolean writeRow(ByteArrayOutputStream os, int rowNum, Table table) throws DocumentException,
IOException {
os.write(RtfWriter.escape);
os.write(rowBegin);
os.write((byte) '\n');
os.write(RtfWriter.escape);
os.write(rowWidthStyle);
os.write(RtfWriter.escape);
os.write(rowWidth);
writeInt(os, width);
// os.write(RtfWriter.escape);
// os.write(rowAutofit);
if (mainTable.getOriginalTable().hasToFitPageCells()) {
os.write(RtfWriter.escape);
os.write(rowKeep);
}
// check if this row is a header row
if (rowNum < table.firstDataRow()) {
os.write(RtfWriter.escape);
os.write(rowHeader);
}
os.write(RtfWriter.escape);
switch (this.origRow.horizontalAlignment()) {
case Element.ALIGN_LEFT:
os.write(rowAlignLeft);
break;
case Element.ALIGN_CENTER:
os.write(rowAlignCenter);
break;
case Element.ALIGN_RIGHT:
os.write(rowAlignRight);
break;
default :
os.write(rowAlignLeft);
break;
}
os.write(RtfWriter.escape);
os.write(graphLeft);
writeInt(os, 10);
if (((borders & Rectangle.LEFT) == Rectangle.LEFT) && (borderWidth > 0)) {
writeBorder(os, rowBorderLeft);
}
if (((borders & Rectangle.TOP) == Rectangle.TOP) && (borderWidth > 0)) {
writeBorder(os, rowBorderTop);
}
if (((borders & Rectangle.BOTTOM) == Rectangle.BOTTOM) && (borderWidth > 0)) {
writeBorder(os, rowBorderBottom);
}
if (((borders & Rectangle.RIGHT) == Rectangle.RIGHT) && (borderWidth > 0)) {
writeBorder(os, rowBorderRight);
}
if (((borders & Rectangle.BOX) == Rectangle.BOX) && (borderWidth > 0)) {
writeBorder(os, rowBorderInlineHorizontal);
writeBorder(os, rowBorderInlineVertical);
}
if (cellspacing > 0) {
os.write(RtfWriter.escape);
os.write(rowSpacingLeft);
writeInt(os, cellspacing / 2);
os.write(RtfWriter.escape);
os.write(rowSpacingLeftStyle);
os.write(RtfWriter.escape);
os.write(rowSpacingTop);
writeInt(os, cellspacing / 2);
os.write(RtfWriter.escape);
os.write(rowSpacingTopStyle);
os.write(RtfWriter.escape);
os.write(rowSpacingBottom);
writeInt(os, cellspacing / 2);
os.write(RtfWriter.escape);
os.write(rowSpacingBottomStyle);
os.write(RtfWriter.escape);
os.write(rowSpacingRight);
writeInt(os, cellspacing / 2);
os.write(RtfWriter.escape);
os.write(rowSpacingRightStyle);
}
os.write(RtfWriter.escape);
os.write(rowPaddingLeft);
writeInt(os, cellpadding / 2);
os.write(RtfWriter.escape);
os.write(rowPaddingRight);
writeInt(os, cellpadding / 2);
os.write(RtfWriter.escape);
os.write(rowPaddingLeftStyle);
os.write(RtfWriter.escape);
os.write(rowPaddingRightStyle);
os.write((byte) '\n');
Iterator cellIterator = cells.iterator();
while (cellIterator.hasNext()) {
RtfCell cell = (RtfCell) cellIterator.next();
cell.writeCellSettings(os);
}
os.write(RtfWriter.escape);
os.write("intbl".getBytes());
cellIterator = cells.iterator();
while (cellIterator.hasNext()) {
RtfCell cell = (RtfCell) cellIterator.next();
cell.writeCellContent(os);
}
os.write(RtfWriter.delimiter);
os.write(RtfWriter.escape);
os.write(rowEnd);
return true;
}
private void writeBorder(ByteArrayOutputStream os, byte[] borderType) throws IOException {
// horizontal and vertical, top, left, bottom, right
os.write(RtfWriter.escape);
os.write(borderType);
// line style
os.write(RtfWriter.escape);
os.write(RtfRow.tableBorder);
// borderwidth
os.write(RtfWriter.escape);
os.write(RtfRow.tableBorderWidth);
writeInt(os, (int) (borderWidth * RtfWriter.TWIPSFACTOR));
// border color
os.write(RtfWriter.escape);
os.write(RtfRow.tableBorderColor);
if (borderColor == null) {
writeInt(os, writer.addColor(new Color(0, 0, 0)));
} else {
writeInt(os, writer.addColor(borderColor));
}
os.write((byte) '\n');
}
/**
* <code>RtfTable</code>s call this method from their own setMerge() to
* specify that a certain other cell is to be merged with it.
*
* @param x The column position of the cell to be merged
* @param mergeType The merge type specifies the kind of merge to be applied
* (MERGE_HORIZ_PREV, MERGE_VERT_PREV, MERGE_BOTH_PREV)
* @param mergeCell The <code>RtfCell</code> that the cell at x and y is to
* be merged with
*/
public void setMerge(int x, int mergeType, RtfCell mergeCell) {
RtfCell cell = (RtfCell) cells.get(x);
cell.setMerge(mergeType, mergeCell);
}
/*
* Write an Integer to the Outputstream.
*
* @param out The <code>OutputStream</code> to be written to.
* @param i The int to be written.
*/
private void writeInt(ByteArrayOutputStream out, int i) throws IOException {
out.write(Integer.toString(i).getBytes());
}
}
|