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.
27 _LIT(KFormatString,"%D%M%Y%/0%1%/1%2%/2%3%/3");
29 #define UNUSED_VAR(a) a = a
31 //////////////////////////////////////
32 // The built-in fields
33 //////////////////////////////////////
37 EXPORT_C CDateTimeField::CDateTimeField()
38 : iFormatString(KFormatString)
39 /** The default C++ constructor initialises the object's date/time format string
40 to %D%M%Y%/0%1%/1%2%/2%3%/3. This produces fields in the format "31/05/2000"
41 (with no time component, and using the current locale's date separators). */
47 EXPORT_C void CDateTimeField::SetFormat(const TDesC& aFormat)
48 /** Sets the date/time format string. For information on the format string, see
49 the documentation of TTime::FormatL().
51 @param aFormat The new date/time format string. */
52 {iFormatString = aFormat;}
57 EXPORT_C const TDesC& CDateTimeField::FormatString()const
58 /** Gets the field's date/time format string.
60 @return The date/time format string. */
61 {return iFormatString;}
66 EXPORT_C TInt CDateTimeField::Value(TPtr& aValueText)
67 /** Gets the current local date/time, then formats it according to the field's format
68 string. aValueText is set to the formatted date/time string if the buffer
69 is large enough to contain it. If not, the function returns the length which
70 is required to contain the formatted date/time string.
72 @param aValueText Descriptor which on return contains the current date/time,
73 formatted according to the format string.
74 @return Zero if aValueText is long enough to hold the formatted local date/time string.
75 Otherwise, the length of the buffer which is required to hold the string. */
77 TBuf<80> buf; // temporary solution!!!
80 TRAPD(error,time.FormatL(buf,iFormatString));
82 if (aValueText.MaxLength() < buf.Length())
94 EXPORT_C void CDateTimeField::ExternalizeL(RWriteStream& aStream)const
95 // stream the formatting
96 /** Externalises the format string to a write stream. The presence of this function
97 means that the standard templated operator<<() (defined in s32strm.h) is available
98 to externalise objects of this class.
100 @param aStream Stream to which the format string should be externalised. */
103 format.Copy(iFormatString);
104 TInt len = format.Length();
105 aStream.WriteInt32L(len);
106 aStream.WriteL(format,len);
112 EXPORT_C void CDateTimeField::InternalizeL(RReadStream& aStream)
113 // stream the formatting
114 /** Internalises the format string from a read stream. The presence of this function
115 means that the standard templated operator>>() (defined in s32strm.h) is available
116 to internalise objects of this class.
118 @param aStream Stream from which the format string should be internalised. */
120 TInt len = aStream.ReadInt32L();
121 TBuf8<64> narrowFormat;
122 aStream.ReadL(narrowFormat,len);
123 iFormatString.Copy(narrowFormat);
128 EXPORT_C TUid CDateTimeField::Type()const
129 /** Gets the field's type UID.
131 @return KDateTimeFieldUid. */
132 {return KDateTimeFieldUid;}
138 EXPORT_C void CPageFieldBase::InternalizeL(RReadStream& aStream)
139 /** Internalises the numeric style value from a read stream. The presence of this
140 function means that the standard templated operator>>() (defined in s32strm.h)
141 is available to internalise objects of this class.
143 @param aStream Stream from which the numeric style should be internalised. */
145 iStyle = (TNumberStyle)aStream.ReadInt8L();
151 EXPORT_C void CPageFieldBase::ExternalizeL(RWriteStream& aStream)const
152 /** Externalises the numeric style value to a write stream. The presence of this
153 function means that the standard templated operator<<() (defined in s32strm.h)
154 is available to externalise objects of this class.
156 @param aStream Stream to which the numeric style should be externalised. */
158 aStream.WriteInt8L(iStyle);
162 TInt CPageFieldBase::InsertValue(TPtr& aValueText,TInt aValue)
169 TArabicNumeral arabic;
170 chars = arabic.DeneryToChar(aValueText,aValue);
175 TRomanNumeral romanU;
176 chars = romanU.DeneryToChar(aValueText,aValue);
177 aValueText.UpperCase();
182 TRomanNumeral romanL;
183 chars = romanL.DeneryToChar(aValueText,aValue);
184 aValueText.LowerCase();
187 case EAlphabeticUpper:
189 TAlphabeticNumeral alphaU;
190 chars = alphaU.DeneryToChar(aValueText,aValue);
191 aValueText.UpperCase();
194 case EAlphabeticLower:
196 TAlphabeticNumeral alphaL;
197 chars = alphaL.DeneryToChar(aValueText,aValue);
198 aValueText.LowerCase();
213 EXPORT_C CPageFieldBase::TNumberStyle CPageFieldBase::NumberStyle()const
214 /** Gets the numeric style.
216 @return The numeric style. */
223 EXPORT_C TInt CPageNumField::Value(TPtr& aValueText)
224 /** Gets the current page number, by calling UpdateFieldPageNum() (implemented
225 by the object passed to the field using SetPageNumInfo()).
229 SetPageNumInfo() must have been called beforehand, or a panic occurs.
231 The text object should support pagination and pagination should have occurred
232 before evaluating the field.
234 @param aValueText Descriptor which on return contains the current page number,
235 converted into the appropriate style, as set by CPageFieldBase::SetNumberStyle().
237 @return Zero if aValueText is long enough to hold the string. Otherwise, the
238 length of the buffer which is required to hold the string. */
240 __ASSERT_ALWAYS(iPageNumInfo,Panic(ENoMFieldPageNumInfo));
242 return InsertValue(aValueText,iPageNumInfo->UpdateFieldPageNum());
247 EXPORT_C TUid CPageNumField::Type()const
248 /** Gets the field's type UID.
250 @return KPageNumberFieldUid. */
251 {return KPageNumberFieldUid;}
258 EXPORT_C TInt CNumPagesField::Value(TPtr& aValueText)
259 /** Gets the total number of pages in the document, by calling UpdateFieldNumPages()
260 (implemented by the object passed to the field using SetNumPagesInfo()).
264 SetNumPagesInfo() must have been called beforehand, or a panic occurs.
266 The text object should support pagination and pagination should have occurred
267 before evaluating the field.
269 @param aValueText Descriptor which on return contains the number of pages
270 in the document, converted into the appropriate style, as set by CPageFieldBase::SetNumberStyle().
272 @return Zero if aValueText is long enough to hold the string. Otherwise, the
273 length of the buffer which is required to hold the string. */
275 __ASSERT_ALWAYS(iNumPagesInfo,Panic(ENoMFieldNumPagesInfo));
277 return InsertValue(aValueText,iNumPagesInfo->UpdateFieldNumPages());
282 EXPORT_C TUid CNumPagesField::Type()const
283 /** Gets the field's type UID.
285 @return KNumPagesFieldUid. */
286 {return KNumPagesFieldUid;}
293 EXPORT_C TStreamId CFileNameField::StoreL(CStreamStore& /*aStore*/)const
294 // Replace base method, since this class has NO persistent representation.
296 {return KNullStreamId;}
301 EXPORT_C void CFileNameField::RestoreL(const CStreamStore& /*aStore*/,TStreamId /*aId*/)
302 // Replace base method, since this class has NO persistent representation.
309 EXPORT_C TInt CFileNameField::Value(TPtr& aValueText)
310 /** Gets the document's filename, by calling UpdateFieldFileName() (implemented
311 by the object passed to the filename field using SetFileNameInfo()).
315 SetFileNameInfo() must have been called beforehand, or a panic occurs.
317 @param aValueText Descriptor which on return contains the document's filename.
319 @return Zero if aValueText is long enough to hold the filename. Otherwise,
320 the length of the buffer which is required to hold the filename. */
322 __ASSERT_ALWAYS(iFileNameInfo,Panic(ENoMFieldFileNameInfo));
324 return iFileNameInfo->UpdateFieldFileName(aValueText);
329 EXPORT_C TUid CFileNameField::Type()const
330 /** Gets the field's type UID.
332 @return KFileNameFieldUid. */
333 {return KFileNameFieldUid;}