All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.poi.xwpf.converter.pdf.internal.elements.StylableTableCell Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
/**
 * Copyright (C) 2011-2012 The XDocReport Team 
 *
 * All rights reserved.
 *
 * Permission is hereby granted, free  of charge, to any person obtaining
 * a  copy  of this  software  and  associated  documentation files  (the
 * "Software"), to  deal in  the Software without  restriction, including
 * without limitation  the rights to  use, copy, modify,  merge, publish,
 * distribute,  sublicense, and/or sell  copies of  the Software,  and to
 * permit persons to whom the Software  is furnished to do so, subject to
 * the following conditions:
 *
 * The  above  copyright  notice  and  this permission  notice  shall  be
 * included in all copies or substantial portions of the Software.
 *
 * THE  SOFTWARE IS  PROVIDED  "AS  IS", WITHOUT  WARRANTY  OF ANY  KIND,
 * EXPRESS OR  IMPLIED, INCLUDING  BUT NOT LIMITED  TO THE  WARRANTIES OF
 * MERCHANTABILITY,    FITNESS    FOR    A   PARTICULAR    PURPOSE    AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 * OF CONTRACT, TORT OR OTHERWISE,  ARISING FROM, OUT OF OR IN CONNECTION
 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */
package org.apache.poi.xwpf.converter.pdf.internal.elements;

import java.awt.Color;
import java.math.BigInteger;

import org.apache.poi.xwpf.converter.core.TableCellBorder;
import org.apache.poi.xwpf.converter.core.utils.ColorHelper;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTBorder;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTTblBorders;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTTcBorders;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.STBorder;

import com.lowagie.text.Element;
import com.lowagie.text.Rectangle;

import fr.opensagres.xdocreport.itext.extension.ExtendedPdfPCell;
import fr.opensagres.xdocreport.itext.extension.ExtendedPdfPTable;
import fr.opensagres.xdocreport.itext.extension.IITextContainer;

public class StylableTableCell
    extends ExtendedPdfPCell
    implements IITextContainer
{

    private final StylableDocument ownerDocument;

    private final IITextContainer parent;

    public StylableTableCell( StylableDocument ownerDocument, IITextContainer parent )
    {
        this.ownerDocument = ownerDocument;
        this.parent = parent;
        // make iText first line alignment compatible with open office
        getColumn().setAdjustFirstLine( false );
        // make a room for borders
        setUseBorderPadding( true );
    }

    public StylableTableCell( StylableDocument ownerDocument, IITextContainer parent, ExtendedPdfPTable table )
    {
        super( table );
        this.ownerDocument = ownerDocument;
        this.parent = parent;
        // make iText first line alignment compatible with open office
        getColumn().setAdjustFirstLine( false );
        // make a room for borders
        setUseBorderPadding( true );
    }

    public void addElement( Element element )
    {
        super.addElement( element );
    }

    public IITextContainer getParent()
    {
        return parent;
    }

    public Element getElement()
    {
        return this;
    }

    public void setBorderTop( TableCellBorder borderTop, boolean inside )
    {
        setBorder( borderTop, inside, Rectangle.TOP );
    }

    public void setBorderBottom( TableCellBorder borderBottom, boolean inside )
    {
        setBorder( borderBottom, inside, Rectangle.BOTTOM );
    }

    public void setBorderLeft( TableCellBorder borderLeft, boolean inside )
    {
        setBorder( borderLeft, inside, Rectangle.LEFT );
    }

    public void setBorderRight( TableCellBorder borderRight, boolean inside )
    {
        setBorder( borderRight, inside, Rectangle.RIGHT );
    }

    public void setBorder( TableCellBorder border, boolean inside, int borderSide )
    {
        if ( border == null || !border.hasBorder() )
        {
            this.disableBorderSide( borderSide );
            return;
        }
        Float borderSize = border.getBorderSize();
        
        if (inside) {
            // manage conflict border
            
            
            // divide the border side by 2 to avoid multiply with 2 the border
            // this code simplify the "Conflicts between adjacent cells"
            // http://officeopenxml.com/WPtableCellBorderConflicts.php
            //borderSize = borderSize / 2;                    
        }
        
        Color borderColor = border.getBorderColor();
        switch ( borderSide )
        {
            case Rectangle.TOP:
                if ( borderSize != null )
                {
                    this.setBorderWidthTop( borderSize );
                }
                if ( borderColor != null )
                {

                    this.setBorderColorTop( borderColor );
                }
                break;
            case Rectangle.BOTTOM:
                if ( borderSize != null )
                {
                    this.setBorderWidthBottom( borderSize );
                }
                if ( borderColor != null )
                {
                    this.setBorderColorBottom( borderColor );
                }
                break;
            case Rectangle.LEFT:
                if ( borderSize != null )
                {
                    this.setBorderWidthLeft( borderSize );
                }
                if ( borderColor != null )
                {
                    this.setBorderColorLeft( borderColor );
                }
                break;
            case Rectangle.RIGHT:
                if ( borderSize != null )
                {
                    this.setBorderWidthRight( borderSize );
                }
                if ( borderColor != null )
                {
                    this.setBorderColorRight( borderColor );
                }
                break;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy