LCOV - code coverage report
Current view: top level - libreoffice/sc/source/filter/xml - XMLTableShapesContext.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 20 0.0 %
Date: 2012-12-27 Functions: 0 5 0.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             : 
      20             : #include "XMLTableShapesContext.hxx"
      21             : #include "XMLTableShapeImportHelper.hxx"
      22             : #include "xmlimprt.hxx"
      23             : #include "document.hxx"
      24             : #include <com/sun/star/drawing/XDrawPageSupplier.hpp>
      25             : 
      26             : using namespace com::sun::star;
      27             : 
      28             : //------------------------------------------------------------------
      29             : 
      30           0 : ScXMLTableShapesContext::ScXMLTableShapesContext( ScXMLImport& rImport,
      31             :                                       sal_uInt16 nPrfx,
      32             :                                       const ::rtl::OUString& rLName,
      33             :                                       const ::com::sun::star::uno::Reference<
      34             :                                       ::com::sun::star::xml::sax::XAttributeList>& /* xAttrList */ ) :
      35           0 :     SvXMLImportContext( rImport, nPrfx, rLName )
      36             : {
      37             :     // here are no attributes
      38           0 : }
      39             : 
      40           0 : ScXMLTableShapesContext::~ScXMLTableShapesContext()
      41             : {
      42           0 : }
      43             : 
      44           0 : SvXMLImportContext *ScXMLTableShapesContext::CreateChildContext( sal_uInt16 nPrefix,
      45             :                                             const ::rtl::OUString& rLName,
      46             :                                             const ::com::sun::star::uno::Reference<
      47             :                                           ::com::sun::star::xml::sax::XAttributeList>& xAttrList )
      48             : {
      49           0 :     SvXMLImportContext *pContext(0);
      50             : 
      51           0 :     if (!pContext)
      52             :     {
      53           0 :         ScXMLImport& rXMLImport(GetScImport());
      54           0 :         uno::Reference<drawing::XShapes> xShapes (rXMLImport.GetTables().GetCurrentXShapes());
      55           0 :         if (xShapes.is())
      56             :         {
      57           0 :             XMLTableShapeImportHelper* pTableShapeImport((XMLTableShapeImportHelper*)rXMLImport.GetShapeImport().get());
      58           0 :             pTableShapeImport->SetOnTable(sal_True);
      59             :             pContext = rXMLImport.GetShapeImport()->CreateGroupChildContext(
      60           0 :                 rXMLImport, nPrefix, rLName, xAttrList, xShapes);
      61           0 :         }
      62             :     }
      63             : 
      64           0 :     if( !pContext )
      65           0 :         pContext = new SvXMLImportContext( GetImport(), nPrefix, rLName );
      66             : 
      67           0 :     return pContext;
      68             : }
      69             : 
      70           0 : void ScXMLTableShapesContext::EndElement()
      71             : {
      72           0 : }
      73             : 
      74             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10