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 .
22 #include <xmloff/xmlexppr.hxx>
23 #include "txtdrope.hxx"
24 #include <xmltabe.hxx>
25 #include <XMLTextColumnsExport.hxx>
26 #include <XMLBackgroundImageExport.hxx>
27 #include <xmloff/XMLComplexColorExport.hxx>
30 class XMLTextExportPropertySetMapper
: public SvXMLExportPropertyMapper
34 OUString sDropCharStyle
;
37 void ContextFontFilter(
38 bool bEnableFoFontFamily
,
39 XMLPropertyState
*pFontNameState
,
40 XMLPropertyState
*pFontFamilyNameState
,
41 XMLPropertyState
*pFontStyleNameState
,
42 XMLPropertyState
*pFontFamilyState
,
43 XMLPropertyState
*pFontPitchState
,
44 XMLPropertyState
*pFontCharsetState
) const;
45 static void ContextFontHeightFilter(
46 XMLPropertyState
* pCharHeightState
,
47 XMLPropertyState
* pCharPropHeightState
,
48 XMLPropertyState
* pCharDiffHeightState
);
51 // SvXMLUnitConverter& mrUnitConverter;
52 // const Reference< xml::sax::XDocumentHandler > & mrHandler;
53 XMLTextDropCapExport maDropCapExport
;
54 SvxXMLTabStopExport maTabStopExport
;
55 XMLTextColumnsExport maTextColumnsExport
;
56 XMLComplexColorExport maComplexColorExport
;
57 XMLBackgroundImageExport maBackgroundImageExport
;
59 /** Application-specific filter. By default do nothing. */
60 virtual void ContextFilter(
61 bool bEnableFoFontFamily
,
62 ::std::vector
< XMLPropertyState
>& rProperties
,
63 const css::uno::Reference
< css::beans::XPropertySet
>& rPropSet
) const override
;
64 const SvXMLExport
& GetExport() const { return rExport
; }
68 XMLTextExportPropertySetMapper(
69 const rtl::Reference
< XMLPropertySetMapper
>& rMapper
,
71 virtual ~XMLTextExportPropertySetMapper() override
;
73 virtual void handleElementItem(
75 const XMLPropertyState
& rProperty
,
76 SvXmlExportFlags nFlags
,
77 const ::std::vector
< XMLPropertyState
> *pProperties
,
78 sal_uInt32 nIdx
) const override
;
80 virtual void handleSpecialItem(
81 comphelper::AttributeList
& rAttrList
,
82 const XMLPropertyState
& rProperty
,
83 const SvXMLUnitConverter
& rUnitConverter
,
84 const SvXMLNamespaceMap
& rNamespaceMap
,
85 const ::std::vector
< XMLPropertyState
> *pProperties
,
86 sal_uInt32 nIdx
) const override
;
90 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */