os/textandloc/textrendering/texthandling/inc/FLDBLTIN.H
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     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".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description: 
    15 *
    16 */
    17 
    18 
    19 #ifndef __FLDBLTIN_H__
    20 #define __FLDBLTIN_H__
    21 
    22 #include <e32std.h>
    23 #include <fldbase.h>
    24 
    25 
    26 // Classes declared in this file
    27 class MFieldPageNumInfo;
    28 class MFieldNumPagesInfo;
    29 class MFieldFileNameInfo;
    30 // the built-in field types
    31 class CDateTimeField;
    32 class CPageNumField;
    33 class CNumPagesField;
    34 class CFileNameField;
    35 class TRomanNumeral;
    36 //
    37 // Classes referenced
    38 class RReadStream;
    39 class RWriteStream;
    40 
    41  
    42 
    43 /** 
    44 Specifies the mixin protocol for evaluating a current page number field.
    45 
    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. 
    49 @publishedAll
    50 @released
    51 */
    52 class MFieldPageNumInfo
    53 	{
    54 public:
    55 	
    56 	 
    57 	/** Implementations of this function should return the current page number.
    58 	
    59 	@return The page number. */
    60 	virtual TInt UpdateFieldPageNum()const=0;
    61 	};
    62 
    63 
    64 /** 
    65 Specifies the mixin protocol for evaluating a total number of pages field.
    66 
    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. 
    70 @publishedAll
    71 @released
    72 */
    73 class MFieldNumPagesInfo
    74 	{
    75 public:
    76 	
    77 	 
    78 	/** Implementations of this function should return the number of pages in the current 
    79 	document.
    80 	
    81 	@return The total number of pages. */
    82 	virtual TInt UpdateFieldNumPages()const=0;
    83 	};
    84 
    85 
    86  
    87 /** 
    88 Specifies the mixin protocol for evaluating a filename field.
    89 
    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. 
    93 @publishedAll
    94 @released
    95 */
    96 class MFieldFileNameInfo
    97 	{
    98 public:
    99 	
   100 	 
   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.
   104 	
   105 	@param aValueText Descriptor which on return contains the document's filename. 
   106 	
   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;
   110 	};
   111 
   112 
   113  
   114 /** 
   115 A date/time field. 
   116 
   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(). 
   121 @publishedAll
   122 @released
   123 */
   124 class CDateTimeField : public CTextField
   125 	{
   126 public:
   127 	IMPORT_C CDateTimeField();
   128 	IMPORT_C void SetFormat(const TDesC& aFormat);
   129 	// from TTextField
   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;
   133 	//
   134 	// Getters
   135 	IMPORT_C const TDesC& FormatString()const;
   136 	IMPORT_C TUid Type()const;
   137 protected:
   138 	TBuf<64> iFormatString;
   139 	};
   140 
   141 
   142  
   143 
   144 /** 
   145 Stores a style for displaying the value of numeric fields. 
   146 
   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. 
   150 @publishedAll
   151 @released
   152 */
   153 class CPageFieldBase : public CTextField
   154 	{
   155 public:
   156 /** Numeric style */
   157 	enum TNumberStyle {
   158 		 /** Arabic numeral, e.g. 1, 2, 3. */
   159 		EArabic,			// 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
   168 		};
   169 public:
   170 	
   171 	/** Sets the numeric style.
   172 	
   173 	@param aStyle The numeric style. */
   174 	inline void SetNumberStyle(TNumberStyle aStyle) { iStyle = aStyle; } 
   175 	// from TTextField
   176 	IMPORT_C void InternalizeL(RReadStream& aStream);
   177 	IMPORT_C void ExternalizeL(RWriteStream& aStream)const;
   178 	//
   179 	// Getters
   180 	IMPORT_C TNumberStyle NumberStyle()const;
   181 protected:
   182 	TInt InsertValue(TPtr& aValueText,TInt aValue);
   183 protected:
   184 	TNumberStyle iStyle;
   185 	};
   186 
   187 
   188 
   189 /** 
   190 A field which evaluates to the current page number in the document. 
   191 
   192 Before the page number field can be evaluated, it must be passed a pointer 
   193 to an object which implements the UpdateFieldPageNum() function. 
   194 @publishedAll
   195 @released
   196 */
   197 class CPageNumField : public CPageFieldBase
   198 	{
   199 public:
   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 
   202 	evaluated.
   203 	
   204 	@param aInfo Pointer to an object which implements UpdateFieldPageNum(). */
   205 	inline void SetPageNumInfo(MFieldPageNumInfo* aInfo) { iPageNumInfo=aInfo; }
   206 	// from TTextField
   207 	IMPORT_C TInt Value(TPtr& aValueText);
   208 	IMPORT_C TUid Type()const;
   209 protected:
   210 	MFieldPageNumInfo* iPageNumInfo;
   211 	};
   212 
   213 
   214 
   215 /** 
   216 A field which evaluates to the number of pages in the document.
   217 
   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. 
   220 @publishedAll
   221 @released
   222 */
   223 class CNumPagesField : public CPageFieldBase
   224 	{
   225 public:
   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.
   229 	
   230 	@param aInfo Pointer to an object which implements UpdateFieldNumPages(). */
   231 	inline void SetNumPagesInfo(MFieldNumPagesInfo* aInfo) { iNumPagesInfo=aInfo; }
   232 	// from TTextField
   233 	IMPORT_C TInt Value(TPtr& aValueText);
   234 	IMPORT_C TUid Type()const;
   235 protected:
   236 	MFieldNumPagesInfo* iNumPagesInfo;
   237 	};
   238 
   239 
   240 
   241 
   242 /** 
   243 A filename field. 
   244 
   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. 
   248 @publishedAll
   249 @released
   250 */
   251 class CFileNameField : public CTextField
   252 	{
   253 public:
   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.
   257 	
   258 	@param aInfo Pointer to an object which implements the UpdateFieldFileName() 
   259 	function. */
   260 	inline void SetFileNameInfo(MFieldFileNameInfo* aInfo) { iFileNameInfo=aInfo; }
   261 	// from TTextField
   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);
   265 	
   266 
   267 	/** Overrides the base class method to do nothing, because this class has no persistent 
   268 	data. */
   269 	inline virtual void InternalizeL(RReadStream& /*aStream*/) {}; // stream the formatting
   270 	IMPORT_C TUid Type()const;
   271 protected:
   272 	MFieldFileNameInfo* iFileNameInfo;
   273 	};
   274 
   275 
   276 #endif