Coverage Report

Created: 2026-04-09 11:41

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libreoffice/xmloff/source/text/txtexppr.hxx
Line
Count
Source
1
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2
/*
3
 * This file is part of the LibreOffice project.
4
 *
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/.
8
 *
9
 * This file incorporates work covered by the following license notice:
10
 *
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 .
18
 */
19
#pragma once
20
21
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>
28
29
class SvXMLExport;
30
class XMLTextExportPropertySetMapper: public SvXMLExportPropertyMapper
31
{
32
    SvXMLExport& rExport;
33
34
    OUString sDropCharStyle;
35
    bool bDropWholeWord;
36
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 );
49
50
private:
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;
58
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
5.44k
    const SvXMLExport& GetExport() const { return rExport; }
65
66
public:
67
68
    XMLTextExportPropertySetMapper(
69
            const rtl::Reference< XMLPropertySetMapper >& rMapper,
70
            SvXMLExport& rExt );
71
    virtual ~XMLTextExportPropertySetMapper() override;
72
73
    virtual void handleElementItem(
74
        SvXMLExport& rExport,
75
        const XMLPropertyState& rProperty,
76
        SvXmlExportFlags nFlags,
77
        const ::std::vector< XMLPropertyState > *pProperties,
78
        sal_uInt32 nIdx ) const override;
79
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;
87
};
88
89
90
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */