bump product version to 4.1.6.2
[LibreOffice.git] / xmloff / source / style / PageMasterExportPropMapper.hxx
blob78b00285134d1518584ecf5b9019c1cab470ee41
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 #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
32 protected:
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
41 ) const;
43 public:
44 XMLPageMasterExportPropMapper(
45 const UniReference< XMLPropertySetMapper >& rMapper,
46 SvXMLExport& rExport
48 virtual ~XMLPageMasterExportPropMapper();
50 virtual void handleElementItem(
51 SvXMLExport& rExport,
52 const XMLPropertyState& rProperty,
53 sal_uInt16 nFlags,
54 const ::std::vector< XMLPropertyState >* pProperties = 0,
55 sal_uInt32 nIdx = 0
56 ) const;
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,
63 sal_uInt32 nIdx = 0
64 ) const;
66 inline XMLBackgroundImageExport& GetBackgroundImageExport()
67 { return aBackgroundImageExport; }
71 #endif
73 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */