using System; using System.IO; using iTextSharp.text; using iTextSharp.text.rtf; using iTextSharp.text.rtf.document; using iTextSharp.text.rtf.style; /* * $Id: RtfBorder.cs,v 1.6 2008/05/16 19:31:18 psoares33 Exp $ * * * Copyright 2001, 2002, 2003, 2004 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/ */ namespace iTextSharp.text.rtf.table { /** * The RtfBorder handle one row or cell border. * INTERNAL USE ONLY * * @version $Version:$ * @author Mark Hall (Mark.Hall@mail.room3b.eu) * @author Unknown */ public class RtfBorder : RtfElement { /** * Constant for the left row border */ protected internal static byte[] ROW_BORDER_LEFT = DocWriter.GetISOBytes("\\trbrdrl"); /** * Constant for the top row border */ protected internal static byte[] ROW_BORDER_TOP = DocWriter.GetISOBytes("\\trbrdrt"); /** * Constant for the right row border */ protected internal static byte[] ROW_BORDER_RIGHT = DocWriter.GetISOBytes("\\trbrdrr"); /** * Constant for the bottom row border */ protected internal static byte[] ROW_BORDER_BOTTOM = DocWriter.GetISOBytes("\\trbrdrb"); /** * Constant for the horizontal line */ protected internal static byte[] ROW_BORDER_HORIZONTAL = DocWriter.GetISOBytes("\\trbrdrh"); /** * Constant for the vertical line */ protected internal static byte[] ROW_BORDER_VERTICAL = DocWriter.GetISOBytes("\\trbrdrv"); /** * Constant for the left cell border */ protected internal static byte[] CELL_BORDER_LEFT = DocWriter.GetISOBytes("\\clbrdrl"); /** * Constant for the top cell border */ protected internal static byte[] CELL_BORDER_TOP = DocWriter.GetISOBytes("\\clbrdrt"); /** * Constant for the right cell border */ protected internal static byte[] CELL_BORDER_RIGHT = DocWriter.GetISOBytes("\\clbrdrr"); /** * Constant for the bottom cell border */ protected internal static byte[] CELL_BORDER_BOTTOM = DocWriter.GetISOBytes("\\clbrdrb"); /** * Constant for the border width */ protected internal static byte[] BORDER_WIDTH = DocWriter.GetISOBytes("\\brdrw"); /** * Constant for the border colour number */ protected internal static byte[] BORDER_COLOR_NUMBER = DocWriter.GetISOBytes("\\brdrcf"); /** * Constant for the single border style */ protected internal static byte[] BORDER_STYLE_SINGLE = DocWriter.GetISOBytes("\\brdrs"); /** * Constant for the double thick border style */ protected internal static byte[] BORDER_STYLE_DOUBLE_THICK = DocWriter.GetISOBytes("\\brdrth"); /** * Constant for the shadowed border style */ protected internal static byte[] BORDER_STYLE_SHADOWED = DocWriter.GetISOBytes("\\brdrsh"); /** * Constant for the dotted border style */ protected internal static byte[] BORDER_STYLE_DOTTED = DocWriter.GetISOBytes("\\brdrdot"); /** * Constant for the dashed border style */ protected internal static byte[] BORDER_STYLE_DASHED = DocWriter.GetISOBytes("\\brdrdash"); /** * Constant for the hairline border style */ protected internal static byte[] BORDER_STYLE_HAIRLINE = DocWriter.GetISOBytes("\\brdrhair"); /** * Constant for the double border style */ protected internal static byte[] BORDER_STYLE_DOUBLE = DocWriter.GetISOBytes("\\brdrdb"); /** * Constant for the dot dash border style */ protected internal static byte[] BORDER_STYLE_DOT_DASH = DocWriter.GetISOBytes("\\brdrdashd"); /** * Constant for the dot dot dash border style */ protected internal static byte[] BORDER_STYLE_DOT_DOT_DASH = DocWriter.GetISOBytes("\\brdrdashdd"); /** * Constant for the triple border style */ protected internal static byte[] BORDER_STYLE_TRIPLE = DocWriter.GetISOBytes("\\brdrtriple"); /** * Constant for the thick thin border style */ protected internal static byte[] BORDER_STYLE_THICK_THIN = DocWriter.GetISOBytes("\\brdrtnthsg"); /** * Constant for the thin thick border style */ protected internal static byte[] BORDER_STYLE_THIN_THICK = DocWriter.GetISOBytes("\\brdrthtnsg"); /** * Constant for the thin thick thin border style */ protected internal static byte[] BORDER_STYLE_THIN_THICK_THIN = DocWriter.GetISOBytes("\\brdrtnthtnsg"); /** * Constant for the thick thin medium border style */ protected internal static byte[] BORDER_STYLE_THICK_THIN_MED = DocWriter.GetISOBytes("\\brdrtnthmg"); /** * Constant for the thin thick medium border style */ protected internal static byte[] BORDER_STYLE_THIN_THICK_MED = DocWriter.GetISOBytes("\\brdrthtnmg"); /** * Constant for the thin thick thin medium border style */ protected internal static byte[] BORDER_STYLE_THIN_THICK_THIN_MED = DocWriter.GetISOBytes("\\brdrtnthtnmg"); /** * Constant for the thick thin large border style */ protected internal static byte[] BORDER_STYLE_THICK_THIN_LARGE = DocWriter.GetISOBytes("\\brdrtnthlg"); /** * Constant for the thin thick large border style */ protected internal static byte[] BORDER_STYLE_THIN_THICK_LARGE = DocWriter.GetISOBytes("\\brdrthtnlg"); /** * Constant for the thin thick thin large border style */ protected internal static byte[] BORDER_STYLE_THIN_THICK_THIN_LARGE = DocWriter.GetISOBytes("\\brdrtnthtnlg"); /** * Constant for the wavy border style */ protected internal static byte[] BORDER_STYLE_WAVY = DocWriter.GetISOBytes("\\brdrwavy"); /** * Constant for the double wavy border style */ protected internal static byte[] BORDER_STYLE_DOUBLE_WAVY = DocWriter.GetISOBytes("\\brdrwavydb"); /** * Constant for the striped border style */ protected internal static byte[] BORDER_STYLE_STRIPED = DocWriter.GetISOBytes("\\brdrdashdotstr"); /** * Constant for the embossed border style */ protected internal static byte[] BORDER_STYLE_EMBOSS = DocWriter.GetISOBytes("\\brdremboss"); /** * Constant for the engraved border style */ protected internal static byte[] BORDER_STYLE_ENGRAVE = DocWriter.GetISOBytes("\\brdrengrave"); /** * Constant for a row border */ protected internal const int ROW_BORDER = 1; /** * Constant for a cell border */ protected internal const int CELL_BORDER = 2; /** * This border is no border :-) */ protected internal const int NO_BORDER = 0; /** * Constant for a left border */ protected internal const int LEFT_BORDER = 1; /** * Constant for a top border */ protected internal const int TOP_BORDER = 2; /** * Constant for a right border */ protected internal const int RIGHT_BORDER = 4; /** * Constant for a bottom border */ protected internal const int BOTTOM_BORDER = 8; /** * Constant for a box (left, top, right, bottom) border */ protected internal const int BOX_BORDER = 15; /** * Constant for a vertical line */ protected internal const int VERTICAL_BORDER = 16; /** * Constant for a horizontal line */ protected internal const int HORIZONTAL_BORDER = 32; /** * Constant for a border with no border */ public const int BORDER_NONE = 0; /** * Constant for a single border */ public const int BORDER_SINGLE = 1; /** * Constant for a double thick border */ public const int BORDER_DOUBLE_THICK = 2; /** * Constant for a shadowed border */ public const int BORDER_SHADOWED = 3; /** * Constant for a dotted border */ public const int BORDER_DOTTED = 4; /** * Constant for a dashed border */ public const int BORDER_DASHED = 5; /** * Constant for a hairline border */ public const int BORDER_HAIRLINE = 6; /** * Constant for a double border */ public const int BORDER_DOUBLE = 7; /** * Constant for a dot dash border */ public const int BORDER_DOT_DASH = 8; /** * Constant for a dot dot dash border */ public const int BORDER_DOT_DOT_DASH = 9; /** * Constant for a triple border */ public const int BORDER_TRIPLE = 10; /** * Constant for a thick thin border */ public const int BORDER_THICK_THIN = 11; /** * Constant for a thin thick border */ public const int BORDER_THIN_THICK = 12; /** * Constant for a thin thick thin border */ public const int BORDER_THIN_THICK_THIN = 13; /** * Constant for a thick thin medium border */ public const int BORDER_THICK_THIN_MED = 14; /** * Constant for a thin thick medium border */ public const int BORDER_THIN_THICK_MED = 15; /** * Constant for a thin thick thin medium border */ public const int BORDER_THIN_THICK_THIN_MED = 16; /** * Constant for a thick thin large border */ public const int BORDER_THICK_THIN_LARGE = 17; /** * Constant for a thin thick large border */ public const int BORDER_THIN_THICK_LARGE = 18; /** * Constant for a thin thick thin large border */ public const int BORDER_THIN_THICK_THIN_LARGE = 19; /** * Constant for a wavy border */ public const int BORDER_WAVY = 20; /** * Constant for a double wavy border */ public const int BORDER_DOUBLE_WAVY = 21; /** * Constant for a striped border */ public const int BORDER_STRIPED = 22; /** * Constant for an embossed border */ public const int BORDER_EMBOSS = 23; /** * Constant for an engraved border */ public const int BORDER_ENGRAVE = 24; /** * The type of this RtfBorder */ private int borderType = ROW_BORDER; /** * The position of this RtfBorder */ private int borderPosition = NO_BORDER; /** * The style of this RtfBorder */ private int borderStyle = BORDER_NONE; /** * The width of this RtfBorder */ private int borderWidth = 20; /** * The colour of this RtfBorder */ private RtfColor borderColor = null; /** * Makes a copy of the given RtfBorder * * @param doc The RtfDocument this RtfBorder belongs to * @param borderType The border type of this RtfBorder * @param border The RtfBorder to copy */ protected internal RtfBorder(RtfDocument doc, int borderType, RtfBorder border) : base(doc) { this.borderType = borderType; this.borderPosition = border.GetBorderPosition(); this.borderStyle = border.GetBorderStyle(); this.borderWidth = border.GetBorderWidth(); this.borderColor = new RtfColor(this.document, border.GetBorderColor()); } /** * Constructs a RtfBorder * * @param doc The RtfDocument this RtfBorder belongs to * @param borderType The type of border this RtfBorder is * @param borderPosition The position of this RtfBorder * @param borderStyle The style of this RtfBorder * @param borderWidth The width of this RtfBorder * @param borderColor The colour of this RtfBorder */ protected internal RtfBorder(RtfDocument doc, int borderType, int borderPosition, int borderStyle, float borderWidth, Color borderColor) : base(doc) { this.borderType = borderType; this.borderPosition = borderPosition; this.borderStyle = borderStyle; this.borderWidth = (int) Math.Min((borderWidth * TWIPS_FACTOR), 75); if (this.borderWidth == 0) { this.borderStyle = BORDER_NONE; } if (borderColor == null) { this.borderColor = new RtfColor(this.document, new Color(0, 0, 0)); } else { this.borderColor = new RtfColor(this.document, borderColor); } } /** * Writes the RtfBorder settings */ public override void WriteContent(Stream result) { if (this.borderStyle == BORDER_NONE || this.borderPosition == NO_BORDER || this.borderWidth == 0) { return; } byte[] t; if (this.borderType == ROW_BORDER) { switch (this.borderPosition) { case LEFT_BORDER: result.Write(ROW_BORDER_LEFT, 0, ROW_BORDER_LEFT.Length); break; case TOP_BORDER: result.Write(ROW_BORDER_TOP, 0, ROW_BORDER_TOP.Length); break; case RIGHT_BORDER: result.Write(ROW_BORDER_RIGHT, 0, ROW_BORDER_RIGHT.Length); break; case BOTTOM_BORDER: result.Write(ROW_BORDER_BOTTOM, 0, ROW_BORDER_BOTTOM.Length); break; case HORIZONTAL_BORDER: result.Write(ROW_BORDER_HORIZONTAL, 0, ROW_BORDER_HORIZONTAL.Length); break; case VERTICAL_BORDER: result.Write(ROW_BORDER_VERTICAL, 0, ROW_BORDER_VERTICAL.Length); break; default: return; } result.Write(t = WriteBorderStyle(), 0, t.Length); result.Write(BORDER_WIDTH, 0, BORDER_WIDTH.Length); result.Write(t = IntToByteArray(this.borderWidth), 0, t.Length); result.Write(BORDER_COLOR_NUMBER, 0, BORDER_COLOR_NUMBER.Length); result.Write(t = IntToByteArray(this.borderColor.GetColorNumber()), 0, t.Length); result.WriteByte((byte)'\n'); } else if (this.borderType == CELL_BORDER) { switch (this.borderPosition) { case LEFT_BORDER: result.Write(CELL_BORDER_LEFT, 0, CELL_BORDER_LEFT.Length); break; case TOP_BORDER: result.Write(CELL_BORDER_TOP, 0, CELL_BORDER_TOP.Length); break; case RIGHT_BORDER: result.Write(CELL_BORDER_RIGHT, 0, CELL_BORDER_RIGHT.Length); break; case BOTTOM_BORDER: result.Write(CELL_BORDER_BOTTOM, 0, CELL_BORDER_BOTTOM.Length); break; default: return; } result.Write(t = WriteBorderStyle(), 0, t.Length); result.Write(BORDER_WIDTH, 0, BORDER_WIDTH.Length); result.Write(t = IntToByteArray(this.borderWidth), 0, t.Length); result.Write(BORDER_COLOR_NUMBER, 0, BORDER_COLOR_NUMBER.Length); result.Write(t = IntToByteArray(this.borderColor.GetColorNumber()), 0, t.Length); result.WriteByte((byte)'\n'); } } /** * Writes the style of this RtfBorder * * @return A byte array containing the style of this RtfBorder */ private byte[] WriteBorderStyle() { switch (this.borderStyle) { case BORDER_NONE : return new byte[0]; case BORDER_SINGLE : return BORDER_STYLE_SINGLE; case BORDER_DOUBLE_THICK : return BORDER_STYLE_DOUBLE_THICK; case BORDER_SHADOWED : return BORDER_STYLE_SHADOWED; case BORDER_DOTTED : return BORDER_STYLE_DOTTED; case BORDER_DASHED : return BORDER_STYLE_DASHED; case BORDER_HAIRLINE : return BORDER_STYLE_HAIRLINE; case BORDER_DOUBLE : return BORDER_STYLE_DOUBLE; case BORDER_DOT_DASH : return BORDER_STYLE_DOT_DASH; case BORDER_DOT_DOT_DASH : return BORDER_STYLE_DOT_DOT_DASH; case BORDER_TRIPLE : return BORDER_STYLE_TRIPLE; case BORDER_THICK_THIN : return BORDER_STYLE_THICK_THIN; case BORDER_THIN_THICK : return BORDER_STYLE_THIN_THICK; case BORDER_THIN_THICK_THIN : return BORDER_STYLE_THIN_THICK_THIN; case BORDER_THICK_THIN_MED : return BORDER_STYLE_THICK_THIN_MED; case BORDER_THIN_THICK_MED : return BORDER_STYLE_THIN_THICK_MED; case BORDER_THIN_THICK_THIN_MED : return BORDER_STYLE_THIN_THICK_THIN_MED; case BORDER_THICK_THIN_LARGE : return BORDER_STYLE_THICK_THIN_LARGE; case BORDER_THIN_THICK_LARGE : return BORDER_STYLE_THIN_THICK_LARGE; case BORDER_THIN_THICK_THIN_LARGE : return BORDER_STYLE_THIN_THICK_THIN_LARGE; case BORDER_WAVY : return BORDER_STYLE_WAVY; case BORDER_DOUBLE_WAVY : return BORDER_STYLE_DOUBLE_WAVY; case BORDER_STRIPED : return BORDER_STYLE_STRIPED; case BORDER_EMBOSS : return BORDER_STYLE_EMBOSS; case BORDER_ENGRAVE : return BORDER_STYLE_ENGRAVE; default : return BORDER_STYLE_SINGLE; } } /** * Gets the colour of this RtfBorder * * @return Returns RtfColor of this RtfBorder */ protected RtfColor GetBorderColor() { return borderColor; } /** * Gets the position of this RtfBorder * @return Returns the position of this RtfBorder */ protected int GetBorderPosition() { return borderPosition; } /** * Gets the style of this RtfBorder * * @return Returns the style of this RtfBorder */ protected int GetBorderStyle() { return borderStyle; } /** * Gets the type of this RtfBorder * * @return Returns the type of this RtfBorder */ protected int GetBorderType() { return borderType; } /** * Gets the width of this RtfBorder * * @return Returns the width of this RtfBorder */ protected int GetBorderWidth() { return borderWidth; } } }