LCOV - code coverage report
Current view: top level - lotuswordpro/source/filter/xfilter - xfheaderstyle.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 49 81 60.5 %
Date: 2012-08-25 Functions: 7 12 58.3 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 29 82 35.4 %

           Branch data     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 [ +  - ][ +  - ]:         80 : XFHeaderStyle::XFHeaderStyle(sal_Bool isFooter)
      64                 :            : {
      65                 :         80 :     m_bIsFooter = isFooter;
      66                 :         80 :     m_bDynamicSpace = sal_True;
      67                 :         80 :     m_fHeight = -1;
      68                 :         80 :     m_fMinHeight = -1;
      69                 :         80 :     m_pBorders = NULL;
      70                 :         80 :     m_pShadow = NULL;
      71                 :         80 :     m_pBGImage = NULL;
      72                 :         80 : }
      73                 :            : 
      74                 :         80 : XFHeaderStyle::~XFHeaderStyle()
      75                 :            : {
      76         [ -  + ]:         80 :     if( m_pBorders )
      77                 :          0 :         delete m_pBorders;
      78         [ -  + ]:         80 :     if( m_pBGImage )
      79 [ #  # ][ #  # ]:          0 :         delete m_pBGImage;
      80         [ -  + ]:         80 :     if( m_pShadow )
      81 [ #  # ][ #  # ]:          0 :         delete m_pShadow;
      82         [ -  + ]:        120 : }
      83                 :            : 
      84                 :         40 : void    XFHeaderStyle::SetMargins(double left, double right, double bottom)
      85                 :            : {
      86         [ -  + ]:         40 :     if( left != -1 )
      87                 :          0 :         m_aMargin.SetLeft(left);
      88         [ -  + ]:         40 :     if( right != -1 )
      89                 :          0 :         m_aMargin.SetRight(right);
      90         [ +  - ]:         40 :     if( bottom != -1 )
      91                 :         40 :         m_aMargin.SetBottom(bottom);
      92                 :         40 : }
      93                 :         80 : void    XFHeaderStyle::SetDynamicSpace(sal_Bool dynamic)
      94                 :            : {
      95                 :         80 :     m_bDynamicSpace = dynamic;
      96                 :         80 : }
      97                 :            : 
      98                 :         80 : void    XFHeaderStyle::SetHeight(double height)
      99                 :            : {
     100                 :         80 :     m_fHeight = height;
     101                 :         80 : }
     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                 :         60 : void    XFHeaderStyle::ToXml(IXFStream *pStrm)
     135                 :            : {
     136                 :         60 :     IXFAttrList *pAttrList = pStrm->GetAttrList();
     137                 :         60 :     pAttrList->Clear();
     138                 :            : 
     139         [ +  + ]:         60 :     if( m_bIsFooter )
     140         [ +  - ]:         30 :         pStrm->StartElement( A2OUSTR("style:footer-style") );
     141                 :            :     else
     142         [ +  - ]:         30 :         pStrm->StartElement( A2OUSTR("style:header-style") );
     143                 :            : 
     144                 :            :     //height
     145         [ -  + ]:         60 :     if( m_fMinHeight>0 )
     146 [ #  # ][ #  # ]:          0 :         pAttrList->AddAttribute( A2OUSTR("fo:min-height"), DoubleToOUString(m_fMinHeight) + A2OUSTR("cm") );
     147         [ +  - ]:         60 :     else if( m_fHeight>0 )
     148 [ +  - ][ +  - ]:         60 :         pAttrList->AddAttribute( A2OUSTR("svg:height"), DoubleToOUString(m_fHeight) + A2OUSTR("cm") );
     149                 :            : 
     150                 :         60 :     m_aMargin.ToXml(pStrm);
     151         [ -  + ]:         60 :     if(m_pShadow)
     152                 :          0 :         m_pShadow->ToXml(pStrm);
     153                 :         60 :     m_aPadding.ToXml(pStrm);
     154         [ -  + ]:         60 :     if( m_pBorders )
     155                 :          0 :         m_pBorders->ToXml(pStrm);
     156                 :            : 
     157         [ -  + ]:         60 :     if( m_aBackColor.IsValid() )
     158         [ #  # ]:          0 :         pAttrList->AddAttribute( A2OUSTR("fo:background-color"), m_aBackColor.ToString() );
     159                 :            : 
     160         [ -  + ]:         60 :     if( m_bDynamicSpace )
     161         [ #  # ]:          0 :         pAttrList->AddAttribute( A2OUSTR("style:dynamic-spacing"), A2OUSTR("true") );
     162                 :            :     else
     163         [ +  - ]:         60 :         pAttrList->AddAttribute( A2OUSTR("style:dynamic-spacing"), A2OUSTR("false") );
     164                 :            : 
     165         [ +  - ]:         60 :     pStrm->StartElement( A2OUSTR("style:properties") );
     166                 :            : 
     167                 :            :     // background image
     168         [ -  + ]:         60 :     if( m_pBGImage )
     169                 :          0 :         m_pBGImage->ToXml(pStrm);
     170                 :            : 
     171         [ +  - ]:         60 :     pStrm->EndElement( A2OUSTR("style:properties") );
     172                 :            : 
     173         [ +  + ]:         60 :     if( m_bIsFooter )
     174         [ +  - ]:         30 :         pStrm->EndElement( A2OUSTR("style:footer-style") );
     175                 :            :     else
     176         [ +  - ]:         30 :         pStrm->EndElement( A2OUSTR("style:header-style") );
     177                 :         60 : }
     178                 :            : 
     179                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10