Line data Source code
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 :
21 : #include "XMLAxisPositionPropertyHdl.hxx"
22 :
23 : #include <rtl/ustrbuf.hxx>
24 :
25 : #include <com/sun/star/uno/Any.hxx>
26 : #include <com/sun/star/chart/ChartAxisPosition.hpp>
27 :
28 : #include <sax/tools/converter.hxx>
29 :
30 : #include <xmloff/xmltoken.hxx>
31 :
32 :
33 : using namespace ::xmloff::token;
34 :
35 : using namespace com::sun::star;
36 :
37 0 : XMLAxisPositionPropertyHdl::XMLAxisPositionPropertyHdl( bool bCrossingValue )
38 0 : : m_bCrossingValue( bCrossingValue )
39 0 : {}
40 :
41 0 : XMLAxisPositionPropertyHdl::~XMLAxisPositionPropertyHdl()
42 0 : {}
43 :
44 0 : bool XMLAxisPositionPropertyHdl::importXML( const OUString& rStrImpValue,
45 : uno::Any& rValue, const SvXMLUnitConverter& /*rUnitConverter*/ ) const
46 : {
47 0 : bool bResult = false;
48 :
49 0 : if( rStrImpValue.equals( GetXMLToken(XML_START) ) )
50 : {
51 0 : if( !m_bCrossingValue )
52 : {
53 0 : rValue <<= ::com::sun::star::chart::ChartAxisPosition_START;
54 0 : bResult = true;
55 : }
56 : }
57 0 : else if( rStrImpValue.equals( GetXMLToken(XML_END) ) )
58 : {
59 0 : if( !m_bCrossingValue )
60 : {
61 0 : rValue <<= ::com::sun::star::chart::ChartAxisPosition_END;
62 0 : bResult = true;
63 : }
64 : }
65 0 : else if( rStrImpValue.equals( GetXMLToken(XML_0) ) )
66 : {
67 0 : if( !m_bCrossingValue )
68 : {
69 0 : rValue <<= ::com::sun::star::chart::ChartAxisPosition_ZERO;
70 0 : bResult = true;
71 : }
72 : }
73 : else
74 : {
75 0 : if( !m_bCrossingValue )
76 : {
77 0 : rValue <<= ::com::sun::star::chart::ChartAxisPosition_VALUE;
78 0 : bResult = true;
79 : }
80 : else
81 : {
82 0 : double fDblValue=0.0;
83 0 : bResult = ::sax::Converter::convertDouble(fDblValue, rStrImpValue);
84 0 : rValue <<= fDblValue;
85 : }
86 : }
87 :
88 0 : return bResult;
89 : }
90 :
91 0 : bool XMLAxisPositionPropertyHdl::exportXML( OUString& rStrExpValue,
92 : const uno::Any& rValue, const SvXMLUnitConverter& /*rUnitConverter*/ ) const
93 : {
94 0 : bool bResult = false;
95 :
96 0 : OUStringBuffer sValueBuffer;
97 0 : if( m_bCrossingValue )
98 : {
99 0 : if(rStrExpValue.isEmpty())
100 : {
101 0 : double fValue = 0.0;
102 0 : rValue >>= fValue;
103 0 : ::sax::Converter::convertDouble( sValueBuffer, fValue );
104 0 : rStrExpValue = sValueBuffer.makeStringAndClear();
105 0 : bResult = true;
106 : }
107 : }
108 : else
109 : {
110 0 : ::com::sun::star::chart::ChartAxisPosition ePosition( ::com::sun::star::chart::ChartAxisPosition_ZERO );
111 0 : rValue >>= ePosition;
112 0 : switch(ePosition)
113 : {
114 : case ::com::sun::star::chart::ChartAxisPosition_START:
115 0 : rStrExpValue = GetXMLToken( XML_START );
116 0 : bResult = true;
117 0 : break;
118 : case ::com::sun::star::chart::ChartAxisPosition_END:
119 0 : rStrExpValue = GetXMLToken( XML_END );
120 0 : bResult = true;
121 0 : break;
122 : case ::com::sun::star::chart::ChartAxisPosition_ZERO:
123 0 : ::sax::Converter::convertDouble( sValueBuffer, 0.0 );
124 0 : rStrExpValue = sValueBuffer.makeStringAndClear();
125 0 : bResult = true;
126 0 : break;
127 : default:
128 0 : break;
129 : }
130 : }
131 0 : return bResult;
132 : }
133 :
134 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|