LCOV - code coverage report
Current view: top level - usr/local/src/libreoffice/xmloff/source/text - XMLTextMasterStylesContext.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 13 18 72.2 %
Date: 2013-07-09 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             : 
      29             : using namespace ::com::sun::star::uno;
      30             : using namespace ::com::sun::star::xml::sax;
      31             : 
      32             : using ::xmloff::token::IsXMLToken;
      33             : using ::xmloff::token::XML_MASTER_PAGE;
      34             : 
      35             : // ------------------------------------------------------------------------
      36             : 
      37           0 : TYPEINIT1( XMLTextMasterStylesContext, SvXMLStylesContext );
      38             : 
      39           0 : sal_Bool XMLTextMasterStylesContext::InsertStyleFamily( sal_uInt16 ) const
      40             : {
      41           0 :     return sal_True;
      42             : }
      43             : 
      44          52 : XMLTextMasterStylesContext::XMLTextMasterStylesContext(
      45             :         SvXMLImport& rImport,
      46             :         sal_uInt16 nPrfx, const OUString& rLName,
      47             :         const Reference< XAttributeList > & xAttrList ) :
      48          52 :     SvXMLStylesContext( rImport, nPrfx, rLName, xAttrList )
      49             : {
      50          52 : }
      51             : 
      52          52 : XMLTextMasterStylesContext::~XMLTextMasterStylesContext()
      53             : {
      54          52 : }
      55             : 
      56          76 : SvXMLStyleContext *XMLTextMasterStylesContext::CreateStyleChildContext(
      57             :         sal_uInt16 nPrefix,
      58             :         const OUString& rLocalName,
      59             :         const Reference< XAttributeList > & xAttrList )
      60             : {
      61          76 :     SvXMLStyleContext *pContext = 0;
      62             : 
      63         152 :     if( XML_NAMESPACE_STYLE == nPrefix &&
      64         152 :         IsXMLToken( rLocalName, XML_MASTER_PAGE ) &&
      65          76 :          InsertStyleFamily( XML_STYLE_FAMILY_MASTER_PAGE ) )
      66             :         pContext = new XMLTextMasterPageContext(
      67          76 :                         GetImport(), nPrefix, rLocalName,
      68             :                           xAttrList,
      69          76 :                         !GetImport().GetTextImport()->IsInsertMode() );
      70             : 
      71             :     // any other style will be ignored here!
      72             : 
      73          76 :     return pContext;
      74             : }
      75             : 
      76           0 : SvXMLStyleContext *XMLTextMasterStylesContext::CreateStyleStyleChildContext(
      77             :         sal_uInt16 /*nFamily*/,
      78             :         sal_uInt16 /*nPrefix*/,
      79             :         const OUString& /*rLocalName*/,
      80             :         const Reference< XAttributeList > & /*xAttrList*/ )
      81             : {
      82           0 :     return 0;
      83             : }
      84             : 
      85             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10