LibreOffice Module xmloff (master) 1
XMLAxisPositionPropertyHdl.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
22
23#include <rtl/ustrbuf.hxx>
24
25#include <com/sun/star/uno/Any.hxx>
26#include <com/sun/star/chart/ChartAxisPosition.hpp>
27
29
30#include <xmloff/xmltoken.hxx>
31
32
33using namespace ::xmloff::token;
34
35using namespace com::sun::star;
36
38 : m_bCrossingValue( bCrossingValue )
39{}
40
42{}
43
44bool XMLAxisPositionPropertyHdl::importXML( const OUString& rStrImpValue,
45 uno::Any& rValue, const SvXMLUnitConverter& /*rUnitConverter*/ ) const
46{
47 bool bResult = false;
48
49 if( rStrImpValue == GetXMLToken(XML_START) )
50 {
51 if( !m_bCrossingValue )
52 {
53 rValue <<= css::chart::ChartAxisPosition_START;
54 bResult = true;
55 }
56 }
57 else if( rStrImpValue == GetXMLToken(XML_END) )
58 {
59 if( !m_bCrossingValue )
60 {
61 rValue <<= css::chart::ChartAxisPosition_END;
62 bResult = true;
63 }
64 }
65 else if( rStrImpValue == GetXMLToken(XML_0) )
66 {
67 if( !m_bCrossingValue )
68 {
69 rValue <<= css::chart::ChartAxisPosition_ZERO;
70 bResult = true;
71 }
72 }
73 else
74 {
75 if( !m_bCrossingValue )
76 {
77 rValue <<= css::chart::ChartAxisPosition_VALUE;
78 bResult = true;
79 }
80 else
81 {
82 double fDblValue=0.0;
83 bResult = ::sax::Converter::convertDouble(fDblValue, rStrImpValue);
84 rValue <<= fDblValue;
85 }
86 }
87
88 return bResult;
89}
90
91bool XMLAxisPositionPropertyHdl::exportXML( OUString& rStrExpValue,
92 const uno::Any& rValue, const SvXMLUnitConverter& /*rUnitConverter*/ ) const
93{
94 bool bResult = false;
95
96 OUStringBuffer sValueBuffer;
98 {
99 if(rStrExpValue.isEmpty())
100 {
101 double fValue = 0.0;
102 rValue >>= fValue;
103 ::sax::Converter::convertDouble( sValueBuffer, fValue );
104 rStrExpValue = sValueBuffer.makeStringAndClear();
105 bResult = true;
106 }
107 }
108 else
109 {
110 css::chart::ChartAxisPosition ePosition( css::chart::ChartAxisPosition_ZERO );
111 rValue >>= ePosition;
112 switch(ePosition)
113 {
114 case css::chart::ChartAxisPosition_START:
115 rStrExpValue = GetXMLToken( XML_START );
116 bResult = true;
117 break;
118 case css::chart::ChartAxisPosition_END:
119 rStrExpValue = GetXMLToken( XML_END );
120 bResult = true;
121 break;
122 case css::chart::ChartAxisPosition_ZERO:
123 ::sax::Converter::convertDouble( sValueBuffer, 0.0 );
124 rStrExpValue = sValueBuffer.makeStringAndClear();
125 bResult = true;
126 break;
127 default:
128 break;
129 }
130 }
131 return bResult;
132}
133
134/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
the SvXMLTypeConverter converts values of various types from their internal representation to the tex...
Definition: xmluconv.hxx:83
XMLAxisPositionPropertyHdl(bool bCrossingValue)
virtual bool importXML(const OUString &rStrImpValue, css::uno::Any &rValue, const SvXMLUnitConverter &rUnitConverter) const override
Imports the given value according to the XML-data-type corresponding to the derived class.
virtual bool exportXML(OUString &rStrExpValue, const css::uno::Any &rValue, const SvXMLUnitConverter &rUnitConverter) const override
Exports the given value according to the XML-data-type corresponding to the derived class.
static void convertDouble(OUStringBuffer &rBuffer, double fNumber, bool bWriteUnits, sal_Int16 nSourceUnit, sal_Int16 nTargetUnit)
Handling of tokens in XML:
const OUString & GetXMLToken(enum XMLTokenEnum eToken)
return the OUString representation for eToken
Definition: xmltoken.cxx:3541