1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 #ifndef _XMLOFF_PAGEMASTEREXPORTPROPMAPPER_HXX
21 #define _XMLOFF_PAGEMASTEREXPORTPROPMAPPER_HXX
23 #include <xmloff/xmlexppr.hxx>
24 #include "XMLBackgroundImageExport.hxx"
25 #include "XMLTextColumnsExport.hxx"
26 #include "XMLFootnoteSeparatorExport.hxx"
28 //______________________________________________________________________________
30 class XMLPageMasterExportPropMapper
: public SvXMLExportPropertyMapper
33 XMLBackgroundImageExport aBackgroundImageExport
;
34 XMLTextColumnsExport aTextColumnsExport
;
35 XMLFootnoteSeparatorExport aFootnoteSeparatorExport
;
37 virtual void ContextFilter(
38 bool bEnableFoFontFamily
,
39 ::std::vector
< XMLPropertyState
>& rProperties
,
40 ::com::sun::star::uno::Reference
< ::com::sun::star::beans::XPropertySet
> rPropSet
44 XMLPageMasterExportPropMapper(
45 const UniReference
< XMLPropertySetMapper
>& rMapper
,
48 virtual ~XMLPageMasterExportPropMapper();
50 virtual void handleElementItem(
52 const XMLPropertyState
& rProperty
,
54 const ::std::vector
< XMLPropertyState
>* pProperties
= 0,
57 virtual void handleSpecialItem(
58 SvXMLAttributeList
& rAttrList
,
59 const XMLPropertyState
& rProperty
,
60 const SvXMLUnitConverter
& rUnitConverter
,
61 const SvXMLNamespaceMap
& rNamespaceMap
,
62 const ::std::vector
< XMLPropertyState
>* pProperties
= 0,
66 inline XMLBackgroundImageExport
& GetBackgroundImageExport()
67 { return aBackgroundImageExport
; }
73 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */