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 <svx/numinf.hxx>
21 :
22 : // -----------------------------------------------------------------------
23 :
24 0 : TYPEINIT1(SvxNumberInfoItem, SfxPoolItem);
25 :
26 : // class SvxNumberInfoItem -----------------------------------------------
27 :
28 : #define INIT(pNum,eVal,nDouble,rStr) \
29 : SfxPoolItem ( nId ), \
30 : \
31 : pFormatter ( pNum ), \
32 : eValueType ( eVal ), \
33 : aStringVal ( rStr ), \
34 : nDoubleVal ( nDouble ), \
35 : pDelFormatArr ( NULL ), \
36 : nDelCount ( 0 )
37 :
38 0 : SvxNumberInfoItem::SvxNumberInfoItem( const sal_uInt16 nId ) :
39 :
40 0 : INIT( NULL, SVX_VALUE_TYPE_UNDEFINED, 0, String() )
41 :
42 : {
43 0 : }
44 :
45 : // -----------------------------------------------------------------------
46 :
47 0 : SvxNumberInfoItem::SvxNumberInfoItem( SvNumberFormatter* pNumFormatter,
48 : const sal_uInt16 nId ) :
49 :
50 0 : INIT( pNumFormatter, SVX_VALUE_TYPE_UNDEFINED, 0, String() )
51 :
52 : {
53 0 : }
54 :
55 : // -----------------------------------------------------------------------
56 :
57 0 : SvxNumberInfoItem::SvxNumberInfoItem( SvNumberFormatter* pNumFormatter,
58 : const String& rVal, const sal_uInt16 nId ) :
59 :
60 0 : INIT( pNumFormatter, SVX_VALUE_TYPE_STRING, 0, rVal )
61 :
62 : {
63 0 : }
64 :
65 : // -----------------------------------------------------------------------
66 :
67 0 : SvxNumberInfoItem::SvxNumberInfoItem( SvNumberFormatter* pNumFormatter,
68 : const double& rVal, const sal_uInt16 nId ) :
69 :
70 0 : INIT( pNumFormatter, SVX_VALUE_TYPE_NUMBER, rVal, String() )
71 :
72 : {
73 0 : }
74 :
75 : // -----------------------------------------------------------------------
76 :
77 0 : SvxNumberInfoItem::SvxNumberInfoItem( SvNumberFormatter* pNumFormatter,
78 : const double& rVal, const String& rValueStr,
79 : const sal_uInt16 nId ) :
80 :
81 0 : INIT( pNumFormatter, SVX_VALUE_TYPE_NUMBER, rVal, rValueStr )
82 :
83 : {
84 0 : }
85 :
86 : #undef INIT
87 :
88 : // -----------------------------------------------------------------------
89 :
90 0 : SvxNumberInfoItem::SvxNumberInfoItem( const SvxNumberInfoItem& rItem ) :
91 :
92 0 : SfxPoolItem( rItem.Which() ),
93 :
94 : pFormatter ( rItem.pFormatter ),
95 : eValueType ( rItem.eValueType ),
96 : aStringVal ( rItem.aStringVal ),
97 : nDoubleVal ( rItem.nDoubleVal ),
98 : pDelFormatArr( NULL ),
99 0 : nDelCount ( rItem.nDelCount )
100 :
101 : {
102 0 : if ( rItem.nDelCount > 0 )
103 : {
104 0 : pDelFormatArr = new sal_uInt32[ rItem.nDelCount ];
105 :
106 0 : for ( sal_uInt16 i = 0; i < rItem.nDelCount; ++i )
107 0 : pDelFormatArr[i] = rItem.pDelFormatArr[i];
108 : }
109 0 : }
110 :
111 : // -----------------------------------------------------------------------
112 :
113 0 : SvxNumberInfoItem::~SvxNumberInfoItem()
114 : {
115 0 : if ( pDelFormatArr )
116 0 : delete []pDelFormatArr;
117 0 : }
118 :
119 : //------------------------------------------------------------------------
120 :
121 0 : SfxItemPresentation SvxNumberInfoItem::GetPresentation
122 : (
123 : SfxItemPresentation /*ePres*/,
124 : SfxMapUnit /*eCoreUnit*/,
125 : SfxMapUnit /*ePresUnit*/,
126 : String& rText, const IntlWrapper *
127 : ) const
128 : {
129 0 : rText.Erase();
130 0 : return SFX_ITEM_PRESENTATION_NONE;
131 : }
132 :
133 : // -----------------------------------------------------------------------
134 :
135 0 : int SvxNumberInfoItem::operator==( const SfxPoolItem& rItem ) const
136 : {
137 : DBG_ASSERT( SfxPoolItem::operator==( rItem ), "unequal which or type" );
138 :
139 0 : SvxNumberInfoItem& rOther = (SvxNumberInfoItem&)rItem;
140 :
141 0 : sal_Bool bEqual = sal_False;
142 :
143 0 : if ( nDelCount == rOther.nDelCount )
144 : {
145 0 : if ( nDelCount > 0 )
146 : {
147 0 : if ( pDelFormatArr != NULL && rOther.pDelFormatArr != NULL )
148 : {
149 0 : bEqual = sal_True;
150 :
151 0 : for ( sal_uInt16 i = 0; i < nDelCount && bEqual; ++i )
152 0 : bEqual = ( pDelFormatArr[i] == rOther.pDelFormatArr[i] );
153 : }
154 : }
155 0 : else if ( nDelCount == 0 )
156 0 : bEqual = ( pDelFormatArr == NULL && rOther.pDelFormatArr == NULL );
157 :
158 : bEqual = bEqual &&
159 : pFormatter == rOther.pFormatter &&
160 : eValueType == rOther.eValueType &&
161 : nDoubleVal == rOther.nDoubleVal &&
162 0 : aStringVal == rOther.aStringVal;
163 : }
164 0 : return bEqual;
165 : }
166 :
167 : // -----------------------------------------------------------------------
168 :
169 0 : SfxPoolItem* SvxNumberInfoItem::Clone( SfxItemPool * ) const
170 : {
171 0 : return new SvxNumberInfoItem( *this );
172 : }
173 :
174 : // Laden/Speichern wird nicht gebraucht!
175 : // -----------------------------------------------------------------------
176 :
177 0 : SfxPoolItem* SvxNumberInfoItem::Create( SvStream& /*rStream*/, sal_uInt16 ) const
178 : {
179 0 : return new SvxNumberInfoItem( *this );
180 : }
181 :
182 : // -----------------------------------------------------------------------
183 :
184 0 : SvStream& SvxNumberInfoItem::Store( SvStream &rStream, sal_uInt16 /*nItemVersion*/ ) const
185 : {
186 0 : return rStream;
187 : }
188 :
189 : // -----------------------------------------------------------------------
190 :
191 0 : void SvxNumberInfoItem::SetDelFormatArray( const sal_uInt32* pData,
192 : const sal_uInt32 nCount )
193 : {
194 0 : if ( pDelFormatArr )
195 : {
196 0 : delete []pDelFormatArr;
197 0 : pDelFormatArr = NULL;
198 : }
199 :
200 0 : nDelCount = nCount;
201 :
202 0 : if ( nCount > 0 )
203 : {
204 0 : pDelFormatArr = new sal_uInt32[ nCount ];
205 :
206 0 : if ( pData != NULL )
207 : {
208 0 : for ( sal_uInt16 i = 0; i < nCount; ++i )
209 0 : pDelFormatArr[i] = pData[i];
210 : }
211 : }
212 0 : }
213 :
214 :
215 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|