LCOV - code coverage report
Current view: top level - writerfilter/source/dmapper - TablePropertiesHandler.hxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 19 21 90.5 %
Date: 2012-08-25 Functions: 5 5 100.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 10 30 33.3 %

           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                 :            : 
      20                 :            : #ifndef INCLUDED_TABLEPROPERTIESHANDLER_HXX
      21                 :            : #define INCLUDED_TABLEPROPERTIESHANDLER_HXX
      22                 :            : 
      23                 :            : #include <PropertyMap.hxx>
      24                 :            : 
      25                 :            : #include <resourcemodel/TableManager.hxx>
      26                 :            : #include <WriterFilterDllApi.hxx>
      27                 :            : #include <resourcemodel/WW8ResourceModel.hxx>
      28                 :            : 
      29                 :            : #include <boost/shared_ptr.hpp>
      30                 :            : 
      31                 :            : #include <vector>
      32                 :            : 
      33                 :            : namespace writerfilter {
      34                 :            : namespace dmapper {
      35                 :            : 
      36                 :            : 
      37                 :            : typedef ::com::sun::star::uno::Reference< ::com::sun::star::text::XTextRange > Handle_t;
      38                 :            : typedef TableManager<Handle_t , TablePropertyMapPtr > DomainMapperTableManager_Base_t;
      39                 :            : 
      40                 :            : class TablePropertiesHandler
      41                 :            : {
      42                 :            : private:
      43                 :            :     vector< PropertyMapPtr > m_rPropertiesStack;
      44                 :            :     PropertyMapPtr m_pCurrentProperties;
      45                 :            :     DomainMapperTableManager_Base_t *m_pTableManager;
      46                 :            :     bool m_bOOXML;
      47                 :            : 
      48                 :            : public:
      49                 :            :     TablePropertiesHandler( bool bOOXML );
      50                 :            :     virtual ~TablePropertiesHandler( );
      51                 :            : 
      52                 :            :     bool sprm(Sprm & sprm);
      53                 :            : 
      54                 :        632 :     inline void SetTableManager( DomainMapperTableManager_Base_t *pTableManager )
      55                 :            :     {
      56                 :        632 :         m_pTableManager = pTableManager;
      57                 :        632 :     };
      58                 :            : 
      59                 :       4995 :     inline void SetProperties( PropertyMapPtr pProperties )
      60                 :            :     {
      61                 :       4995 :         m_pCurrentProperties = pProperties;
      62                 :       4995 :     };
      63                 :            : 
      64                 :            : private:
      65                 :            : 
      66                 :        623 :     inline void cellProps( TablePropertyMapPtr pProps )
      67                 :            :     {
      68         [ +  - ]:        623 :         if ( m_pTableManager )
      69         [ +  - ]:        623 :             m_pTableManager->cellProps( pProps );
      70                 :            :         else
      71 [ #  # ][ #  # ]:          0 :             m_pCurrentProperties->insert( pProps, true );
                 [ #  # ]
      72                 :        623 :     };
      73                 :            : 
      74                 :            :     inline void cellPropsByCell( unsigned int i, TablePropertyMapPtr pProps )
      75                 :            :     {
      76                 :            :         if ( m_pTableManager )
      77                 :            :             m_pTableManager->cellPropsByCell( i, pProps );
      78                 :            :         else
      79                 :            :             m_pCurrentProperties->insert( pProps, true );
      80                 :            :     };
      81                 :            : 
      82                 :         13 :     inline void insertRowProps( TablePropertyMapPtr pProps )
      83                 :            :     {
      84         [ +  - ]:         13 :         if ( m_pTableManager )
      85         [ +  - ]:         13 :             m_pTableManager->insertRowProps( pProps );
      86                 :            :         else
      87 [ #  # ][ #  # ]:          0 :             m_pCurrentProperties->insert( pProps, true );
                 [ #  # ]
      88                 :         13 :     };
      89                 :            : 
      90                 :        223 :     inline void insertTableProps( TablePropertyMapPtr pProps )
      91                 :            :     {
      92         [ +  + ]:        223 :         if ( m_pTableManager )
      93         [ +  - ]:         21 :             m_pTableManager->insertTableProps( pProps );
      94                 :            :         else
      95 [ +  - ][ +  - ]:        202 :             m_pCurrentProperties->insert( pProps, true );
                 [ +  - ]
      96                 :        223 :     };
      97                 :            : };
      98                 :            : typedef boost::shared_ptr<TablePropertiesHandler> TablePropertiesHandlerPtr;
      99                 :            : 
     100                 :            : } }
     101                 :            : 
     102                 :            : #endif
     103                 :            : 
     104                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10