tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / xmloff / source / style / PageHeaderFooterContext.cxx
blobb36473361ff08957739bc34ca7c9950109250624
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 "PageHeaderFooterContext.hxx"
21 #include <utility>
22 #include <xmloff/xmlnamespace.hxx>
23 #include <xmloff/xmltoken.hxx>
24 #include <xmloff/xmltypes.hxx>
25 #include <xmloff/xmlimppr.hxx>
26 #include "PagePropertySetContext.hxx"
27 #include <sal/log.hxx>
29 using namespace com::sun::star;
30 using ::xmloff::token::XML_HEADER_FOOTER_PROPERTIES;
32 PageHeaderFooterContext::PageHeaderFooterContext( SvXMLImport& rImport,
33 ::std::vector< XMLPropertyState > & rTempProperties,
34 rtl::Reference < SvXMLImportPropertyMapper > xTempMap,
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))
43 bHeader = bTempHeader;
46 PageHeaderFooterContext::~PageHeaderFooterContext()
50 css::uno::Reference< css::xml::sax::XFastContextHandler > PageHeaderFooterContext::createFastChildContext(
51 sal_Int32 nElement,
52 const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList )
54 if( nElement == XML_ELEMENT(STYLE, XML_HEADER_FOOTER_PROPERTIES) )
56 PageContextType aType = Header;
57 if (!bHeader)
58 aType = Footer;
59 return new PagePropertySetContext( GetImport(), nElement,
60 xAttrList,
61 XML_TYPE_PROP_HEADER_FOOTER,
62 rProperties,
63 rMap, nStartIndex, nEndIndex, aType);
65 else
66 XMLOFF_WARN_UNKNOWN_ELEMENT("xmloff", nElement);
68 return nullptr;
71 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */