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