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