LCOV - code coverage report
Current view: top level - sc/source/filter/oox - tablefragment.cxx (source / functions) Hit Total Coverage
Test: commit 0e63ca4fde4e446f346e35849c756a30ca294aab Lines: 1 26 3.8 %
Date: 2014-04-11 Functions: 2 6 33.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             :  * 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             : #include "tablefragment.hxx"
      21             : 
      22             : #include "autofilterbuffer.hxx"
      23             : #include "autofiltercontext.hxx"
      24             : #include "tablebuffer.hxx"
      25             : 
      26             : namespace oox {
      27             : namespace xls {
      28             : 
      29             : using namespace ::oox::core;
      30             : 
      31             : 
      32           0 : TableFragment::TableFragment( const WorksheetHelper& rHelper, const OUString& rFragmentPath ) :
      33             :     WorksheetFragmentBase( rHelper, rFragmentPath ),
      34           0 :     mrTable( getTables().createTable() )
      35             : {
      36           0 : }
      37             : 
      38           0 : ContextHandlerRef TableFragment::onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs )
      39             : {
      40           0 :     switch( getCurrentElement() )
      41             :     {
      42             :         case XML_ROOT_CONTEXT:
      43           0 :             if( nElement == XLS_TOKEN( table ) )
      44             :             {
      45           0 :                 mrTable.importTable( rAttribs, getSheetIndex() );
      46           0 :                 return this;
      47             :             }
      48           0 :         break;
      49             :         case XLS_TOKEN( table ):
      50           0 :             if( nElement == XLS_TOKEN( autoFilter ) )
      51           0 :                 return new AutoFilterContext( *this, mrTable.createAutoFilter() );
      52           0 :         break;
      53             :     }
      54           0 :     return 0;
      55             : }
      56             : 
      57           0 : ContextHandlerRef TableFragment::onCreateRecordContext( sal_Int32 nRecId, SequenceInputStream& rStrm )
      58             : {
      59           0 :     switch( getCurrentElement() )
      60             :     {
      61             :         case XML_ROOT_CONTEXT:
      62           0 :             if( nRecId == BIFF12_ID_TABLE )
      63             :             {
      64           0 :                 mrTable.importTable( rStrm, getSheetIndex() );
      65           0 :                 return this;
      66             :             }
      67           0 :         break;
      68             :         case BIFF12_ID_TABLE:
      69           0 :             if( nRecId == BIFF12_ID_AUTOFILTER )
      70           0 :                 return new AutoFilterContext( *this, mrTable.createAutoFilter() );
      71           0 :         break;
      72             :     }
      73           0 :     return 0;
      74             : }
      75             : 
      76           0 : const RecordInfo* TableFragment::getRecordInfos() const
      77             : {
      78             :     static const RecordInfo spRecInfos[] =
      79             :     {
      80             :         { BIFF12_ID_AUTOFILTER,         BIFF12_ID_AUTOFILTER + 1        },
      81             :         { BIFF12_ID_CUSTOMFILTERS,      BIFF12_ID_CUSTOMFILTERS + 1     },
      82             :         { BIFF12_ID_DISCRETEFILTERS,    BIFF12_ID_DISCRETEFILTERS + 1   },
      83             :         { BIFF12_ID_FILTERCOLUMN,       BIFF12_ID_FILTERCOLUMN + 1      },
      84             :         { BIFF12_ID_TABLE,              BIFF12_ID_TABLE + 1             },
      85             :         { -1,                           -1                              }
      86             :     };
      87           0 :     return spRecInfos;
      88             : }
      89             : 
      90             : } // namespace xls
      91          18 : } // namespace oox
      92             : 
      93             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10