bump product version to 5.0.4.1
[LibreOffice.git] / xmloff / source / text / XMLTextMasterStylesContext.cxx
blobd51d4fa0ca91b53ac3a5d106687c06db39be8f65
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #include <xmloff/xmlimp.hxx>
21 #include <xmloff/xmlnmspe.hxx>
22 #include <xmloff/xmltoken.hxx>
23 #include <xmloff/nmspmap.hxx>
25 #include <xmloff/XMLTextMasterPageContext.hxx>
26 #include <xmloff/XMLTextMasterStylesContext.hxx>
28 using namespace ::com::sun::star::uno;
29 using namespace ::com::sun::star::xml::sax;
31 using ::xmloff::token::IsXMLToken;
32 using ::xmloff::token::XML_MASTER_PAGE;
34 TYPEINIT1( XMLTextMasterStylesContext, SvXMLStylesContext );
36 bool XMLTextMasterStylesContext::InsertStyleFamily( sal_uInt16 ) const
38 return true;
41 XMLTextMasterStylesContext::XMLTextMasterStylesContext(
42 SvXMLImport& rImport,
43 sal_uInt16 nPrfx, const OUString& rLName,
44 const Reference< XAttributeList > & xAttrList ) :
45 SvXMLStylesContext( rImport, nPrfx, rLName, xAttrList )
49 XMLTextMasterStylesContext::~XMLTextMasterStylesContext()
53 SvXMLStyleContext *XMLTextMasterStylesContext::CreateStyleChildContext(
54 sal_uInt16 nPrefix,
55 const OUString& rLocalName,
56 const Reference< XAttributeList > & xAttrList )
58 SvXMLStyleContext *pContext = 0;
60 if( XML_NAMESPACE_STYLE == nPrefix &&
61 IsXMLToken( rLocalName, XML_MASTER_PAGE ) &&
62 InsertStyleFamily( XML_STYLE_FAMILY_MASTER_PAGE ) )
63 pContext = new XMLTextMasterPageContext(
64 GetImport(), nPrefix, rLocalName,
65 xAttrList,
66 !GetImport().GetTextImport()->IsInsertMode() );
68 // any other style will be ignored here!
70 return pContext;
73 SvXMLStyleContext *XMLTextMasterStylesContext::CreateStyleStyleChildContext(
74 sal_uInt16 /*nFamily*/,
75 sal_uInt16 /*nPrefix*/,
76 const OUString& /*rLocalName*/,
77 const Reference< XAttributeList > & /*xAttrList*/ )
79 return 0;
82 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */