sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <e32std.h>
|
sl@0
|
20 |
|
sl@0
|
21 |
#include <s32strm.h>
|
sl@0
|
22 |
#include "FLDBLTIN.H"
|
sl@0
|
23 |
#include "FLDDEF.H"
|
sl@0
|
24 |
#include "FLDNUMS.H"
|
sl@0
|
25 |
|
sl@0
|
26 |
#include "FLDSTD.H"
|
sl@0
|
27 |
_LIT(KFormatString,"%D%M%Y%/0%1%/1%2%/2%3%/3");
|
sl@0
|
28 |
|
sl@0
|
29 |
#define UNUSED_VAR(a) a = a
|
sl@0
|
30 |
|
sl@0
|
31 |
//////////////////////////////////////
|
sl@0
|
32 |
// The built-in fields
|
sl@0
|
33 |
//////////////////////////////////////
|
sl@0
|
34 |
|
sl@0
|
35 |
|
sl@0
|
36 |
|
sl@0
|
37 |
EXPORT_C CDateTimeField::CDateTimeField()
|
sl@0
|
38 |
: iFormatString(KFormatString)
|
sl@0
|
39 |
/** The default C++ constructor initialises the object's date/time format string
|
sl@0
|
40 |
to %D%M%Y%/0%1%/1%2%/2%3%/3. This produces fields in the format "31/05/2000"
|
sl@0
|
41 |
(with no time component, and using the current locale's date separators). */
|
sl@0
|
42 |
{}
|
sl@0
|
43 |
|
sl@0
|
44 |
|
sl@0
|
45 |
|
sl@0
|
46 |
|
sl@0
|
47 |
EXPORT_C void CDateTimeField::SetFormat(const TDesC& aFormat)
|
sl@0
|
48 |
/** Sets the date/time format string. For information on the format string, see
|
sl@0
|
49 |
the documentation of TTime::FormatL().
|
sl@0
|
50 |
|
sl@0
|
51 |
@param aFormat The new date/time format string. */
|
sl@0
|
52 |
{iFormatString = aFormat;}
|
sl@0
|
53 |
|
sl@0
|
54 |
|
sl@0
|
55 |
|
sl@0
|
56 |
|
sl@0
|
57 |
EXPORT_C const TDesC& CDateTimeField::FormatString()const
|
sl@0
|
58 |
/** Gets the field's date/time format string.
|
sl@0
|
59 |
|
sl@0
|
60 |
@return The date/time format string. */
|
sl@0
|
61 |
{return iFormatString;}
|
sl@0
|
62 |
|
sl@0
|
63 |
|
sl@0
|
64 |
|
sl@0
|
65 |
|
sl@0
|
66 |
EXPORT_C TInt CDateTimeField::Value(TPtr& aValueText)
|
sl@0
|
67 |
/** Gets the current local date/time, then formats it according to the field's format
|
sl@0
|
68 |
string. aValueText is set to the formatted date/time string if the buffer
|
sl@0
|
69 |
is large enough to contain it. If not, the function returns the length which
|
sl@0
|
70 |
is required to contain the formatted date/time string.
|
sl@0
|
71 |
|
sl@0
|
72 |
@param aValueText Descriptor which on return contains the current date/time,
|
sl@0
|
73 |
formatted according to the format string.
|
sl@0
|
74 |
@return Zero if aValueText is long enough to hold the formatted local date/time string.
|
sl@0
|
75 |
Otherwise, the length of the buffer which is required to hold the string. */
|
sl@0
|
76 |
{
|
sl@0
|
77 |
TBuf<80> buf; // temporary solution!!!
|
sl@0
|
78 |
TTime time;
|
sl@0
|
79 |
time.HomeTime();
|
sl@0
|
80 |
TRAPD(error,time.FormatL(buf,iFormatString));
|
sl@0
|
81 |
UNUSED_VAR(error);
|
sl@0
|
82 |
if (aValueText.MaxLength() < buf.Length())
|
sl@0
|
83 |
return buf.Length();
|
sl@0
|
84 |
else
|
sl@0
|
85 |
{
|
sl@0
|
86 |
aValueText = buf;
|
sl@0
|
87 |
return 0;
|
sl@0
|
88 |
}
|
sl@0
|
89 |
}
|
sl@0
|
90 |
|
sl@0
|
91 |
|
sl@0
|
92 |
|
sl@0
|
93 |
|
sl@0
|
94 |
EXPORT_C void CDateTimeField::ExternalizeL(RWriteStream& aStream)const
|
sl@0
|
95 |
// stream the formatting
|
sl@0
|
96 |
/** Externalises the format string to a write stream. The presence of this function
|
sl@0
|
97 |
means that the standard templated operator<<() (defined in s32strm.h) is available
|
sl@0
|
98 |
to externalise objects of this class.
|
sl@0
|
99 |
|
sl@0
|
100 |
@param aStream Stream to which the format string should be externalised. */
|
sl@0
|
101 |
{
|
sl@0
|
102 |
TBuf8<64> format;
|
sl@0
|
103 |
format.Copy(iFormatString);
|
sl@0
|
104 |
TInt len = format.Length();
|
sl@0
|
105 |
aStream.WriteInt32L(len);
|
sl@0
|
106 |
aStream.WriteL(format,len);
|
sl@0
|
107 |
}
|
sl@0
|
108 |
|
sl@0
|
109 |
|
sl@0
|
110 |
|
sl@0
|
111 |
|
sl@0
|
112 |
EXPORT_C void CDateTimeField::InternalizeL(RReadStream& aStream)
|
sl@0
|
113 |
// stream the formatting
|
sl@0
|
114 |
/** Internalises the format string from a read stream. The presence of this function
|
sl@0
|
115 |
means that the standard templated operator>>() (defined in s32strm.h) is available
|
sl@0
|
116 |
to internalise objects of this class.
|
sl@0
|
117 |
|
sl@0
|
118 |
@param aStream Stream from which the format string should be internalised. */
|
sl@0
|
119 |
{
|
sl@0
|
120 |
TInt len = aStream.ReadInt32L();
|
sl@0
|
121 |
TBuf8<64> narrowFormat;
|
sl@0
|
122 |
aStream.ReadL(narrowFormat,len);
|
sl@0
|
123 |
iFormatString.Copy(narrowFormat);
|
sl@0
|
124 |
}
|
sl@0
|
125 |
|
sl@0
|
126 |
|
sl@0
|
127 |
|
sl@0
|
128 |
EXPORT_C TUid CDateTimeField::Type()const
|
sl@0
|
129 |
/** Gets the field's type UID.
|
sl@0
|
130 |
|
sl@0
|
131 |
@return KDateTimeFieldUid. */
|
sl@0
|
132 |
{return KDateTimeFieldUid;}
|
sl@0
|
133 |
|
sl@0
|
134 |
// CPageFieldBase
|
sl@0
|
135 |
|
sl@0
|
136 |
|
sl@0
|
137 |
|
sl@0
|
138 |
EXPORT_C void CPageFieldBase::InternalizeL(RReadStream& aStream)
|
sl@0
|
139 |
/** Internalises the numeric style value from a read stream. The presence of this
|
sl@0
|
140 |
function means that the standard templated operator>>() (defined in s32strm.h)
|
sl@0
|
141 |
is available to internalise objects of this class.
|
sl@0
|
142 |
|
sl@0
|
143 |
@param aStream Stream from which the numeric style should be internalised. */
|
sl@0
|
144 |
{
|
sl@0
|
145 |
iStyle = (TNumberStyle)aStream.ReadInt8L();
|
sl@0
|
146 |
}
|
sl@0
|
147 |
|
sl@0
|
148 |
|
sl@0
|
149 |
|
sl@0
|
150 |
|
sl@0
|
151 |
EXPORT_C void CPageFieldBase::ExternalizeL(RWriteStream& aStream)const
|
sl@0
|
152 |
/** Externalises the numeric style value to a write stream. The presence of this
|
sl@0
|
153 |
function means that the standard templated operator<<() (defined in s32strm.h)
|
sl@0
|
154 |
is available to externalise objects of this class.
|
sl@0
|
155 |
|
sl@0
|
156 |
@param aStream Stream to which the numeric style should be externalised. */
|
sl@0
|
157 |
{
|
sl@0
|
158 |
aStream.WriteInt8L(iStyle);
|
sl@0
|
159 |
}
|
sl@0
|
160 |
|
sl@0
|
161 |
|
sl@0
|
162 |
TInt CPageFieldBase::InsertValue(TPtr& aValueText,TInt aValue)
|
sl@0
|
163 |
{
|
sl@0
|
164 |
TInt chars=0;
|
sl@0
|
165 |
switch(iStyle)
|
sl@0
|
166 |
{
|
sl@0
|
167 |
case EArabic:
|
sl@0
|
168 |
{
|
sl@0
|
169 |
TArabicNumeral arabic;
|
sl@0
|
170 |
chars = arabic.DeneryToChar(aValueText,aValue);
|
sl@0
|
171 |
break;
|
sl@0
|
172 |
}
|
sl@0
|
173 |
case ERomanUpper:
|
sl@0
|
174 |
{
|
sl@0
|
175 |
TRomanNumeral romanU;
|
sl@0
|
176 |
chars = romanU.DeneryToChar(aValueText,aValue);
|
sl@0
|
177 |
aValueText.UpperCase();
|
sl@0
|
178 |
break;
|
sl@0
|
179 |
}
|
sl@0
|
180 |
case ERomanLower:
|
sl@0
|
181 |
{
|
sl@0
|
182 |
TRomanNumeral romanL;
|
sl@0
|
183 |
chars = romanL.DeneryToChar(aValueText,aValue);
|
sl@0
|
184 |
aValueText.LowerCase();
|
sl@0
|
185 |
break;
|
sl@0
|
186 |
}
|
sl@0
|
187 |
case EAlphabeticUpper:
|
sl@0
|
188 |
{
|
sl@0
|
189 |
TAlphabeticNumeral alphaU;
|
sl@0
|
190 |
chars = alphaU.DeneryToChar(aValueText,aValue);
|
sl@0
|
191 |
aValueText.UpperCase();
|
sl@0
|
192 |
break;
|
sl@0
|
193 |
}
|
sl@0
|
194 |
case EAlphabeticLower:
|
sl@0
|
195 |
{
|
sl@0
|
196 |
TAlphabeticNumeral alphaL;
|
sl@0
|
197 |
chars = alphaL.DeneryToChar(aValueText,aValue);
|
sl@0
|
198 |
aValueText.LowerCase();
|
sl@0
|
199 |
break;
|
sl@0
|
200 |
}
|
sl@0
|
201 |
default:
|
sl@0
|
202 |
{
|
sl@0
|
203 |
chars = KErrGeneral;
|
sl@0
|
204 |
break;
|
sl@0
|
205 |
}
|
sl@0
|
206 |
}
|
sl@0
|
207 |
return chars;
|
sl@0
|
208 |
}
|
sl@0
|
209 |
|
sl@0
|
210 |
|
sl@0
|
211 |
|
sl@0
|
212 |
|
sl@0
|
213 |
EXPORT_C CPageFieldBase::TNumberStyle CPageFieldBase::NumberStyle()const
|
sl@0
|
214 |
/** Gets the numeric style.
|
sl@0
|
215 |
|
sl@0
|
216 |
@return The numeric style. */
|
sl@0
|
217 |
{return iStyle;}
|
sl@0
|
218 |
|
sl@0
|
219 |
|
sl@0
|
220 |
// CPageNumField
|
sl@0
|
221 |
|
sl@0
|
222 |
|
sl@0
|
223 |
EXPORT_C TInt CPageNumField::Value(TPtr& aValueText)
|
sl@0
|
224 |
/** Gets the current page number, by calling UpdateFieldPageNum() (implemented
|
sl@0
|
225 |
by the object passed to the field using SetPageNumInfo()).
|
sl@0
|
226 |
|
sl@0
|
227 |
Notes
|
sl@0
|
228 |
|
sl@0
|
229 |
SetPageNumInfo() must have been called beforehand, or a panic occurs.
|
sl@0
|
230 |
|
sl@0
|
231 |
The text object should support pagination and pagination should have occurred
|
sl@0
|
232 |
before evaluating the field.
|
sl@0
|
233 |
|
sl@0
|
234 |
@param aValueText Descriptor which on return contains the current page number,
|
sl@0
|
235 |
converted into the appropriate style, as set by CPageFieldBase::SetNumberStyle().
|
sl@0
|
236 |
|
sl@0
|
237 |
@return Zero if aValueText is long enough to hold the string. Otherwise, the
|
sl@0
|
238 |
length of the buffer which is required to hold the string. */
|
sl@0
|
239 |
{
|
sl@0
|
240 |
__ASSERT_ALWAYS(iPageNumInfo,Panic(ENoMFieldPageNumInfo));
|
sl@0
|
241 |
//
|
sl@0
|
242 |
return InsertValue(aValueText,iPageNumInfo->UpdateFieldPageNum());
|
sl@0
|
243 |
}
|
sl@0
|
244 |
|
sl@0
|
245 |
|
sl@0
|
246 |
|
sl@0
|
247 |
EXPORT_C TUid CPageNumField::Type()const
|
sl@0
|
248 |
/** Gets the field's type UID.
|
sl@0
|
249 |
|
sl@0
|
250 |
@return KPageNumberFieldUid. */
|
sl@0
|
251 |
{return KPageNumberFieldUid;}
|
sl@0
|
252 |
|
sl@0
|
253 |
|
sl@0
|
254 |
// CNumPagesField
|
sl@0
|
255 |
|
sl@0
|
256 |
|
sl@0
|
257 |
|
sl@0
|
258 |
EXPORT_C TInt CNumPagesField::Value(TPtr& aValueText)
|
sl@0
|
259 |
/** Gets the total number of pages in the document, by calling UpdateFieldNumPages()
|
sl@0
|
260 |
(implemented by the object passed to the field using SetNumPagesInfo()).
|
sl@0
|
261 |
|
sl@0
|
262 |
Notes
|
sl@0
|
263 |
|
sl@0
|
264 |
SetNumPagesInfo() must have been called beforehand, or a panic occurs.
|
sl@0
|
265 |
|
sl@0
|
266 |
The text object should support pagination and pagination should have occurred
|
sl@0
|
267 |
before evaluating the field.
|
sl@0
|
268 |
|
sl@0
|
269 |
@param aValueText Descriptor which on return contains the number of pages
|
sl@0
|
270 |
in the document, converted into the appropriate style, as set by CPageFieldBase::SetNumberStyle().
|
sl@0
|
271 |
|
sl@0
|
272 |
@return Zero if aValueText is long enough to hold the string. Otherwise, the
|
sl@0
|
273 |
length of the buffer which is required to hold the string. */
|
sl@0
|
274 |
{
|
sl@0
|
275 |
__ASSERT_ALWAYS(iNumPagesInfo,Panic(ENoMFieldNumPagesInfo));
|
sl@0
|
276 |
//
|
sl@0
|
277 |
return InsertValue(aValueText,iNumPagesInfo->UpdateFieldNumPages());
|
sl@0
|
278 |
}
|
sl@0
|
279 |
|
sl@0
|
280 |
|
sl@0
|
281 |
|
sl@0
|
282 |
EXPORT_C TUid CNumPagesField::Type()const
|
sl@0
|
283 |
/** Gets the field's type UID.
|
sl@0
|
284 |
|
sl@0
|
285 |
@return KNumPagesFieldUid. */
|
sl@0
|
286 |
{return KNumPagesFieldUid;}
|
sl@0
|
287 |
|
sl@0
|
288 |
|
sl@0
|
289 |
// CFileNameField
|
sl@0
|
290 |
|
sl@0
|
291 |
|
sl@0
|
292 |
|
sl@0
|
293 |
EXPORT_C TStreamId CFileNameField::StoreL(CStreamStore& /*aStore*/)const
|
sl@0
|
294 |
// Replace base method, since this class has NO persistent representation.
|
sl@0
|
295 |
//
|
sl@0
|
296 |
{return KNullStreamId;}
|
sl@0
|
297 |
|
sl@0
|
298 |
|
sl@0
|
299 |
|
sl@0
|
300 |
|
sl@0
|
301 |
EXPORT_C void CFileNameField::RestoreL(const CStreamStore& /*aStore*/,TStreamId /*aId*/)
|
sl@0
|
302 |
// Replace base method, since this class has NO persistent representation.
|
sl@0
|
303 |
//
|
sl@0
|
304 |
{return;}
|
sl@0
|
305 |
|
sl@0
|
306 |
|
sl@0
|
307 |
|
sl@0
|
308 |
|
sl@0
|
309 |
EXPORT_C TInt CFileNameField::Value(TPtr& aValueText)
|
sl@0
|
310 |
/** Gets the document's filename, by calling UpdateFieldFileName() (implemented
|
sl@0
|
311 |
by the object passed to the filename field using SetFileNameInfo()).
|
sl@0
|
312 |
|
sl@0
|
313 |
Note
|
sl@0
|
314 |
|
sl@0
|
315 |
SetFileNameInfo() must have been called beforehand, or a panic occurs.
|
sl@0
|
316 |
|
sl@0
|
317 |
@param aValueText Descriptor which on return contains the document's filename.
|
sl@0
|
318 |
|
sl@0
|
319 |
@return Zero if aValueText is long enough to hold the filename. Otherwise,
|
sl@0
|
320 |
the length of the buffer which is required to hold the filename. */
|
sl@0
|
321 |
{
|
sl@0
|
322 |
__ASSERT_ALWAYS(iFileNameInfo,Panic(ENoMFieldFileNameInfo));
|
sl@0
|
323 |
|
sl@0
|
324 |
return iFileNameInfo->UpdateFieldFileName(aValueText);
|
sl@0
|
325 |
}
|
sl@0
|
326 |
|
sl@0
|
327 |
|
sl@0
|
328 |
|
sl@0
|
329 |
EXPORT_C TUid CFileNameField::Type()const
|
sl@0
|
330 |
/** Gets the field's type UID.
|
sl@0
|
331 |
|
sl@0
|
332 |
@return KFileNameFieldUid. */
|
sl@0
|
333 |
{return KFileNameFieldUid;}
|