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 : #include <tools/stream.hxx>
21 : #include <basic/sbxvar.hxx>
22 : #include <rtl/math.hxx>
23 : #include <unotools/intlwrapper.hxx>
24 : #include <com/sun/star/chart/ChartAxisArrangeOrderType.hpp>
25 :
26 : #include <stdio.h>
27 : #include <float.h>
28 :
29 : #include "svx/chrtitem.hxx"
30 :
31 : using namespace ::com::sun::star;
32 :
33 :
34 915 : TYPEINIT1_FACTORY(SvxChartStyleItem, SfxEnumItem, new SvxChartStyleItem(CHSTYLE_2D_LINE, 0));
35 0 : TYPEINIT1(SvxChartDataDescrItem, SfxEnumItem);
36 915 : TYPEINIT1(SvxChartTextOrderItem, SfxEnumItem);
37 0 : TYPEINIT1(SvxChartTextOrientItem, SfxEnumItem);
38 915 : TYPEINIT1(SvxChartIndicateItem, SfxEnumItem);
39 915 : TYPEINIT1(SvxChartKindErrorItem, SfxEnumItem);
40 915 : TYPEINIT1(SvxChartRegressItem, SfxEnumItem);
41 11113 : TYPEINIT1_FACTORY(SvxDoubleItem, SfxPoolItem, new SvxDoubleItem(0.0, 0));
42 :
43 321 : SvxChartStyleItem::SvxChartStyleItem(SvxChartStyle eStyle, sal_uInt16 nId) :
44 321 : SfxEnumItem(nId, (sal_uInt16)eStyle)
45 : {
46 321 : }
47 :
48 :
49 :
50 0 : SvxChartStyleItem::SvxChartStyleItem(SvStream& rIn, sal_uInt16 nId) :
51 0 : SfxEnumItem(nId, rIn)
52 : {
53 0 : }
54 :
55 :
56 :
57 0 : SfxPoolItem* SvxChartStyleItem::Clone(SfxItemPool* /*pPool*/) const
58 : {
59 0 : return new SvxChartStyleItem(*this);
60 : }
61 :
62 :
63 :
64 0 : SfxPoolItem* SvxChartStyleItem::Create(SvStream& rIn, sal_uInt16 /*nVer*/) const
65 : {
66 0 : return new SvxChartStyleItem(rIn, Which());
67 : }
68 :
69 0 : SvxChartDataDescrItem::SvxChartDataDescrItem(SvStream& rIn, sal_uInt16 nId) :
70 0 : SfxEnumItem(nId, rIn)
71 : {
72 0 : }
73 :
74 :
75 :
76 0 : SfxPoolItem* SvxChartDataDescrItem::Clone(SfxItemPool* /*pPool*/) const
77 : {
78 0 : return new SvxChartDataDescrItem(*this);
79 : }
80 :
81 :
82 :
83 0 : SfxPoolItem* SvxChartDataDescrItem::Create(SvStream& rIn, sal_uInt16 /*nVer*/) const
84 : {
85 0 : return new SvxChartDataDescrItem(rIn, Which());
86 : }
87 :
88 321 : SvxChartTextOrderItem::SvxChartTextOrderItem(SvxChartTextOrder eOrder,
89 : sal_uInt16 nId) :
90 321 : SfxEnumItem(nId, (sal_uInt16)eOrder)
91 : {
92 321 : }
93 :
94 :
95 :
96 0 : SvxChartTextOrderItem::SvxChartTextOrderItem(SvStream& rIn, sal_uInt16 nId) :
97 0 : SfxEnumItem(nId, rIn)
98 : {
99 0 : }
100 :
101 :
102 :
103 0 : SfxPoolItem* SvxChartTextOrderItem::Clone(SfxItemPool* /*pPool*/) const
104 : {
105 0 : return new SvxChartTextOrderItem(*this);
106 : }
107 :
108 :
109 :
110 0 : SfxPoolItem* SvxChartTextOrderItem::Create(SvStream& rIn, sal_uInt16 /*nVer*/) const
111 : {
112 0 : return new SvxChartTextOrderItem(rIn, Which());
113 : }
114 :
115 :
116 :
117 0 : bool SvxChartTextOrderItem::QueryValue( ::com::sun::star::uno::Any& rVal, sal_uInt8 /*nMemberId*/ ) const
118 : {
119 : // the order of the two enums is not equal, so a mapping is required
120 : ::com::sun::star::chart::ChartAxisArrangeOrderType eAO;
121 0 : SvxChartTextOrder eOrder( GetValue());
122 :
123 0 : switch( eOrder )
124 : {
125 : case CHTXTORDER_SIDEBYSIDE:
126 0 : eAO = ::com::sun::star::chart::ChartAxisArrangeOrderType_SIDE_BY_SIDE; break;
127 : case CHTXTORDER_UPDOWN:
128 0 : eAO = ::com::sun::star::chart::ChartAxisArrangeOrderType_STAGGER_ODD; break;
129 : case CHTXTORDER_DOWNUP:
130 0 : eAO = ::com::sun::star::chart::ChartAxisArrangeOrderType_STAGGER_EVEN; break;
131 : case CHTXTORDER_AUTO:
132 0 : eAO = ::com::sun::star::chart::ChartAxisArrangeOrderType_AUTO; break;
133 : }
134 :
135 0 : rVal <<= eAO;
136 :
137 0 : return true;
138 : }
139 :
140 :
141 :
142 0 : bool SvxChartTextOrderItem::PutValue( const ::com::sun::star::uno::Any& rVal, sal_uInt8 /*nMemberId*/ )
143 : {
144 : // the order of the two enums is not equal, so a mapping is required
145 : ::com::sun::star::chart::ChartAxisArrangeOrderType eAO;
146 : SvxChartTextOrder eOrder;
147 :
148 0 : if(!(rVal >>= eAO))
149 : {
150 : // also try an int (for Basic)
151 0 : sal_Int32 nAO = 0;
152 0 : if(!(rVal >>= nAO))
153 0 : return false;
154 0 : eAO = static_cast< ::com::sun::star::chart::ChartAxisArrangeOrderType >( nAO );
155 : }
156 :
157 0 : switch( eAO )
158 : {
159 : case ::com::sun::star::chart::ChartAxisArrangeOrderType_SIDE_BY_SIDE:
160 0 : eOrder = CHTXTORDER_SIDEBYSIDE; break;
161 : case ::com::sun::star::chart::ChartAxisArrangeOrderType_STAGGER_ODD:
162 0 : eOrder = CHTXTORDER_UPDOWN; break;
163 : case ::com::sun::star::chart::ChartAxisArrangeOrderType_STAGGER_EVEN:
164 0 : eOrder = CHTXTORDER_DOWNUP; break;
165 : case ::com::sun::star::chart::ChartAxisArrangeOrderType_AUTO:
166 0 : eOrder = CHTXTORDER_AUTO; break;
167 : default:
168 0 : return false;
169 : }
170 :
171 0 : SetValue( (sal_uInt16)eOrder );
172 :
173 0 : return true;
174 : }
175 :
176 0 : SvxChartTextOrientItem::SvxChartTextOrientItem(SvStream& rIn, sal_uInt16 nId) :
177 0 : SfxEnumItem(nId, rIn)
178 : {
179 0 : }
180 :
181 :
182 :
183 0 : SfxPoolItem* SvxChartTextOrientItem::Clone(SfxItemPool* /*pPool*/) const
184 : {
185 0 : return new SvxChartTextOrientItem(*this);
186 : }
187 :
188 :
189 :
190 0 : SfxPoolItem* SvxChartTextOrientItem::Create(SvStream& rIn, sal_uInt16 /*nVer*/) const
191 : {
192 0 : return new SvxChartTextOrientItem(rIn, Which());
193 : }
194 :
195 3852 : SvxDoubleItem::SvxDoubleItem(double fValue, sal_uInt16 nId) :
196 : SfxPoolItem(nId),
197 3852 : fVal(fValue)
198 : {
199 3852 : }
200 :
201 :
202 :
203 0 : SvxDoubleItem::SvxDoubleItem(const SvxDoubleItem& rItem) :
204 : SfxPoolItem(rItem),
205 0 : fVal(rItem.fVal)
206 : {
207 0 : }
208 :
209 :
210 :
211 0 : OUString SvxDoubleItem::GetValueText() const
212 : {
213 0 : return rtl::math::doubleToUString( fVal, rtl_math_StringFormat_E, 4, '.', false );
214 : }
215 :
216 :
217 :
218 0 : bool SvxDoubleItem::GetPresentation
219 : ( SfxItemPresentation /*ePresentation*/, SfxMapUnit /*eCoreMetric*/,
220 : SfxMapUnit /*ePresentationMetric*/, OUString& rText,
221 : const IntlWrapper * pIntlWrapper) const
222 : {
223 : DBG_ASSERT( pIntlWrapper, "SvxDoubleItem::GetPresentation: no IntlWrapper" );
224 0 : if ( pIntlWrapper )
225 : {
226 0 : rText = ::rtl::math::doubleToUString( fVal, rtl_math_StringFormat_E, 4,
227 0 : pIntlWrapper->getLocaleData()->getNumDecimalSep()[0], true );
228 : }
229 : else
230 0 : rText = GetValueText();
231 0 : return true;
232 : }
233 :
234 :
235 :
236 0 : bool SvxDoubleItem::operator == (const SfxPoolItem& rItem) const
237 : {
238 0 : return static_cast<const SvxDoubleItem&>(rItem).fVal == fVal;
239 : }
240 :
241 :
242 :
243 0 : SfxPoolItem* SvxDoubleItem::Clone(SfxItemPool* /*pPool*/) const
244 : {
245 0 : return new SvxDoubleItem(*this);
246 : }
247 :
248 :
249 :
250 0 : SfxPoolItem* SvxDoubleItem::Create(SvStream& rIn, sal_uInt16 /*nVersion*/) const
251 : {
252 : double _fVal;
253 0 : rIn.ReadDouble( _fVal );
254 0 : return new SvxDoubleItem(_fVal, Which());
255 : }
256 :
257 0 : SvStream& SvxDoubleItem::Store(SvStream& rOut, sal_uInt16 /*nItemVersion*/) const
258 : {
259 0 : rOut.WriteDouble( fVal );
260 0 : return rOut;
261 : }
262 :
263 0 : bool SvxDoubleItem::QueryValue( uno::Any& rVal, sal_uInt8 /*nMemberId*/ ) const
264 : {
265 0 : rVal <<= fVal;
266 0 : return true;
267 : }
268 :
269 0 : bool SvxDoubleItem::PutValue( const uno::Any& rVal, sal_uInt8 /*nMemberId*/ )
270 : {
271 0 : return rVal >>= fVal;
272 : }
273 :
274 321 : SvxChartKindErrorItem::SvxChartKindErrorItem(SvxChartKindError eOrient,
275 : sal_uInt16 nId) :
276 321 : SfxEnumItem(nId, (sal_uInt16)eOrient)
277 : {
278 321 : }
279 :
280 :
281 :
282 0 : SvxChartKindErrorItem::SvxChartKindErrorItem(SvStream& rIn, sal_uInt16 nId) :
283 0 : SfxEnumItem(nId, rIn)
284 : {
285 0 : }
286 :
287 :
288 :
289 0 : SfxPoolItem* SvxChartKindErrorItem::Clone(SfxItemPool* /*pPool*/) const
290 : {
291 0 : return new SvxChartKindErrorItem(*this);
292 : }
293 :
294 :
295 :
296 0 : SfxPoolItem* SvxChartKindErrorItem::Create(SvStream& rIn, sal_uInt16 /*nVer*/) const
297 : {
298 0 : return new SvxChartKindErrorItem(rIn, Which());
299 : }
300 :
301 :
302 :
303 0 : sal_uInt16 SvxChartKindErrorItem::GetVersion (sal_uInt16 nFileFormatVersion) const
304 : {
305 : return (nFileFormatVersion == SOFFICE_FILEFORMAT_31)
306 : ? USHRT_MAX
307 0 : : 0;
308 : }
309 :
310 321 : SvxChartIndicateItem::SvxChartIndicateItem(SvxChartIndicate eOrient,
311 : sal_uInt16 nId) :
312 321 : SfxEnumItem(nId, (sal_uInt16)eOrient)
313 : {
314 321 : }
315 :
316 :
317 :
318 0 : SvxChartIndicateItem::SvxChartIndicateItem(SvStream& rIn, sal_uInt16 nId) :
319 0 : SfxEnumItem(nId, rIn)
320 : {
321 0 : }
322 :
323 :
324 :
325 0 : SfxPoolItem* SvxChartIndicateItem::Clone(SfxItemPool* /*pPool*/) const
326 : {
327 0 : return new SvxChartIndicateItem(*this);
328 : }
329 :
330 :
331 :
332 0 : SfxPoolItem* SvxChartIndicateItem::Create(SvStream& rIn, sal_uInt16 /*nVer*/) const
333 : {
334 0 : return new SvxChartIndicateItem(rIn, Which());
335 : }
336 :
337 :
338 :
339 0 : sal_uInt16 SvxChartIndicateItem::GetVersion (sal_uInt16 nFileFormatVersion) const
340 : {
341 : return (nFileFormatVersion == SOFFICE_FILEFORMAT_31)
342 : ? USHRT_MAX
343 0 : : 0;
344 : }
345 :
346 321 : SvxChartRegressItem::SvxChartRegressItem(SvxChartRegress eOrient,
347 : sal_uInt16 nId) :
348 321 : SfxEnumItem(nId, (sal_uInt16)eOrient)
349 : {
350 321 : }
351 :
352 :
353 :
354 0 : SvxChartRegressItem::SvxChartRegressItem(SvStream& rIn, sal_uInt16 nId) :
355 0 : SfxEnumItem(nId, rIn)
356 : {
357 0 : }
358 :
359 :
360 :
361 0 : SfxPoolItem* SvxChartRegressItem::Clone(SfxItemPool* /*pPool*/) const
362 : {
363 0 : return new SvxChartRegressItem(*this);
364 : }
365 :
366 :
367 :
368 0 : SfxPoolItem* SvxChartRegressItem::Create(SvStream& rIn, sal_uInt16 /*nVer*/) const
369 : {
370 0 : return new SvxChartRegressItem(rIn, Which());
371 : }
372 :
373 :
374 :
375 0 : sal_uInt16 SvxChartRegressItem::GetVersion (sal_uInt16 nFileFormatVersion) const
376 : {
377 : return (nFileFormatVersion == SOFFICE_FILEFORMAT_31)
378 : ? USHRT_MAX
379 0 : : 0;
380 : }
381 :
382 :
383 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|