LCOV - code coverage report
Current view: top level - xmloff/source/text - XMLTextMasterStylesContext.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 13 18 72.2 %
Date: 2015-06-13 12:38:46 Functions: 3 11 27.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 <xmloff/xmlimp.hxx>
      21             : #include <xmloff/xmlnmspe.hxx>
      22             : #include <xmloff/xmltoken.hxx>
      23             : #include <xmloff/nmspmap.hxx>
      24             : 
      25             : #include <xmloff/XMLTextMasterPageContext.hxx>
      26             : #include <xmloff/XMLTextMasterStylesContext.hxx>
      27             : 
      28             : using namespace ::com::sun::star::uno;
      29             : using namespace ::com::sun::star::xml::sax;
      30             : 
      31             : using ::xmloff::token::IsXMLToken;
      32             : using ::xmloff::token::XML_MASTER_PAGE;
      33             : 
      34           0 : TYPEINIT1( XMLTextMasterStylesContext, SvXMLStylesContext );
      35             : 
      36           0 : bool XMLTextMasterStylesContext::InsertStyleFamily( sal_uInt16 ) const
      37             : {
      38           0 :     return true;
      39             : }
      40             : 
      41         344 : XMLTextMasterStylesContext::XMLTextMasterStylesContext(
      42             :         SvXMLImport& rImport,
      43             :         sal_uInt16 nPrfx, const OUString& rLName,
      44             :         const Reference< XAttributeList > & xAttrList ) :
      45         344 :     SvXMLStylesContext( rImport, nPrfx, rLName, xAttrList )
      46             : {
      47         344 : }
      48             : 
      49         344 : XMLTextMasterStylesContext::~XMLTextMasterStylesContext()
      50             : {
      51         344 : }
      52             : 
      53         592 : SvXMLStyleContext *XMLTextMasterStylesContext::CreateStyleChildContext(
      54             :         sal_uInt16 nPrefix,
      55             :         const OUString& rLocalName,
      56             :         const Reference< XAttributeList > & xAttrList )
      57             : {
      58         592 :     SvXMLStyleContext *pContext = 0;
      59             : 
      60        1184 :     if( XML_NAMESPACE_STYLE == nPrefix &&
      61        1184 :         IsXMLToken( rLocalName, XML_MASTER_PAGE ) &&
      62         592 :          InsertStyleFamily( XML_STYLE_FAMILY_MASTER_PAGE ) )
      63             :         pContext = new XMLTextMasterPageContext(
      64         592 :                         GetImport(), nPrefix, rLocalName,
      65             :                           xAttrList,
      66         592 :                         !GetImport().GetTextImport()->IsInsertMode() );
      67             : 
      68             :     // any other style will be ignored here!
      69             : 
      70         592 :     return pContext;
      71             : }
      72             : 
      73           0 : SvXMLStyleContext *XMLTextMasterStylesContext::CreateStyleStyleChildContext(
      74             :         sal_uInt16 /*nFamily*/,
      75             :         sal_uInt16 /*nPrefix*/,
      76             :         const OUString& /*rLocalName*/,
      77             :         const Reference< XAttributeList > & /*xAttrList*/ )
      78             : {
      79           0 :     return 0;
      80             : }
      81             : 
      82             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11