LibreOffice Module xmloff (master) 1
PageHeaderFooterContext.cxx
Go to the documentation of this file.
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
21#include <utility>
23#include <xmloff/xmltoken.hxx>
24#include <xmloff/xmltypes.hxx>
25#include <xmloff/xmlimppr.hxx>
27#include <sal/log.hxx>
28
29using namespace com::sun::star;
31
33 ::std::vector< XMLPropertyState > & rTempProperties,
35 sal_Int32 nStart, sal_Int32 nEnd,
36 const bool bTempHeader ) :
37 SvXMLImportContext( rImport ),
38 rProperties(rTempProperties),
39 nStartIndex(nStart),
40 nEndIndex(nEnd),
41 rMap(std::move(xTempMap))
42{
43 bHeader = bTempHeader;
44}
45
47{
48}
49
50css::uno::Reference< css::xml::sax::XFastContextHandler > PageHeaderFooterContext::createFastChildContext(
51 sal_Int32 nElement,
52 const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList )
53{
55 {
56 PageContextType aType = Header;
57 if (!bHeader)
58 aType = Footer;
59 return new PagePropertySetContext( GetImport(), nElement,
60 xAttrList,
63 rMap, nStartIndex, nEndIndex, aType);
64 }
65 else
66 XMLOFF_WARN_UNKNOWN_ELEMENT("xmloff", nElement);
67
68 return nullptr;
69}
70
71/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
PageHeaderFooterContext(SvXMLImport &rImport, ::std::vector< XMLPropertyState > &rProperties, rtl::Reference< SvXMLImportPropertyMapper > xMap, sal_Int32 nStartIndex, sal_Int32 nEndIndex, const bool bHeader)
virtual css::uno::Reference< css::xml::sax::XFastContextHandler > SAL_CALL createFastChildContext(sal_Int32 nElement, const css::uno::Reference< css::xml::sax::XFastAttributeList > &AttrList) override
const rtl::Reference< SvXMLImportPropertyMapper > rMap
virtual ~PageHeaderFooterContext() override
::std::vector< XMLPropertyState > & rProperties
This class deliberately does not support XWeak, to improve performance when loading large documents.
Definition: xmlictxt.hxx:48
SvXMLImport & GetImport()
Definition: xmlictxt.hxx:60
Header
Footer
@ XML_HEADER_FOOTER_PROPERTIES
Definition: xmltoken.hxx:2632
#define XMLOFF_WARN_UNKNOWN_ELEMENT(area, token)
Definition: xmlictxt.hxx:120
#define XML_ELEMENT(prefix, name)
Definition: xmlimp.hxx:97
#define XML_TYPE_PROP_HEADER_FOOTER
Definition: xmltypes.hxx:97