LCOV - code coverage report
Current view: top level - lotuswordpro/source/filter/xfilter - xfheaderstyle.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 49 81 60.5 %
Date: 2015-06-13 12:38:46 Functions: 7 12 58.3 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*************************************************************************
       3             :  *
       4             :  *  The Contents of this file are made available subject to the terms of
       5             :  *  either of the following licenses
       6             :  *
       7             :  *         - GNU Lesser General Public License Version 2.1
       8             :  *         - Sun Industry Standards Source License Version 1.1
       9             :  *
      10             :  *  Sun Microsystems Inc., October, 2000
      11             :  *
      12             :  *  GNU Lesser General Public License Version 2.1
      13             :  *  =============================================
      14             :  *  Copyright 2000 by Sun Microsystems, Inc.
      15             :  *  901 San Antonio Road, Palo Alto, CA 94303, USA
      16             :  *
      17             :  *  This library is free software; you can redistribute it and/or
      18             :  *  modify it under the terms of the GNU Lesser General Public
      19             :  *  License version 2.1, as published by the Free Software Foundation.
      20             :  *
      21             :  *  This library is distributed in the hope that it will be useful,
      22             :  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
      23             :  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
      24             :  *  Lesser General Public License for more details.
      25             :  *
      26             :  *  You should have received a copy of the GNU Lesser General Public
      27             :  *  License along with this library; if not, write to the Free Software
      28             :  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston,
      29             :  *  MA  02111-1307  USA
      30             :  *
      31             :  *
      32             :  *  Sun Industry Standards Source License Version 1.1
      33             :  *  =================================================
      34             :  *  The contents of this file are subject to the Sun Industry Standards
      35             :  *  Source License Version 1.1 (the "License"); You may not use this file
      36             :  *  except in compliance with the License. You may obtain a copy of the
      37             :  *  License at http://www.openoffice.org/license.html.
      38             :  *
      39             :  *  Software provided under this License is provided on an "AS IS" basis,
      40             :  *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
      41             :  *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
      42             :  *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
      43             :  *  See the License for the specific provisions governing your rights and
      44             :  *  obligations concerning the Software.
      45             :  *
      46             :  *  The Initial Developer of the Original Code is: IBM Corporation
      47             :  *
      48             :  *  Copyright: 2008 by IBM Corporation
      49             :  *
      50             :  *  All Rights Reserved.
      51             :  *
      52             :  *  Contributor(s): _______________________________________
      53             :  *
      54             :  *
      55             :  ************************************************************************/
      56             : /*************************************************************************
      57             :  * @file
      58             :  * Header style,exist in page-master object.
      59             :  ************************************************************************/
      60             : #include "xfheaderstyle.hxx"
      61             : #include "xfbgimage.hxx"
      62             : 
      63          16 : XFHeaderStyle::XFHeaderStyle(bool isFooter)
      64             : {
      65          16 :     m_bIsFooter = isFooter;
      66          16 :     m_bDynamicSpace = true;
      67          16 :     m_fHeight = -1;
      68          16 :     m_fMinHeight = -1;
      69          16 :     m_pBorders = NULL;
      70          16 :     m_pShadow = NULL;
      71          16 :     m_pBGImage = NULL;
      72          16 : }
      73             : 
      74          40 : XFHeaderStyle::~XFHeaderStyle()
      75             : {
      76          16 :     if( m_pBorders )
      77           0 :         delete m_pBorders;
      78          16 :     if( m_pBGImage )
      79           0 :         delete m_pBGImage;
      80          16 :     if( m_pShadow )
      81           0 :         delete m_pShadow;
      82          24 : }
      83             : 
      84           8 : void    XFHeaderStyle::SetMargins(double left, double right, double bottom)
      85             : {
      86           8 :     if( left != -1 )
      87           0 :         m_aMargin.SetLeft(left);
      88           8 :     if( right != -1 )
      89           0 :         m_aMargin.SetRight(right);
      90           8 :     if( bottom != -1 )
      91           8 :         m_aMargin.SetBottom(bottom);
      92           8 : }
      93          16 : void    XFHeaderStyle::SetDynamicSpace(bool dynamic)
      94             : {
      95          16 :     m_bDynamicSpace = dynamic;
      96          16 : }
      97             : 
      98          16 : void    XFHeaderStyle::SetHeight(double height)
      99             : {
     100          16 :     m_fHeight = height;
     101          16 : }
     102             : 
     103           0 : void    XFHeaderStyle::SetMinHeight(double minHeight)
     104             : {
     105           0 :     m_fMinHeight = minHeight;
     106           0 : }
     107             : 
     108           0 : void    XFHeaderStyle::SetShadow(XFShadow *pShadow)
     109             : {
     110           0 :     if( m_pShadow && (pShadow != m_pShadow) )
     111           0 :         delete m_pShadow;
     112           0 :     m_pShadow = pShadow;
     113           0 : }
     114             : 
     115           0 : void    XFHeaderStyle::SetBorders(XFBorders *pBorders)
     116             : {
     117           0 :     if( m_pBorders )
     118           0 :         delete m_pBorders;
     119           0 :     m_pBorders = pBorders;
     120           0 : }
     121             : 
     122           0 : void    XFHeaderStyle::SetBackImage(XFBGImage *image)
     123             : {
     124           0 :     if( m_pBGImage )
     125           0 :         delete m_pBGImage;
     126           0 :     m_pBGImage = image;
     127           0 : }
     128             : 
     129           0 : void    XFHeaderStyle::SetBackColor(XFColor color)
     130             : {
     131           0 :     m_aBackColor = color;
     132           0 : }
     133             : 
     134          12 : void    XFHeaderStyle::ToXml(IXFStream *pStrm)
     135             : {
     136          12 :     IXFAttrList *pAttrList = pStrm->GetAttrList();
     137          12 :     pAttrList->Clear();
     138             : 
     139          12 :     if( m_bIsFooter )
     140           6 :         pStrm->StartElement( "style:footer-style" );
     141             :     else
     142           6 :         pStrm->StartElement( "style:header-style" );
     143             : 
     144             :     //height
     145          12 :     if( m_fMinHeight>0 )
     146           0 :         pAttrList->AddAttribute( "fo:min-height", OUString::number(m_fMinHeight) + "cm" );
     147          12 :     else if( m_fHeight>0 )
     148          12 :         pAttrList->AddAttribute( "svg:height", OUString::number(m_fHeight) + "cm" );
     149             : 
     150          12 :     m_aMargin.ToXml(pStrm);
     151          12 :     if(m_pShadow)
     152           0 :         m_pShadow->ToXml(pStrm);
     153          12 :     m_aPadding.ToXml(pStrm);
     154          12 :     if( m_pBorders )
     155           0 :         m_pBorders->ToXml(pStrm);
     156             : 
     157          12 :     if( m_aBackColor.IsValid() )
     158           0 :         pAttrList->AddAttribute( "fo:background-color", m_aBackColor.ToString() );
     159             : 
     160          12 :     if( m_bDynamicSpace )
     161           0 :         pAttrList->AddAttribute( "style:dynamic-spacing", "true" );
     162             :     else
     163          12 :         pAttrList->AddAttribute( "style:dynamic-spacing", "false" );
     164             : 
     165          12 :     pStrm->StartElement( "style:properties" );
     166             : 
     167             :     // background image
     168          12 :     if( m_pBGImage )
     169           0 :         m_pBGImage->ToXml(pStrm);
     170             : 
     171          12 :     pStrm->EndElement( "style:properties" );
     172             : 
     173          12 :     if( m_bIsFooter )
     174           6 :         pStrm->EndElement( "style:footer-style" );
     175             :     else
     176           6 :         pStrm->EndElement( "style:header-style" );
     177          12 : }
     178             : 
     179             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11