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 1722 : TYPEINIT1_FACTORY(SvxChartStyleItem, SfxEnumItem, new SvxChartStyleItem(CHSTYLE_2D_LINE, 0));
35 0 : TYPEINIT1(SvxChartDataDescrItem, SfxEnumItem);
36 1722 : TYPEINIT1(SvxChartTextOrderItem, SfxEnumItem);
37 0 : TYPEINIT1(SvxChartTextOrientItem, SfxEnumItem);
38 1722 : TYPEINIT1(SvxChartIndicateItem, SfxEnumItem);
39 1722 : TYPEINIT1(SvxChartKindErrorItem, SfxEnumItem);
40 1722 : TYPEINIT1(SvxChartRegressItem, SfxEnumItem);
41 20866 : TYPEINIT1_FACTORY(SvxDoubleItem, SfxPoolItem, new SvxDoubleItem(0.0, 0));
42 :
43 606 : SvxChartStyleItem::SvxChartStyleItem(SvxChartStyle eStyle, sal_uInt16 nId) :
44 606 : SfxEnumItem(nId, (sal_uInt16)eStyle)
45 : {
46 606 : }
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 606 : SvxChartTextOrderItem::SvxChartTextOrderItem(SvxChartTextOrder eOrder,
89 : sal_uInt16 nId) :
90 606 : SfxEnumItem(nId, (sal_uInt16)eOrder)
91 : {
92 606 : }
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 7272 : SvxDoubleItem::SvxDoubleItem(double fValue, sal_uInt16 nId) :
196 : SfxPoolItem(nId),
197 7272 : fVal(fValue)
198 : {
199 7272 : }
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 :
258 :
259 0 : SvStream& SvxDoubleItem::Store(SvStream& rOut, sal_uInt16 /*nItemVersion*/) const
260 : {
261 0 : rOut.WriteDouble( fVal );
262 0 : return rOut;
263 : }
264 :
265 :
266 :
267 0 : double SvxDoubleItem::GetMin() const
268 : {
269 0 : return DBL_MIN;
270 : }
271 :
272 :
273 :
274 0 : double SvxDoubleItem::GetMax() const
275 : {
276 0 : return DBL_MAX;
277 : }
278 :
279 :
280 :
281 0 : SfxFieldUnit SvxDoubleItem::GetUnit() const
282 : {
283 0 : return SFX_FUNIT_NONE;
284 : }
285 :
286 :
287 :
288 :
289 :
290 0 : bool SvxDoubleItem::QueryValue( uno::Any& rVal, sal_uInt8 /*nMemberId*/ ) const
291 : {
292 0 : rVal <<= fVal;
293 0 : return true;
294 : }
295 :
296 :
297 0 : bool SvxDoubleItem::PutValue( const uno::Any& rVal, sal_uInt8 /*nMemberId*/ )
298 : {
299 0 : return rVal >>= fVal;
300 : }
301 :
302 606 : SvxChartKindErrorItem::SvxChartKindErrorItem(SvxChartKindError eOrient,
303 : sal_uInt16 nId) :
304 606 : SfxEnumItem(nId, (sal_uInt16)eOrient)
305 : {
306 606 : }
307 :
308 :
309 :
310 0 : SvxChartKindErrorItem::SvxChartKindErrorItem(SvStream& rIn, sal_uInt16 nId) :
311 0 : SfxEnumItem(nId, rIn)
312 : {
313 0 : }
314 :
315 :
316 :
317 0 : SfxPoolItem* SvxChartKindErrorItem::Clone(SfxItemPool* /*pPool*/) const
318 : {
319 0 : return new SvxChartKindErrorItem(*this);
320 : }
321 :
322 :
323 :
324 0 : SfxPoolItem* SvxChartKindErrorItem::Create(SvStream& rIn, sal_uInt16 /*nVer*/) const
325 : {
326 0 : return new SvxChartKindErrorItem(rIn, Which());
327 : }
328 :
329 :
330 :
331 0 : sal_uInt16 SvxChartKindErrorItem::GetVersion (sal_uInt16 nFileFormatVersion) const
332 : {
333 : return (nFileFormatVersion == SOFFICE_FILEFORMAT_31)
334 : ? USHRT_MAX
335 0 : : 0;
336 : }
337 :
338 606 : SvxChartIndicateItem::SvxChartIndicateItem(SvxChartIndicate eOrient,
339 : sal_uInt16 nId) :
340 606 : SfxEnumItem(nId, (sal_uInt16)eOrient)
341 : {
342 606 : }
343 :
344 :
345 :
346 0 : SvxChartIndicateItem::SvxChartIndicateItem(SvStream& rIn, sal_uInt16 nId) :
347 0 : SfxEnumItem(nId, rIn)
348 : {
349 0 : }
350 :
351 :
352 :
353 0 : SfxPoolItem* SvxChartIndicateItem::Clone(SfxItemPool* /*pPool*/) const
354 : {
355 0 : return new SvxChartIndicateItem(*this);
356 : }
357 :
358 :
359 :
360 0 : SfxPoolItem* SvxChartIndicateItem::Create(SvStream& rIn, sal_uInt16 /*nVer*/) const
361 : {
362 0 : return new SvxChartIndicateItem(rIn, Which());
363 : }
364 :
365 :
366 :
367 0 : sal_uInt16 SvxChartIndicateItem::GetVersion (sal_uInt16 nFileFormatVersion) const
368 : {
369 : return (nFileFormatVersion == SOFFICE_FILEFORMAT_31)
370 : ? USHRT_MAX
371 0 : : 0;
372 : }
373 :
374 606 : SvxChartRegressItem::SvxChartRegressItem(SvxChartRegress eOrient,
375 : sal_uInt16 nId) :
376 606 : SfxEnumItem(nId, (sal_uInt16)eOrient)
377 : {
378 606 : }
379 :
380 :
381 :
382 0 : SvxChartRegressItem::SvxChartRegressItem(SvStream& rIn, sal_uInt16 nId) :
383 0 : SfxEnumItem(nId, rIn)
384 : {
385 0 : }
386 :
387 :
388 :
389 0 : SfxPoolItem* SvxChartRegressItem::Clone(SfxItemPool* /*pPool*/) const
390 : {
391 0 : return new SvxChartRegressItem(*this);
392 : }
393 :
394 :
395 :
396 0 : SfxPoolItem* SvxChartRegressItem::Create(SvStream& rIn, sal_uInt16 /*nVer*/) const
397 : {
398 0 : return new SvxChartRegressItem(rIn, Which());
399 : }
400 :
401 :
402 :
403 0 : sal_uInt16 SvxChartRegressItem::GetVersion (sal_uInt16 nFileFormatVersion) const
404 : {
405 : return (nFileFormatVersion == SOFFICE_FILEFORMAT_31)
406 : ? USHRT_MAX
407 0 : : 0;
408 : }
409 :
410 :
411 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|