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.
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
#ifndef __FLDBLTIN_H__
sl@0
    20
#define __FLDBLTIN_H__
sl@0
    21
sl@0
    22
#include <e32std.h>
sl@0
    23
#include <fldbase.h>
sl@0
    24
sl@0
    25
sl@0
    26
// Classes declared in this file
sl@0
    27
class MFieldPageNumInfo;
sl@0
    28
class MFieldNumPagesInfo;
sl@0
    29
class MFieldFileNameInfo;
sl@0
    30
// the built-in field types
sl@0
    31
class CDateTimeField;
sl@0
    32
class CPageNumField;
sl@0
    33
class CNumPagesField;
sl@0
    34
class CFileNameField;
sl@0
    35
class TRomanNumeral;
sl@0
    36
//
sl@0
    37
// Classes referenced
sl@0
    38
class RReadStream;
sl@0
    39
class RWriteStream;
sl@0
    40
sl@0
    41
 
sl@0
    42
sl@0
    43
/** 
sl@0
    44
Specifies the mixin protocol for evaluating a current page number field.
sl@0
    45
sl@0
    46
You should implement the UpdateFieldPageNum() function in a concrete derived 
sl@0
    47
class, then pass an object of the class to the page number field (using CPageNumField::SetPageNumInfo()) 
sl@0
    48
before the field can be evaluated. 
sl@0
    49
@publishedAll
sl@0
    50
@released
sl@0
    51
*/
sl@0
    52
class MFieldPageNumInfo
sl@0
    53
	{
sl@0
    54
public:
sl@0
    55
	
sl@0
    56
	 
sl@0
    57
	/** Implementations of this function should return the current page number.
sl@0
    58
	
sl@0
    59
	@return The page number. */
sl@0
    60
	virtual TInt UpdateFieldPageNum()const=0;
sl@0
    61
	};
sl@0
    62
sl@0
    63
sl@0
    64
/** 
sl@0
    65
Specifies the mixin protocol for evaluating a total number of pages field.
sl@0
    66
sl@0
    67
You should implement the UpdateFieldNumPages() function in a concrete derived 
sl@0
    68
class, then pass an object of the class to the number of pages field (using 
sl@0
    69
CNumPagesField::SetNumPagesInfo()) before the field can be evaluated. 
sl@0
    70
@publishedAll
sl@0
    71
@released
sl@0
    72
*/
sl@0
    73
class MFieldNumPagesInfo
sl@0
    74
	{
sl@0
    75
public:
sl@0
    76
	
sl@0
    77
	 
sl@0
    78
	/** Implementations of this function should return the number of pages in the current 
sl@0
    79
	document.
sl@0
    80
	
sl@0
    81
	@return The total number of pages. */
sl@0
    82
	virtual TInt UpdateFieldNumPages()const=0;
sl@0
    83
	};
sl@0
    84
sl@0
    85
sl@0
    86
 
sl@0
    87
/** 
sl@0
    88
Specifies the mixin protocol for evaluating a filename field.
sl@0
    89
sl@0
    90
You should implement the UpdateFieldFileName() function in a concrete derived 
sl@0
    91
class, then pass an object of the derived class to the filename field (using 
sl@0
    92
CFileNameField::SetFileNameInfo()) before the field can be evaluated. 
sl@0
    93
@publishedAll
sl@0
    94
@released
sl@0
    95
*/
sl@0
    96
class MFieldFileNameInfo
sl@0
    97
	{
sl@0
    98
public:
sl@0
    99
	
sl@0
   100
	 
sl@0
   101
	/** Implementations of this function should set aValueText to the current document's 
sl@0
   102
	filename, if the buffer is large enough. If not, the function should return 
sl@0
   103
	the length which is required to hold the filename.
sl@0
   104
	
sl@0
   105
	@param aValueText Descriptor which on return contains the document's filename. 
sl@0
   106
	
sl@0
   107
	@return Zero if aValueText is long enough to hold the filename. Otherwise, 
sl@0
   108
	the length of the buffer which is required to hold the filename. */
sl@0
   109
	virtual TInt UpdateFieldFileName(TPtr& aValueText)const=0;
sl@0
   110
	};
sl@0
   111
sl@0
   112
sl@0
   113
 
sl@0
   114
/** 
sl@0
   115
A date/time field. 
sl@0
   116
sl@0
   117
This may contain any or all components of the date and time, and can be formatted 
sl@0
   118
in a variety of ways. It stores a format string, which is used by the Value() 
sl@0
   119
function to format the current date/time. For information on date/time formatting, 
sl@0
   120
see TTime::FormatL(). 
sl@0
   121
@publishedAll
sl@0
   122
@released
sl@0
   123
*/
sl@0
   124
class CDateTimeField : public CTextField
sl@0
   125
	{
sl@0
   126
public:
sl@0
   127
	IMPORT_C CDateTimeField();
sl@0
   128
	IMPORT_C void SetFormat(const TDesC& aFormat);
sl@0
   129
	// from TTextField
sl@0
   130
	IMPORT_C virtual TInt Value(TPtr& aValueText);
sl@0
   131
	IMPORT_C virtual void InternalizeL(RReadStream& aStream);
sl@0
   132
	IMPORT_C virtual void ExternalizeL(RWriteStream& aStream)const;
sl@0
   133
	//
sl@0
   134
	// Getters
sl@0
   135
	IMPORT_C const TDesC& FormatString()const;
sl@0
   136
	IMPORT_C TUid Type()const;
sl@0
   137
protected:
sl@0
   138
	TBuf<64> iFormatString;
sl@0
   139
	};
sl@0
   140
sl@0
   141
sl@0
   142
 
sl@0
   143
sl@0
   144
/** 
sl@0
   145
Stores a style for displaying the value of numeric fields. 
sl@0
   146
sl@0
   147
This style is used when converting the integer value of numeric fields into 
sl@0
   148
a descriptor for display in another format, e.g. Arabic, Roman, alphabetic. 
sl@0
   149
This is the base class for the numeric fields, CPageNumField and CNumPagesField. 
sl@0
   150
@publishedAll
sl@0
   151
@released
sl@0
   152
*/
sl@0
   153
class CPageFieldBase : public CTextField
sl@0
   154
	{
sl@0
   155
public:
sl@0
   156
/** Numeric style */
sl@0
   157
	enum TNumberStyle {
sl@0
   158
		 /** Arabic numeral, e.g. 1, 2, 3. */
sl@0
   159
		EArabic,			// 1,2,3
sl@0
   160
		/** Upper case Roman numeral, e.g. I, II, III. */
sl@0
   161
		ERomanUpper,		// I,II,III
sl@0
   162
		/** Lower case Roman numeral, e.g. i, ii, iii. */
sl@0
   163
		ERomanLower,		// i,ii,iii
sl@0
   164
		/** Upper case alphabetic. */
sl@0
   165
		EAlphabeticUpper,	// A,B,C
sl@0
   166
		/** Lower case alphabetic. */
sl@0
   167
		EAlphabeticLower	// a,b,c
sl@0
   168
		};
sl@0
   169
public:
sl@0
   170
	
sl@0
   171
	/** Sets the numeric style.
sl@0
   172
	
sl@0
   173
	@param aStyle The numeric style. */
sl@0
   174
	inline void SetNumberStyle(TNumberStyle aStyle) { iStyle = aStyle; } 
sl@0
   175
	// from TTextField
sl@0
   176
	IMPORT_C void InternalizeL(RReadStream& aStream);
sl@0
   177
	IMPORT_C void ExternalizeL(RWriteStream& aStream)const;
sl@0
   178
	//
sl@0
   179
	// Getters
sl@0
   180
	IMPORT_C TNumberStyle NumberStyle()const;
sl@0
   181
protected:
sl@0
   182
	TInt InsertValue(TPtr& aValueText,TInt aValue);
sl@0
   183
protected:
sl@0
   184
	TNumberStyle iStyle;
sl@0
   185
	};
sl@0
   186
sl@0
   187
sl@0
   188
sl@0
   189
/** 
sl@0
   190
A field which evaluates to the current page number in the document. 
sl@0
   191
sl@0
   192
Before the page number field can be evaluated, it must be passed a pointer 
sl@0
   193
to an object which implements the UpdateFieldPageNum() function. 
sl@0
   194
@publishedAll
sl@0
   195
@released
sl@0
   196
*/
sl@0
   197
class CPageNumField : public CPageFieldBase
sl@0
   198
	{
sl@0
   199
public:
sl@0
   200
	/** Sets the object which implements UpdateFieldPageNum(), to get the current page 
sl@0
   201
	number. SetPageNumInfo() must be called before the page number field can be 
sl@0
   202
	evaluated.
sl@0
   203
	
sl@0
   204
	@param aInfo Pointer to an object which implements UpdateFieldPageNum(). */
sl@0
   205
	inline void SetPageNumInfo(MFieldPageNumInfo* aInfo) { iPageNumInfo=aInfo; }
sl@0
   206
	// from TTextField
sl@0
   207
	IMPORT_C TInt Value(TPtr& aValueText);
sl@0
   208
	IMPORT_C TUid Type()const;
sl@0
   209
protected:
sl@0
   210
	MFieldPageNumInfo* iPageNumInfo;
sl@0
   211
	};
sl@0
   212
sl@0
   213
sl@0
   214
sl@0
   215
/** 
sl@0
   216
A field which evaluates to the number of pages in the document.
sl@0
   217
sl@0
   218
Before the number of pages field can be evaluated, it must be passed a pointer 
sl@0
   219
to an object which implements the UpdateFieldNumPages() function. 
sl@0
   220
@publishedAll
sl@0
   221
@released
sl@0
   222
*/
sl@0
   223
class CNumPagesField : public CPageFieldBase
sl@0
   224
	{
sl@0
   225
public:
sl@0
   226
	/** Sets the object which implements UpdateFieldNumPages(), to get the number of 
sl@0
   227
	pages in the document. SetNumPagesInfo() must be called before the number 
sl@0
   228
	of pages field can be evaluated.
sl@0
   229
	
sl@0
   230
	@param aInfo Pointer to an object which implements UpdateFieldNumPages(). */
sl@0
   231
	inline void SetNumPagesInfo(MFieldNumPagesInfo* aInfo) { iNumPagesInfo=aInfo; }
sl@0
   232
	// from TTextField
sl@0
   233
	IMPORT_C TInt Value(TPtr& aValueText);
sl@0
   234
	IMPORT_C TUid Type()const;
sl@0
   235
protected:
sl@0
   236
	MFieldNumPagesInfo* iNumPagesInfo;
sl@0
   237
	};
sl@0
   238
sl@0
   239
sl@0
   240
sl@0
   241
sl@0
   242
/** 
sl@0
   243
A filename field. 
sl@0
   244
sl@0
   245
This is a field which evaluates to the filename of the current document. Before 
sl@0
   246
the filename field can be evaluated, it must be passed a pointer to an object 
sl@0
   247
which implements the UpdateFieldFileName() function. 
sl@0
   248
@publishedAll
sl@0
   249
@released
sl@0
   250
*/
sl@0
   251
class CFileNameField : public CTextField
sl@0
   252
	{
sl@0
   253
public:
sl@0
   254
	/** Sets the object which implements the UpdateFieldFileName() function, to get 
sl@0
   255
	the current document's filename. SetFileNameInfo() must be called before the 
sl@0
   256
	filename field can be evaluated.
sl@0
   257
	
sl@0
   258
	@param aInfo Pointer to an object which implements the UpdateFieldFileName() 
sl@0
   259
	function. */
sl@0
   260
	inline void SetFileNameInfo(MFieldFileNameInfo* aInfo) { iFileNameInfo=aInfo; }
sl@0
   261
	// from TTextField
sl@0
   262
	IMPORT_C virtual TStreamId StoreL(CStreamStore& aStore)const;  // returns KNullStreamId
sl@0
   263
	IMPORT_C virtual void RestoreL(const CStreamStore& aStore,TStreamId aId); // does nothing.
sl@0
   264
	IMPORT_C virtual TInt Value(TPtr& aValueText);
sl@0
   265
	
sl@0
   266
sl@0
   267
	/** Overrides the base class method to do nothing, because this class has no persistent 
sl@0
   268
	data. */
sl@0
   269
	inline virtual void InternalizeL(RReadStream& /*aStream*/) {}; // stream the formatting
sl@0
   270
	IMPORT_C TUid Type()const;
sl@0
   271
protected:
sl@0
   272
	MFieldFileNameInfo* iFileNameInfo;
sl@0
   273
	};
sl@0
   274
sl@0
   275
sl@0
   276
#endif