LCOV - code coverage report
Current view: top level - sc/source/filter/xml - xmlcoli.hxx (source / functions) Hit Total Coverage
Test: commit 0e63ca4fde4e446f346e35849c756a30ca294aab Lines: 2 2 100.0 %
Date: 2014-04-11 Functions: 2 2 100.0 %
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             : #ifndef SC_XMLCOLI_HXX
      20             : #define SC_XMLCOLI_HXX
      21             : 
      22             : #include <xmloff/xmlictxt.hxx>
      23             : #include <xmloff/xmlimp.hxx>
      24             : 
      25             : class ScXMLImport;
      26             : 
      27             : class ScXMLTableColContext : public SvXMLImportContext
      28             : {
      29             :     sal_Int32               nColCount;
      30             :     OUString           sStyleName;
      31             :     OUString           sVisibility;
      32             :     OUString           sCellStyleName;
      33             : 
      34             :     const ScXMLImport& GetScImport() const { return (const ScXMLImport&)GetImport(); }
      35        2054 :     ScXMLImport& GetScImport() { return (ScXMLImport&)GetImport(); }
      36             : 
      37             : public:
      38             : 
      39             :     ScXMLTableColContext( ScXMLImport& rImport, sal_uInt16 nPrfx,
      40             :                        const OUString& rLName,
      41             :                        const ::com::sun::star::uno::Reference<
      42             :                                         ::com::sun::star::xml::sax::XAttributeList>& xAttrList );
      43             : 
      44             :     virtual ~ScXMLTableColContext();
      45             : 
      46             :     virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix,
      47             :                                      const OUString& rLocalName,
      48             :                                      const ::com::sun::star::uno::Reference<
      49             :                                           ::com::sun::star::xml::sax::XAttributeList>& xAttrList ) SAL_OVERRIDE;
      50             : 
      51             :     virtual void EndElement() SAL_OVERRIDE;
      52             : };
      53             : 
      54             : class ScXMLTableColsContext : public SvXMLImportContext
      55             : {
      56             :     sal_Int32   nHeaderStartCol;
      57             :     sal_Int32   nHeaderEndCol;
      58             :     sal_Int32   nGroupStartCol;
      59             :     sal_Int32   nGroupEndCol;
      60             :     bool        bHeader;
      61             :     bool        bGroup;
      62             :     bool        bGroupDisplay;
      63             : 
      64             :     const ScXMLImport& GetScImport() const { return (const ScXMLImport&)GetImport(); }
      65          65 :     ScXMLImport& GetScImport() { return (ScXMLImport&)GetImport(); }
      66             : 
      67             : public:
      68             : 
      69             :     ScXMLTableColsContext( ScXMLImport& rImport, sal_uInt16 nPrfx,
      70             :                        const OUString& rLName,
      71             :                        const ::com::sun::star::uno::Reference<
      72             :                                         ::com::sun::star::xml::sax::XAttributeList>& xAttrList,
      73             :                         const bool bHeader, const bool bGroup);
      74             : 
      75             :     virtual ~ScXMLTableColsContext();
      76             : 
      77             :     virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix,
      78             :                                      const OUString& rLocalName,
      79             :                                      const ::com::sun::star::uno::Reference<
      80             :                                           ::com::sun::star::xml::sax::XAttributeList>& xAttrList ) SAL_OVERRIDE;
      81             : 
      82             :     virtual void EndElement() SAL_OVERRIDE;
      83             : };
      84             : 
      85             : #endif
      86             : 
      87             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10