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 0 : XMLTextMasterStylesContext::XMLTextMasterStylesContext(
42 : SvXMLImport& rImport,
43 : sal_uInt16 nPrfx, const OUString& rLName,
44 : const Reference< XAttributeList > & xAttrList ) :
45 0 : SvXMLStylesContext( rImport, nPrfx, rLName, xAttrList )
46 : {
47 0 : }
48 :
49 0 : XMLTextMasterStylesContext::~XMLTextMasterStylesContext()
50 : {
51 0 : }
52 :
53 0 : SvXMLStyleContext *XMLTextMasterStylesContext::CreateStyleChildContext(
54 : sal_uInt16 nPrefix,
55 : const OUString& rLocalName,
56 : const Reference< XAttributeList > & xAttrList )
57 : {
58 0 : SvXMLStyleContext *pContext = 0;
59 :
60 0 : if( XML_NAMESPACE_STYLE == nPrefix &&
61 0 : IsXMLToken( rLocalName, XML_MASTER_PAGE ) &&
62 0 : InsertStyleFamily( XML_STYLE_FAMILY_MASTER_PAGE ) )
63 : pContext = new XMLTextMasterPageContext(
64 0 : GetImport(), nPrefix, rLocalName,
65 : xAttrList,
66 0 : !GetImport().GetTextImport()->IsInsertMode() );
67 :
68 : // any other style will be ignored here!
69 :
70 0 : 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: */
|