Coverage Report

Created: 2025-07-07 10:01

/src/libreoffice/xmloff/source/chart/SchXMLEnumConverter.cxx
Line
Count
Source (jump to first uncovered line)
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
20
#include <com/sun/star/chart/ChartLegendPosition.hpp>
21
#include <com/sun/star/chart/ChartLegendExpansion.hpp>
22
#include "SchXMLEnumConverter.hxx"
23
#include <xmloff/xmlement.hxx>
24
25
using namespace ::xmloff::token;
26
using namespace ::com::sun::star;
27
28
namespace
29
{
30
31
const SvXMLEnumMapEntry<chart::ChartLegendPosition> aXMLLegendPositionEnumMap[] =
32
{
33
    { XML_START,    chart::ChartLegendPosition_LEFT     },
34
    { XML_TOP,      chart::ChartLegendPosition_TOP      },
35
    { XML_END,      chart::ChartLegendPosition_RIGHT    },
36
    { XML_BOTTOM,   chart::ChartLegendPosition_BOTTOM   },
37
    { XML_TOKEN_INVALID, chart::ChartLegendPosition(0) }
38
};
39
40
class XMLLegendPositionPropertyHdl : public XMLEnumPropertyHdl
41
{
42
public:
43
    XMLLegendPositionPropertyHdl()
44
0
        : XMLEnumPropertyHdl( aXMLLegendPositionEnumMap) {}
45
};
46
47
const SvXMLEnumMapEntry<chart::ChartLegendExpansion> aXMLLegendExpansionEnumMap[] =
48
{
49
    { XML_WIDE,        chart::ChartLegendExpansion_WIDE },
50
    { XML_HIGH,        chart::ChartLegendExpansion_HIGH },
51
    { XML_BALANCED,    chart::ChartLegendExpansion_BALANCED },
52
    { XML_CUSTOM,      chart::ChartLegendExpansion_CUSTOM },
53
    { XML_TOKEN_INVALID, chart::ChartLegendExpansion(0) }
54
};
55
56
class XMLLegendExpansionPropertyHdl : public XMLEnumPropertyHdl
57
{
58
public:
59
    XMLLegendExpansionPropertyHdl()
60
0
        : XMLEnumPropertyHdl( aXMLLegendExpansionEnumMap) {}
61
};
62
63
}//end anonymous namespace
64
65
XMLEnumPropertyHdl& SchXMLEnumConverter::getLegendPositionConverter()
66
0
{
67
0
    static XMLLegendPositionPropertyHdl SINGLETON;
68
0
    return SINGLETON;
69
0
}
70
XMLEnumPropertyHdl& SchXMLEnumConverter::getLegendExpansionConverter()
71
0
{
72
0
    static XMLLegendExpansionPropertyHdl SINGLETON;
73
0
    return SINGLETON;
74
0
}
75
76
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */