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.
19 #ifndef __FLDBLTIN_H__
20 #define __FLDBLTIN_H__
26 // Classes declared in this file
27 class MFieldPageNumInfo;
28 class MFieldNumPagesInfo;
29 class MFieldFileNameInfo;
30 // the built-in field types
44 Specifies the mixin protocol for evaluating a current page number field.
46 You should implement the UpdateFieldPageNum() function in a concrete derived
47 class, then pass an object of the class to the page number field (using CPageNumField::SetPageNumInfo())
48 before the field can be evaluated.
52 class MFieldPageNumInfo
57 /** Implementations of this function should return the current page number.
59 @return The page number. */
60 virtual TInt UpdateFieldPageNum()const=0;
65 Specifies the mixin protocol for evaluating a total number of pages field.
67 You should implement the UpdateFieldNumPages() function in a concrete derived
68 class, then pass an object of the class to the number of pages field (using
69 CNumPagesField::SetNumPagesInfo()) before the field can be evaluated.
73 class MFieldNumPagesInfo
78 /** Implementations of this function should return the number of pages in the current
81 @return The total number of pages. */
82 virtual TInt UpdateFieldNumPages()const=0;
88 Specifies the mixin protocol for evaluating a filename field.
90 You should implement the UpdateFieldFileName() function in a concrete derived
91 class, then pass an object of the derived class to the filename field (using
92 CFileNameField::SetFileNameInfo()) before the field can be evaluated.
96 class MFieldFileNameInfo
101 /** Implementations of this function should set aValueText to the current document's
102 filename, if the buffer is large enough. If not, the function should return
103 the length which is required to hold the filename.
105 @param aValueText Descriptor which on return contains the document's filename.
107 @return Zero if aValueText is long enough to hold the filename. Otherwise,
108 the length of the buffer which is required to hold the filename. */
109 virtual TInt UpdateFieldFileName(TPtr& aValueText)const=0;
117 This may contain any or all components of the date and time, and can be formatted
118 in a variety of ways. It stores a format string, which is used by the Value()
119 function to format the current date/time. For information on date/time formatting,
120 see TTime::FormatL().
124 class CDateTimeField : public CTextField
127 IMPORT_C CDateTimeField();
128 IMPORT_C void SetFormat(const TDesC& aFormat);
130 IMPORT_C virtual TInt Value(TPtr& aValueText);
131 IMPORT_C virtual void InternalizeL(RReadStream& aStream);
132 IMPORT_C virtual void ExternalizeL(RWriteStream& aStream)const;
135 IMPORT_C const TDesC& FormatString()const;
136 IMPORT_C TUid Type()const;
138 TBuf<64> iFormatString;
145 Stores a style for displaying the value of numeric fields.
147 This style is used when converting the integer value of numeric fields into
148 a descriptor for display in another format, e.g. Arabic, Roman, alphabetic.
149 This is the base class for the numeric fields, CPageNumField and CNumPagesField.
153 class CPageFieldBase : public CTextField
158 /** Arabic numeral, e.g. 1, 2, 3. */
160 /** Upper case Roman numeral, e.g. I, II, III. */
161 ERomanUpper, // I,II,III
162 /** Lower case Roman numeral, e.g. i, ii, iii. */
163 ERomanLower, // i,ii,iii
164 /** Upper case alphabetic. */
165 EAlphabeticUpper, // A,B,C
166 /** Lower case alphabetic. */
167 EAlphabeticLower // a,b,c
171 /** Sets the numeric style.
173 @param aStyle The numeric style. */
174 inline void SetNumberStyle(TNumberStyle aStyle) { iStyle = aStyle; }
176 IMPORT_C void InternalizeL(RReadStream& aStream);
177 IMPORT_C void ExternalizeL(RWriteStream& aStream)const;
180 IMPORT_C TNumberStyle NumberStyle()const;
182 TInt InsertValue(TPtr& aValueText,TInt aValue);
190 A field which evaluates to the current page number in the document.
192 Before the page number field can be evaluated, it must be passed a pointer
193 to an object which implements the UpdateFieldPageNum() function.
197 class CPageNumField : public CPageFieldBase
200 /** Sets the object which implements UpdateFieldPageNum(), to get the current page
201 number. SetPageNumInfo() must be called before the page number field can be
204 @param aInfo Pointer to an object which implements UpdateFieldPageNum(). */
205 inline void SetPageNumInfo(MFieldPageNumInfo* aInfo) { iPageNumInfo=aInfo; }
207 IMPORT_C TInt Value(TPtr& aValueText);
208 IMPORT_C TUid Type()const;
210 MFieldPageNumInfo* iPageNumInfo;
216 A field which evaluates to the number of pages in the document.
218 Before the number of pages field can be evaluated, it must be passed a pointer
219 to an object which implements the UpdateFieldNumPages() function.
223 class CNumPagesField : public CPageFieldBase
226 /** Sets the object which implements UpdateFieldNumPages(), to get the number of
227 pages in the document. SetNumPagesInfo() must be called before the number
228 of pages field can be evaluated.
230 @param aInfo Pointer to an object which implements UpdateFieldNumPages(). */
231 inline void SetNumPagesInfo(MFieldNumPagesInfo* aInfo) { iNumPagesInfo=aInfo; }
233 IMPORT_C TInt Value(TPtr& aValueText);
234 IMPORT_C TUid Type()const;
236 MFieldNumPagesInfo* iNumPagesInfo;
245 This is a field which evaluates to the filename of the current document. Before
246 the filename field can be evaluated, it must be passed a pointer to an object
247 which implements the UpdateFieldFileName() function.
251 class CFileNameField : public CTextField
254 /** Sets the object which implements the UpdateFieldFileName() function, to get
255 the current document's filename. SetFileNameInfo() must be called before the
256 filename field can be evaluated.
258 @param aInfo Pointer to an object which implements the UpdateFieldFileName()
260 inline void SetFileNameInfo(MFieldFileNameInfo* aInfo) { iFileNameInfo=aInfo; }
262 IMPORT_C virtual TStreamId StoreL(CStreamStore& aStore)const; // returns KNullStreamId
263 IMPORT_C virtual void RestoreL(const CStreamStore& aStore,TStreamId aId); // does nothing.
264 IMPORT_C virtual TInt Value(TPtr& aValueText);
267 /** Overrides the base class method to do nothing, because this class has no persistent
269 inline virtual void InternalizeL(RReadStream& /*aStream*/) {}; // stream the formatting
270 IMPORT_C TUid Type()const;
272 MFieldFileNameInfo* iFileNameInfo;