LCOV - code coverage report
Current view: top level - writerfilter/source/dmapper - CellMarginHandler.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 33 45 73.3 %
Date: 2012-08-25 Functions: 7 7 100.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 18 38 47.4 %

           Branch data     Line data    Source code
       1                 :            : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2                 :            : /*
       3                 :            :  * This file is part of the LibreOffice project.
       4                 :            :  *
       5                 :            :  * This Source Code Form is subject to the terms of the Mozilla Public
       6                 :            :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7                 :            :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8                 :            :  *
       9                 :            :  * This file incorporates work covered by the following license notice:
      10                 :            :  *
      11                 :            :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12                 :            :  *   contributor license agreements. See the NOTICE file distributed
      13                 :            :  *   with this work for additional information regarding copyright
      14                 :            :  *   ownership. The ASF licenses this file to you under the Apache
      15                 :            :  *   License, Version 2.0 (the "License"); you may not use this file
      16                 :            :  *   except in compliance with the License. You may obtain a copy of
      17                 :            :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18                 :            :  */
      19                 :            : #include <CellMarginHandler.hxx>
      20                 :            : #include <PropertyMap.hxx>
      21                 :            : #include <doctok/resourceids.hxx>
      22                 :            : #include <ConversionHelper.hxx>
      23                 :            : #include <ooxml/resourceids.hxx>
      24                 :            : #include "dmapperLoggers.hxx"
      25                 :            : 
      26                 :            : namespace writerfilter {
      27                 :            : namespace dmapper {
      28                 :            : 
      29                 :            : using namespace ::com::sun::star;
      30                 :            : using namespace ::writerfilter;
      31                 :            : 
      32                 :         94 : CellMarginHandler::CellMarginHandler() :
      33                 :            : LoggedProperties(dmapper_logger, "CellMarginHandler"),
      34                 :            : m_nValue( 0 ),
      35                 :            : m_nLeftMargin( 0 ),
      36                 :            : m_bLeftMarginValid( false ),
      37                 :            : m_nRightMargin( 0 ),
      38                 :            : m_bRightMarginValid( false ),
      39                 :            : m_nTopMargin( 0 ),
      40                 :            : m_bTopMarginValid( false ),
      41                 :            : m_nBottomMargin( 0 ),
      42 [ +  - ][ +  - ]:         94 : m_bBottomMarginValid( false )
         [ +  - ][ +  - ]
      43                 :            : {
      44                 :         94 : }
      45                 :            : 
      46                 :         94 : CellMarginHandler::~CellMarginHandler()
      47                 :            : {
      48         [ -  + ]:        188 : }
      49                 :            : 
      50                 :        752 : void CellMarginHandler::lcl_attribute(Id rName, Value & rVal)
      51                 :            : {
      52                 :        752 :     sal_Int32 nIntValue = rVal.getInt();
      53                 :            :     (void)nIntValue;
      54                 :            :     (void)rName;
      55      [ +  +  - ]:        752 :     switch( rName )
      56                 :            :     {
      57                 :            :         case NS_ooxml::LN_CT_TblWidth_w:
      58                 :        376 :             m_nValue = ConversionHelper::convertTwipToMM100( nIntValue );
      59                 :        376 :         break;
      60                 :            :         case NS_ooxml::LN_CT_TblWidth_type:
      61                 :            :             OSL_ENSURE( NS_ooxml::LN_Value_ST_TblWidth_dxa == sal::static_int_cast<Id>(nIntValue), "cell margins work for absolute values, only");
      62                 :        376 :         break;
      63                 :            :         default:
      64                 :            :             OSL_FAIL( "unknown attribute");
      65                 :            :     }
      66                 :        752 : }
      67                 :            : 
      68                 :        376 : void CellMarginHandler::lcl_sprm(Sprm & rSprm)
      69                 :            : {
      70         [ +  - ]:        376 :     writerfilter::Reference<Properties>::Pointer_t pProperties = rSprm.getProps();
      71         [ +  - ]:        376 :     if( pProperties.get())
      72                 :            :     {
      73         [ +  - ]:        376 :         pProperties.get()->resolve( *this );
      74                 :        376 :         bool rtl = false; // TODO
      75 [ +  - ][ +  -  :        376 :         switch( rSprm.getId() )
             +  +  -  +  
                      - ]
      76                 :            :         {
      77                 :            :             case NS_ooxml::LN_CT_TblCellMar_top:
      78                 :         94 :                 m_nTopMargin = m_nValue;
      79                 :         94 :                 m_bTopMarginValid = true;
      80                 :         94 :             break;
      81                 :            :             case NS_ooxml::LN_CT_TblCellMar_start:
      82         [ #  # ]:          0 :                 if( rtl )
      83                 :            :                 {
      84                 :          0 :                     m_nRightMargin = m_nValue;
      85                 :          0 :                     m_bRightMarginValid = true;
      86                 :            :                 }
      87                 :            :                 else
      88                 :            :                 {
      89                 :          0 :                     m_nLeftMargin = m_nValue;
      90                 :          0 :                     m_bLeftMarginValid = true;
      91                 :            :                 }
      92                 :          0 :             break;
      93                 :            :             case NS_ooxml::LN_CT_TblCellMar_left:
      94                 :         94 :                 m_nLeftMargin = m_nValue;
      95                 :         94 :                 m_bLeftMarginValid = true;
      96                 :         94 :             break;
      97                 :            :             case NS_ooxml::LN_CT_TblCellMar_bottom:
      98                 :         94 :                 m_nBottomMargin = m_nValue;
      99                 :         94 :                 m_bBottomMarginValid = true;
     100                 :         94 :             break;
     101                 :            :             case NS_ooxml::LN_CT_TblCellMar_end:
     102         [ #  # ]:          0 :                 if( rtl )
     103                 :            :                 {
     104                 :          0 :                     m_nLeftMargin = m_nValue;
     105                 :          0 :                     m_bLeftMarginValid = true;
     106                 :            :                 }
     107                 :            :                 else
     108                 :            :                 {
     109                 :          0 :                     m_nRightMargin = m_nValue;
     110                 :          0 :                     m_bRightMarginValid = true;
     111                 :            :                 }
     112                 :          0 :             break;
     113                 :            :             case NS_ooxml::LN_CT_TblCellMar_right:
     114                 :         94 :                 m_nRightMargin = m_nValue;
     115                 :         94 :                 m_bRightMarginValid = true;
     116                 :        376 :             break;
     117                 :            :             default:
     118                 :            :                 OSL_FAIL( "unknown attribute");
     119                 :            :         }
     120                 :            :     }
     121         [ +  - ]:        376 :     m_nValue = 0;
     122                 :        376 : }
     123                 :            : } //namespace dmapper
     124 [ +  - ][ +  - ]:         60 : } //namespace writerfilter
     125                 :            : 
     126                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10