LibreOffice Module xmloff (master) 1
SchXMLEnumConverter.cxx
Go to the documentation of this file.
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>
23#include <xmloff/xmlement.hxx>
24
25using namespace ::xmloff::token;
26using namespace ::com::sun::star;
27
28namespace
29{
30
31const 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
40class XMLLegendPositionPropertyHdl : public XMLEnumPropertyHdl
41{
42public:
43 XMLLegendPositionPropertyHdl()
44 : XMLEnumPropertyHdl( aXMLLegendPositionEnumMap) {}
45};
46
47const 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
56class XMLLegendExpansionPropertyHdl : public XMLEnumPropertyHdl
57{
58public:
59 XMLLegendExpansionPropertyHdl()
60 : XMLEnumPropertyHdl( aXMLLegendExpansionEnumMap) {}
61};
62
63}//end anonymous namespace
64
66{
67 static XMLLegendPositionPropertyHdl SINGLETON;
68 return SINGLETON;
69}
71{
72 static XMLLegendExpansionPropertyHdl SINGLETON;
73 return SINGLETON;
74}
75
76/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
static XMLEnumPropertyHdl & getLegendPositionConverter()
static XMLEnumPropertyHdl & getLegendExpansionConverter()
PropertyHandler for a generic xml enumeration type:
Handling of tokens in XML: