1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/textandloc/textrendering/texthandling/inc/FLDBLTIN.H Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,276 @@
1.4 +/*
1.5 +* Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* under the terms of "Eclipse Public License v1.0"
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description:
1.18 +*
1.19 +*/
1.20 +
1.21 +
1.22 +#ifndef __FLDBLTIN_H__
1.23 +#define __FLDBLTIN_H__
1.24 +
1.25 +#include <e32std.h>
1.26 +#include <fldbase.h>
1.27 +
1.28 +
1.29 +// Classes declared in this file
1.30 +class MFieldPageNumInfo;
1.31 +class MFieldNumPagesInfo;
1.32 +class MFieldFileNameInfo;
1.33 +// the built-in field types
1.34 +class CDateTimeField;
1.35 +class CPageNumField;
1.36 +class CNumPagesField;
1.37 +class CFileNameField;
1.38 +class TRomanNumeral;
1.39 +//
1.40 +// Classes referenced
1.41 +class RReadStream;
1.42 +class RWriteStream;
1.43 +
1.44 +
1.45 +
1.46 +/**
1.47 +Specifies the mixin protocol for evaluating a current page number field.
1.48 +
1.49 +You should implement the UpdateFieldPageNum() function in a concrete derived
1.50 +class, then pass an object of the class to the page number field (using CPageNumField::SetPageNumInfo())
1.51 +before the field can be evaluated.
1.52 +@publishedAll
1.53 +@released
1.54 +*/
1.55 +class MFieldPageNumInfo
1.56 + {
1.57 +public:
1.58 +
1.59 +
1.60 + /** Implementations of this function should return the current page number.
1.61 +
1.62 + @return The page number. */
1.63 + virtual TInt UpdateFieldPageNum()const=0;
1.64 + };
1.65 +
1.66 +
1.67 +/**
1.68 +Specifies the mixin protocol for evaluating a total number of pages field.
1.69 +
1.70 +You should implement the UpdateFieldNumPages() function in a concrete derived
1.71 +class, then pass an object of the class to the number of pages field (using
1.72 +CNumPagesField::SetNumPagesInfo()) before the field can be evaluated.
1.73 +@publishedAll
1.74 +@released
1.75 +*/
1.76 +class MFieldNumPagesInfo
1.77 + {
1.78 +public:
1.79 +
1.80 +
1.81 + /** Implementations of this function should return the number of pages in the current
1.82 + document.
1.83 +
1.84 + @return The total number of pages. */
1.85 + virtual TInt UpdateFieldNumPages()const=0;
1.86 + };
1.87 +
1.88 +
1.89 +
1.90 +/**
1.91 +Specifies the mixin protocol for evaluating a filename field.
1.92 +
1.93 +You should implement the UpdateFieldFileName() function in a concrete derived
1.94 +class, then pass an object of the derived class to the filename field (using
1.95 +CFileNameField::SetFileNameInfo()) before the field can be evaluated.
1.96 +@publishedAll
1.97 +@released
1.98 +*/
1.99 +class MFieldFileNameInfo
1.100 + {
1.101 +public:
1.102 +
1.103 +
1.104 + /** Implementations of this function should set aValueText to the current document's
1.105 + filename, if the buffer is large enough. If not, the function should return
1.106 + the length which is required to hold the filename.
1.107 +
1.108 + @param aValueText Descriptor which on return contains the document's filename.
1.109 +
1.110 + @return Zero if aValueText is long enough to hold the filename. Otherwise,
1.111 + the length of the buffer which is required to hold the filename. */
1.112 + virtual TInt UpdateFieldFileName(TPtr& aValueText)const=0;
1.113 + };
1.114 +
1.115 +
1.116 +
1.117 +/**
1.118 +A date/time field.
1.119 +
1.120 +This may contain any or all components of the date and time, and can be formatted
1.121 +in a variety of ways. It stores a format string, which is used by the Value()
1.122 +function to format the current date/time. For information on date/time formatting,
1.123 +see TTime::FormatL().
1.124 +@publishedAll
1.125 +@released
1.126 +*/
1.127 +class CDateTimeField : public CTextField
1.128 + {
1.129 +public:
1.130 + IMPORT_C CDateTimeField();
1.131 + IMPORT_C void SetFormat(const TDesC& aFormat);
1.132 + // from TTextField
1.133 + IMPORT_C virtual TInt Value(TPtr& aValueText);
1.134 + IMPORT_C virtual void InternalizeL(RReadStream& aStream);
1.135 + IMPORT_C virtual void ExternalizeL(RWriteStream& aStream)const;
1.136 + //
1.137 + // Getters
1.138 + IMPORT_C const TDesC& FormatString()const;
1.139 + IMPORT_C TUid Type()const;
1.140 +protected:
1.141 + TBuf<64> iFormatString;
1.142 + };
1.143 +
1.144 +
1.145 +
1.146 +
1.147 +/**
1.148 +Stores a style for displaying the value of numeric fields.
1.149 +
1.150 +This style is used when converting the integer value of numeric fields into
1.151 +a descriptor for display in another format, e.g. Arabic, Roman, alphabetic.
1.152 +This is the base class for the numeric fields, CPageNumField and CNumPagesField.
1.153 +@publishedAll
1.154 +@released
1.155 +*/
1.156 +class CPageFieldBase : public CTextField
1.157 + {
1.158 +public:
1.159 +/** Numeric style */
1.160 + enum TNumberStyle {
1.161 + /** Arabic numeral, e.g. 1, 2, 3. */
1.162 + EArabic, // 1,2,3
1.163 + /** Upper case Roman numeral, e.g. I, II, III. */
1.164 + ERomanUpper, // I,II,III
1.165 + /** Lower case Roman numeral, e.g. i, ii, iii. */
1.166 + ERomanLower, // i,ii,iii
1.167 + /** Upper case alphabetic. */
1.168 + EAlphabeticUpper, // A,B,C
1.169 + /** Lower case alphabetic. */
1.170 + EAlphabeticLower // a,b,c
1.171 + };
1.172 +public:
1.173 +
1.174 + /** Sets the numeric style.
1.175 +
1.176 + @param aStyle The numeric style. */
1.177 + inline void SetNumberStyle(TNumberStyle aStyle) { iStyle = aStyle; }
1.178 + // from TTextField
1.179 + IMPORT_C void InternalizeL(RReadStream& aStream);
1.180 + IMPORT_C void ExternalizeL(RWriteStream& aStream)const;
1.181 + //
1.182 + // Getters
1.183 + IMPORT_C TNumberStyle NumberStyle()const;
1.184 +protected:
1.185 + TInt InsertValue(TPtr& aValueText,TInt aValue);
1.186 +protected:
1.187 + TNumberStyle iStyle;
1.188 + };
1.189 +
1.190 +
1.191 +
1.192 +/**
1.193 +A field which evaluates to the current page number in the document.
1.194 +
1.195 +Before the page number field can be evaluated, it must be passed a pointer
1.196 +to an object which implements the UpdateFieldPageNum() function.
1.197 +@publishedAll
1.198 +@released
1.199 +*/
1.200 +class CPageNumField : public CPageFieldBase
1.201 + {
1.202 +public:
1.203 + /** Sets the object which implements UpdateFieldPageNum(), to get the current page
1.204 + number. SetPageNumInfo() must be called before the page number field can be
1.205 + evaluated.
1.206 +
1.207 + @param aInfo Pointer to an object which implements UpdateFieldPageNum(). */
1.208 + inline void SetPageNumInfo(MFieldPageNumInfo* aInfo) { iPageNumInfo=aInfo; }
1.209 + // from TTextField
1.210 + IMPORT_C TInt Value(TPtr& aValueText);
1.211 + IMPORT_C TUid Type()const;
1.212 +protected:
1.213 + MFieldPageNumInfo* iPageNumInfo;
1.214 + };
1.215 +
1.216 +
1.217 +
1.218 +/**
1.219 +A field which evaluates to the number of pages in the document.
1.220 +
1.221 +Before the number of pages field can be evaluated, it must be passed a pointer
1.222 +to an object which implements the UpdateFieldNumPages() function.
1.223 +@publishedAll
1.224 +@released
1.225 +*/
1.226 +class CNumPagesField : public CPageFieldBase
1.227 + {
1.228 +public:
1.229 + /** Sets the object which implements UpdateFieldNumPages(), to get the number of
1.230 + pages in the document. SetNumPagesInfo() must be called before the number
1.231 + of pages field can be evaluated.
1.232 +
1.233 + @param aInfo Pointer to an object which implements UpdateFieldNumPages(). */
1.234 + inline void SetNumPagesInfo(MFieldNumPagesInfo* aInfo) { iNumPagesInfo=aInfo; }
1.235 + // from TTextField
1.236 + IMPORT_C TInt Value(TPtr& aValueText);
1.237 + IMPORT_C TUid Type()const;
1.238 +protected:
1.239 + MFieldNumPagesInfo* iNumPagesInfo;
1.240 + };
1.241 +
1.242 +
1.243 +
1.244 +
1.245 +/**
1.246 +A filename field.
1.247 +
1.248 +This is a field which evaluates to the filename of the current document. Before
1.249 +the filename field can be evaluated, it must be passed a pointer to an object
1.250 +which implements the UpdateFieldFileName() function.
1.251 +@publishedAll
1.252 +@released
1.253 +*/
1.254 +class CFileNameField : public CTextField
1.255 + {
1.256 +public:
1.257 + /** Sets the object which implements the UpdateFieldFileName() function, to get
1.258 + the current document's filename. SetFileNameInfo() must be called before the
1.259 + filename field can be evaluated.
1.260 +
1.261 + @param aInfo Pointer to an object which implements the UpdateFieldFileName()
1.262 + function. */
1.263 + inline void SetFileNameInfo(MFieldFileNameInfo* aInfo) { iFileNameInfo=aInfo; }
1.264 + // from TTextField
1.265 + IMPORT_C virtual TStreamId StoreL(CStreamStore& aStore)const; // returns KNullStreamId
1.266 + IMPORT_C virtual void RestoreL(const CStreamStore& aStore,TStreamId aId); // does nothing.
1.267 + IMPORT_C virtual TInt Value(TPtr& aValueText);
1.268 +
1.269 +
1.270 + /** Overrides the base class method to do nothing, because this class has no persistent
1.271 + data. */
1.272 + inline virtual void InternalizeL(RReadStream& /*aStream*/) {}; // stream the formatting
1.273 + IMPORT_C TUid Type()const;
1.274 +protected:
1.275 + MFieldFileNameInfo* iFileNameInfo;
1.276 + };
1.277 +
1.278 +
1.279 +#endif