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/color.hxx>
21 :
22 : #include <tools/debug.hxx>
23 : #include <i18nlangtag/mslangid.hxx>
24 :
25 : #include <svl/zforlist.hxx>
26 : #include <svl/zformat.hxx>
27 : #include <svl/currencytable.hxx>
28 :
29 : #include <svtools/langtab.hxx>
30 : #include <vcl/svapp.hxx>
31 : #include <vcl/settings.hxx>
32 : #include <comphelper/processfactory.hxx>
33 :
34 : #include <svx/numfmtsh.hxx>
35 :
36 : #include <limits>
37 :
38 : const double SvxNumberFormatShell::DEFAULT_NUMVALUE = 1234.56789;
39 :
40 :
41 :
42 :
43 :
44 0 : SvxNumberFormatShell* SvxNumberFormatShell::Create( SvNumberFormatter* pNumFormatter,
45 : sal_uInt32 nFormatKey,
46 : SvxNumberValueType eNumValType,
47 : const OUString& rNumStr )
48 : {
49 : return new SvxNumberFormatShell(pNumFormatter,nFormatKey,
50 0 : eNumValType,rNumStr );
51 : }
52 :
53 0 : SvxNumberFormatShell* SvxNumberFormatShell::Create( SvNumberFormatter* pNumFormatter,
54 : sal_uInt32 nFormatKey,
55 : SvxNumberValueType eNumValType,
56 : double nNumVal,
57 : const OUString* pNumStr )
58 : {
59 : return new SvxNumberFormatShell(pNumFormatter,nFormatKey,
60 0 : eNumValType,nNumVal,pNumStr );
61 : }
62 :
63 :
64 :
65 0 : SvxNumberFormatShell::SvxNumberFormatShell( SvNumberFormatter* pNumFormatter,
66 : sal_uInt32 nFormatKey,
67 : SvxNumberValueType eNumValType,
68 : const OUString& rNumStr )
69 : : pFormatter ( pNumFormatter )
70 : , pCurFmtTable ( NULL )
71 : , eValType ( eNumValType )
72 : , bUndoAddList ( true )
73 : , nCurFormatKey ( nFormatKey )
74 : , nCurCategory (css::util::NumberFormat::ALL)
75 : , eCurLanguage (LANGUAGE_NONE)
76 : , pCurCurrencyEntry(NULL)
77 : , bBankingSymbol (false)
78 : , nCurCurrencyEntryPos((sal_uInt16) SELPOS_NONE)
79 0 : , bUseStarFormat (false)
80 : {
81 0 : nValNum = DEFAULT_NUMVALUE;
82 :
83 0 : switch ( eValType )
84 : {
85 : case SVX_VALUE_TYPE_STRING:
86 0 : aValStr = rNumStr;
87 0 : break;
88 : case SVX_VALUE_TYPE_NUMBER:
89 : case SVX_VALUE_TYPE_UNDEFINED:
90 : default:
91 0 : aValStr.clear();
92 : }
93 0 : }
94 :
95 :
96 :
97 0 : SvxNumberFormatShell::SvxNumberFormatShell( SvNumberFormatter* pNumFormatter,
98 : sal_uInt32 nFormatKey,
99 : SvxNumberValueType eNumValType,
100 : double nNumVal,
101 : const OUString* pNumStr )
102 : : pFormatter ( pNumFormatter )
103 : , pCurFmtTable ( NULL )
104 : , eValType ( eNumValType )
105 : , bUndoAddList ( true )
106 : , nCurFormatKey ( nFormatKey )
107 : , nCurCategory (css::util::NumberFormat::ALL)
108 : , eCurLanguage (LANGUAGE_NONE)
109 : , pCurCurrencyEntry(NULL)
110 : , bBankingSymbol (false)
111 : , nCurCurrencyEntryPos((sal_uInt16) SELPOS_NONE)
112 0 : , bUseStarFormat (false)
113 : {
114 : // #50441# When used in Writer, the SvxNumberInfoItem contains the
115 : // original string in addition to the value
116 :
117 0 : if ( pNumStr )
118 0 : aValStr = *pNumStr;
119 :
120 0 : switch ( eValType )
121 : {
122 : case SVX_VALUE_TYPE_NUMBER:
123 0 : nValNum = nNumVal;
124 0 : break;
125 : case SVX_VALUE_TYPE_STRING:
126 : case SVX_VALUE_TYPE_UNDEFINED:
127 : default:
128 0 : nValNum = DEFAULT_NUMVALUE;
129 : }
130 0 : }
131 :
132 :
133 :
134 0 : SvxNumberFormatShell::~SvxNumberFormatShell()
135 : {
136 : /*
137 : * An dieser Stelle wird abhaengig davon, ob die
138 : * hinzugefuegten, benutzerdefinierten als gueltig
139 : * erklaert wurden (ValidateNewEntries()), die
140 : * Add-Liste wieder aus dem Zahlenformatierer entfernt.
141 : *
142 : * Loeschen von Formaten aus dem Formatierer passiert
143 : * aus Undo-Gruenden nur in der aufrufenden Instanz.
144 : */
145 :
146 0 : if ( bUndoAddList )
147 : {
148 : // Added formats are invalid => remove them
149 :
150 0 : for ( std::vector<sal_uInt32>::const_iterator it(aAddList.begin()); it != aAddList.end(); ++it )
151 0 : pFormatter->DeleteEntry( *it );
152 : }
153 0 : }
154 :
155 :
156 :
157 0 : size_t SvxNumberFormatShell::GetUpdateDataCount() const
158 : {
159 0 : return aDelList.size();
160 : }
161 :
162 :
163 :
164 0 : void SvxNumberFormatShell::GetUpdateData( sal_uInt32* pDelArray, const sal_uInt32 nSize )
165 : {
166 0 : const size_t nListSize = aDelList.size();
167 :
168 : DBG_ASSERT( pDelArray && ( nSize == nListSize ), "Array not initialised!" );
169 :
170 0 : if ( pDelArray && ( nSize == nListSize ) )
171 0 : for (std::vector<sal_uInt32>::const_iterator it(aDelList.begin()); it != aDelList.end(); ++it )
172 0 : *pDelArray++ = *it;
173 0 : }
174 :
175 :
176 :
177 0 : void SvxNumberFormatShell::CategoryChanged( sal_uInt16 nCatLbPos,
178 : short& rFmtSelPos,
179 : std::vector<OUString>& rFmtEntries )
180 : {
181 0 : short nOldCategory = nCurCategory;
182 0 : PosToCategory_Impl( nCatLbPos, nCurCategory );
183 : pCurFmtTable = &( pFormatter->GetEntryTable( nCurCategory,
184 : nCurFormatKey,
185 0 : eCurLanguage ) );
186 : // reinitialize currency if category newly entered
187 0 : if ( nCurCategory == css::util::NumberFormat::CURRENCY && nOldCategory != nCurCategory )
188 0 : pCurCurrencyEntry = NULL;
189 0 : rFmtSelPos = FillEntryList_Impl( rFmtEntries );
190 0 : }
191 :
192 :
193 :
194 0 : void SvxNumberFormatShell::LanguageChanged( LanguageType eLangType,
195 : short& rFmtSelPos,
196 : std::vector<OUString>& rFmtEntries )
197 : {
198 0 : eCurLanguage = eLangType;
199 : pCurFmtTable = &(pFormatter->ChangeCL( nCurCategory,
200 : nCurFormatKey,
201 0 : eCurLanguage ) );
202 0 : rFmtSelPos = FillEntryList_Impl( rFmtEntries );
203 0 : }
204 :
205 :
206 :
207 0 : void SvxNumberFormatShell::FormatChanged( sal_uInt16 nFmtLbPos,
208 : OUString& rPreviewStr,
209 : Color*& rpFontColor )
210 : {
211 0 : if( static_cast<size_t>(nFmtLbPos) < aCurEntryList.size() )
212 : {
213 0 : nCurFormatKey = aCurEntryList[nFmtLbPos];
214 :
215 0 : if( nCurFormatKey != NUMBERFORMAT_ENTRY_NOT_FOUND )
216 : {
217 0 : GetPreviewString_Impl( rPreviewStr, rpFontColor );
218 : }
219 0 : else if( nCurCategory == css::util::NumberFormat::CURRENCY )
220 : {
221 0 : if( static_cast<size_t>(nFmtLbPos) < aCurrencyFormatList.size() )
222 : {
223 0 : MakePrevStringFromVal(aCurrencyFormatList[nFmtLbPos],
224 0 : rPreviewStr,rpFontColor,nValNum);
225 : }
226 : }
227 : }
228 0 : }
229 :
230 :
231 0 : bool SvxNumberFormatShell::AddFormat( OUString& rFormat, sal_Int32& rErrPos,
232 : sal_uInt16& rCatLbSelPos, short& rFmtSelPos,
233 : std::vector<OUString>& rFmtEntries )
234 : {
235 0 : bool bInserted = false;
236 0 : sal_uInt32 nAddKey = pFormatter->GetEntryKey( rFormat, eCurLanguage );
237 :
238 0 : if ( nAddKey != NUMBERFORMAT_ENTRY_NOT_FOUND ) // exists already?
239 : {
240 0 : ::std::vector<sal_uInt32>::iterator nAt = GetRemoved_Impl( nAddKey );
241 0 : if ( nAt != aDelList.end() )
242 : {
243 0 : aDelList.erase( nAt );
244 0 : bInserted = true;
245 : }
246 : else
247 : {
248 : OSL_FAIL( "duplicate format!" );
249 : }
250 : }
251 : else // new format
252 : {
253 : sal_Int32 nPos;
254 : bInserted = pFormatter->PutEntry( rFormat, nPos,
255 : nCurCategory, nAddKey,
256 0 : eCurLanguage );
257 0 : rErrPos = (nPos >= 0) ? nPos : -1;
258 :
259 0 : if (bInserted)
260 : {
261 : // May be sorted under a different locale if LCID was parsed.
262 0 : const SvNumberformat* pEntry = pFormatter->GetEntry( nAddKey);
263 0 : if (pEntry)
264 : {
265 0 : LanguageType nLang = pEntry->GetLanguage();
266 0 : if (eCurLanguage != nLang)
267 : {
268 : // Current language's list would not show entry, adapt.
269 0 : eCurLanguage = nLang;
270 : }
271 : }
272 : }
273 : }
274 :
275 0 : if ( bInserted )
276 : {
277 0 : nCurFormatKey = nAddKey;
278 : DBG_ASSERT( !IsAdded_Impl( nCurFormatKey ), "duplicate format!" );
279 0 : aAddList.push_back( nCurFormatKey );
280 :
281 : // get current table
282 : pCurFmtTable = &(pFormatter->GetEntryTable( nCurCategory,
283 : nCurFormatKey,
284 0 : eCurLanguage ));
285 0 : nCurCategory=pFormatter->GetType(nAddKey);
286 0 : CategoryToPos_Impl( nCurCategory, rCatLbSelPos );
287 0 : rFmtSelPos = FillEntryList_Impl( rFmtEntries );
288 : }
289 0 : else if ( rErrPos != 0 ) // syntax error
290 : {
291 : ;
292 : }
293 : else // insert twice not possible
294 : {
295 : OSL_FAIL( "duplicate format!" );
296 : }
297 :
298 0 : return bInserted;
299 : }
300 :
301 :
302 :
303 0 : bool SvxNumberFormatShell::RemoveFormat( const OUString& rFormat,
304 : sal_uInt16& rCatLbSelPos,
305 : short& rFmtSelPos,
306 : std::vector<OUString>& rFmtEntries )
307 : {
308 0 : sal_uInt32 nDelKey = pFormatter->GetEntryKey( rFormat, eCurLanguage );
309 :
310 : DBG_ASSERT( nDelKey != NUMBERFORMAT_ENTRY_NOT_FOUND, "entry not found!" );
311 : DBG_ASSERT( !IsRemoved_Impl( nDelKey ), "entry already removed!" );
312 :
313 0 : if ( (nDelKey != NUMBERFORMAT_ENTRY_NOT_FOUND) && !IsRemoved_Impl( nDelKey ) )
314 : {
315 0 : aDelList.push_back( nDelKey );
316 :
317 0 : ::std::vector<sal_uInt32>::iterator nAt = GetAdded_Impl( nDelKey );
318 0 : if( nAt != aAddList.end() )
319 : {
320 0 : aAddList.erase( nAt );
321 : }
322 :
323 0 : nCurCategory=pFormatter->GetType(nDelKey);
324 : pCurFmtTable = &(pFormatter->GetEntryTable( nCurCategory,
325 : nCurFormatKey,
326 0 : eCurLanguage ));
327 :
328 : nCurFormatKey=pFormatter->GetStandardFormat(nCurCategory,
329 0 : eCurLanguage );
330 :
331 0 : CategoryToPos_Impl( nCurCategory, rCatLbSelPos );
332 0 : rFmtSelPos = FillEntryList_Impl( rFmtEntries );
333 : }
334 0 : return true;
335 : }
336 :
337 :
338 :
339 0 : void SvxNumberFormatShell::MakeFormat( OUString& rFormat,
340 : bool bThousand, bool bNegRed,
341 : sal_uInt16 nPrecision, sal_uInt16 nLeadingZeroes,
342 : sal_uInt16 nCurrencyPos)
343 : {
344 0 : if( aCurrencyFormatList.size() > static_cast<size_t>(nCurrencyPos) )
345 : {
346 0 : sal_Int32 rErrPos=0;
347 0 : std::vector<OUString> aFmtEList;
348 :
349 0 : sal_uInt32 nFound = pFormatter->TestNewString( aCurrencyFormatList[nCurrencyPos], eCurLanguage );
350 :
351 0 : if ( nFound == NUMBERFORMAT_ENTRY_NOT_FOUND )
352 : {
353 0 : sal_uInt16 rCatLbSelPos =0;
354 0 : short rFmtSelPos = 0;
355 0 : AddFormat( aCurrencyFormatList[nCurrencyPos],rErrPos,rCatLbSelPos,
356 0 : rFmtSelPos,aFmtEList);
357 : }
358 :
359 0 : if(rErrPos==0)
360 : {
361 0 : rFormat = pFormatter->GenerateFormat(nCurFormatKey,
362 : eCurLanguage,
363 : bThousand, bNegRed,
364 0 : nPrecision, nLeadingZeroes);
365 0 : }
366 : }
367 : else
368 : {
369 0 : rFormat = pFormatter->GenerateFormat(nCurFormatKey,
370 : eCurLanguage,
371 : bThousand, bNegRed,
372 0 : nPrecision, nLeadingZeroes);
373 : }
374 0 : }
375 :
376 :
377 0 : sal_uInt16 SvxNumberFormatShell::GetFormatIntegerDigits( const OUString& rFormat ) const
378 : {
379 0 : sal_uInt32 nFmtKey = pFormatter->GetEntryKey( rFormat, eCurLanguage );
380 :
381 0 : return pFormatter->GetFormatIntegerDigits(nFmtKey);
382 : }
383 :
384 :
385 0 : void SvxNumberFormatShell::GetOptions( const OUString& rFormat,
386 : bool& rThousand,
387 : bool& rNegRed,
388 : sal_uInt16& rPrecision,
389 : sal_uInt16& rLeadingZeroes,
390 : sal_uInt16& rCatLbPos )
391 : {
392 :
393 0 : sal_uInt32 nFmtKey = pFormatter->GetEntryKey( rFormat, eCurLanguage );
394 :
395 0 : if(nFmtKey != NUMBERFORMAT_ENTRY_NOT_FOUND)
396 : {
397 : pFormatter->GetFormatSpecialInfo( nFmtKey,
398 : rThousand, rNegRed,
399 0 : rPrecision, rLeadingZeroes );
400 :
401 0 : CategoryToPos_Impl( pFormatter->GetType( nFmtKey ), rCatLbPos );
402 : }
403 : else
404 : {
405 0 : bool bTestBanking = false;
406 0 : sal_uInt16 nPos=FindCurrencyTableEntry(rFormat, bTestBanking );
407 :
408 0 : if(IsInTable(nPos,bTestBanking,rFormat) &&
409 : pFormatter->GetFormatSpecialInfo( rFormat,rThousand, rNegRed,
410 0 : rPrecision, rLeadingZeroes,eCurLanguage)==0)
411 : {
412 0 : rCatLbPos = CAT_CURRENCY;
413 : }
414 : else
415 0 : rCatLbPos = CAT_USERDEFINED;
416 : }
417 :
418 0 : }
419 :
420 :
421 :
422 0 : void SvxNumberFormatShell::MakePreviewString( const OUString& rFormatStr,
423 : OUString& rPreviewStr,
424 : Color*& rpFontColor )
425 : {
426 0 : rpFontColor = NULL;
427 :
428 0 : sal_uIntPtr nExistingFormat = pFormatter->GetEntryKey( rFormatStr, eCurLanguage );
429 0 : if ( nExistingFormat == NUMBERFORMAT_ENTRY_NOT_FOUND )
430 : {
431 : // real preview - not implemented in NumberFormatter for text formats
432 : pFormatter->GetPreviewString( rFormatStr, nValNum, rPreviewStr,
433 0 : &rpFontColor, eCurLanguage, bUseStarFormat );
434 : }
435 : else
436 : {
437 : // format exists
438 :
439 : // #50441# if a string was set in addition to the value, use it for text formats
440 0 : bool bUseText = ( eValType == SVX_VALUE_TYPE_STRING ||
441 0 : ( !aValStr.isEmpty() && ( pFormatter->GetType(nExistingFormat) & css::util::NumberFormat::TEXT ) ) );
442 0 : if ( bUseText )
443 : {
444 : pFormatter->GetOutputString( aValStr, nExistingFormat,
445 0 : rPreviewStr, &rpFontColor );
446 : }
447 : else
448 : {
449 : pFormatter->GetOutputString( nValNum, nExistingFormat,
450 0 : rPreviewStr, &rpFontColor, bUseStarFormat );
451 : }
452 : }
453 0 : }
454 :
455 :
456 :
457 0 : bool SvxNumberFormatShell::IsUserDefined( const OUString& rFmtString )
458 : {
459 0 : sal_uInt32 nFound = pFormatter->GetEntryKey( rFmtString, eCurLanguage );
460 :
461 0 : bool bFlag=false;
462 0 : if ( nFound != NUMBERFORMAT_ENTRY_NOT_FOUND )
463 : {
464 0 : bFlag=pFormatter->IsUserDefined( rFmtString, eCurLanguage );
465 :
466 0 : if(bFlag)
467 : {
468 0 : const SvNumberformat* pNumEntry = pFormatter->GetEntry(nFound);
469 :
470 0 : if(pNumEntry!=NULL && pNumEntry->HasNewCurrency())
471 : {
472 : bool bTestBanking;
473 0 : sal_uInt16 nPos=FindCurrencyTableEntry(rFmtString,bTestBanking);
474 0 : bFlag=!IsInTable(nPos,bTestBanking,rFmtString);
475 : }
476 : }
477 : }
478 0 : return bFlag;
479 : }
480 :
481 :
482 :
483 0 : bool SvxNumberFormatShell::FindEntry( const OUString& rFmtString, sal_uInt32* pAt /* = NULL */ )
484 : {
485 0 : bool bRes=false;
486 0 : sal_uInt32 nFound = pFormatter->TestNewString( rFmtString, eCurLanguage );
487 :
488 0 : if ( nFound == NUMBERFORMAT_ENTRY_NOT_FOUND )
489 : {
490 0 : bool bTestBanking=false;
491 0 : sal_uInt16 nPos=FindCurrencyTableEntry(rFmtString, bTestBanking );
492 :
493 0 : if(IsInTable(nPos,bTestBanking,rFmtString))
494 : {
495 0 : nFound=NUMBERFORMAT_ENTRY_NEW_CURRENCY;
496 0 : bRes=true;
497 : }
498 : }
499 : else
500 : {
501 0 : bRes=!IsRemoved_Impl( nFound );
502 : }
503 :
504 0 : if ( pAt )
505 0 : *pAt = nFound;
506 :
507 0 : return bRes;
508 : }
509 :
510 :
511 :
512 :
513 0 : void SvxNumberFormatShell::GetInitSettings( sal_uInt16& nCatLbPos,
514 : LanguageType& rLangType,
515 : sal_uInt16& nFmtLbSelPos,
516 : std::vector<OUString>& rFmtEntries,
517 : OUString& rPrevString,
518 : Color*& rpPrevColor )
519 : {
520 :
521 : // precondition: number formater found
522 : DBG_ASSERT( pFormatter != NULL, "Zahlenformatierer nicht gefunden!" );
523 :
524 0 : short nSelPos = SELPOS_NONE;
525 :
526 : // Sonderbehandlung fuer undefiniertes Zahlenformat:
527 0 : if ( (eValType == SVX_VALUE_TYPE_UNDEFINED) && (nCurFormatKey == 0) )
528 0 : PosToCategory_Impl( CAT_ALL, nCurCategory ); // Kategorie = Alle
529 : else
530 0 : nCurCategory = css::util::NumberFormat::UNDEFINED; // Kategorie = Undefiniert
531 :
532 : pCurFmtTable = &(pFormatter->GetFirstEntryTable( nCurCategory,
533 : nCurFormatKey,
534 0 : eCurLanguage ));
535 :
536 :
537 :
538 0 : CategoryToPos_Impl( nCurCategory, nCatLbPos );
539 0 : rLangType = eCurLanguage;
540 :
541 0 : nSelPos = FillEntryList_Impl( rFmtEntries );
542 :
543 : DBG_ASSERT( nSelPos != SELPOS_NONE, "Leere Formatliste!" );
544 :
545 0 : nFmtLbSelPos = (nSelPos != SELPOS_NONE) ? (sal_uInt16)nSelPos : 0;
546 0 : GetPreviewString_Impl( rPrevString, rpPrevColor );
547 0 : }
548 :
549 :
550 :
551 0 : short SvxNumberFormatShell::FillEntryList_Impl( std::vector<OUString>& rList )
552 : {
553 : /* Erstellen einer aktuellen Liste von Format-Eintraegen.
554 : * Rueckgabewert ist die Listenposition des aktuellen Formates.
555 : * Ist die Liste leer oder gibt es kein aktuelles Format,
556 : * so wird SELPOS_NONE geliefert.
557 : */
558 0 : short nSelPos=0;
559 0 : sal_uInt16 nPrivCat = CAT_CURRENCY;
560 0 : nSelPos=SELPOS_NONE;
561 :
562 0 : aCurEntryList.clear();
563 :
564 0 : if(nCurCategory==css::util::NumberFormat::ALL)
565 : {
566 0 : FillEListWithStd_Impl(rList,CAT_NUMBER,nSelPos);
567 0 : FillEListWithStd_Impl(rList,CAT_PERCENT,nSelPos);
568 0 : FillEListWithStd_Impl(rList,CAT_CURRENCY,nSelPos);
569 0 : FillEListWithStd_Impl(rList,CAT_DATE,nSelPos);
570 0 : FillEListWithStd_Impl(rList,CAT_TIME,nSelPos);
571 0 : FillEListWithStd_Impl(rList,CAT_SCIENTIFIC,nSelPos);
572 0 : FillEListWithStd_Impl(rList,CAT_FRACTION,nSelPos);
573 0 : FillEListWithStd_Impl(rList,CAT_BOOLEAN,nSelPos);
574 0 : FillEListWithStd_Impl(rList,CAT_TEXT,nSelPos);
575 : }
576 : else
577 : {
578 0 : CategoryToPos_Impl(nCurCategory, nPrivCat);
579 0 : FillEListWithStd_Impl(rList,nPrivCat,nSelPos);
580 : }
581 :
582 0 : if( nPrivCat!=CAT_CURRENCY)
583 0 : nSelPos=FillEListWithUsD_Impl(rList,nPrivCat,nSelPos);
584 :
585 0 : return nSelPos;
586 : }
587 :
588 0 : void SvxNumberFormatShell::FillEListWithStd_Impl( std::vector<OUString>& rList,
589 : sal_uInt16 nPrivCat,short &nSelPos )
590 : {
591 : /* Erstellen einer aktuellen Liste von Format-Eintraegen.
592 : * Rueckgabewert ist die Listenposition des aktuellen Formates.
593 : * Ist die Liste leer oder gibt es kein aktuelles Format,
594 : * so wird SELPOS_NONE geliefert.
595 : */
596 : DBG_ASSERT( pCurFmtTable != NULL, "Unbekanntes Zahlenformat!" );
597 :
598 0 : aCurrencyFormatList.clear();
599 :
600 0 : if(nPrivCat==CAT_CURRENCY)
601 : {
602 0 : nSelPos=FillEListWithCurrency_Impl(rList,nSelPos);
603 : }
604 : else
605 : {
606 : NfIndexTableOffset eOffsetStart;
607 : NfIndexTableOffset eOffsetEnd;
608 :
609 0 : switch(nPrivCat)
610 : {
611 0 : case CAT_NUMBER :eOffsetStart=NF_NUMBER_START;
612 0 : eOffsetEnd=NF_NUMBER_END;
613 0 : break;
614 0 : case CAT_PERCENT :eOffsetStart=NF_PERCENT_START;
615 0 : eOffsetEnd=NF_PERCENT_END;
616 0 : break;
617 0 : case CAT_CURRENCY :eOffsetStart=NF_CURRENCY_START;
618 0 : eOffsetEnd=NF_CURRENCY_END;
619 0 : break;
620 0 : case CAT_DATE :eOffsetStart=NF_DATE_START;
621 0 : eOffsetEnd=NF_DATE_END;
622 0 : break;
623 0 : case CAT_TIME :eOffsetStart=NF_TIME_START;
624 0 : eOffsetEnd=NF_TIME_END;
625 0 : break;
626 0 : case CAT_SCIENTIFIC :eOffsetStart=NF_SCIENTIFIC_START;
627 0 : eOffsetEnd=NF_SCIENTIFIC_END;
628 0 : break;
629 0 : case CAT_FRACTION :eOffsetStart=NF_FRACTION_START;
630 0 : eOffsetEnd=NF_FRACTION_END;
631 0 : break;
632 0 : case CAT_BOOLEAN :eOffsetStart=NF_BOOLEAN;
633 0 : eOffsetEnd=NF_BOOLEAN;
634 0 : break;
635 0 : case CAT_TEXT :eOffsetStart=NF_TEXT;
636 0 : eOffsetEnd=NF_TEXT;
637 0 : break;
638 0 : default :return;
639 : }
640 :
641 0 : nSelPos=FillEListWithFormats_Impl(rList,nSelPos,eOffsetStart,eOffsetEnd);
642 :
643 0 : if(nPrivCat==CAT_DATE || nPrivCat==CAT_TIME)
644 : {
645 0 : nSelPos=FillEListWithDateTime_Impl(rList,nSelPos);
646 : }
647 : }
648 : }
649 :
650 0 : short SvxNumberFormatShell::FillEListWithFormats_Impl( std::vector<OUString>& rList,
651 : short nSelPos,
652 : NfIndexTableOffset eOffsetStart,
653 : NfIndexTableOffset eOffsetEnd)
654 : {
655 : /* Erstellen einer aktuellen Liste von Format-Eintraegen.
656 : * Rueckgabewert ist die Listenposition des aktuellen Formates.
657 : * Ist die Liste leer oder gibt es kein aktuelles Format,
658 : * so wird SELPOS_NONE geliefert.
659 : */
660 : sal_uInt16 nMyType;
661 :
662 : DBG_ASSERT( pCurFmtTable != NULL, "Unbekanntes Zahlenformat!" );
663 :
664 0 : const SvNumberformat* pNumEntry = pCurFmtTable->empty() ? 0 : pCurFmtTable->begin()->second;
665 : sal_uInt32 nNFEntry;
666 0 : OUString aStrComment;
667 0 : OUString aNewFormNInfo;
668 :
669 0 : short nMyCat = SELPOS_NONE;
670 :
671 : long nIndex;
672 :
673 0 : for(nIndex=eOffsetStart;nIndex<=eOffsetEnd;nIndex++)
674 : {
675 0 : nNFEntry=pFormatter->GetFormatIndex((NfIndexTableOffset)nIndex,eCurLanguage);
676 :
677 0 : pNumEntry = pFormatter->GetEntry(nNFEntry);
678 :
679 0 : if(pNumEntry==NULL) continue;
680 :
681 0 : nMyCat=pNumEntry->GetType() & ~css::util::NumberFormat::DEFINED;
682 0 : aStrComment=pNumEntry->GetComment();
683 0 : CategoryToPos_Impl(nMyCat,nMyType);
684 0 : aNewFormNInfo= pNumEntry->GetFormatstring();
685 :
686 0 : if ( nNFEntry == nCurFormatKey )
687 : {
688 0 : nSelPos = ( !IsRemoved_Impl( nNFEntry ) ) ? aCurEntryList.size() : SELPOS_NONE;
689 : }
690 :
691 0 : rList.push_back( aNewFormNInfo );
692 0 : aCurEntryList.push_back( nNFEntry );
693 : }
694 :
695 0 : return nSelPos;
696 : }
697 :
698 0 : short SvxNumberFormatShell::FillEListWithDateTime_Impl( std::vector<OUString>& rList,
699 : short nSelPos)
700 : {
701 : sal_uInt16 nMyType;
702 :
703 : assert(pCurFmtTable && "Unknown number format!");
704 :
705 0 : const SvNumberformat* pNumEntry = pCurFmtTable->empty() ? 0 : pCurFmtTable->begin()->second;
706 : sal_uInt32 nNFEntry;
707 0 : OUString aStrComment;
708 0 : OUString aNewFormNInfo;
709 :
710 0 : short nMyCat = SELPOS_NONE;
711 :
712 0 : for (long nIndex = NF_DATETIME_START; nIndex <= NF_DATETIME_END; ++nIndex)
713 : {
714 0 : nNFEntry=pFormatter->GetFormatIndex((NfIndexTableOffset)nIndex,eCurLanguage);
715 :
716 0 : pNumEntry = pFormatter->GetEntry(nNFEntry);
717 0 : if(pNumEntry!=NULL)
718 : {
719 0 : nMyCat=pNumEntry->GetType() & ~css::util::NumberFormat::DEFINED;
720 0 : aStrComment=pNumEntry->GetComment();
721 0 : CategoryToPos_Impl(nMyCat,nMyType);
722 0 : aNewFormNInfo= pNumEntry->GetFormatstring();
723 :
724 0 : if ( nNFEntry == nCurFormatKey )
725 : {
726 0 : nSelPos = ( !IsRemoved_Impl( nNFEntry ) ) ? aCurEntryList.size() : SELPOS_NONE;
727 : }
728 :
729 0 : rList.push_back( aNewFormNInfo );
730 0 : aCurEntryList.push_back( nNFEntry );
731 : }
732 : }
733 :
734 0 : return nSelPos;
735 : }
736 :
737 0 : short SvxNumberFormatShell::FillEListWithCurrency_Impl( std::vector<OUString>& rList,
738 : short nSelPos)
739 : {
740 : /* Erstellen einer aktuellen Liste von Format-Eintraegen.
741 : * Rueckgabewert ist die Listenposition des aktuellen Formates.
742 : * Ist die Liste leer oder gibt es kein aktuelles Format,
743 : * so wird SELPOS_NONE geliefert.
744 : */
745 : DBG_ASSERT( pCurFmtTable != NULL, "Unbekanntes Zahlenformat!" );
746 :
747 : const NfCurrencyEntry* pTmpCurrencyEntry;
748 : bool bTmpBanking;
749 0 : OUString rSymbol;
750 :
751 : bool bFlag=pFormatter->GetNewCurrencySymbolString(nCurFormatKey,rSymbol,
752 0 : &pTmpCurrencyEntry,&bTmpBanking);
753 :
754 0 : if( (!bFlag && pCurCurrencyEntry==NULL) ||
755 0 : (bFlag && pTmpCurrencyEntry==NULL && rSymbol.isEmpty()) ||
756 0 : (nCurCategory==css::util::NumberFormat::ALL))
757 : {
758 0 : if ( nCurCategory == css::util::NumberFormat::ALL )
759 0 : FillEListWithUserCurrencys(rList,nSelPos);
760 0 : nSelPos=FillEListWithSysCurrencys(rList,nSelPos);
761 : }
762 : else
763 : {
764 0 : nSelPos=FillEListWithUserCurrencys(rList,nSelPos);
765 : }
766 :
767 0 : return nSelPos;
768 : }
769 :
770 :
771 0 : short SvxNumberFormatShell::FillEListWithSysCurrencys( std::vector<OUString>& rList,
772 : short nSelPos)
773 : {
774 : /* Erstellen einer aktuellen Liste von Format-Eintraegen.
775 : * Rueckgabewert ist die Listenposition des aktuellen Formates.
776 : * Ist die Liste leer oder gibt es kein aktuelles Format,
777 : * so wird SELPOS_NONE geliefert.
778 : */
779 : sal_uInt16 nMyType;
780 :
781 : DBG_ASSERT( pCurFmtTable != NULL, "Unbekanntes Zahlenformat!" );
782 :
783 0 : const SvNumberformat* pNumEntry = pCurFmtTable->empty() ? 0 : pCurFmtTable->begin()->second;
784 : sal_uInt32 nNFEntry;
785 0 : OUString aStrComment;
786 0 : OUString aNewFormNInfo;
787 :
788 0 : nCurCurrencyEntryPos=0;
789 :
790 0 : short nMyCat = SELPOS_NONE;
791 :
792 0 : NfIndexTableOffset eOffsetStart=NF_CURRENCY_START;
793 0 : NfIndexTableOffset eOffsetEnd=NF_CURRENCY_END;
794 : long nIndex;
795 :
796 0 : for(nIndex=eOffsetStart;nIndex<=eOffsetEnd;nIndex++)
797 : {
798 0 : nNFEntry=pFormatter->GetFormatIndex((NfIndexTableOffset)nIndex,eCurLanguage);
799 :
800 0 : pNumEntry = pFormatter->GetEntry(nNFEntry);
801 :
802 0 : if(pNumEntry==NULL) continue;
803 :
804 0 : nMyCat=pNumEntry->GetType() & ~css::util::NumberFormat::DEFINED;
805 0 : aStrComment=pNumEntry->GetComment();
806 0 : CategoryToPos_Impl(nMyCat,nMyType);
807 0 : aNewFormNInfo= pNumEntry->GetFormatstring();
808 :
809 0 : if ( nNFEntry == nCurFormatKey )
810 : {
811 0 : nSelPos = ( !IsRemoved_Impl( nNFEntry ) ) ? aCurEntryList.size() : SELPOS_NONE;
812 : }
813 :
814 0 : rList.push_back( aNewFormNInfo );
815 0 : aCurEntryList.push_back( nNFEntry );
816 : }
817 :
818 0 : if(nCurCategory!=css::util::NumberFormat::ALL)
819 : {
820 0 : SvNumberFormatTable::iterator it = pCurFmtTable->begin();
821 :
822 0 : while ( it != pCurFmtTable->end() )
823 : {
824 0 : sal_uInt32 nKey = it->first;
825 0 : pNumEntry = it->second;
826 :
827 0 : if ( !IsRemoved_Impl( nKey ))
828 : {
829 0 : bool bUserNewCurrency=false;
830 0 : if(pNumEntry->HasNewCurrency())
831 : {
832 : const NfCurrencyEntry* pTmpCurrencyEntry;
833 : bool bTmpBanking;
834 0 : OUString rSymbol;
835 :
836 : pFormatter->GetNewCurrencySymbolString(nKey,rSymbol,
837 : &pTmpCurrencyEntry,
838 0 : &bTmpBanking);
839 :
840 0 : bUserNewCurrency=(pTmpCurrencyEntry!=NULL);
841 : }
842 :
843 0 : if(!bUserNewCurrency &&(pNumEntry->GetType() & css::util::NumberFormat::DEFINED))
844 : {
845 0 : nMyCat=pNumEntry->GetType() & ~css::util::NumberFormat::DEFINED;
846 0 : aStrComment=pNumEntry->GetComment();
847 0 : CategoryToPos_Impl(nMyCat,nMyType);
848 0 : aNewFormNInfo= pNumEntry->GetFormatstring();
849 :
850 0 : if ( nKey == nCurFormatKey ) nSelPos =aCurEntryList.size();
851 0 : rList.push_back( aNewFormNInfo );
852 0 : aCurEntryList.push_back( nKey );
853 : }
854 : }
855 0 : ++it;
856 : }
857 : }
858 0 : return nSelPos;
859 : }
860 :
861 0 : short SvxNumberFormatShell::FillEListWithUserCurrencys( std::vector<OUString>& rList,
862 : short nSelPos)
863 : {
864 : /* Erstellen einer aktuellen Liste von Format-Eintraegen.
865 : * Rueckgabewert ist die Listenposition des aktuellen Formates.
866 : * Ist die Liste leer oder gibt es kein aktuelles Format,
867 : * so wird SELPOS_NONE geliefert.
868 : */
869 : sal_uInt16 nMyType;
870 :
871 : DBG_ASSERT( pCurFmtTable != NULL, "Unbekanntes Zahlenformat!" );
872 :
873 0 : OUString aStrComment;
874 0 : OUString aNewFormNInfo;
875 0 : short nMyCat = SELPOS_NONE;
876 :
877 : const NfCurrencyEntry* pTmpCurrencyEntry;
878 : bool bTmpBanking, bAdaptSelPos;
879 0 : OUString rSymbol;
880 0 : OUString rBankSymbol;
881 :
882 0 : std::vector<OUString> aList;
883 0 : std::vector<sal_uInt32> aKeyList;
884 :
885 : pFormatter->GetNewCurrencySymbolString(nCurFormatKey,rSymbol,
886 : &pTmpCurrencyEntry,
887 0 : &bTmpBanking);
888 :
889 0 : OUString rShortSymbol;
890 :
891 0 : if(pCurCurrencyEntry==NULL)
892 : {
893 : // #110398# If no currency format was previously selected (we're not
894 : // about to add another currency), try to select the initial currency
895 : // format (nCurFormatKey) that was set in FormatChanged() after
896 : // matching the format string entered in the dialog.
897 0 : bAdaptSelPos = true;
898 0 : pCurCurrencyEntry = const_cast<NfCurrencyEntry*>(pTmpCurrencyEntry);
899 0 : bBankingSymbol = bTmpBanking;
900 0 : nCurCurrencyEntryPos = FindCurrencyFormat(pTmpCurrencyEntry,bTmpBanking);
901 : }
902 : else
903 : {
904 0 : if (pTmpCurrencyEntry == pCurCurrencyEntry)
905 0 : bAdaptSelPos = true;
906 : else
907 : {
908 0 : bAdaptSelPos = false;
909 0 : pTmpCurrencyEntry = pCurCurrencyEntry;
910 : }
911 0 : bTmpBanking=bBankingSymbol;
912 : }
913 :
914 0 : if(pTmpCurrencyEntry!=NULL)
915 : {
916 0 : rSymbol = pTmpCurrencyEntry->BuildSymbolString(false);
917 0 : rBankSymbol = pTmpCurrencyEntry->BuildSymbolString(true);
918 0 : rShortSymbol = pTmpCurrencyEntry->BuildSymbolString(bTmpBanking,true);
919 : }
920 :
921 0 : SvNumberFormatTable::iterator it = pCurFmtTable->begin();
922 0 : while ( it != pCurFmtTable->end() )
923 : {
924 0 : sal_uInt32 nKey = it->first;
925 0 : const SvNumberformat* pNumEntry = it->second;
926 :
927 0 : if ( !IsRemoved_Impl( nKey ) )
928 : {
929 0 : if( pNumEntry->GetType() & css::util::NumberFormat::DEFINED ||
930 0 : pNumEntry->IsAdditionalBuiltin() )
931 : {
932 0 : nMyCat=pNumEntry->GetType() & ~css::util::NumberFormat::DEFINED;
933 0 : aStrComment = pNumEntry->GetComment();
934 0 : CategoryToPos_Impl(nMyCat,nMyType);
935 0 : aNewFormNInfo = pNumEntry->GetFormatstring();
936 :
937 0 : bool bInsFlag = false;
938 0 : if ( pNumEntry->HasNewCurrency() )
939 : {
940 0 : bInsFlag = true; // merge locale formats into currency selection
941 : }
942 0 : else if( (!bTmpBanking && aNewFormNInfo.indexOf(rSymbol) >= 0) ||
943 0 : (bTmpBanking && aNewFormNInfo.indexOf(rBankSymbol) >= 0) )
944 : {
945 0 : bInsFlag = true;
946 : }
947 0 : else if(aNewFormNInfo.indexOf(rShortSymbol) >= 0)
948 : {
949 0 : OUString rTstSymbol;
950 : const NfCurrencyEntry* pTstCurrencyEntry;
951 : bool bTstBanking;
952 :
953 : pFormatter->GetNewCurrencySymbolString(nKey,rTstSymbol,
954 : &pTstCurrencyEntry,
955 0 : &bTstBanking);
956 :
957 0 : if(pTmpCurrencyEntry == pTstCurrencyEntry &&
958 0 : bTstBanking == bTmpBanking)
959 : {
960 0 : bInsFlag = true;
961 0 : }
962 :
963 : }
964 :
965 0 : if(bInsFlag)
966 : {
967 0 : aList.push_back( aNewFormNInfo );
968 0 : aKeyList.push_back( nKey );
969 : }
970 : }
971 : }
972 0 : ++it;
973 : }
974 :
975 0 : NfWSStringsDtor aWSStringsDtor;
976 : sal_uInt16 nDefault;
977 0 : if ( pTmpCurrencyEntry && nCurCategory != css::util::NumberFormat::ALL )
978 : {
979 : nDefault = pFormatter->GetCurrencyFormatStrings(
980 0 : aWSStringsDtor, *pTmpCurrencyEntry, bTmpBanking );
981 0 : if ( !bTmpBanking )
982 : pFormatter->GetCurrencyFormatStrings(
983 0 : aWSStringsDtor, *pTmpCurrencyEntry, true );
984 : }
985 : else
986 0 : nDefault = 0;
987 0 : if ( !bTmpBanking && nCurCategory != css::util::NumberFormat::ALL )
988 : { // append formats for all currencies defined in the current I18N locale
989 0 : const NfCurrencyTable& rCurrencyTable = SvNumberFormatter::GetTheCurrencyTable();
990 0 : sal_uInt16 nCurrCount = rCurrencyTable.size();
991 0 : LanguageType eLang = MsLangId::getRealLanguage( eCurLanguage );
992 0 : for ( sal_uInt16 i=0; i < nCurrCount; ++i )
993 : {
994 0 : const NfCurrencyEntry* pCurr = &rCurrencyTable[i];
995 0 : if ( pCurr->GetLanguage() == eLang && pTmpCurrencyEntry != pCurr )
996 : {
997 0 : pFormatter->GetCurrencyFormatStrings( aWSStringsDtor, *pCurr, false );
998 0 : pFormatter->GetCurrencyFormatStrings( aWSStringsDtor, *pCurr, true );
999 : }
1000 : }
1001 : }
1002 :
1003 0 : size_t nOldListCount = rList.size();
1004 0 : for( size_t i = 0, nPos = nOldListCount; i < aWSStringsDtor.size(); ++i )
1005 : {
1006 0 : bool bFlag = true;
1007 0 : OUString aInsStr(aWSStringsDtor[i]);
1008 : size_t j;
1009 0 : for( j=0; j < aList.size(); ++j )
1010 : {
1011 0 : if(aList[j]==aInsStr)
1012 : {
1013 0 : bFlag = false;
1014 0 : break;
1015 : }
1016 : }
1017 0 : if(bFlag)
1018 : {
1019 0 : rList.push_back( aInsStr );
1020 0 : aCurEntryList.insert( aCurEntryList.begin() + (nPos++), NUMBERFORMAT_ENTRY_NOT_FOUND);
1021 : }
1022 : else
1023 : {
1024 0 : rList.push_back( aList[j] );
1025 0 : aList.erase( aList.begin()+j );
1026 0 : aCurEntryList.insert( aCurEntryList.begin() + (nPos++), aKeyList[j]);
1027 0 : aKeyList.erase( aKeyList.begin()+j );
1028 : }
1029 0 : }
1030 :
1031 0 : for( size_t i = 0; i < aKeyList.size(); ++i )
1032 : {
1033 0 : if( aKeyList[i] != NUMBERFORMAT_ENTRY_NOT_FOUND )
1034 : {
1035 0 : rList.push_back( aList[i] );
1036 0 : aCurEntryList.push_back( aKeyList[i] );
1037 : }
1038 : }
1039 :
1040 0 : for( size_t i = nOldListCount; i < rList.size(); ++i )
1041 : {
1042 0 : aCurrencyFormatList.push_back( rList[i] );
1043 :
1044 0 : if ( nSelPos == SELPOS_NONE && bAdaptSelPos && aCurEntryList[i] == nCurFormatKey )
1045 0 : nSelPos = i;
1046 : }
1047 :
1048 0 : if ( nSelPos == SELPOS_NONE && nCurCategory != css::util::NumberFormat::ALL )
1049 0 : nSelPos = nDefault;
1050 :
1051 0 : return nSelPos;
1052 : }
1053 :
1054 :
1055 0 : short SvxNumberFormatShell::FillEListWithUsD_Impl( std::vector<OUString>& rList,
1056 : sal_uInt16 nPrivCat, short nSelPos )
1057 : {
1058 : /* Erstellen einer aktuellen Liste von Format-Eintraegen.
1059 : * Rueckgabewert ist die Listenposition des aktuellen Formates.
1060 : * Ist die Liste leer oder gibt es kein aktuelles Format,
1061 : * so wird SELPOS_NONE geliefert.
1062 : */
1063 : sal_uInt16 nMyType;
1064 :
1065 : DBG_ASSERT( pCurFmtTable != NULL, "Unbekanntes Zahlenformat!" );
1066 :
1067 0 : OUString aStrComment;
1068 0 : OUString aNewFormNInfo;
1069 :
1070 0 : short nMyCat = SELPOS_NONE;
1071 0 : bool bAdditional = (nPrivCat != CAT_USERDEFINED &&
1072 0 : nCurCategory != css::util::NumberFormat::ALL);
1073 :
1074 0 : SvNumberFormatTable::iterator it = pCurFmtTable->begin();
1075 0 : while ( it != pCurFmtTable->end() )
1076 : {
1077 0 : sal_uInt32 nKey = it->first;
1078 0 : const SvNumberformat* pNumEntry = it->second;
1079 :
1080 0 : if ( !IsRemoved_Impl( nKey ) )
1081 : {
1082 0 : if( (pNumEntry->GetType() & css::util::NumberFormat::DEFINED) ||
1083 0 : (bAdditional && pNumEntry->IsAdditionalBuiltin()) )
1084 : {
1085 0 : nMyCat=pNumEntry->GetType() & ~css::util::NumberFormat::DEFINED;
1086 0 : aStrComment=pNumEntry->GetComment();
1087 0 : CategoryToPos_Impl(nMyCat,nMyType);
1088 0 : aNewFormNInfo= pNumEntry->GetFormatstring();
1089 :
1090 0 : bool bFlag=true;
1091 0 : if(pNumEntry->HasNewCurrency())
1092 : {
1093 : bool bTestBanking;
1094 0 : sal_uInt16 nPos=FindCurrencyTableEntry(aNewFormNInfo,bTestBanking);
1095 0 : bFlag=!IsInTable(nPos,bTestBanking,aNewFormNInfo);
1096 : }
1097 0 : if(bFlag)
1098 : {
1099 0 : if ( nKey == nCurFormatKey ) nSelPos = aCurEntryList.size();
1100 0 : rList.push_back( aNewFormNInfo );
1101 0 : aCurEntryList.push_back( nKey );
1102 : }
1103 : }
1104 : }
1105 0 : ++it;
1106 : }
1107 0 : return nSelPos;
1108 : }
1109 :
1110 :
1111 :
1112 :
1113 0 : void SvxNumberFormatShell::GetPreviewString_Impl( OUString& rString, Color*& rpColor )
1114 : {
1115 0 : rpColor = NULL;
1116 :
1117 : // #50441# if a string was set in addition to the value, use it for text formats
1118 0 : bool bUseText = ( eValType == SVX_VALUE_TYPE_STRING ||
1119 0 : ( !aValStr.isEmpty() && ( pFormatter->GetType(nCurFormatKey) & css::util::NumberFormat::TEXT ) ) );
1120 :
1121 0 : if ( bUseText )
1122 : {
1123 0 : pFormatter->GetOutputString( aValStr, nCurFormatKey, rString, &rpColor );
1124 : }
1125 : else
1126 : {
1127 0 : pFormatter->GetOutputString( nValNum, nCurFormatKey, rString, &rpColor, bUseStarFormat );
1128 : }
1129 0 : }
1130 :
1131 :
1132 :
1133 0 : ::std::vector<sal_uInt32>::iterator SvxNumberFormatShell::GetRemoved_Impl( size_t nKey )
1134 : {
1135 0 : return ::std::find(aDelList.begin(), aDelList.end(), nKey);
1136 : }
1137 :
1138 :
1139 :
1140 0 : bool SvxNumberFormatShell::IsRemoved_Impl( size_t nKey )
1141 : {
1142 0 : return GetRemoved_Impl( nKey ) != aDelList.end();
1143 : }
1144 :
1145 :
1146 :
1147 0 : ::std::vector<sal_uInt32>::iterator SvxNumberFormatShell::GetAdded_Impl( size_t nKey )
1148 : {
1149 0 : return ::std::find(aAddList.begin(), aAddList.end(), nKey);
1150 : }
1151 :
1152 :
1153 :
1154 0 : bool SvxNumberFormatShell::IsAdded_Impl( size_t nKey )
1155 : {
1156 0 : return GetAdded_Impl( nKey ) != aAddList.end();
1157 : }
1158 :
1159 : // Konvertierungs-Routinen:
1160 0 : void SvxNumberFormatShell::PosToCategory_Impl(sal_uInt16 nPos, short& rCategory) const
1161 : {
1162 : // Kategorie ::com::sun::star::form-Positionen abbilden (->Resource)
1163 0 : switch ( nPos )
1164 : {
1165 0 : case CAT_USERDEFINED: rCategory = css::util::NumberFormat::DEFINED; break;
1166 0 : case CAT_NUMBER: rCategory = css::util::NumberFormat::NUMBER; break;
1167 0 : case CAT_PERCENT: rCategory = css::util::NumberFormat::PERCENT; break;
1168 0 : case CAT_CURRENCY: rCategory = css::util::NumberFormat::CURRENCY; break;
1169 0 : case CAT_DATE: rCategory = css::util::NumberFormat::DATE; break;
1170 0 : case CAT_TIME: rCategory = css::util::NumberFormat::TIME; break;
1171 0 : case CAT_SCIENTIFIC: rCategory = css::util::NumberFormat::SCIENTIFIC; break;
1172 0 : case CAT_FRACTION: rCategory = css::util::NumberFormat::FRACTION; break;
1173 0 : case CAT_BOOLEAN: rCategory = css::util::NumberFormat::LOGICAL; break;
1174 0 : case CAT_TEXT: rCategory = css::util::NumberFormat::TEXT; break;
1175 : case CAT_ALL:
1176 0 : default: rCategory = css::util::NumberFormat::ALL; break;
1177 : }
1178 0 : }
1179 :
1180 0 : void SvxNumberFormatShell::CategoryToPos_Impl(short nCategory, sal_uInt16& rPos) const
1181 : {
1182 : // Kategorie auf ::com::sun::star::form-Positionen abbilden (->Resource)
1183 0 : switch ( nCategory )
1184 : {
1185 0 : case css::util::NumberFormat::DEFINED: rPos = CAT_USERDEFINED; break;
1186 0 : case css::util::NumberFormat::NUMBER: rPos = CAT_NUMBER; break;
1187 0 : case css::util::NumberFormat::PERCENT: rPos = CAT_PERCENT; break;
1188 0 : case css::util::NumberFormat::CURRENCY: rPos = CAT_CURRENCY; break;
1189 : case css::util::NumberFormat::DATETIME:
1190 0 : case css::util::NumberFormat::DATE: rPos = CAT_DATE; break;
1191 0 : case css::util::NumberFormat::TIME: rPos = CAT_TIME; break;
1192 0 : case css::util::NumberFormat::SCIENTIFIC: rPos = CAT_SCIENTIFIC; break;
1193 0 : case css::util::NumberFormat::FRACTION: rPos = CAT_FRACTION; break;
1194 0 : case css::util::NumberFormat::LOGICAL: rPos = CAT_BOOLEAN; break;
1195 0 : case css::util::NumberFormat::TEXT: rPos = CAT_TEXT; break;
1196 : case css::util::NumberFormat::ALL:
1197 0 : default: rPos = CAT_ALL;
1198 : }
1199 0 : }
1200 :
1201 : /*
1202 : * Funktion: Formatiert die Zahl nValue abhaengig von rFormatStr
1203 : * und speichert das Ergebnis in rPreviewStr.
1204 : * Input: FormatString, Farbe, zu formatierende Zahl
1205 : * Output: Ausgabestring rPreviewStr
1206 : */
1207 0 : void SvxNumberFormatShell::MakePrevStringFromVal(
1208 : const OUString& rFormatStr,
1209 : OUString& rPreviewStr,
1210 : Color*& rpFontColor,
1211 : double nValue)
1212 : {
1213 0 : rpFontColor = NULL;
1214 0 : pFormatter->GetPreviewString( rFormatStr, nValue, rPreviewStr, &rpFontColor, eCurLanguage );
1215 0 : }
1216 :
1217 : /*
1218 : * Funktion: Liefert den Kommentar fuer einen gegebenen
1219 : * Eintrag zurueck.
1220 : * Input: Nummer des Eintrags
1221 : * Output: Kommentar-String
1222 : */
1223 0 : void SvxNumberFormatShell::SetComment4Entry(short nEntry, const OUString& aEntStr)
1224 : {
1225 : SvNumberformat *pNumEntry;
1226 0 : if(nEntry<0) return;
1227 0 : sal_uInt32 nMyNfEntry=aCurEntryList[nEntry];
1228 0 : pNumEntry = const_cast<SvNumberformat*>(pFormatter->GetEntry(nMyNfEntry));
1229 0 : if(pNumEntry!=NULL) pNumEntry->SetComment(aEntStr);
1230 : }
1231 :
1232 : /*
1233 : * Funktion: Liefert den Kommentar fuer einen gegebenen
1234 : * Eintrag zurueck.
1235 : * Input: Nummer des Eintrags
1236 : * Output: Kommentar-String
1237 : */
1238 0 : OUString SvxNumberFormatShell::GetComment4Entry(short nEntry)
1239 : {
1240 0 : if(nEntry < 0)
1241 0 : return OUString();
1242 :
1243 0 : if( static_cast<size_t>(nEntry) < aCurEntryList.size())
1244 : {
1245 0 : sal_uInt32 nMyNfEntry=aCurEntryList[nEntry];
1246 0 : const SvNumberformat *pNumEntry = pFormatter->GetEntry(nMyNfEntry);
1247 0 : if(pNumEntry!=NULL)
1248 0 : return pNumEntry->GetComment();
1249 : }
1250 :
1251 0 : return OUString();
1252 : }
1253 :
1254 : /*
1255 : * Funktion: Liefert die Kategorie- Nummer fuer einen gegebenen
1256 : * Eintrag zurueck.
1257 : * Input: Nummer des Eintrags
1258 : * Output: Kategorie- Nummer
1259 : */
1260 0 : short SvxNumberFormatShell::GetCategory4Entry(short nEntry) const
1261 : {
1262 0 : if(nEntry<0) return 0;
1263 0 : if( static_cast<size_t>(nEntry) < aCurEntryList.size() )
1264 : {
1265 0 : sal_uInt32 nMyNfEntry=aCurEntryList[nEntry];
1266 :
1267 0 : if(nMyNfEntry!=NUMBERFORMAT_ENTRY_NOT_FOUND)
1268 : {
1269 0 : const SvNumberformat *pNumEntry = pFormatter->GetEntry(nMyNfEntry);
1270 : sal_uInt16 nMyCat,nMyType;
1271 0 : if(pNumEntry!=NULL)
1272 : {
1273 0 : nMyCat=pNumEntry->GetType() & ~css::util::NumberFormat::DEFINED;
1274 0 : CategoryToPos_Impl(nMyCat,nMyType);
1275 :
1276 0 : return (short) nMyType;
1277 : }
1278 0 : return 0;
1279 : }
1280 0 : else if( !aCurrencyFormatList.empty() )
1281 : {
1282 0 : return CAT_CURRENCY;
1283 : }
1284 : }
1285 0 : return 0;
1286 :
1287 : }
1288 :
1289 : /*
1290 : * Funktion: Liefert die Information, ob ein Eintrag
1291 : * benutzerspezifisch ist zurueck.
1292 : * Input: Nummer des Eintrags
1293 : * Output: Benutzerspezifisch?
1294 : */
1295 0 : bool SvxNumberFormatShell::GetUserDefined4Entry(short nEntry)
1296 : {
1297 0 : if(nEntry<0) return false;
1298 0 : if( static_cast<size_t>(nEntry) < aCurEntryList.size())
1299 : {
1300 0 : sal_uInt32 nMyNfEntry=aCurEntryList[nEntry];
1301 0 : const SvNumberformat *pNumEntry = pFormatter->GetEntry(nMyNfEntry);
1302 :
1303 0 : if(pNumEntry!=NULL)
1304 : {
1305 0 : if((pNumEntry->GetType() & css::util::NumberFormat::DEFINED)>0)
1306 : {
1307 0 : return true;
1308 : }
1309 : }
1310 : }
1311 0 : return false;
1312 : }
1313 :
1314 : /*
1315 : * Funktion: Liefert den Format- String fuer einen gegebenen
1316 : * Eintrag zurueck.
1317 : * Input: Nummer des Eintrags
1318 : * Output: Format- String
1319 : */
1320 0 : OUString SvxNumberFormatShell::GetFormat4Entry(short nEntry)
1321 : {
1322 0 : if(nEntry < 0)
1323 0 : return OUString();
1324 :
1325 0 : if( !aCurrencyFormatList.empty() )
1326 : {
1327 0 : if( aCurrencyFormatList.size() > static_cast<size_t>(nEntry) )
1328 0 : return aCurrencyFormatList[nEntry];
1329 : }
1330 : else
1331 : {
1332 0 : sal_uInt32 nMyNfEntry=aCurEntryList[nEntry];
1333 0 : const SvNumberformat *pNumEntry = pFormatter->GetEntry(nMyNfEntry);
1334 :
1335 0 : if(pNumEntry!=NULL)
1336 0 : return pNumEntry->GetFormatstring();
1337 : }
1338 0 : return OUString();
1339 : }
1340 :
1341 : /*
1342 : * Funktion: Liefert die Listen- Nummer fuer einen gegebenen
1343 : * Formatindex zurueck.
1344 : * Input: Nummer des Eintrags
1345 : * Output: Kategorie- Nummer
1346 : */
1347 0 : short SvxNumberFormatShell::GetListPos4Entry(sal_uInt32 nIdx)
1348 : {
1349 0 : short nSelP=SELPOS_NONE;
1350 : // Check list size against return type limit.
1351 0 : if( aCurEntryList.size() <= static_cast<size_t>(::std::numeric_limits< short >::max()) )
1352 : {
1353 0 : for(size_t i=0; i < aCurEntryList.size(); ++i)
1354 : {
1355 0 : if(aCurEntryList[i]==nIdx)
1356 : {
1357 0 : nSelP=i;
1358 0 : break;
1359 : }
1360 : }
1361 : }
1362 : else
1363 : {
1364 : OSL_FAIL("svx::SvxNumberFormatShell::GetListPos4Entry(), list got too large!" );
1365 : }
1366 0 : return nSelP;
1367 : }
1368 :
1369 0 : short SvxNumberFormatShell::GetListPos4Entry( const OUString& rFmtString )
1370 : {
1371 0 : sal_uInt32 nAt=0;
1372 0 : short nSelP=SELPOS_NONE;
1373 0 : if(FindEntry(rFmtString, &nAt))
1374 : {
1375 0 : if(NUMBERFORMAT_ENTRY_NOT_FOUND!=nAt && NUMBERFORMAT_ENTRY_NEW_CURRENCY!=nAt)
1376 : {
1377 0 : nSelP=GetListPos4Entry(nAt);
1378 : }
1379 : else
1380 : {
1381 0 : for( size_t i=0; i<aCurrencyFormatList.size(); i++ )
1382 : {
1383 0 : if (rFmtString==aCurrencyFormatList[i])
1384 : {
1385 0 : nSelP = static_cast<short>(i);
1386 0 : break;
1387 : }
1388 : }
1389 : }
1390 : }
1391 0 : return nSelP;
1392 : }
1393 :
1394 0 : OUString SvxNumberFormatShell::GetStandardName() const
1395 : {
1396 0 : return pFormatter->GetStandardName( eCurLanguage);
1397 : }
1398 :
1399 0 : void SvxNumberFormatShell::GetCurrencySymbols(std::vector<OUString>& rList, sal_uInt16* pPos)
1400 : {
1401 0 : const NfCurrencyEntry* pTmpCurrencyEntry=SvNumberFormatter::MatchSystemCurrency();
1402 :
1403 0 : bool bFlag=(pTmpCurrencyEntry==NULL);
1404 :
1405 0 : GetCurrencySymbols(rList, bFlag);
1406 :
1407 0 : if(pPos!=NULL)
1408 : {
1409 0 : const NfCurrencyTable& rCurrencyTable=SvNumberFormatter::GetTheCurrencyTable();
1410 0 : sal_uInt16 nTableCount=rCurrencyTable.size();
1411 :
1412 0 : *pPos=0;
1413 0 : size_t nCount=aCurCurrencyList.size();
1414 :
1415 0 : if(bFlag)
1416 : {
1417 0 : *pPos=1;
1418 0 : nCurCurrencyEntryPos=1;
1419 : }
1420 : else
1421 : {
1422 0 : for(size_t i=1;i<nCount;i++)
1423 : {
1424 0 : const sal_uInt16 j = aCurCurrencyList[i];
1425 0 : if (j != (sal_uInt16)-1 && j < nTableCount &&
1426 0 : pTmpCurrencyEntry == &rCurrencyTable[j])
1427 : {
1428 0 : *pPos=static_cast<sal_uInt16>(i);
1429 0 : nCurCurrencyEntryPos=static_cast<sal_uInt16>(i);
1430 0 : break;
1431 : }
1432 : }
1433 : }
1434 : }
1435 :
1436 0 : }
1437 :
1438 0 : void SvxNumberFormatShell::GetCurrencySymbols(std::vector<OUString>& rList, bool bFlag)
1439 : {
1440 0 : aCurCurrencyList.clear();
1441 :
1442 0 : const NfCurrencyTable& rCurrencyTable=SvNumberFormatter::GetTheCurrencyTable();
1443 0 : sal_uInt16 nCount=rCurrencyTable.size();
1444 :
1445 0 : sal_uInt16 nStart=1;
1446 :
1447 0 : OUString aString( ApplyLreOrRleEmbedding( rCurrencyTable[0].GetSymbol()));
1448 0 : aString += " ";
1449 0 : aString += ApplyLreOrRleEmbedding( SvtLanguageTable::GetLanguageString( rCurrencyTable[0].GetLanguage()));
1450 :
1451 0 : rList.push_back(aString);
1452 0 : sal_uInt16 nAuto=(sal_uInt16)-1;
1453 0 : aCurCurrencyList.push_back(nAuto);
1454 :
1455 0 : if(bFlag)
1456 : {
1457 0 : rList.push_back(aString);
1458 0 : aCurCurrencyList.push_back(0);
1459 0 : ++nStart;
1460 : }
1461 :
1462 0 : CollatorWrapper aCollator( ::comphelper::getProcessComponentContext());
1463 0 : aCollator.loadDefaultCollator( Application::GetSettings().GetLanguageTag().getLocale(), 0);
1464 :
1465 0 : const OUString aTwoSpace(" ");
1466 :
1467 0 : for(sal_uInt16 i = 1; i < nCount; ++i)
1468 : {
1469 0 : OUString aStr( ApplyLreOrRleEmbedding( rCurrencyTable[i].GetBankSymbol()));
1470 0 : aStr += aTwoSpace;
1471 0 : aStr += ApplyLreOrRleEmbedding( rCurrencyTable[i].GetSymbol());
1472 0 : aStr += aTwoSpace;
1473 0 : aStr += ApplyLreOrRleEmbedding( SvtLanguageTable::GetLanguageString( rCurrencyTable[i].GetLanguage()));
1474 :
1475 0 : sal_uInt16 j = nStart;
1476 0 : for(; j < rList.size(); ++j)
1477 0 : if (aCollator.compareString(aStr, rList[j]) < 0)
1478 0 : break; // insert before first greater than
1479 :
1480 0 : rList.insert(rList.begin() + j, aStr);
1481 0 : aCurCurrencyList.insert(aCurCurrencyList.begin() + j, i);
1482 0 : }
1483 :
1484 : // Append ISO codes to symbol list.
1485 : // XXX If this is to be changed, various other places would had to be
1486 : // adapted that assume this order!
1487 0 : sal_uInt16 nCont = rList.size();
1488 :
1489 0 : for(sal_uInt16 i = 1; i < nCount; ++i)
1490 : {
1491 0 : bool bInsert = true;
1492 0 : OUString aStr(ApplyLreOrRleEmbedding(rCurrencyTable[i].GetBankSymbol()));
1493 :
1494 0 : sal_uInt16 j = nCont;
1495 0 : for(; j < rList.size() && bInsert; ++j)
1496 : {
1497 0 : if(rList[j] == aStr)
1498 0 : bInsert = false;
1499 0 : else if (aCollator.compareString(aStr, rList[j]) < 0)
1500 0 : break; // insert before first greater than
1501 : }
1502 0 : if(bInsert)
1503 : {
1504 0 : rList.insert(rList.begin() + j, aStr);
1505 0 : aCurCurrencyList.insert(aCurCurrencyList.begin()+j, i);
1506 : }
1507 0 : }
1508 0 : }
1509 :
1510 0 : void SvxNumberFormatShell::SetCurrencySymbol(sal_uInt32 nPos)
1511 : {
1512 0 : const NfCurrencyTable& rCurrencyTable=SvNumberFormatter::GetTheCurrencyTable();
1513 0 : sal_uInt16 nCount=rCurrencyTable.size();
1514 :
1515 0 : bBankingSymbol=(nPos>=nCount);
1516 :
1517 0 : if(nPos<aCurCurrencyList.size())
1518 : {
1519 0 : sal_uInt16 nCurrencyPos=aCurCurrencyList[nPos];
1520 0 : if(nCurrencyPos!=(sal_uInt16)-1)
1521 : {
1522 0 : pCurCurrencyEntry=const_cast<NfCurrencyEntry*>(&rCurrencyTable[nCurrencyPos]);
1523 0 : nCurCurrencyEntryPos=nPos;
1524 : }
1525 : else
1526 : {
1527 0 : pCurCurrencyEntry=NULL;
1528 0 : nCurCurrencyEntryPos=0;
1529 : nCurFormatKey=pFormatter->GetFormatIndex(
1530 0 : NF_CURRENCY_1000DEC2_RED, eCurLanguage);
1531 : }
1532 : }
1533 0 : }
1534 :
1535 :
1536 0 : void SvxNumberFormatShell::SetCurCurrencyEntry(NfCurrencyEntry* pCEntry)
1537 : {
1538 0 : pCurCurrencyEntry=pCEntry;
1539 0 : }
1540 :
1541 0 : bool SvxNumberFormatShell::IsTmpCurrencyFormat( const OUString& rFmtString )
1542 : {
1543 : sal_uInt32 nFound;
1544 0 : FindEntry(rFmtString, &nFound);
1545 :
1546 0 : if(nFound==NUMBERFORMAT_ENTRY_NEW_CURRENCY)
1547 : {
1548 0 : return true;
1549 : }
1550 0 : return false;
1551 : }
1552 :
1553 0 : sal_uInt16 SvxNumberFormatShell::FindCurrencyFormat( const OUString& rFmtString )
1554 : {
1555 0 : const NfCurrencyTable& rCurrencyTable=SvNumberFormatter::GetTheCurrencyTable();
1556 0 : sal_uInt16 nCount=rCurrencyTable.size();
1557 :
1558 0 : bool bTestBanking=false;
1559 :
1560 0 : sal_uInt16 nPos=FindCurrencyTableEntry(rFmtString, bTestBanking);
1561 :
1562 0 : if(nPos!=(sal_uInt16)-1)
1563 : {
1564 0 : sal_uInt16 nStart=0;
1565 0 : if(bTestBanking && aCurCurrencyList.size()>nPos)
1566 : {
1567 0 : nStart=nCount;
1568 : }
1569 0 : for(size_t j=nStart;j<aCurCurrencyList.size();j++)
1570 : {
1571 0 : if(aCurCurrencyList[j]==nPos) return j;
1572 : }
1573 : }
1574 0 : return (sal_uInt16) -1;
1575 : }
1576 :
1577 0 : sal_uInt16 SvxNumberFormatShell::FindCurrencyTableEntry( const OUString& rFmtString, bool &bTestBanking )
1578 : {
1579 0 : sal_uInt16 nPos=(sal_uInt16) -1;
1580 :
1581 0 : const NfCurrencyTable& rCurrencyTable=SvNumberFormatter::GetTheCurrencyTable();
1582 0 : sal_uInt16 nCount=rCurrencyTable.size();
1583 :
1584 : const SvNumberformat* pFormat;
1585 0 : OUString aSymbol, aExtension;
1586 0 : sal_uInt32 nFound = pFormatter->TestNewString( rFmtString, eCurLanguage );
1587 0 : if ( nFound != NUMBERFORMAT_ENTRY_NOT_FOUND &&
1588 0 : ((pFormat = pFormatter->GetEntry( nFound )) != 0) &&
1589 0 : pFormat->GetNewCurrencySymbol( aSymbol, aExtension ) )
1590 : { // eventually match with format locale
1591 : const NfCurrencyEntry* pTmpCurrencyEntry =
1592 : SvNumberFormatter::GetCurrencyEntry( bTestBanking, aSymbol, aExtension,
1593 0 : pFormat->GetLanguage() );
1594 0 : if ( pTmpCurrencyEntry )
1595 : {
1596 0 : for(sal_uInt16 i=0;i<nCount;i++)
1597 : {
1598 0 : if(pTmpCurrencyEntry==&rCurrencyTable[i])
1599 : {
1600 0 : nPos=i;
1601 0 : break;
1602 : }
1603 : }
1604 : }
1605 : }
1606 : else
1607 : { // search symbol string only
1608 0 : for(sal_uInt16 i=0;i<nCount;i++)
1609 : {
1610 0 : const NfCurrencyEntry* pTmpCurrencyEntry=&rCurrencyTable[i];
1611 0 : OUString _aSymbol = pTmpCurrencyEntry->BuildSymbolString(false);
1612 0 : OUString aBankSymbol = pTmpCurrencyEntry->BuildSymbolString(true);
1613 :
1614 0 : if(rFmtString.indexOf(_aSymbol) != -1)
1615 : {
1616 0 : bTestBanking=false;
1617 0 : nPos=i;
1618 0 : break;
1619 : }
1620 0 : else if(rFmtString.indexOf(aBankSymbol) != -1)
1621 : {
1622 0 : bTestBanking=true;
1623 0 : nPos=i;
1624 0 : break;
1625 : }
1626 0 : }
1627 : }
1628 :
1629 0 : return nPos;
1630 : }
1631 :
1632 0 : sal_uInt16 SvxNumberFormatShell::FindCurrencyFormat(const NfCurrencyEntry* pTmpCurrencyEntry,bool bTmpBanking)
1633 : {
1634 0 : const NfCurrencyTable& rCurrencyTable=SvNumberFormatter::GetTheCurrencyTable();
1635 0 : sal_uInt16 nCount=rCurrencyTable.size();
1636 :
1637 0 : sal_uInt16 nPos=0;
1638 0 : for(sal_uInt16 i=0;i<nCount;i++)
1639 : {
1640 0 : if(pTmpCurrencyEntry==&rCurrencyTable[i])
1641 : {
1642 0 : nPos=i;
1643 0 : break;
1644 : }
1645 : }
1646 :
1647 0 : sal_uInt16 nStart=0;
1648 0 : if(bTmpBanking && aCurCurrencyList.size()>nPos)
1649 : {
1650 0 : nStart=nCount;
1651 : }
1652 0 : for(size_t j=nStart;j<aCurCurrencyList.size();j++)
1653 : {
1654 0 : if(aCurCurrencyList[j]==nPos) return j;
1655 : }
1656 0 : return (sal_uInt16) -1;
1657 : }
1658 :
1659 0 : bool SvxNumberFormatShell::IsInTable(sal_uInt16 const nPos,
1660 : bool const bTmpBanking, OUString const& rFmtString)
1661 : {
1662 0 : bool bFlag=false;
1663 :
1664 0 : if(nPos!=(sal_uInt16)-1)
1665 : {
1666 0 : const NfCurrencyTable& rCurrencyTable=SvNumberFormatter::GetTheCurrencyTable();
1667 0 : sal_uInt16 nCount=rCurrencyTable.size();
1668 :
1669 0 : if(nPos<nCount)
1670 : {
1671 0 : NfWSStringsDtor aWSStringsDtor;
1672 :
1673 0 : const NfCurrencyEntry* pTmpCurrencyEntry=&rCurrencyTable[nPos];
1674 :
1675 0 : if ( pTmpCurrencyEntry!=NULL)
1676 : {
1677 : pFormatter->GetCurrencyFormatStrings( aWSStringsDtor,
1678 0 : *pTmpCurrencyEntry, bTmpBanking );
1679 :
1680 0 : for(size_t i=0;i<aWSStringsDtor.size();i++)
1681 : {
1682 0 : if (aWSStringsDtor[i] == rFmtString)
1683 : {
1684 0 : bFlag=true;
1685 0 : break;
1686 : }
1687 : }
1688 0 : }
1689 : }
1690 : }
1691 :
1692 0 : return bFlag;
1693 : }
1694 :
1695 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|