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 .
19 #ifndef INCLUDED_XMLOFF_SOURCE_TEXT_TXTEXPPR_HXX
20 #define INCLUDED_XMLOFF_SOURCE_TEXT_TXTEXPPR_HXX
23 #include <xmloff/xmlexppr.hxx>
24 #include "txtdrope.hxx"
25 #include <xmltabe.hxx>
26 #include <XMLTextColumnsExport.hxx>
27 #include <XMLBackgroundImageExport.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 XMLBackgroundImageExport maBackgroundImageExport
;
58 /** Application-specific filter. By default do nothing. */
59 virtual void ContextFilter(
60 bool bEnableFoFontFamily
,
61 ::std::vector
< XMLPropertyState
>& rProperties
,
62 const css::uno::Reference
< css::beans::XPropertySet
>& rPropSet
) const override
;
63 const SvXMLExport
& GetExport() const { return rExport
; }
67 XMLTextExportPropertySetMapper(
68 const rtl::Reference
< XMLPropertySetMapper
>& rMapper
,
70 virtual ~XMLTextExportPropertySetMapper() override
;
72 virtual void handleElementItem(
74 const XMLPropertyState
& rProperty
,
75 SvXmlExportFlags nFlags
,
76 const ::std::vector
< XMLPropertyState
> *pProperties
,
77 sal_uInt32 nIdx
) const override
;
79 virtual void handleSpecialItem(
80 SvXMLAttributeList
& rAttrList
,
81 const XMLPropertyState
& rProperty
,
82 const SvXMLUnitConverter
& rUnitConverter
,
83 const SvXMLNamespaceMap
& rNamespaceMap
,
84 const ::std::vector
< XMLPropertyState
> *pProperties
,
85 sal_uInt32 nIdx
) const override
;
91 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */