Update contrib.
2 * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
24 LOCAL_D const TInt sDeneryArray[13] = { 1000, 900, 500, 400, 100, 90, 50, 40, 10, 9, 5, 4, 1 };
25 LOCAL_D const TText* const LsRomanArray[13] = { _S("M"), _S("CM"), _S("D"), _S("CD"),_S("C"), _S("XC"),_S("L"),_S("XL"),_S("X"),_S("IX"),_S("V"),_S("IV"),_S("I") };
27 //////////////////////////////
29 //////////////////////////////
31 EXPORT_C TInt TDeneryToCharBase::DeneryToChar(TPtr& aValueText,TInt aDenary)const
32 // if aValueText is big enough to hold the result then the Roman Numeral representation of aDenery is inserted
33 // else the required size of aValueText is returned
36 aValueText.SetLength(0);
37 TInt numChars = NumChars(aDenary);
38 if (aValueText.MaxLength() < numChars)
42 DoDeneryToChar(aValueText,aDenary);
48 //////////////////////////////
50 //////////////////////////////
52 EXPORT_C TInt TRomanNumeral::NumChars(TInt aDenery)const
53 // returns the number of characters in a given "roman number"
61 if (sDeneryArray[i] <= aDenery)
63 numChars += _L(sRomanArray[i]).Length();
64 aDenery -= sDeneryArray[i];
74 EXPORT_C void TRomanNumeral::DoDeneryToChar(TPtr& aValueText,TInt aDenery)const
75 // sets aValueText to the Roman Numeral representation of aDenery
78 aValueText.SetLength(0);
83 if (sDeneryArray[i] <= aDenery)
85 aValueText.Append(_L(sRomanArray[i]));
86 aDenery -= sDeneryArray[i];
94 /////////////////////////
96 /////////////////////////
98 EXPORT_C TInt TArabicNumeral::NumChars(TInt aNum)const
99 // returns num digits in an integer (including sign bit if negative)
117 EXPORT_C void TArabicNumeral::DoDeneryToChar(TPtr& aValueText,TInt aDenery)const
119 aValueText.Num(aDenery);
123 /////////////////////////
124 // TAlphabeticNumeral
125 /////////////////////////
127 EXPORT_C TInt TAlphabeticNumeral::NumChars(TInt aNum)const
128 // returns num digits in an integer (including sign bit if negative)
146 EXPORT_C void TAlphabeticNumeral::DoDeneryToChar(TPtr& aValueText,TInt aDenery)const
151 digit = aDenery%26; // remainder gives least significant figure
152 PropendDigitAsChar(aValueText,digit);
154 aDenery = aDenery/26;
159 void TAlphabeticNumeral::PropendDigitAsChar(TPtr& aValueText,TInt aDigit)const
161 __ASSERT_ALWAYS(aDigit>0,Panic(ECharOutOfRange));
162 __ASSERT_ALWAYS(aDigit<27,Panic(ECharOutOfRange));
163 __ASSERT_ALWAYS(aValueText.Length()<aValueText.MaxLength(),Panic(EBufferFull));
166 buf.Append(TChar(aDigit+64));
167 aValueText.Insert(0,buf); // insert at position zero, ie propend