Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / xmloff / source / chart / SchXMLEnumConverter.cxx
blob287dd1e56444e405a25bb8fe3ce47195d0eef32c
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 #include "SchXMLEnumConverter.hxx"
22 #include <com/sun/star/chart/ChartLegendPosition.hpp>
23 #include <com/sun/star/chart/ChartLegendExpansion.hpp>
25 #include <rtl/instance.hxx>
27 using namespace ::xmloff::token;
28 using namespace ::com::sun::star;
30 namespace
33 const SvXMLEnumMapEntry aXMLLegendPositionEnumMap[] =
35 { XML_START, chart::ChartLegendPosition_LEFT },
36 { XML_TOP, chart::ChartLegendPosition_TOP },
37 { XML_END, chart::ChartLegendPosition_RIGHT },
38 { XML_BOTTOM, chart::ChartLegendPosition_BOTTOM },
39 { XML_TOKEN_INVALID, 0 }
42 class XMLLegendPositionPropertyHdl : public XMLEnumPropertyHdl
44 public:
45 XMLLegendPositionPropertyHdl()
46 : XMLEnumPropertyHdl( aXMLLegendPositionEnumMap, cppu::UnoType<chart::ChartLegendPosition>::get()) {}
47 virtual ~XMLLegendPositionPropertyHdl() {};
50 struct TheLegendPositionPropertyHdl : public rtl::Static< XMLLegendPositionPropertyHdl, TheLegendPositionPropertyHdl >
54 const SvXMLEnumMapEntry aXMLLegendExpansionEnumMap[] =
56 { XML_WIDE, chart::ChartLegendExpansion_WIDE },
57 { XML_HIGH, chart::ChartLegendExpansion_HIGH },
58 { XML_BALANCED, chart::ChartLegendExpansion_BALANCED },
59 { XML_CUSTOM, chart::ChartLegendExpansion_CUSTOM },
60 { XML_TOKEN_INVALID, 0 }
63 class XMLLegendExpansionPropertyHdl : public XMLEnumPropertyHdl
65 public:
66 XMLLegendExpansionPropertyHdl()
67 : XMLEnumPropertyHdl( aXMLLegendExpansionEnumMap, cppu::UnoType<chart::ChartLegendExpansion>::get()) {}
68 virtual ~XMLLegendExpansionPropertyHdl() {};
71 struct TheLegendExpansionPropertyHdl : public rtl::Static< XMLLegendExpansionPropertyHdl, TheLegendExpansionPropertyHdl >
75 }//end anonymous namespace
77 XMLEnumPropertyHdl& SchXMLEnumConverter::getLegendPositionConverter()
79 return TheLegendPositionPropertyHdl::get();
81 XMLEnumPropertyHdl& SchXMLEnumConverter::getLegendExpansionConverter()
83 return TheLegendExpansionPropertyHdl::get();
86 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */