os/textandloc/textrendering/texthandling/stext/TXTETEXT.CPP
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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
#include <e32std.h>
sl@0
    20
#include <e32base.h>
sl@0
    21
sl@0
    22
#include <s32std.h>
sl@0
    23
#include <s32strm.h>
sl@0
    24
#include <s32stor.h>
sl@0
    25
#include <s32mem.h>
sl@0
    26
#include <s32file.h>
sl@0
    27
#include <s32ucmp.h>
sl@0
    28
sl@0
    29
#include <fepitfr.h>
sl@0
    30
sl@0
    31
#include "FLDDEF.H"
sl@0
    32
#include "FLDINFO.H"
sl@0
    33
#include "FLDSET.H"
sl@0
    34
sl@0
    35
#include "TXTETEXT.H"
sl@0
    36
#include "TXTRICH.H"
sl@0
    37
#include "TXTOPT.H"
sl@0
    38
#include "TXTFEP.H"
sl@0
    39
#include "TXTPLAIN.H"
sl@0
    40
#include "TXTSTD.H"
sl@0
    41
#include "TXTRTPFL.H"
sl@0
    42
#include "TXTCLIPBOARD.H"
sl@0
    43
sl@0
    44
#include "OstTraceDefinitions.h"
sl@0
    45
#ifdef OST_TRACE_COMPILER_IN_USE
sl@0
    46
#include "TXTETEXTTraces.h"
sl@0
    47
#endif
sl@0
    48
sl@0
    49
#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
    50
#include "TXTETEXT_INTERNAL.H"
sl@0
    51
#endif
sl@0
    52
sl@0
    53
const TUint KFieldCountLimit = 255;
sl@0
    54
#define UNUSED_VAR(a) a = a
sl@0
    55
sl@0
    56
// Write some or all of the text in a buffer to a stream, writing the length first if aWriteLength is true.
sl@0
    57
static void ExternalizeTextL(RWriteStream& aStream,const CBufBase& aText,TInt aPos,TInt aLength,TBool aWriteLength)
sl@0
    58
	{
sl@0
    59
	if (aWriteLength)
sl@0
    60
		aStream << TCardinality(aLength);
sl@0
    61
sl@0
    62
	// Use the Standard Unicode Compression Scheme.
sl@0
    63
	RBufReadStream input_stream(aText,aPos * sizeof(TText));
sl@0
    64
	TMemoryStreamUnicodeSource source(input_stream);
sl@0
    65
	TUnicodeCompressor c;
sl@0
    66
	c.CompressL(aStream,source,KMaxTInt,aLength);
sl@0
    67
	input_stream.Close();
sl@0
    68
	}
sl@0
    69
sl@0
    70
// Read text from a stream and write it to a buffer.
sl@0
    71
static void InternalizeTextL(RReadStream& aStream,CBufBase& aText,TInt aLength)
sl@0
    72
	{
sl@0
    73
	// Use the Standard Unicode Compression Scheme.
sl@0
    74
	RBufWriteStream output_stream(aText);
sl@0
    75
	TMemoryStreamUnicodeSink sink(output_stream);
sl@0
    76
	TUnicodeExpander e;
sl@0
    77
	e.ExpandL(sink,aStream,aLength);
sl@0
    78
	output_stream.CommitL();
sl@0
    79
	output_stream.Close();
sl@0
    80
	}
sl@0
    81
sl@0
    82
// Read text from a stream and write it to a buffer; read the length first.
sl@0
    83
static void InternalizeTextL(RReadStream& aStream,CBufBase& aText)
sl@0
    84
	{
sl@0
    85
	TCardinality length;
sl@0
    86
	aStream >> length;
sl@0
    87
	InternalizeTextL(aStream,aText,length);
sl@0
    88
	}
sl@0
    89
/**
sl@0
    90
Returns the interface corresponding to the
sl@0
    91
specified UID if it exists, or 0 if not. Overridden
sl@0
    92
versions should base call rather than returning 0.
sl@0
    93
sl@0
    94
@param aInterfaceId The UID indicating the interface to return
sl@0
    95
@param aInterface The interface corresponding to aInterfaceId
sl@0
    96
if it is supported, or 0 if it is not
sl@0
    97
*/
sl@0
    98
EXPORT_C void CEditableText::ExtendedInterface(TAny*& /*aInterface*/, TUid /*aInterfaceId*/) {}
sl@0
    99
sl@0
   100
/**
sl@0
   101
Returns the interface corresponding to the
sl@0
   102
specified UID if it exists, or 0 if not. Overridden
sl@0
   103
versions should base call rather than returning 0.
sl@0
   104
sl@0
   105
@param aInterfaceId The UID indicating the interface to return
sl@0
   106
@param aInterface The interface corresponding to aInterfaceId
sl@0
   107
if it is supported, or 0 if it is not
sl@0
   108
*/
sl@0
   109
EXPORT_C void CPlainText::ExtendedInterface(TAny*& /*aInterface*/, TUid /*aInterfaceId*/) {}
sl@0
   110
sl@0
   111
/**
sl@0
   112
 @internalAll
sl@0
   113
 @released
sl@0
   114
 */
sl@0
   115
EXPORT_C void CPlainText::Reserved_2() {}
sl@0
   116
sl@0
   117
//////////////////////////////////
sl@0
   118
// CEditableText
sl@0
   119
//////////////////////////////////
sl@0
   120
sl@0
   121
EXPORT_C CEditableText::~CEditableText()
sl@0
   122
	{
sl@0
   123
	delete iOptionalData;
sl@0
   124
	}
sl@0
   125
sl@0
   126
sl@0
   127
sl@0
   128
EXPORT_C TInt CEditableText::ScanWords(TInt& /*aPos*/,TUint& /*aScanMask*/) const
sl@0
   129
/** Scans the text from a specified document position to a location 
sl@0
   130
determined by the flags specified in a bitmask. The function can scan 
sl@0
   131
forwards or backwards to the beginning or end of a word.
sl@0
   132
sl@0
   133
@param aPos A valid document position from which to scan. On return, 
sl@0
   134
contains the new document position. 
sl@0
   135
@param aScanMask The scan mask to use. See the scanning enumeration defined 
sl@0
   136
in class CPlainText. 
sl@0
   137
@return The number of characters skipped to reach the new document position. 
sl@0
   138
Notes: If the scan passes the end of text delimiter, on return, aPos is set 
sl@0
   139
to EScanEndOfData  and the function's return value indicates the 
sl@0
   140
number of characters skipped in passing the end of text delimiter. */
sl@0
   141
	{
sl@0
   142
	return 0;
sl@0
   143
	}
sl@0
   144
sl@0
   145
sl@0
   146
EXPORT_C TInt CEditableText::ScanParas(TInt& /*aPos*/,TUint& /*aScanMask*/) const
sl@0
   147
/** Scans the text from a specified document position to a location determined 
sl@0
   148
by the flags specified in a bitmask. The function can scan forwards or backwards 
sl@0
   149
to the beginning or end of a paragraph.
sl@0
   150
sl@0
   151
@param aPos A valid document position from which to scan. On return, contains 
sl@0
   152
the new document position. 
sl@0
   153
@param aScanMask The scan mask to use. See the scanning enumeration defined 
sl@0
   154
in class CPlainText. 
sl@0
   155
@return The number of characters skipped to reach the new document position. 
sl@0
   156
Notes: If the scan passes the end of text delimiter, on return, aPos is set 
sl@0
   157
to EScanEndOfData  and the function's return value indicates the 
sl@0
   158
number of characters skipped in passing the end of text delimiter. */
sl@0
   159
	{
sl@0
   160
	return 0;
sl@0
   161
	}
sl@0
   162
sl@0
   163
sl@0
   164
 
sl@0
   165
EXPORT_C void CEditableText::SetHasChanged(TBool aHasChanged)
sl@0
   166
/** Sets whether a change has occurred to the editable text object. This is called 
sl@0
   167
by functions which change the text object in some way.
sl@0
   168
sl@0
   169
@param aHasChanged ETrue if a change has occurred to the text object. EFalse 
sl@0
   170
if no change has occurred. */
sl@0
   171
	{
sl@0
   172
	iHasChanged = aHasChanged;
sl@0
   173
	}
sl@0
   174
sl@0
   175
sl@0
   176
// Save the editable text type identifier.
sl@0
   177
void CEditableText::ExternalizeL(RWriteStream& aStream)const
sl@0
   178
	{
sl@0
   179
	aStream << KEditableTextUid;
sl@0
   180
	}
sl@0
   181
sl@0
   182
sl@0
   183
void CEditableText::InternalizeL(RReadStream& aStream)
sl@0
   184
// Read from the stream, expecting the editable text type identifier
sl@0
   185
//
sl@0
   186
	{
sl@0
   187
	TUid uid;
sl@0
   188
	aStream>> uid;
sl@0
   189
	if (uid!=KEditableTextUid)
sl@0
   190
		User::Leave(KErrCorrupt);
sl@0
   191
	}
sl@0
   192
sl@0
   193
sl@0
   194
 
sl@0
   195
sl@0
   196
EXPORT_C TStreamId CEditableText::StoreL(CStreamStore& aStore)const
sl@0
   197
/** Stores the text and its components. The components (e.g. fields and pictures) 
sl@0
   198
are stored in separate streams within the stream store.
sl@0
   199
sl@0
   200
@param aStore Stream store to which the text and text components are written. 
sl@0
   201
@return The ID of the stream store. */
sl@0
   202
	{
sl@0
   203
	CStoreMap* map=CStoreMap::NewLC(aStore);
sl@0
   204
	StoreComponentsL(aStore,*map);
sl@0
   205
//
sl@0
   206
	RStoreWriteStream stream(*map);
sl@0
   207
	TStreamId id=stream.CreateLC(aStore);
sl@0
   208
	stream<< *this;
sl@0
   209
	stream.CommitL();
sl@0
   210
//
sl@0
   211
	map->Reset();
sl@0
   212
	CleanupStack::PopAndDestroy(2);  // map,stream
sl@0
   213
	return id;
sl@0
   214
	}
sl@0
   215
sl@0
   216
sl@0
   217
 
sl@0
   218
EXPORT_C void CEditableText::RestoreL(const CStreamStore& aStore,TStreamId aStreamId)
sl@0
   219
/** Restores the text and its components from a stream store.
sl@0
   220
sl@0
   221
@param aStore Stream store containing the text and its components. 
sl@0
   222
@param aStreamId The ID of the stream store in which the text was previously 
sl@0
   223
stored. */
sl@0
   224
	{
sl@0
   225
	// Load text and field components only.  (Pictures, if present, are deferred loaded).
sl@0
   226
	__ETEXT_WATCH(RESTORE)
sl@0
   227
sl@0
   228
	RStoreReadStream stream;
sl@0
   229
	stream.OpenLC(aStore,aStreamId);
sl@0
   230
	//
sl@0
   231
	stream>> *this;
sl@0
   232
	CleanupStack::PopAndDestroy();  // stream
sl@0
   233
	RestoreComponentsL(aStore);
sl@0
   234
sl@0
   235
	__ETEXT_WATCH_END(RESTORE)
sl@0
   236
	}
sl@0
   237
sl@0
   238
TBool CEditableText::DeleteWithoutDestroyingFormatL(TInt aPos, TInt aLength)
sl@0
   239
/** Deletes a range of characters. For rich text the format of the deleted character 
sl@0
   240
at position aPos is preserved, so that any text subsequently inserted at aPos will have 
sl@0
   241
that format applied to it.
sl@0
   242
@param aPos The document position from which to begin deleting including aPos.
sl@0
   243
@param aLength The number of characters to delete. Must be positive or a panic 
sl@0
   244
occurs. The sum of aPos and aLength must be less than the document length, 
sl@0
   245
or a panic occurs.  
sl@0
   246
@return Indicates whether two paragraphs have been merged together as a result 
sl@0
   247
of the delete, indicating that the resulting paragraph must be reformatted. 
sl@0
   248
*/	
sl@0
   249
	{
sl@0
   250
	TAny* richTextInterface = NULL;	
sl@0
   251
	ExtendedInterface(richTextInterface, KUidRichText);
sl@0
   252
sl@0
   253
	if(richTextInterface)
sl@0
   254
		{
sl@0
   255
		return REINTERPRET_CAST(CRichText*, richTextInterface)->DelSetInsertCharFormatL(aPos, aLength);
sl@0
   256
		}
sl@0
   257
	else
sl@0
   258
		{
sl@0
   259
		return DeleteL(aPos, aLength);
sl@0
   260
		}
sl@0
   261
	}
sl@0
   262
sl@0
   263
EXPORT_C void CEditableText::StartFepInlineEditL(TBool& aParagraphContainingStartPositionOfInlineTextHasChangedFormat,TInt& aNumberOfCharactersSuccessfullyDeleted,TInt& aNumberOfCharactersSuccessfullyInserted,TInt& aPositionOfInsertionPointInDocument,TInt aNewPositionOfInsertionPointInDocument,const TDesC& aInitialInlineText,TInt aPositionOfInlineTextInDocument,TInt aNumberOfCharactersToHide,MFepInlineTextFormatRetriever& aInlineTextFormatRetriever)
sl@0
   264
/** @internalAll */	
sl@0
   265
	{
sl@0
   266
	if (aPositionOfInlineTextInDocument<0 || aNumberOfCharactersToHide<0 || aPositionOfInlineTextInDocument+aNumberOfCharactersToHide>DocumentLength())
sl@0
   267
	    {
sl@0
   268
	    OstTrace0( TRACE_DUMP, CEDITABLETEXT_STARTFEPINLINEEDITL, "ECharPosBeyondDocument" );
sl@0
   269
	    }
sl@0
   270
	__ASSERT_ALWAYS(aPositionOfInlineTextInDocument>=0 && aNumberOfCharactersToHide>=0 && aPositionOfInlineTextInDocument+aNumberOfCharactersToHide<=DocumentLength(),Panic(ECharPosBeyondDocument));
sl@0
   271
	if (InlineEditData()!=NULL)
sl@0
   272
	    {
sl@0
   273
	    OstTrace0( TRACE_DUMP, DUP1_CEDITABLETEXT_STARTFEPINLINEEDITL, "EAlreadyFepInlineEditing" );
sl@0
   274
	    }
sl@0
   275
	__ASSERT_ALWAYS(InlineEditData()==NULL,Panic(EAlreadyFepInlineEditing));
sl@0
   276
	aParagraphContainingStartPositionOfInlineTextHasChangedFormat=EFalse;
sl@0
   277
	aNumberOfCharactersSuccessfullyDeleted=0;
sl@0
   278
	aNumberOfCharactersSuccessfullyInserted=0;
sl@0
   279
	CInlineEditData* const inlineEditData=new(ELeave) CInlineEditData;
sl@0
   280
	CleanupStack::PushL(inlineEditData);
sl@0
   281
	HBufC* hiddenText=NULL;
sl@0
   282
	CleanupStack::PushL(hiddenText);
sl@0
   283
	if (aNumberOfCharactersToHide>0)
sl@0
   284
		{
sl@0
   285
		CleanupStack::Pop(); // hiddenText
sl@0
   286
		hiddenText=HBufC::NewLC(aNumberOfCharactersToHide);
sl@0
   287
		TPtr hiddenTextAsWritableDescriptor=hiddenText->Des();
sl@0
   288
		Extract(hiddenTextAsWritableDescriptor,aPositionOfInlineTextInDocument,aNumberOfCharactersToHide);
sl@0
   289
		aParagraphContainingStartPositionOfInlineTextHasChangedFormat=DeleteWithoutDestroyingFormatL(aPositionOfInlineTextInDocument,aNumberOfCharactersToHide);
sl@0
   290
		aNumberOfCharactersSuccessfullyDeleted=aNumberOfCharactersToHide;
sl@0
   291
		aPositionOfInsertionPointInDocument=aPositionOfInlineTextInDocument;
sl@0
   292
		}
sl@0
   293
	inlineEditData->iPositionOfInlineTextInDocument=aPositionOfInlineTextInDocument;
sl@0
   294
	inlineEditData->iLengthOfInlineText=aInitialInlineText.Length();
sl@0
   295
	inlineEditData->iInlineText=aInitialInlineText.AllocL();
sl@0
   296
	inlineEditData->iHiddenText=hiddenText;
sl@0
   297
	CleanupStack::Pop(); // hiddentext now owned by inlineEditData. 
sl@0
   298
	inlineEditData->iInlineTextFormatRetriever=&aInlineTextFormatRetriever;
sl@0
   299
	InsertL(aPositionOfInlineTextInDocument,aInitialInlineText);
sl@0
   300
	SetAndTransferOwnershipOfInlineEditDataL(inlineEditData);
sl@0
   301
	CleanupStack::Pop(); // inlineEditData
sl@0
   302
	aNumberOfCharactersSuccessfullyInserted=inlineEditData->iLengthOfInlineText;
sl@0
   303
	aPositionOfInsertionPointInDocument=aNewPositionOfInsertionPointInDocument;
sl@0
   304
	}
sl@0
   305
sl@0
   306
sl@0
   307
EXPORT_C void CEditableText::UpdateFepInlineTextL(TBool& aParagraphContainingStartPositionOfInlineTextHasChangedFormat,TInt& aNumberOfCharactersSuccessfullyDeleted,TInt& aNumberOfCharactersSuccessfullyInserted,TInt& aPositionOfInsertionPointInDocument,TInt aNewPositionOfInsertionPointInDocument,const TDesC& aNewInlineText)
sl@0
   308
/** @internalAll */	
sl@0
   309
    {
sl@0
   310
	CInlineEditData* const inlineEditData=InlineEditData();
sl@0
   311
	if (inlineEditData==NULL)
sl@0
   312
	    {
sl@0
   313
	    OstTrace0( TRACE_DUMP, CEDITABLETEXT_UPDATEFEPINLINETEXTL, "ENotCurrentlyFepInlineEditing" );
sl@0
   314
	    }
sl@0
   315
	__ASSERT_ALWAYS(inlineEditData!=NULL,Panic(ENotCurrentlyFepInlineEditing));
sl@0
   316
	aParagraphContainingStartPositionOfInlineTextHasChangedFormat=EFalse;
sl@0
   317
	aNumberOfCharactersSuccessfullyDeleted=0;
sl@0
   318
	aNumberOfCharactersSuccessfullyInserted=0;
sl@0
   319
	HBufC*& inlineText=inlineEditData->iInlineText;
sl@0
   320
	HBufC* oldInlineText=inlineText;
sl@0
   321
	if (oldInlineText!=NULL && inlineEditData->iLengthOfInlineText!=oldInlineText->Length())
sl@0
   322
	    {
sl@0
   323
	    OstTrace0( TRACE_DUMP, DUP1_CEDITABLETEXT_UPDATEFEPINLINETEXTL, "EDebug" );
sl@0
   324
	    }
sl@0
   325
	__ASSERT_DEBUG(oldInlineText==NULL || inlineEditData->iLengthOfInlineText==oldInlineText->Length(),Panic(EDebug));
sl@0
   326
	const TInt lengthOfNewInlineText=aNewInlineText.Length();
sl@0
   327
	if (oldInlineText!=NULL && *oldInlineText==aNewInlineText)
sl@0
   328
		{
sl@0
   329
		aNumberOfCharactersSuccessfullyDeleted=lengthOfNewInlineText;
sl@0
   330
		aNumberOfCharactersSuccessfullyInserted=lengthOfNewInlineText;
sl@0
   331
		}
sl@0
   332
	else
sl@0
   333
		{
sl@0
   334
		if (oldInlineText==NULL)
sl@0
   335
			{
sl@0
   336
			oldInlineText=HBufC::NewL(lengthOfNewInlineText);
sl@0
   337
			}
sl@0
   338
		else if (lengthOfNewInlineText>oldInlineText->Length())
sl@0
   339
			{
sl@0
   340
			oldInlineText=oldInlineText->ReAllocL(lengthOfNewInlineText);
sl@0
   341
			}
sl@0
   342
		CleanupStack::PushL(oldInlineText);
sl@0
   343
		inlineText=NULL; // sets inlineEditData->iLengthOfInlineText in case either the delete or the insert leaves
sl@0
   344
		const TInt positionOfInlineTextInDocument=inlineEditData->iPositionOfInlineTextInDocument;
sl@0
   345
		TInt& lengthOfInlineText=inlineEditData->iLengthOfInlineText;
sl@0
   346
		if (lengthOfInlineText>0)
sl@0
   347
			{
sl@0
   348
			aParagraphContainingStartPositionOfInlineTextHasChangedFormat=DeleteWithoutDestroyingFormatL(positionOfInlineTextInDocument,lengthOfInlineText);
sl@0
   349
			aNumberOfCharactersSuccessfullyDeleted=lengthOfInlineText;
sl@0
   350
			lengthOfInlineText=0; // sets inlineEditData->iLengthOfInlineText in case the insert leaves
sl@0
   351
			aPositionOfInsertionPointInDocument=inlineEditData->iPositionOfInlineTextInDocument;
sl@0
   352
			}
sl@0
   353
		InsertL(positionOfInlineTextInDocument,aNewInlineText);
sl@0
   354
		lengthOfInlineText=aNewInlineText.Length(); // sets inlineEditData->iLengthOfInlineText
sl@0
   355
		aNumberOfCharactersSuccessfullyInserted=lengthOfInlineText;
sl@0
   356
		inlineText=oldInlineText;
sl@0
   357
		CleanupStack::Pop(); // oldInlineText
sl@0
   358
		*oldInlineText=aNewInlineText;
sl@0
   359
		}
sl@0
   360
	aPositionOfInsertionPointInDocument=aNewPositionOfInsertionPointInDocument;
sl@0
   361
	}
sl@0
   362
sl@0
   363
sl@0
   364
EXPORT_C void CEditableText::CommitFepInlineEditL(TBool& aParagraphContainingStartPositionOfInlineTextHasChangedFormat,TInt& aNumberOfCharactersSuccessfullyDeleted,TInt& aNumberOfCharactersSuccessfullyInserted,TInt& aPositionOfInsertionPointInDocument,TInt aNewPositionOfInsertionPointInDocument)
sl@0
   365
/**
sl@0
   366
 * @internalAll
sl@0
   367
 */	
sl@0
   368
    {
sl@0
   369
	const CInlineEditData* const inlineEditData=InlineEditData();
sl@0
   370
	if (inlineEditData==NULL)
sl@0
   371
	    {
sl@0
   372
	    OstTrace0( TRACE_FATAL, DUP1_CEDITABLETEXT_COMMITFEPINLINEEDITL, "ENotCurrentlyFepInlineEditing" );
sl@0
   373
	    }
sl@0
   374
	__ASSERT_ALWAYS(inlineEditData!=NULL,Panic(ENotCurrentlyFepInlineEditing));
sl@0
   375
	if (inlineEditData->iInlineText!=NULL && inlineEditData->iLengthOfInlineText!=inlineEditData->iInlineText->Length())
sl@0
   376
	    {
sl@0
   377
	    OstTrace0( TRACE_DUMP, CEDITABLETEXT_COMMITFEPINLINEEDITL, "EDebug" );
sl@0
   378
	    }
sl@0
   379
	__ASSERT_DEBUG(inlineEditData->iInlineText==NULL || inlineEditData->iLengthOfInlineText==inlineEditData->iInlineText->Length(),Panic(EDebug));
sl@0
   380
	aParagraphContainingStartPositionOfInlineTextHasChangedFormat=EFalse;
sl@0
   381
	const TInt lengthOfInlineText=inlineEditData->iLengthOfInlineText;
sl@0
   382
	aNumberOfCharactersSuccessfullyDeleted=lengthOfInlineText;
sl@0
   383
	aNumberOfCharactersSuccessfullyInserted=lengthOfInlineText;
sl@0
   384
	aPositionOfInsertionPointInDocument=aNewPositionOfInsertionPointInDocument;
sl@0
   385
	DeleteInlineEditDataAndSetToNull();
sl@0
   386
	}
sl@0
   387
sl@0
   388
sl@0
   389
EXPORT_C void CEditableText::CancelFepInlineEdit(TBool& aParagraphContainingStartPositionOfInlineTextHasChangedFormat,TInt& aNumberOfCharactersSuccessfullyDeleted,TInt& aNumberOfCharactersSuccessfullyInserted,TInt& aPositionOfInsertionPointInDocument,TInt aNewPositionOfInsertionPointInDocument)
sl@0
   390
/**
sl@0
   391
 * @internalAll
sl@0
   392
 */	
sl@0
   393
    {
sl@0
   394
	aParagraphContainingStartPositionOfInlineTextHasChangedFormat=EFalse;
sl@0
   395
	aNumberOfCharactersSuccessfullyDeleted=0;
sl@0
   396
	aNumberOfCharactersSuccessfullyInserted=0;
sl@0
   397
	const CInlineEditData* inlineEditData=InlineEditData();
sl@0
   398
	if (inlineEditData!=NULL)
sl@0
   399
		{
sl@0
   400
		const TInt positionOfInlineTextInDocument=inlineEditData->iPositionOfInlineTextInDocument;
sl@0
   401
		const TInt lengthOfInlineText=inlineEditData->iLengthOfInlineText;
sl@0
   402
		if (inlineEditData->iInlineText!=NULL && lengthOfInlineText!=inlineEditData->iInlineText->Length())
sl@0
   403
		    {
sl@0
   404
		    OstTrace0( TRACE_DUMP, CEDITABLETEXT_CANCELFEPINLINEEDIT, "EDebug" );
sl@0
   405
		    }
sl@0
   406
		__ASSERT_DEBUG(inlineEditData->iInlineText==NULL || lengthOfInlineText==inlineEditData->iInlineText->Length(),Panic(EDebug));
sl@0
   407
		TRAPD(notUsed,
sl@0
   408
						if (lengthOfInlineText>0)
sl@0
   409
							{
sl@0
   410
							aParagraphContainingStartPositionOfInlineTextHasChangedFormat=DeleteWithoutDestroyingFormatL(positionOfInlineTextInDocument,lengthOfInlineText);
sl@0
   411
							aNumberOfCharactersSuccessfullyDeleted=lengthOfInlineText;
sl@0
   412
							aPositionOfInsertionPointInDocument=inlineEditData->iPositionOfInlineTextInDocument;
sl@0
   413
							}
sl@0
   414
						const HBufC* const hiddenText=inlineEditData->iHiddenText;
sl@0
   415
						if (hiddenText!=NULL)
sl@0
   416
							{
sl@0
   417
							if (hiddenText->Length()<=0)
sl@0
   418
							    {
sl@0
   419
							    OstTrace0( TRACE_DUMP, DUP1_CEDITABLETEXT_CANCELFEPINLINEEDIT, "EDebug" );
sl@0
   420
							    }
sl@0
   421
							__ASSERT_DEBUG(hiddenText->Length()>0, Panic(EDebug));
sl@0
   422
							InsertL(positionOfInlineTextInDocument,*hiddenText);
sl@0
   423
							aNumberOfCharactersSuccessfullyInserted=hiddenText->Length();
sl@0
   424
							aPositionOfInsertionPointInDocument=aNewPositionOfInsertionPointInDocument;
sl@0
   425
							}
sl@0
   426
			);
sl@0
   427
        UNUSED_VAR(notUsed);
sl@0
   428
		DeleteInlineEditDataAndSetToNull();
sl@0
   429
		}
sl@0
   430
	}
sl@0
   431
sl@0
   432
EXPORT_C void CEditableText::OverrideFormatOfInlineTextIfApplicable(TPtrC& aView,TCharFormat& aFormat,TInt aStartPos)const
sl@0
   433
	{
sl@0
   434
	const CInlineEditData* inlineEditData=InlineEditData();
sl@0
   435
	if (inlineEditData!=NULL)
sl@0
   436
		{
sl@0
   437
		const TInt positionOfInlineTextInDocument=inlineEditData->iPositionOfInlineTextInDocument;
sl@0
   438
		const TInt lengthOfInlineText=inlineEditData->iLengthOfInlineText;
sl@0
   439
		const TInt originalLengthOfView=aView.Length();
sl@0
   440
		TInt maximumLengthOfView=originalLengthOfView;
sl@0
   441
		if (aStartPos<positionOfInlineTextInDocument)
sl@0
   442
			{
sl@0
   443
			maximumLengthOfView=positionOfInlineTextInDocument-aStartPos;
sl@0
   444
			}
sl@0
   445
		else if (aStartPos<positionOfInlineTextInDocument+lengthOfInlineText)
sl@0
   446
			{
sl@0
   447
			inlineEditData->iInlineTextFormatRetriever->GetFormatOfFepInlineText(aFormat,maximumLengthOfView,aStartPos-positionOfInlineTextInDocument);
sl@0
   448
			}
sl@0
   449
		if (originalLengthOfView>maximumLengthOfView)
sl@0
   450
			{
sl@0
   451
			aView.Set(aView.Left(maximumLengthOfView));
sl@0
   452
			}
sl@0
   453
		}
sl@0
   454
	}
sl@0
   455
sl@0
   456
sl@0
   457
EXPORT_C TInt CEditableText::GetPositionOfInlineTextInDocument() const
sl@0
   458
	{
sl@0
   459
	const CInlineEditData* inlineEditData=InlineEditData();
sl@0
   460
	if (inlineEditData==NULL)
sl@0
   461
		return KErrNotFound;
sl@0
   462
	return inlineEditData->iPositionOfInlineTextInDocument;	
sl@0
   463
	}
sl@0
   464
sl@0
   465
sl@0
   466
EXPORT_C TInt CEditableText::GetLengthOfInlineText() const
sl@0
   467
	{
sl@0
   468
	const CInlineEditData* inlineEditData=InlineEditData();
sl@0
   469
	if (inlineEditData==NULL)
sl@0
   470
		return KErrNotFound;
sl@0
   471
	return inlineEditData->iLengthOfInlineText;		
sl@0
   472
	}
sl@0
   473
sl@0
   474
sl@0
   475
//////////////////////////////////
sl@0
   476
// TEtextComponentInfo
sl@0
   477
//////////////////////////////////
sl@0
   478
sl@0
   479
sl@0
   480
sl@0
   481
EXPORT_C TEtextComponentInfo::TEtextComponentInfo()
sl@0
   482
	: iFieldCount(0),iPictureCount(0),iStyleCount(0)
sl@0
   483
/** C++ constructor overloaded function.
sl@0
   484
sl@0
   485
The object can be constructed either:by default this initializes the
sl@0
   486
field, picture and style counts to zerowith a field, picture and style
sl@0
   487
count
sl@0
   488
sl@0
   489
@param aFieldCount Specifies the number of fields in the text object.
sl@0
   490
@param aPictureCount Specifies the number of pictures in the text object
sl@0
   491
(rich text only).
sl@0
   492
@param aStyleCount  Specifies the number of styles owned or referenced by
sl@0
   493
the text object (rich text only). */
sl@0
   494
    {}
sl@0
   495
sl@0
   496
sl@0
   497
EXPORT_C TEtextComponentInfo::TEtextComponentInfo(TInt aFieldCount,TInt aPictureCount,TInt aStyleCount)
sl@0
   498
	: iFieldCount(aFieldCount),iPictureCount(aPictureCount),iStyleCount(aStyleCount)
sl@0
   499
/** C++ constructor overloaded function. The object can be constructed either:
sl@0
   500
sl@0
   501
by default  this initializes the field, picture and style counts to zero
sl@0
   502
sl@0
   503
with a field, picture and style count
sl@0
   504
sl@0
   505
@param aFieldCount Specifies the number of fields in the text object. 
sl@0
   506
@param aPictureCount Specifies the number of pictures in the text object (rich 
sl@0
   507
text only). 
sl@0
   508
@param aStyleCount Specifies the number of styles owned or referenced by the 
sl@0
   509
text object (rich text only). */
sl@0
   510
	{}
sl@0
   511
sl@0
   512
sl@0
   513
//////////////////////////////////
sl@0
   514
// CPlainText
sl@0
   515
//////////////////////////////////
sl@0
   516
sl@0
   517
sl@0
   518
EXPORT_C void CPlainText::__DbgTestInvariant()const
sl@0
   519
// Provides class invariants.  Explanations below:
sl@0
   520
//
sl@0
   521
	{
sl@0
   522
#ifdef _DEBUG
sl@0
   523
// ASSERT: Storage handle is good.
sl@0
   524
	__ASSERT_DEBUG(iByteStore!=NULL,User::Invariant());
sl@0
   525
// ASSERT: The text component must be non-negative in length
sl@0
   526
	__ASSERT_DEBUG(DocumentLength()>=0,User::Invariant());
sl@0
   527
#endif
sl@0
   528
	}
sl@0
   529
sl@0
   530
sl@0
   531
sl@0
   532
sl@0
   533
EXPORT_C CPlainText* CPlainText::NewL(TDocumentStorage aStorage,TInt aDefaultTextGranularity)
sl@0
   534
/** Allocates and constructs a plain text object overloaded function.
sl@0
   535
sl@0
   536
The text object's contents may be restored from a stream store. If the
sl@0
   537
text object supports fields, a field factory should be specified.
sl@0
   538
sl@0
   539
@param aStorage  The type of in-memory buffer to use. Defaults to ESegmentedStorage.
sl@0
   540
@param aDefaultTextGranularity  Specifies the granularity of the in-memory 
sl@0
   541
buffer. Default is EDefaultTextGranularity bytes (=256).
sl@0
   542
@param aStore   Stream store from which the object is restored.
sl@0
   543
@param aStreamId  ID of the stream store.
sl@0
   544
@param aFieldFactory Pointer to a field factory. A field factory must be
sl@0
   545
provided if the text object supports the addition of fields.
sl@0
   546
@return Pointer to the new plain text object. */	
sl@0
   547
	{
sl@0
   548
	CPlainText* self=new(ELeave) CPlainText();
sl@0
   549
	CleanupStack::PushL(self);
sl@0
   550
	self->ConstructL(aStorage,aDefaultTextGranularity);
sl@0
   551
	CleanupStack::Pop();
sl@0
   552
	return self;
sl@0
   553
	}
sl@0
   554
sl@0
   555
sl@0
   556
EXPORT_C CPlainText* CPlainText::NewL(const CStreamStore& aStore,TStreamId aStreamId,MTextFieldFactory* aFieldFactory,TDocumentStorage aStorage)
sl@0
   557
/** Returns a handle to a new instance of this class, restored from the specified
sl@0
   558
read stream.*/
sl@0
   559
	{
sl@0
   560
	CPlainText* self=new(ELeave) CPlainText();
sl@0
   561
	CleanupStack::PushL(self);
sl@0
   562
	self->ConstructL(aStore,aStreamId,aFieldFactory,aStorage);
sl@0
   563
	CleanupStack::Pop();
sl@0
   564
	return self;
sl@0
   565
	}
sl@0
   566
sl@0
   567
sl@0
   568
EXPORT_C CPlainText::CPlainText()
sl@0
   569
	{
sl@0
   570
	SetHasChanged(EFalse);
sl@0
   571
	}
sl@0
   572
sl@0
   573
sl@0
   574
EXPORT_C void CPlainText::ConstructL(TDocumentStorage aStorage,TInt aDefaultTextGranularity)
sl@0
   575
/** Allocates storage of CBufFlat or CBufSeg, according
sl@0
   576
to the parameter aStorage.
sl@0
   577
Creates & initializes the field set.*/
sl@0
   578
	{
sl@0
   579
	DoConstructL(aStorage,aDefaultTextGranularity);
sl@0
   580
	InsertEodL();
sl@0
   581
sl@0
   582
	__TEST_INVARIANT;
sl@0
   583
	}
sl@0
   584
sl@0
   585
sl@0
   586
EXPORT_C void CPlainText::ConstructL(const CStreamStore& aStore,TStreamId aStreamId,MTextFieldFactory* aFieldFactory,
sl@0
   587
									 TDocumentStorage aStorage)
sl@0
   588
/** Allocates storage of CBufFlat or CBufSeg, according
sl@0
   589
 to the parameter aStorage, restoring contents from the specified read-stream aStream.*/
sl@0
   590
	{
sl@0
   591
	DoConstructL(aStorage,EDefaultTextGranularity,aFieldFactory);	
sl@0
   592
	RestoreL(aStore,aStreamId);
sl@0
   593
sl@0
   594
	__TEST_INVARIANT;
sl@0
   595
	}
sl@0
   596
sl@0
   597
sl@0
   598
EXPORT_C void CPlainText::DoConstructL(TDocumentStorage aStorage,TInt aDefaultTextGranularity,MTextFieldFactory* aFieldFactory)
sl@0
   599
/** Allocates storage of CBufFlat or CBufSeg, according to the parameter aStorage.
sl@0
   600
Creates & initializes the field set.*/
sl@0
   601
	{
sl@0
   602
	if (iByteStore!=NULL)
sl@0
   603
	    {
sl@0
   604
	    OstTrace0( TRACE_DUMP, CPLAINTEXT_DOCONSTRUCTL, "EConstructCalledTwice" );
sl@0
   605
	    }
sl@0
   606
	__ASSERT_DEBUG(iByteStore==NULL,Panic(EConstructCalledTwice));
sl@0
   607
	
sl@0
   608
	iByteStore=(aStorage==ESegmentedStorage)
sl@0
   609
		? (CBufBase*)CBufSeg::NewL(aDefaultTextGranularity*sizeof(TText))
sl@0
   610
		: (CBufBase*)CBufFlat::NewL(aDefaultTextGranularity*sizeof(TText));
sl@0
   611
	if (aFieldFactory)
sl@0
   612
		SetFieldFactory(aFieldFactory);
sl@0
   613
	}
sl@0
   614
sl@0
   615
sl@0
   616
sl@0
   617
EXPORT_C CPlainText::~CPlainText()
sl@0
   618
/** The destructor frees the object's text storage and field set, prior to its 
sl@0
   619
destruction. */
sl@0
   620
	{
sl@0
   621
	KillFieldSet();
sl@0
   622
	delete iByteStore;
sl@0
   623
	}
sl@0
   624
sl@0
   625
sl@0
   626
void CPlainText::KillFieldSet()
sl@0
   627
/** Delete the field set if it is resident in memory.*/
sl@0
   628
	{
sl@0
   629
	if (FieldSetPresent())
sl@0
   630
		delete iFieldSet.AsPtr();
sl@0
   631
	iFieldSet=NULL;
sl@0
   632
	}
sl@0
   633
sl@0
   634
sl@0
   635
//
sl@0
   636
// CPlainText - Persistence
sl@0
   637
sl@0
   638
sl@0
   639
EXPORT_C void CPlainText::StoreComponentsL(CStreamStore& aStore,CStoreMap& aMap)const
sl@0
   640
/** Stores the plain text object's components to the stream store specified.
sl@0
   641
sl@0
   642
@param aStore Stream store to which the text object's components are written. 
sl@0
   643
@param aMap A store map. This binds the address of each component to the stream 
sl@0
   644
ID of aStore. This is needed to support the deferred loading of pictures in 
sl@0
   645
rich text. */
sl@0
   646
	{
sl@0
   647
	// Store any field components, then store the field set out-of-line, if present.
sl@0
   648
	if (FieldSetPresent())
sl@0
   649
		{
sl@0
   650
		TStreamId id=iFieldSet->StoreL(aStore);
sl@0
   651
		aMap.BindL(iFieldSet,id);
sl@0
   652
		}
sl@0
   653
	}
sl@0
   654
sl@0
   655
sl@0
   656
sl@0
   657
EXPORT_C void CPlainText::RestoreComponentsL(const CStreamStore& aStore)
sl@0
   658
/** Restores the plain text object's field set from a stream store.
sl@0
   659
sl@0
   660
@param aStore The stream store from which the field set is restored. */
sl@0
   661
	{
sl@0
   662
	// Load the field set, and load any referenced pictures
sl@0
   663
	TStreamId id=iFieldSet.AsId();
sl@0
   664
	if (id!=KNullStreamId)
sl@0
   665
		{
sl@0
   666
		CreateFieldSetL(0);
sl@0
   667
		iFieldSet->SetFieldFactory(iFieldFactory);
sl@0
   668
		iFieldSet->RestoreL(aStore,id);
sl@0
   669
		}
sl@0
   670
	}
sl@0
   671
sl@0
   672
sl@0
   673
sl@0
   674
EXPORT_C void CPlainText::StoreFieldComponentsL(CStreamStore& aStore,CStoreMap& aMap)const
sl@0
   675
/** Stores the plain text object's field components to a stream store.
sl@0
   676
sl@0
   677
@param aStore Stream store to which the fields are written. 
sl@0
   678
@param aMap A store map. This binds the address of each text component to the 
sl@0
   679
stream ID of aStore. This is needed to support the deferred loading of pictures 
sl@0
   680
in rich text. */
sl@0
   681
	{
sl@0
   682
	// 2' StoreComponents() 
sl@0
   683
	// Only has effect if a field set is present.
sl@0
   684
	if (FieldSetPresent())
sl@0
   685
		iFieldSet->StoreFieldsL(aStore,aMap);
sl@0
   686
	}
sl@0
   687
sl@0
   688
sl@0
   689
sl@0
   690
EXPORT_C void CPlainText::RestoreFieldComponentsL(const CStreamStore& aStore)
sl@0
   691
/** Restores the plain text object's field set.
sl@0
   692
sl@0
   693
@param aStore The stream store from which the fields are restored. */
sl@0
   694
	{
sl@0
   695
	// 2' RestoreComponents()
sl@0
   696
	// Only has effect if a field set is present - (has been Internalized())
sl@0
   697
	if (FieldSetPresent())
sl@0
   698
		iFieldSet->RestoreFieldsL(aStore);
sl@0
   699
	}
sl@0
   700
sl@0
   701
sl@0
   702
	
sl@0
   703
EXPORT_C void CPlainText::ExternalizeL(RWriteStream& aStream)const
sl@0
   704
/** Externalises a plain text object to a write stream. The presence of this function 
sl@0
   705
means that the standard templated operator<<() (defined in s32strm.h) is available 
sl@0
   706
to externalise objects of this class.
sl@0
   707
sl@0
   708
@param aStream Stream to which the object should be externalised. */
sl@0
   709
	{
sl@0
   710
	// Store this object in the specified write-stream.
sl@0
   711
	CEditableText::ExternalizeL(aStream);
sl@0
   712
	DoExternalizeFieldDataL(aStream);
sl@0
   713
	DoExternalizePlainTextL(aStream);
sl@0
   714
	}
sl@0
   715
sl@0
   716
sl@0
   717
sl@0
   718
EXPORT_C void CPlainText::InternalizeL(RReadStream& aStream)
sl@0
   719
/** Internalises the text object's text content and field set from a read stream. 
sl@0
   720
The presence of this function means that the standard templated operator>>() 
sl@0
   721
(defined in s32strm.h) is available to internalise objects of this class. 
sl@0
   722
InternalizeL() has construct rather than assignment semantics. You should 
sl@0
   723
not use it for fully initialised objects.
sl@0
   724
sl@0
   725
@param aStream Stream from which the object should be internalised. */
sl@0
   726
	{
sl@0
   727
	// Restores plain text from the specified read-stream.
sl@0
   728
	// Internalize has construction semantics, not assignment semantics.
sl@0
   729
	CEditableText::InternalizeL(aStream);
sl@0
   730
	DoInternalizeFieldDataL(aStream);
sl@0
   731
	DoInternalizePlainTextL(aStream);
sl@0
   732
	
sl@0
   733
	__TEST_INVARIANT;
sl@0
   734
	}
sl@0
   735
sl@0
   736
sl@0
   737
sl@0
   738
EXPORT_C void CPlainText::ExternalizeFieldDataL(RWriteStream& aStream)const
sl@0
   739
/** Externalises the plain text object's field set.
sl@0
   740
sl@0
   741
@param aStream The stream to which the field set should be written. */
sl@0
   742
	{
sl@0
   743
	// Save just the field set
sl@0
   744
	__TEST_INVARIANT;
sl@0
   745
sl@0
   746
	TUint fieldCount=(TUint)FieldCount();
sl@0
   747
	if(fieldCount<KFieldCountLimit)
sl@0
   748
		aStream.WriteUint8L(fieldCount);
sl@0
   749
	else
sl@0
   750
		{
sl@0
   751
		aStream.WriteUint8L(KFieldCountLimit);
sl@0
   752
		aStream.WriteUint32L(fieldCount);
sl@0
   753
		}
sl@0
   754
	if (fieldCount>0)
sl@0
   755
		aStream<< *iFieldSet;
sl@0
   756
	}
sl@0
   757
sl@0
   758
sl@0
   759
sl@0
   760
EXPORT_C void CPlainText::InternalizeFieldDataL(RReadStream& aStream)
sl@0
   761
/** Internalizes the field set.
sl@0
   762
sl@0
   763
@param aStream The read stream from which the field set is read. */
sl@0
   764
	{
sl@0
   765
	// 2' InternalizeL()
sl@0
   766
	// Restores field records from the specified read-stream.
sl@0
   767
	// Internalize has construction semantics, not assignment semantics.
sl@0
   768
sl@0
   769
	TUint fieldCount=aStream.ReadUint8L();
sl@0
   770
	if (fieldCount==KFieldCountLimit)
sl@0
   771
		fieldCount=aStream.ReadUint32L();
sl@0
   772
	if (fieldCount>0)
sl@0
   773
		{
sl@0
   774
		if (!iFieldSet)
sl@0
   775
			CreateFieldSetL(DocumentLength());
sl@0
   776
		aStream>> *iFieldSet;
sl@0
   777
		}
sl@0
   778
	}
sl@0
   779
sl@0
   780
sl@0
   781
EXPORT_C void CPlainText::DoInternalizeFieldDataL(RReadStream& aStream)
sl@0
   782
/** Read from the stream until the field data is identified, and consume it.*/
sl@0
   783
	{
sl@0
   784
	TUid uid=UidFromStreamL(aStream);
sl@0
   785
	while (uid!=KPlainTextFieldDataUid)
sl@0
   786
 		{
sl@0
   787
		if (uid==KPlainTextCharacterDataUid)
sl@0
   788
			User::Leave(KErrCorrupt);  // There is no field Data !!!!!
sl@0
   789
		CPlainText::ConsumeAdornmentL(aStream);
sl@0
   790
		uid=UidFromStreamL(aStream);
sl@0
   791
		}
sl@0
   792
	if (FieldSetPresent())
sl@0
   793
		iFieldFactory=iFieldSet->FieldFactory();
sl@0
   794
	KillFieldSet();
sl@0
   795
	aStream>> iFieldSet;  // a swizzle
sl@0
   796
	}
sl@0
   797
sl@0
   798
sl@0
   799
EXPORT_C void CPlainText::DoExternalizeFieldDataL(RWriteStream& aStream)const
sl@0
   800
/** Write to the stream, the T.V. representing the field set.*/
sl@0
   801
	{
sl@0
   802
	aStream<< KPlainTextFieldDataUid;
sl@0
   803
	if (FieldSetPresent())
sl@0
   804
		aStream<< iFieldSet;
sl@0
   805
	else
sl@0
   806
		aStream<< KNullStreamId;
sl@0
   807
	}
sl@0
   808
sl@0
   809
sl@0
   810
EXPORT_C void CPlainText::DoExternalizePlainTextL(RWriteStream& aStream)const
sl@0
   811
/** Write to the stream, the T.V. representing the plain text.*/
sl@0
   812
	{
sl@0
   813
	aStream<< KPlainTextCharacterDataUid;
sl@0
   814
	ExternalizePlainTextL(aStream);
sl@0
   815
	}
sl@0
   816
sl@0
   817
sl@0
   818
sl@0
   819
EXPORT_C void CPlainText::ExternalizePlainTextL(RWriteStream& aStream)const
sl@0
   820
	
sl@0
   821
/** Externalises the plain text object's text content (preceded by a length count) 
sl@0
   822
to a write stream.
sl@0
   823
sl@0
   824
@param aStream Stream to which the text content should be externalised. */
sl@0
   825
	{
sl@0
   826
	// Save just the bytestore
sl@0
   827
	__TEST_INVARIANT;
sl@0
   828
	::ExternalizeTextL(aStream,*iByteStore,0,iByteStore->Size() / sizeof(TText),TRUE);
sl@0
   829
	}
sl@0
   830
sl@0
   831
EXPORT_C void CPlainText::DoInternalizePlainTextL(RReadStream& aStream)
sl@0
   832
/** Read from the stream until the character data is found, and consume it.*/
sl@0
   833
	{
sl@0
   834
	TUid uid=UidFromStreamL(aStream);
sl@0
   835
	while (uid!=KPlainTextCharacterDataUid)
sl@0
   836
		{
sl@0
   837
		CPlainText::ConsumeAdornmentL(aStream);
sl@0
   838
		uid=UidFromStreamL(aStream);
sl@0
   839
		}
sl@0
   840
	CPlainText::InternalizePlainTextL(aStream);
sl@0
   841
	}
sl@0
   842
sl@0
   843
EXPORT_C void CPlainText::InternalizePlainTextL(RReadStream& aStream)
sl@0
   844
/** Internalises an empty text object's text content from a read stream
sl@0
   845
overloaded function.
sl@0
   846
sl@0
   847
This function has construct rather than assignment semantics. You
sl@0
   848
should not use it for fully initialised objects.NoteThe overload which
sl@0
   849
takes a length argument is not intended for general use and its use is
sl@0
   850
deprecated.
sl@0
   851
sl@0
   852
@param aStream Stream from which the object should be internalised.
sl@0
   853
@param  aLength Indicates the number of characters which should be
sl@0
   854
read, after expansion from their compressed format. */	
sl@0
   855
    {
sl@0
   856
	// Restores plain text content from the specified read-stream.
sl@0
   857
	// Internalize has construction semantics, not assignment semantics.
sl@0
   858
	::InternalizeTextL(aStream,*iByteStore);
sl@0
   859
	SetHasChanged(EFalse);
sl@0
   860
sl@0
   861
	__TEST_INVARIANT;
sl@0
   862
	}
sl@0
   863
sl@0
   864
sl@0
   865
EXPORT_C void CPlainText::ExternalizePlainTextNoLengthCountL(RWriteStream& aStream)const
sl@0
   866
/** Externalises the plain text object's text content to a write stream.
sl@0
   867
sl@0
   868
This function differs from ExternalizePlainTextL() in that 
sl@0
   869
it does not precede the text content with a length count.
sl@0
   870
This function is not intended for general use and is deprecated.
sl@0
   871
@see void CPlainText::ExternalizePlainTextL(RWriteStream& aStream)const
sl@0
   872
@deprecated */
sl@0
   873
	{
sl@0
   874
	::ExternalizeTextL(aStream,*iByteStore,0,iByteStore->Size() / sizeof(TText),FALSE);
sl@0
   875
	}
sl@0
   876
sl@0
   877
sl@0
   878
EXPORT_C void CPlainText::InternalizePlainTextL(RReadStream& aStream,TInt aLength)
sl@0
   879
/** Internalises an empty text object's text content from a read stream's 
sl@0
   880
overloaded function.
sl@0
   881
sl@0
   882
This function has construct rather than assignment semantics. You should not 
sl@0
   883
use it for fully initialised objects.
sl@0
   884
sl@0
   885
Note
sl@0
   886
sl@0
   887
The overload which takes a length argument is not intended for general use 
sl@0
   888
and its use is deprecated. 
sl@0
   889
sl@0
   890
@param aStream Stream from which the object should be internalised. 
sl@0
   891
@param aLength Indicates the number of characters which should be read, after 
sl@0
   892
expansion from their compressed format. 
sl@0
   893
@deprecated */
sl@0
   894
	{
sl@0
   895
	::InternalizeTextL(aStream,*iByteStore,aLength);
sl@0
   896
	}
sl@0
   897
sl@0
   898
sl@0
   899
// Copy the specified section of plain text to the specified store.
sl@0
   900
sl@0
   901
sl@0
   902
EXPORT_C void CPlainText::CopyToStoreL(CStreamStore& aStore,CStreamDictionary& aDictionary,TInt aPos,TInt aLength) const
sl@0
   903
/** Copies plain text including fields, if present, to the clipboard.
sl@0
   904
sl@0
   905
A panic occurs in any of the following circumstances:
sl@0
   906
sl@0
   907
aPos is invalid
sl@0
   908
sl@0
   909
aLength is invalid (zero or less)
sl@0
   910
sl@0
   911
the sum of aPos and aLength is greater than or equal to the number of characters 
sl@0
   912
in the document
sl@0
   913
sl@0
   914
@param aStore Stream store to which the text is written. 
sl@0
   915
@param aDictionary The stream dictionary. 
sl@0
   916
@param aPos The document position from which to begin copying. 
sl@0
   917
@param aLength The number of characters to copy. */
sl@0
   918
	{
sl@0
   919
	if (aLength > 0)
sl@0
   920
		DoCopyToStoreL(aStore,aDictionary,aPos,aLength);
sl@0
   921
	}
sl@0
   922
sl@0
   923
sl@0
   924
TStreamId CPlainText::DoCopyToStoreL(CStreamStore& aStore,CStreamDictionary& aDictionary,TInt aPos,TInt aLength) const
sl@0
   925
	{
sl@0
   926
	__TEST_INVARIANT;
sl@0
   927
	TInt documentLength = DocumentLength();
sl@0
   928
	if (aPos < 0 || aPos > documentLength)
sl@0
   929
	    {
sl@0
   930
	    OstTrace0( TRACE_FATAL, CPLAINTEXT_DOCOPYTOSTOREL, "ECharPosBeyondDocument" );
sl@0
   931
	    }
sl@0
   932
	__ASSERT_ALWAYS(aPos >= 0 && aPos <= documentLength,Panic(ECharPosBeyondDocument));
sl@0
   933
	if (aLength < 0)
sl@0
   934
	    {
sl@0
   935
	    OstTrace0( TRACE_FATAL, DUP1_CPLAINTEXT_DOCOPYTOSTOREL, "ECopyToStreamNegativeLength" );
sl@0
   936
	    }
sl@0
   937
	__ASSERT_ALWAYS(aLength >= 0,Panic(ECopyToStreamNegativeLength));
sl@0
   938
	if (aPos + aLength > documentLength)
sl@0
   939
	    {
sl@0
   940
	    OstTrace0( TRACE_FATAL, DUP2_CPLAINTEXT_DOCOPYTOSTOREL, "ECharPosBeyondDocument" );
sl@0
   941
	    }
sl@0
   942
	__ASSERT_ALWAYS(aPos + aLength <= documentLength,Panic(ECharPosBeyondDocument));
sl@0
   943
sl@0
   944
	if (aLength == 0)
sl@0
   945
		return KNullStreamId;
sl@0
   946
sl@0
   947
	CStoreMap* map=CStoreMap::NewLC(aStore);
sl@0
   948
	CopyComponentsL(aStore,*map,aPos,aLength);
sl@0
   949
sl@0
   950
	// create custom externalizer over the map
sl@0
   951
	TFieldMapExternalizer fMap(*map);
sl@0
   952
	RStoreWriteStream stream(fMap);
sl@0
   953
	TStreamId id=stream.CreateLC(aStore);
sl@0
   954
	CopyToStreamL(stream,aPos,aLength);
sl@0
   955
	stream.CommitL();
sl@0
   956
sl@0
   957
	aDictionary.AssignL(KClipboardUidTypePlainText,id);
sl@0
   958
	map->Reset();
sl@0
   959
	CleanupStack::PopAndDestroy(2);
sl@0
   960
sl@0
   961
	__TEST_INVARIANT;
sl@0
   962
	return id;
sl@0
   963
	}
sl@0
   964
sl@0
   965
sl@0
   966
void CPlainText::CopyComponentsL(CStreamStore& aStore,CStoreMap& aMap,TInt aPos,TInt aLength)const
sl@0
   967
// Copy/Paste 2' StoreComponentsL() - only if a field set is present.
sl@0
   968
// 
sl@0
   969
	{
sl@0
   970
	if (FieldSetPresent())
sl@0
   971
		iFieldSet->CopyComponentsL(aStore,aMap,aPos,aLength);
sl@0
   972
	}
sl@0
   973
sl@0
   974
sl@0
   975
// Write the plain text to the stream.
sl@0
   976
void CPlainText::CopyToStreamL(RWriteStream& aStream,TInt aPos,TInt aLength)const
sl@0
   977
	{
sl@0
   978
	__TEST_INVARIANT;
sl@0
   979
	TInt documentLength = DocumentLength();
sl@0
   980
	if (aPos < 0 || aPos > documentLength)
sl@0
   981
	    {
sl@0
   982
	    OstTrace0( TRACE_FATAL, CPLAINTEXT_COPYTOSTREAML, "ECharPosBeyondDocument" );
sl@0
   983
	    }
sl@0
   984
	__ASSERT_ALWAYS(aPos >= 0 && aPos <= documentLength,Panic(ECharPosBeyondDocument));
sl@0
   985
	if (aLength < 0)
sl@0
   986
	    {
sl@0
   987
	    OstTrace0( TRACE_FATAL, DUP1_CPLAINTEXT_COPYTOSTREAML, "ECopyToStreamNegativeLength" );
sl@0
   988
	    }
sl@0
   989
	__ASSERT_ALWAYS(aLength >= 0,Panic(ECopyToStreamNegativeLength));
sl@0
   990
	if (aPos + aLength > documentLength)
sl@0
   991
	    {
sl@0
   992
	    OstTrace0( TRACE_FATAL, DUP2_CPLAINTEXT_COPYTOSTREAML, "ECharPosBeyondDocument" );
sl@0
   993
	    }
sl@0
   994
	__ASSERT_ALWAYS(aPos + aLength <= documentLength,Panic(ECharPosBeyondDocument));
sl@0
   995
sl@0
   996
	aStream.WriteInt32L(aLength);
sl@0
   997
	::ExternalizeTextL(aStream,*iByteStore,aPos,aLength,FALSE);
sl@0
   998
sl@0
   999
	// Write the field set if any.
sl@0
  1000
	TBool fieldSetPresent = FieldSetPresent();
sl@0
  1001
	aStream.WriteUint8L(fieldSetPresent != EFalse);
sl@0
  1002
	if (fieldSetPresent)
sl@0
  1003
		iFieldSet->CopyToStreamL(aStream,aPos,aLength);
sl@0
  1004
	}
sl@0
  1005
sl@0
  1006
sl@0
  1007
 
sl@0
  1008
sl@0
  1009
EXPORT_C TInt CPlainText::PasteFromStoreL(const CStreamStore& aStore,const CStreamDictionary& aDictionary,TInt aPos)
sl@0
  1010
/** Pastes plain text and fields, if present, from the clipboard into the current 
sl@0
  1011
text object at the specified document position. The entire contents of the 
sl@0
  1012
store are pasted.
sl@0
  1013
sl@0
  1014
@param aStore The steam store from which to paste the text. 
sl@0
  1015
@param aDictionary The stream dictionary. 
sl@0
  1016
@param aPos Document position at which to paste. Must be valid or the function 
sl@0
  1017
raises a panic. 
sl@0
  1018
@return The number of characters pasted. */
sl@0
  1019
	{
sl@0
  1020
	// Paste the lesser of aMaxPasteLength and the entire clipboard contents.
sl@0
  1021
	// Return the number of characters pasted.
sl@0
  1022
	TStreamId id=aDictionary.At(KClipboardUidTypePlainText);
sl@0
  1023
	return DoPasteFromStoreL(aStore,id,aPos);
sl@0
  1024
	}
sl@0
  1025
sl@0
  1026
sl@0
  1027
TInt CPlainText::DoPasteFromStoreL(const CStreamStore& aStore,TStreamId aStreamId,TInt aPos)
sl@0
  1028
	{
sl@0
  1029
	if (aPos>DocumentLength())
sl@0
  1030
	    {
sl@0
  1031
	    OstTrace0( TRACE_FATAL, CPLAINTEXT_DOPASTEFROMSTOREL, "ECharPosBeyondDocument" );
sl@0
  1032
	    }
sl@0
  1033
	__ASSERT_ALWAYS(aPos<=DocumentLength(),Panic(ECharPosBeyondDocument));
sl@0
  1034
sl@0
  1035
	TInt charsPasted=0;
sl@0
  1036
	if (aStreamId!=KNullStreamId)
sl@0
  1037
		{// There is a recognised type in the clipboard.
sl@0
  1038
		RStoreReadStream stream;
sl@0
  1039
		stream.OpenLC(aStore,aStreamId);
sl@0
  1040
		charsPasted=PasteFromStreamL(stream,aPos);
sl@0
  1041
		CleanupStack::PopAndDestroy();
sl@0
  1042
		//
sl@0
  1043
		PasteComponentsL(aStore,aPos);
sl@0
  1044
		SetHasChanged(ETrue);
sl@0
  1045
		}
sl@0
  1046
sl@0
  1047
	__TEST_INVARIANT;
sl@0
  1048
	return charsPasted;
sl@0
  1049
	}
sl@0
  1050
sl@0
  1051
sl@0
  1052
void CPlainText::PasteComponentsL(const CStreamStore& aStore,TInt aPos)
sl@0
  1053
// Copy/Paste 2' RestoreComponentsL() - only if a field set is present.
sl@0
  1054
//
sl@0
  1055
	{
sl@0
  1056
	if (FieldSetPresent())
sl@0
  1057
		iFieldSet->PasteComponentsL(aStore,aPos);
sl@0
  1058
	}
sl@0
  1059
sl@0
  1060
sl@0
  1061
// Paste everything in the stream.
sl@0
  1062
TInt CPlainText::PasteFromStreamL(RReadStream& aStream,TInt aPos)
sl@0
  1063
	{
sl@0
  1064
	TInt chars_read = 0;
sl@0
  1065
	TInt error = KErrNone;
sl@0
  1066
sl@0
  1067
	TRAP(error, chars_read=CPlainText::DoPasteFromStreamL(aStream, aPos));
sl@0
  1068
sl@0
  1069
	UpdatePageTable(aPos,chars_read);
sl@0
  1070
sl@0
  1071
	/*
sl@0
  1072
	If there was an exception delete any inserted text and propagate the exception.
sl@0
  1073
	Not deleting the text would cause the size of the text to be inconsistent with the size
sl@0
  1074
	implied elsewhere, such as in the formatting information stored in CRichText objects.
sl@0
  1075
	*/
sl@0
  1076
	if (error != KErrNone)
sl@0
  1077
		{
sl@0
  1078
		DoPtDelete(aPos,chars_read);
sl@0
  1079
		OstTrace1( TRACE_FATAL, DUP1_CPLAINTEXT_PASTEFROMSTREAML, "Leave code=%d", error );
sl@0
  1080
		User::Leave(error);
sl@0
  1081
		}
sl@0
  1082
sl@0
  1083
	__TEST_INVARIANT;
sl@0
  1084
	return chars_read;
sl@0
  1085
	}
sl@0
  1086
sl@0
  1087
sl@0
  1088
TInt CPlainText::DoPasteFromStreamL(RReadStream& aStream, TInt aPos)
sl@0
  1089
	{
sl@0
  1090
	TInt chars_read = 0;
sl@0
  1091
sl@0
  1092
	CBufSeg* buffer = CBufSeg::NewL(512);
sl@0
  1093
	CleanupStack::PushL(buffer);
sl@0
  1094
	TInt length = aStream.ReadInt32L();
sl@0
  1095
	::InternalizeTextL(aStream,*buffer,length);
sl@0
  1096
sl@0
  1097
	/*
sl@0
  1098
	Insert the text bit by bit so that memory consumed by the CPlainText object is freed from the buffer;
sl@0
  1099
	this is important if pasting huge amounts of text.
sl@0
  1100
	*/
sl@0
  1101
	while (buffer->Size() > 0)
sl@0
  1102
		{
sl@0
  1103
		TPtr8 p8 = buffer->Ptr(0);
sl@0
  1104
		TInt bytes = p8.Length();
sl@0
  1105
		TInt chars = bytes / sizeof(TText);
sl@0
  1106
		TPtrC p((TText*)p8.Ptr(),chars);	// platform dependency in the Unicode build; relies on little-endianness
sl@0
  1107
		PtInsertL(aPos + chars_read,p);
sl@0
  1108
		buffer->Delete(0,bytes);
sl@0
  1109
		chars_read += chars;
sl@0
  1110
		}
sl@0
  1111
sl@0
  1112
	CleanupStack::PopAndDestroy();	// buffer
sl@0
  1113
	buffer = NULL;
sl@0
  1114
sl@0
  1115
	// If there's a field set, internalize it.
sl@0
  1116
	if (aStream.ReadUint8L() != 0)	// next byte is non-zero if there's a field set
sl@0
  1117
		{
sl@0
  1118
		if (!FieldSetPresent())
sl@0
  1119
			CreateFieldSetL(DocumentLength());
sl@0
  1120
		iFieldSet->PasteFromStreamL(aStream,aPos,chars_read);
sl@0
  1121
		}
sl@0
  1122
	
sl@0
  1123
	return chars_read;
sl@0
  1124
	}
sl@0
  1125
sl@0
  1126
sl@0
  1127
void CPlainText::InsertEodL()
sl@0
  1128
/** Inserts the end-of-document character upon document construction.*/
sl@0
  1129
	{
sl@0
  1130
// ASSERT: The plain text component is empty.
sl@0
  1131
	if (DocumentLength()!=-1)
sl@0
  1132
	    {
sl@0
  1133
	    OstTrace0( TRACE_DUMP, DUP1_CPLAINTEXT_INSERTEODL, "ECorruptTextStore" );
sl@0
  1134
	    }
sl@0
  1135
	__ASSERT_DEBUG(DocumentLength()==-1,Panic(ECorruptTextStore));
sl@0
  1136
	TBuf<1> content;
sl@0
  1137
	content.Append(EParagraphDelimiter);
sl@0
  1138
	TPtrC eod(content);
sl@0
  1139
	DoPtInsertL(0,eod);
sl@0
  1140
sl@0
  1141
	__TEST_INVARIANT;
sl@0
  1142
	}
sl@0
  1143
sl@0
  1144
 
sl@0
  1145
EXPORT_C void CPlainText::Reset()
sl@0
  1146
/** Deletes all text content, formatting and fields from the document, leaving 
sl@0
  1147
the single paragraph delimiter which terminates the text object. */
sl@0
  1148
	{	
sl@0
  1149
	// Resets document contents to a single end-of-document character, with no other content.
sl@0
  1150
	// (No reset occurs if the component is already in the reset state.  Avoids an assertion
sl@0
  1151
	// failure in the delete method, where length to delete !> 0).
sl@0
  1152
	__TEST_INVARIANT;
sl@0
  1153
		
sl@0
  1154
	TInt content=DocumentLength();
sl@0
  1155
	if (content>0)
sl@0
  1156
		DoPtDelete(0,content);
sl@0
  1157
	if (FieldSetPresent())
sl@0
  1158
		KillFieldSet();
sl@0
  1159
	SetHasChanged(ETrue);
sl@0
  1160
	
sl@0
  1161
	__TEST_INVARIANT;
sl@0
  1162
	}
sl@0
  1163
sl@0
  1164
sl@0
  1165
 
sl@0
  1166
sl@0
  1167
EXPORT_C TInt CPlainText::DocumentLength()const
sl@0
  1168
/** Gets the the number of characters in the text object.
sl@0
  1169
sl@0
  1170
Note: the count includes all non-printing characters but excludes the end 
sl@0
  1171
of text paragraph delimiter, so that the smallest possible return value is 
sl@0
  1172
zero.
sl@0
  1173
sl@0
  1174
@return The number of characters in the text object. */
sl@0
  1175
	{return ((iByteStore->Size()/sizeof(TText))-1);}
sl@0
  1176
sl@0
  1177
sl@0
  1178
EXPORT_C void CPlainText::InsertL(TInt aInsertPos,const TChar& aChar)
sl@0
  1179
/** Inserts either a single character or a descriptor into the text object
sl@0
  1180
at a specified document position.
sl@0
  1181
sl@0
  1182
Updates the page table.
sl@0
  1183
sl@0
  1184
@param aPos The document position at which to insert the character/descriptor. 
sl@0
  1185
Must be valid, or a panic occurs.
sl@0
  1186
@param aChar The character to insert.
sl@0
  1187
@param aBuf The descriptor to insert. */
sl@0
  1188
	{
sl@0
  1189
	__TEST_INVARIANT;
sl@0
  1190
	if (aInsertPos<0 || aInsertPos>DocumentLength())
sl@0
  1191
	    {
sl@0
  1192
	    OstTrace0( TRACE_FATAL, CPLAINTEXT_INSERTL, "ECharPosBeyondDocument" );
sl@0
  1193
	    }
sl@0
  1194
	__ASSERT_ALWAYS(aInsertPos>=0 && aInsertPos<=DocumentLength(),Panic(ECharPosBeyondDocument));
sl@0
  1195
sl@0
  1196
	TInt contentLength = 1;
sl@0
  1197
	if (aChar < 0x10000)
sl@0
  1198
		{
sl@0
  1199
		TBuf<1> content;
sl@0
  1200
		content.Append(aChar);
sl@0
  1201
		DoPtInsertL(aInsertPos,content);
sl@0
  1202
		}
sl@0
  1203
	else
sl@0
  1204
		{
sl@0
  1205
		TText16 high = TChar::GetHighSurrogate(aChar);
sl@0
  1206
		TText16 low = TChar::GetLowSurrogate(aChar);
sl@0
  1207
		RDebug::Print(_L("CPlainText::InsertL(%d), %X expand to %X %X."), aInsertPos, TUint(aChar), high, low);
sl@0
  1208
	
sl@0
  1209
		TBuf<2> content;
sl@0
  1210
		contentLength = 2;
sl@0
  1211
		content.Append(high);
sl@0
  1212
		content.Append(low);
sl@0
  1213
		DoPtInsertL(aInsertPos,content);
sl@0
  1214
		}
sl@0
  1215
	if (FieldSetPresent())
sl@0
  1216
		iFieldSet->NotifyInsertion(aInsertPos,contentLength);
sl@0
  1217
sl@0
  1218
	SetHasChanged(ETrue);
sl@0
  1219
sl@0
  1220
	__TEST_INVARIANT;
sl@0
  1221
	}
sl@0
  1222
sl@0
  1223
sl@0
  1224
EXPORT_C void CPlainText::InsertL(TInt aPos,const TDesC& aBuf)
sl@0
  1225
/** Inserts the contents of aBuf into the document at position aPos.*/	
sl@0
  1226
	{
sl@0
  1227
	PtInsertL(aPos,aBuf);
sl@0
  1228
	SetHasChanged(ETrue);
sl@0
  1229
	}
sl@0
  1230
sl@0
  1231
sl@0
  1232
EXPORT_C void CPlainText::PtInsertL(TInt aPos,const TDesC& aBuf)
sl@0
  1233
/** Inserts the contents a aBuf into the document at position aInsertPos.
sl@0
  1234
Maintain field set.*/
sl@0
  1235
	{
sl@0
  1236
	__TEST_INVARIANT;
sl@0
  1237
	if (aPos<0 || aPos>DocumentLength())
sl@0
  1238
	    {
sl@0
  1239
	    OstTrace0( TRACE_FATAL, CPLAINTEXT_PTINSERTL, "ECharPosBeyondDocument" );
sl@0
  1240
	    }
sl@0
  1241
	__ASSERT_ALWAYS(aPos>=0 && aPos<=DocumentLength(),Panic(ECharPosBeyondDocument));
sl@0
  1242
sl@0
  1243
	DoPtInsertL(aPos,aBuf);
sl@0
  1244
	if (FieldSetPresent())
sl@0
  1245
		iFieldSet->NotifyInsertion(aPos,aBuf.Length());
sl@0
  1246
sl@0
  1247
	__TEST_INVARIANT;
sl@0
  1248
	}
sl@0
  1249
sl@0
  1250
sl@0
  1251
EXPORT_C void CPlainText::DoPtInsertL(TInt aPos,const TDesC& aBuf)
sl@0
  1252
/** Inserts the contents a aBuf into the document at position aInsertPos.
sl@0
  1253
Maintain field set.*/
sl@0
  1254
	{
sl@0
  1255
	TPtrC8 buf((TUint8*)aBuf.Ptr(),aBuf.Size());
sl@0
  1256
	iByteStore->InsertL(aPos*sizeof(TText),buf);
sl@0
  1257
	UpdatePageTable(aPos,aBuf.Length());
sl@0
  1258
	}
sl@0
  1259
sl@0
  1260
sl@0
  1261
void CPlainText::InsertL(TInt aPos,const CPlainText* aText)
sl@0
  1262
/** Insert the specified plain text object at the specified character position.
sl@0
  1263
(Called by CRichText::Insert()*/
sl@0
  1264
	{
sl@0
  1265
	TInt lengthRemaining=aText->DocumentLength();
sl@0
  1266
	TInt readPos=0;
sl@0
  1267
	FOREVER
sl@0
  1268
		{
sl@0
  1269
		TPtrC view=aText->Read(readPos);
sl@0
  1270
		TInt consumed=view.Length();
sl@0
  1271
		if (consumed>lengthRemaining)
sl@0
  1272
			consumed=lengthRemaining;
sl@0
  1273
		InsertL(aPos,view);
sl@0
  1274
		lengthRemaining-=consumed;
sl@0
  1275
		if (lengthRemaining==0)
sl@0
  1276
			return;
sl@0
  1277
		aPos+=consumed;
sl@0
  1278
		readPos+=consumed;
sl@0
  1279
		}
sl@0
  1280
	}
sl@0
  1281
sl@0
  1282
sl@0
  1283
EXPORT_C TBool CPlainText::DeleteL(TInt aPos,TInt aLength)
sl@0
  1284
/** Deletes one or more characters beginning at, and including, the character at 
sl@0
  1285
a specified document position. Updates the page table. Any fields wholly contained 
sl@0
  1286
in the range of characters to delete are removed from the field set.
sl@0
  1287
sl@0
  1288
@param aPos The document position from which to begin deleting. Must be valid 
sl@0
  1289
or a panic occurs. 
sl@0
  1290
@param aLength The number of characters to delete. Must be positive or a panic 
sl@0
  1291
occurs. The sum of aPos and aLength must be less than the document length, 
sl@0
  1292
or a panic occurs. 
sl@0
  1293
@return Indicates whether two paragraphs have been merged together as a result 
sl@0
  1294
of the delete, indicating that the resulting paragraph must be reformatted. 
sl@0
  1295
Has no meaning for plain text, so always EFalse. */
sl@0
  1296
	{
sl@0
  1297
	return Delete(aPos,aLength);
sl@0
  1298
	}
sl@0
  1299
sl@0
  1300
sl@0
  1301
// A non-virtual non-leaving delete function for use inside ETEXT.
sl@0
  1302
TBool CPlainText::Delete(TInt aPos,TInt aLength)
sl@0
  1303
	{
sl@0
  1304
	__TEST_INVARIANT;
sl@0
  1305
sl@0
  1306
	TBool ret = DoPtDelete(aPos,aLength);
sl@0
  1307
	if (FieldSetPresent())
sl@0
  1308
		iFieldSet->NotifyDeletion(aPos,aLength);
sl@0
  1309
	SetHasChanged(ETrue);
sl@0
  1310
sl@0
  1311
	__TEST_INVARIANT;
sl@0
  1312
	return ret;
sl@0
  1313
	}
sl@0
  1314
sl@0
  1315
sl@0
  1316
EXPORT_C TBool CPlainText::DoPtDelete(TInt aPos,TInt aLength)
sl@0
  1317
/** Deletes aLength number of characters from the document,
sl@0
  1318
 commencing at, and including, position aPos.
sl@0
  1319
 The return value indicates if 2 paragraphs have been merged together
sl@0
  1320
 as a result of the delete, indicating that the resulting paragraph
sl@0
  1321
 must be reformatted.
sl@0
  1322
 In global text, this clearly has no reasonable meaning, so always returns
sl@0
  1323
 EFalse, so no reformatting occurs.*/
sl@0
  1324
	{
sl@0
  1325
	TInt documentLength=DocumentLength()+1;
sl@0
  1326
	if (aPos<0 || aPos>documentLength)
sl@0
  1327
	    {
sl@0
  1328
	    OstTrace0( TRACE_FATAL, CPLAINTEXT_DOPTDELETE, "ECharPosBeyondDocument" );
sl@0
  1329
	    }
sl@0
  1330
	__ASSERT_ALWAYS(aPos>=0 && aPos<=documentLength,Panic(ECharPosBeyondDocument));
sl@0
  1331
	if (aLength<0)
sl@0
  1332
	    {
sl@0
  1333
	    OstTrace0( TRACE_FATAL, DUP1_CPLAINTEXT_DOPTDELETE, "EDeleteNegativeLength" );
sl@0
  1334
	    }
sl@0
  1335
	__ASSERT_ALWAYS(aLength>=0,Panic(EDeleteNegativeLength));
sl@0
  1336
	if (aPos+aLength>documentLength)
sl@0
  1337
	    {
sl@0
  1338
	    OstTrace0( TRACE_FATAL, DUP2_CPLAINTEXT_DOPTDELETE, "ECharPosBeyondDocument" );
sl@0
  1339
	    }
sl@0
  1340
	__ASSERT_ALWAYS(aPos+aLength<=documentLength,Panic(ECharPosBeyondDocument));
sl@0
  1341
sl@0
  1342
	iByteStore->Delete(aPos*sizeof(TText),aLength*sizeof(TText));
sl@0
  1343
	UpdatePageTable(aPos,-aLength);
sl@0
  1344
sl@0
  1345
	return EFalse;
sl@0
  1346
	}
sl@0
  1347
sl@0
  1348
sl@0
  1349
sl@0
  1350
EXPORT_C TInt CPlainText::ImportTextFileL(TInt aPos,const TDes& aFileName,TTextOrganisation aTextOrganisation)
sl@0
  1351
/** Imports a plain text file into this text object.
sl@0
  1352
sl@0
  1353
Translates non-printing characters in the source text file into Symbian OS 
sl@0
  1354
special characters, for instance tabs are converted into 
sl@0
  1355
CEditableText::ETabCharacters, and form feeds into CEditableText::EPageBreaks. 
sl@0
  1356
Line feeds in the source text file are translated according to the 
sl@0
  1357
aTextOrganisation argument.
sl@0
  1358
sl@0
  1359
The function leaves if there is any problem in opening the file.
sl@0
  1360
sl@0
  1361
@param aPos Document position at which to insert the text. Must be a valid 
sl@0
  1362
position, or a panic occurs.
sl@0
  1363
@param aFileName The name of the text file to import.
sl@0
  1364
@param aTextOrganisation If EOrganiseByLine, a single line feed or a line feed 
sl@0
  1365
and carriage return is converted into a space character. A line feed which 
sl@0
  1366
is followed by another line feed is converted into a paragraph delimiter. 
sl@0
  1367
If EOrganiseByParagraph, all line feeds are converted into paragraph delimiters. 
sl@0
  1368
sl@0
  1369
@return The number of characters imported. */
sl@0
  1370
	{
sl@0
  1371
	TInt chars_inserted = 0;
sl@0
  1372
	RFs file_session;
sl@0
  1373
	TInt error = file_session.Connect();
sl@0
  1374
	if (error == KErrNone)
sl@0
  1375
		{
sl@0
  1376
		RFile file;
sl@0
  1377
		error = file.Open(file_session,aFileName,EFileStream | EFileRead | EFileShareReadersOnly);
sl@0
  1378
		if (error == KErrNone)
sl@0
  1379
			{
sl@0
  1380
			RFileReadStream input_stream(file);
sl@0
  1381
			TRAP(error,ImportTextL(aPos,input_stream,aTextOrganisation,KMaxTInt,KMaxTInt,&chars_inserted));
sl@0
  1382
			input_stream.Close();
sl@0
  1383
			}
sl@0
  1384
		file.Close();
sl@0
  1385
		file_session.Close();
sl@0
  1386
		}
sl@0
  1387
	if (error < 0)
sl@0
  1388
	    {
sl@0
  1389
	    OstTrace1( TRACE_FATAL, DUP1_CPLAINTEXT_IMPORTTEXTFILEL, "Leave code=%x", error );
sl@0
  1390
	    }
sl@0
  1391
	User::LeaveIfError(error);
sl@0
  1392
	return chars_inserted;
sl@0
  1393
	}
sl@0
  1394
sl@0
  1395
sl@0
  1396
sl@0
  1397
EXPORT_C void CPlainText::ExportAsTextL(const TDes& aFileName,TTextOrganisation aTextOrganisation,TInt aLineWrap)const
sl@0
  1398
/** Writes the contents of the plain text object to a text file.
sl@0
  1399
	
sl@0
  1400
The filename is given by aFileName. Any existing file with that name is 
sl@0
  1401
replaced. A wrap width can be specified. This is only used when exporting 
sl@0
  1402
by line (aTextOrganisation is EOrganiseByLine).
sl@0
  1403
sl@0
  1404
The function leaves if there is any problem in creating or replacing the file.
sl@0
  1405
sl@0
  1406
@param aFileName The name of the file to export the text to. If a file with 
sl@0
  1407
this name already exists, it is replaced. Otherwise, a new file is created.
sl@0
  1408
@param aTextOrganisation Defines how to translate line delimiters. If 
sl@0
  1409
EOrganiseByLine, lines wrap at the wrap width, as specified in aMaxLineLength. 
sl@0
  1410
If EOrganiseByParagraph, lines do not wrap and paragraph delimiters are 
sl@0
  1411
converted into CR/LF pairs.
sl@0
  1412
@param aMaxLineLength The maximum number of characters in each line, (only 
sl@0
  1413
relevant if the text organisation is EOrganiseByLine). */
sl@0
  1414
	{
sl@0
  1415
	if (aTextOrganisation != EOrganiseByParagraph && aLineWrap <= 0)
sl@0
  1416
	    {
sl@0
  1417
	    OstTrace0( TRACE_DUMP, CPLAINTEXT_EXPORTASTEXTL, "EExportLineWrapInvalid" );
sl@0
  1418
	    }
sl@0
  1419
	__ASSERT_DEBUG(aTextOrganisation == EOrganiseByParagraph || aLineWrap > 0,Panic(EExportLineWrapInvalid));
sl@0
  1420
	RFs file_session;
sl@0
  1421
	TInt error = file_session.Connect();
sl@0
  1422
	if (error == KErrNone)
sl@0
  1423
		{
sl@0
  1424
		RFile file;
sl@0
  1425
		error = file.Replace(file_session,aFileName,EFileStream | EFileWrite | EFileShareExclusive);
sl@0
  1426
		if (error == KErrNone)
sl@0
  1427
			{
sl@0
  1428
			RFileWriteStream output_stream(file);
sl@0
  1429
			TRAP(error,output_stream.WriteUint16L(EByteOrderMark));
sl@0
  1430
			if (error == KErrNone)
sl@0
  1431
				TRAP(error,ExportTextL(0,output_stream,aTextOrganisation,KMaxTInt,DocumentLength(),aLineWrap));
sl@0
  1432
			output_stream.Close();
sl@0
  1433
			}
sl@0
  1434
		file.Close();
sl@0
  1435
		file_session.Close();
sl@0
  1436
		}
sl@0
  1437
	if (error < 0)
sl@0
  1438
	    {
sl@0
  1439
	    OstTrace1( TRACE_FATAL, DUP2_CPLAINTEXT_EXPORTASTEXTL, "Leave code=%x", error );
sl@0
  1440
	    }
sl@0
  1441
	User::LeaveIfError(error);
sl@0
  1442
	}
sl@0
  1443
sl@0
  1444
sl@0
  1445
sl@0
  1446
EXPORT_C void CPlainText::ImportTextL(TInt aPos,RReadStream& aInput,TTextOrganisation aTextOrganisation,
sl@0
  1447
									  TInt aMaxOutputChars,TInt aMaxInputChars,
sl@0
  1448
									  TInt* aOutputChars,TInt* aInputChars)
sl@0
  1449
/** Imports plain text from a stream into this text object.
sl@0
  1450
sl@0
  1451
Translates line feeds in the source text according to the
sl@0
  1452
aTextOrganisation argument.
sl@0
  1453
sl@0
  1454
@param aPos Document position at which to insert the text. Must be a valid 
sl@0
  1455
position, or a panic occurs.
sl@0
  1456
@param aInput Stream from which to read the text.
sl@0
  1457
@param aTextOrganisation If EOrganiseByLine, a single line feed 
sl@0
  1458
or a line feed and carriage return is converted into a space character. A 
sl@0
  1459
line feed which is followed by another line feed is converted into a paragraph
sl@0
  1460
delimiter. If EOrganiseByParagraph, all line feeds are converted 
sl@0
  1461
into paragraph delimiters.
sl@0
  1462
@param aMaxOutputChars The maximum number of characters to write to the text
sl@0
  1463
object.
sl@0
  1464
@param aMaxInputChars The maximum number of characters to read from the stream.
sl@0
  1465
@param aOutputChars  On return, the number of characters written to the text 
sl@0
  1466
object.
sl@0
  1467
@param aInputChars  On return, the number of characters read from the stream. */
sl@0
  1468
    {
sl@0
  1469
	TImportExportParam param;
sl@0
  1470
	param.iOrganisation = aTextOrganisation;
sl@0
  1471
	param.iMaxOutputChars = aMaxOutputChars;
sl@0
  1472
	param.iMaxInputChars = aMaxInputChars;
sl@0
  1473
	TImportExportResult result;
sl@0
  1474
	ImportTextL(aPos,aInput,param,result);
sl@0
  1475
	if (aOutputChars)
sl@0
  1476
		*aOutputChars = result.iOutputChars;
sl@0
  1477
	if (aInputChars)
sl@0
  1478
		*aInputChars = result.iInputChars;
sl@0
  1479
	}
sl@0
  1480
sl@0
  1481
sl@0
  1482
EXPORT_C void CPlainText::ExportTextL(TInt aPos,RWriteStream& aOutput,TTextOrganisation aTextOrganisation,
sl@0
  1483
									  TInt aMaxOutputChars,TInt aMaxInputChars,TInt aMaxLineLength,
sl@0
  1484
									  TInt* aOutputChars,TInt* aInputChars) const
sl@0
  1485
/**  Writes plain text to a stream, optionally converting it from Unicode
sl@0
  1486
into a foreign encoding.
sl@0
  1487
sl@0
  1488
@since 6.1
sl@0
  1489
@param aPos A document position in the source plain text object from which 
sl@0
  1490
to start reading the text to export.
sl@0
  1491
@param aOutput  On return, the write stream to which the text is  written.
sl@0
  1492
@param aParam  Export parameters, including an optional foreign encoding to 
sl@0
  1493
convert the Unicode text into, a file  server connection, (this is needed for 
sl@0
  1494
the character conversion - if not specified, one will be created), a line 
sl@0
  1495
wrap width, and the maximum number of characters to export.
sl@0
  1496
@param aResult  On return, contains the number of characters read and written. */
sl@0
  1497
    {
sl@0
  1498
	TImportExportParam param;
sl@0
  1499
	param.iOrganisation = aTextOrganisation;
sl@0
  1500
	param.iMaxOutputChars = aMaxOutputChars;
sl@0
  1501
	param.iMaxInputChars = aMaxInputChars;
sl@0
  1502
	param.iMaxLineLength = aMaxLineLength;
sl@0
  1503
	TImportExportResult result;
sl@0
  1504
	ExportTextL(aPos,aOutput,param,result);
sl@0
  1505
	if (aOutputChars)
sl@0
  1506
		*aOutputChars = result.iOutputChars;
sl@0
  1507
	if (aInputChars)
sl@0
  1508
		*aInputChars = result.iInputChars;
sl@0
  1509
	}
sl@0
  1510
sl@0
  1511
EXPORT_C void CPlainText::ImportTextL(TInt aPos,RReadStream& aInput,
sl@0
  1512
									  const TImportExportParam& aParam,TImportExportResult& aResult)
sl@0
  1513
/** Imports plain text from a stream into this text object, optionally 
sl@0
  1514
converting it from a foreign encoding into Unicode.
sl@0
  1515
sl@0
  1516
@param aPos Document position at which to insert the text. Must be a valid 
sl@0
  1517
position, or a panic occurs.
sl@0
  1518
@param aInput Stream from which to read the text.
sl@0
  1519
@param aParam Import parameters, including the foreign encoding to convert 
sl@0
  1520
from, whether to guess the foreign encoding and the maximum number of characters 
sl@0
  1521
to import.
sl@0
  1522
@param aResult On return, contains the number of characters read and written 
sl@0
  1523
and the foreign encoding used by the imported text.
sl@0
  1524
@see CPlainText::TImportExportParam
sl@0
  1525
@see CPlainText::TImportExportResult */
sl@0
  1526
	{
sl@0
  1527
	CBufSeg* buffer = CBufSeg::NewL(512);
sl@0
  1528
	CleanupStack::PushL(buffer);
sl@0
  1529
	RBufWriteStream output(*buffer,0);
sl@0
  1530
	TImportExportParam param = aParam;
sl@0
  1531
	param.iOutputInternal = TRUE; // force output to internal format
sl@0
  1532
	TPlainTextReader::TranslateL(param,aResult,output,aInput);
sl@0
  1533
sl@0
  1534
	TInt chars_inserted = 0;
sl@0
  1535
	while (buffer->Size() > 0)
sl@0
  1536
		{
sl@0
  1537
		TPtr8 p8 = buffer->Ptr(0);
sl@0
  1538
		TInt bytes = p8.Length();
sl@0
  1539
		TInt chars = bytes / sizeof(TText);
sl@0
  1540
		TPtrC p((TText*)p8.Ptr(),chars);
sl@0
  1541
		/*
sl@0
  1542
		Insert text using the virtual function InsertL to allow derived classes
sl@0
  1543
		like CRichText to update their attributes.
sl@0
  1544
		*/
sl@0
  1545
		InsertL(aPos + chars_inserted,p);
sl@0
  1546
		buffer->Delete(0,bytes);
sl@0
  1547
		chars_inserted += chars;
sl@0
  1548
		}
sl@0
  1549
sl@0
  1550
	CleanupStack::PopAndDestroy();	// buffer;
sl@0
  1551
	}
sl@0
  1552
sl@0
  1553
EXPORT_C void CPlainText::ExportTextL(TInt aPos,RWriteStream& aOutput,
sl@0
  1554
									  const TImportExportParam& aParam,TImportExportResult& aResult) const
sl@0
  1555
/** Writes plain text to a stream, optionally converting it from Unicode into a 
sl@0
  1556
foreign encoding.
sl@0
  1557
sl@0
  1558
@param aPos A document position in the source plain text object from which 
sl@0
  1559
to start reading the text to export.
sl@0
  1560
@param aOutput On return, the write stream to which the text is written.
sl@0
  1561
@param aParam Export parameters, including an optional foreign encoding to 
sl@0
  1562
convert the Unicode text into, a file server connection, (this is needed for 
sl@0
  1563
the character conversion if not specified, one will be created), a line 
sl@0
  1564
wrap width, and the maximum number of characters to export.
sl@0
  1565
@param aResult On return, contains the number of characters read and written.
sl@0
  1566
@see CPlainText::TImportExportParam
sl@0
  1567
@see CPlainText::TImportExportResult */
sl@0
  1568
	{
sl@0
  1569
	TImportExportParam param = aParam;
sl@0
  1570
	param.iInputInternal = TRUE; // force input to internal format
sl@0
  1571
	param.iMaxInputChars = Min(param.iMaxInputChars,DocumentLength() - aPos); // ensure final paragraph delimiter is not exported
sl@0
  1572
	RBufReadStream input(*iByteStore,aPos);
sl@0
  1573
	TPlainTextWriter::TranslateL(param,aResult,aOutput,input);
sl@0
  1574
	}
sl@0
  1575
sl@0
  1576
sl@0
  1577
EXPORT_C TPtrC CPlainText::Read(TInt aStartPos)const
sl@0
  1578
/** Gets a read-only view of a portion of the text object.
sl@0
  1579
sl@0
  1580
The extent of the view is the range of characters starting at aStartPos and ending at whichever of the
sl@0
  1581
following document positions is reached first:
sl@0
  1582
sl@0
  1583
- The end of the document. 
sl@0
  1584
- The end of the segment if using segmented storage (the storage type is specified in the NewL(). 
sl@0
  1585
sl@0
  1586
Therefore, when using a segmented buffer to store the document, the length of the resultant view may be
sl@0
  1587
less than the requested length. In this case multiple calls to Read() may be necessary.
sl@0
  1588
sl@0
  1589
@param aStartPos The document position at which to begin reading. Must be valid or a panic occurs.
sl@0
  1590
@return Constant pointer to a section of the text object. 
sl@0
  1591
*/	
sl@0
  1592
    {
sl@0
  1593
	__TEST_INVARIANT;
sl@0
  1594
	if (aStartPos<0 || aStartPos>DocumentLength())
sl@0
  1595
	    {
sl@0
  1596
	    OstTrace0( TRACE_FATAL, DUP1_CPLAINTEXT_READ, "ECharPosBeyondDocument" );
sl@0
  1597
	    }
sl@0
  1598
	__ASSERT_ALWAYS(aStartPos>=0 && aStartPos<=DocumentLength(),Panic(ECharPosBeyondDocument));
sl@0
  1599
	
sl@0
  1600
	TPtr8 buf=iByteStore->Ptr(aStartPos*sizeof(TText));
sl@0
  1601
	return TPtrC((TText*)buf.Ptr(),buf.Length()/sizeof(TText));
sl@0
  1602
	}
sl@0
  1603
sl@0
  1604
sl@0
  1605
EXPORT_C TPtrC CPlainText::Read(TInt aStartPos,TInt aLength)const
sl@0
  1606
 /** Gets a read-only view of a portion of the text object.
sl@0
  1607
sl@0
  1608
The extent of the view is the range of characters starting at aStartPos and ending at whichever of the
sl@0
  1609
following document positions is reached first:
sl@0
  1610
sl@0
  1611
- The end of the document.
sl@0
  1612
- The end of the segment if using segmented storage (the storage type is specified in the NewL().
sl@0
  1613
- The sum of aStartPos and (aLength-1).
sl@0
  1614
sl@0
  1615
Therefore, when using a segmented buffer to store the document, the length of the resultant view may be
sl@0
  1616
less than the requested length. In this case multiple calls to Read() may be necessary.
sl@0
  1617
sl@0
  1618
@param aStartPos The document position at which to begin reading. Must be valid or a panic occurs. 
sl@0
  1619
@param aLength The number of characters to read, inclusive of the character at position aStartPos. 
sl@0
  1620
@return Constant pointer to a section of the text object.
sl@0
  1621
*/
sl@0
  1622
	{
sl@0
  1623
	__TEST_INVARIANT;
sl@0
  1624
	if (aStartPos<0 || aStartPos>DocumentLength())
sl@0
  1625
	    {
sl@0
  1626
	    OstTrace0( TRACE_FATAL, CPLAINTEXT_READ, "ECharPosBeyondDocument" );
sl@0
  1627
	    }
sl@0
  1628
	__ASSERT_ALWAYS(aStartPos>=0 && aStartPos<=DocumentLength(),Panic(ECharPosBeyondDocument));
sl@0
  1629
	
sl@0
  1630
	TPtr8 buf=iByteStore->Ptr(aStartPos*sizeof(TText));
sl@0
  1631
	TInt length=Min(aLength,((TInt)buf.Length()/sizeof(TText)));
sl@0
  1632
	return TPtrC((TText*)buf.Ptr(),length);
sl@0
  1633
	}
sl@0
  1634
sl@0
  1635
sl@0
  1636
EXPORT_C void CPlainText::Extract(TDes& aBuf,TInt aPos)const
sl@0
  1637
/**  Copies the contents of the text object into a descriptor overloaded
sl@0
  1638
function. The function copies all characters from and including the document
sl@0
  1639
position specified, to the end of the document or the end of the range
sl@0
  1640
of characters, if specified.
sl@0
  1641
sl@0
  1642
The buffer's maximum length must be greater than or equal to the number 
sl@0
  1643
of characters to extract, or a panic occurs.
sl@0
  1644
sl@0
  1645
@param aBuf A buffer; on return contains the extracted text.
sl@0
  1646
@param aPos The document position from which to copy. Must be valid or a 
sl@0
  1647
panic occurs.*/
sl@0
  1648
    {
sl@0
  1649
	__TEST_INVARIANT;
sl@0
  1650
	TInt documentLength=DocumentLength();
sl@0
  1651
	if (aPos<0 || aPos>documentLength)
sl@0
  1652
	    {
sl@0
  1653
	    OstTrace0( TRACE_FATAL, CPLAINTEXT_EXTRACT, "ECharPosBeyondDocument" );
sl@0
  1654
	    }
sl@0
  1655
	__ASSERT_ALWAYS(aPos>=0 && aPos<=documentLength,Panic(ECharPosBeyondDocument));
sl@0
  1656
	if (aBuf.MaxLength()<documentLength - aPos)
sl@0
  1657
	    {
sl@0
  1658
	    OstTrace0( TRACE_FATAL, DUP1_CPLAINTEXT_EXTRACT, "EExtractBufferTooSmall" );
sl@0
  1659
	    }
sl@0
  1660
	__ASSERT_ALWAYS(aBuf.MaxLength()>=documentLength - aPos,Panic(EExtractBufferTooSmall));
sl@0
  1661
sl@0
  1662
	DoExtract(aBuf,aPos,documentLength-aPos);
sl@0
  1663
	}
sl@0
  1664
sl@0
  1665
sl@0
  1666
EXPORT_C void CPlainText::Extract(TDes& aBuf,TInt aPos,TInt aLength)const
sl@0
  1667
/** Copies the contents of the text object into a descriptor-overloaded function. 
sl@0
  1668
The function copies all characters from and including the document position 
sl@0
  1669
specified, to the end of the document or the end of the range of characters, 
sl@0
  1670
if specified.
sl@0
  1671
sl@0
  1672
The buffer's maximum length must be greater than or equal to aLength, or a 
sl@0
  1673
panic ocurs.
sl@0
  1674
sl@0
  1675
@param aBuf A buffer; on return contains the extracted text. 
sl@0
  1676
@param aPos The document position from which to copy. Must be valid or a panic 
sl@0
  1677
occurs. 
sl@0
  1678
@param aLength The number of characters to copy. */
sl@0
  1679
	{
sl@0
  1680
	__TEST_INVARIANT;
sl@0
  1681
	if (aPos<0 || aPos>DocumentLength())
sl@0
  1682
	    {
sl@0
  1683
	    OstTrace0( TRACE_FATAL, DUP2_CPLAINTEXT_EXTRACT, "ECharPosBeyondDocument" );
sl@0
  1684
	    }
sl@0
  1685
	__ASSERT_ALWAYS(aPos>=0 && aPos<=DocumentLength(),Panic(ECharPosBeyondDocument));
sl@0
  1686
	if (aBuf.MaxLength()<aLength)
sl@0
  1687
	    {
sl@0
  1688
	    OstTrace0( TRACE_FATAL, DUP3_CPLAINTEXT_EXTRACT, "EExtractBufferTooSmall" );
sl@0
  1689
	    }
sl@0
  1690
	__ASSERT_ALWAYS(aBuf.MaxLength()>=aLength,Panic(EExtractBufferTooSmall));
sl@0
  1691
sl@0
  1692
	DoExtract(aBuf,aPos,aLength);
sl@0
  1693
	}
sl@0
  1694
sl@0
  1695
// Extract text, optionally discarding some characters such as control characters and soft hyphens or
sl@0
  1696
// inline text, depending on the flag.
sl@0
  1697
EXPORT_C void CPlainText::ExtractSelectively(TDes& aBuf,TInt aPos,TInt aLength,TUint aFlags)
sl@0
  1698
	{
sl@0
  1699
	if (aPos < 0 || aPos > DocumentLength())
sl@0
  1700
	    {
sl@0
  1701
	    OstTrace0( TRACE_FATAL, CPLAINTEXT_EXTRACTSELECTIVELY, "ECharPosBeyondDocument" );
sl@0
  1702
	    }
sl@0
  1703
	__ASSERT_ALWAYS(aPos >= 0 && aPos <= DocumentLength(),Panic(ECharPosBeyondDocument));
sl@0
  1704
	DoExtract(aBuf,aPos,aLength,aFlags);
sl@0
  1705
	}
sl@0
  1706
sl@0
  1707
sl@0
  1708
void CPlainText::DoExtract(TDes& aBuf,TInt aPos,TInt aLength,TUint aFlags) const
sl@0
  1709
/** Copies aLength characters, commencing at aPos, into the specified
sl@0
  1710
buffer aBuf.  If aLength is greater than the amount of data left,
sl@0
  1711
then all remaining characters are written.*/
sl@0
  1712
	{
sl@0
  1713
	aBuf.SetLength(0);
sl@0
  1714
	TInt remainingLength=Min(aLength,DocumentLength()-aPos);
sl@0
  1715
	TInt startPos=aPos;
sl@0
  1716
	FOREVER
sl@0
  1717
		{
sl@0
  1718
		TPtrC textRead=Read(startPos);
sl@0
  1719
		TInt lengthRead=textRead.Length();
sl@0
  1720
		if (lengthRead>remainingLength)
sl@0
  1721
			lengthRead=remainingLength;
sl@0
  1722
		
sl@0
  1723
		// Remove specific characters
sl@0
  1724
		if (aFlags & EExtractVisible)
sl@0
  1725
			{
sl@0
  1726
			const TText* p = textRead.Ptr();
sl@0
  1727
			const TText* q = p + lengthRead;
sl@0
  1728
			while (p < q)
sl@0
  1729
				{
sl@0
  1730
				TChar c(*p++);
sl@0
  1731
				if (c == EParagraphDelimiter || c == ELineBreak || c == ETabCharacter)
sl@0
  1732
					aBuf.Append(' ');
sl@0
  1733
				else if (c != EPotentialHyphen && c.IsPrint())
sl@0
  1734
					aBuf.Append(c);
sl@0
  1735
				}
sl@0
  1736
			}
sl@0
  1737
			
sl@0
  1738
		// Remove inline text from the specified section
sl@0
  1739
		else if (aFlags & EExcludeInlineEditedText)
sl@0
  1740
			{
sl@0
  1741
			const TInt inlineTextPos = GetPositionOfInlineTextInDocument();
sl@0
  1742
			const TText* p = textRead.Ptr();
sl@0
  1743
			
sl@0
  1744
			if (inlineTextPos != KErrNotFound)
sl@0
  1745
				{
sl@0
  1746
				for (TInt i=aPos; i<(aPos+lengthRead); i++)
sl@0
  1747
					{
sl@0
  1748
		    		if (!((i >= inlineTextPos) && (i <= (inlineTextPos + GetLengthOfInlineText() - 1))))
sl@0
  1749
		    			{
sl@0
  1750
						TChar c(*p++);
sl@0
  1751
						aBuf.Append(c);
sl@0
  1752
						continue;
sl@0
  1753
		    			}
sl@0
  1754
		    		++p;
sl@0
  1755
					}
sl@0
  1756
				}
sl@0
  1757
			else
sl@0
  1758
				aBuf.Append(textRead.Ptr(),lengthRead);
sl@0
  1759
			}
sl@0
  1760
		else
sl@0
  1761
			aBuf.Append(textRead.Ptr(),lengthRead);
sl@0
  1762
		remainingLength-=lengthRead;
sl@0
  1763
		if (remainingLength==0)
sl@0
  1764
			return;
sl@0
  1765
		startPos+=lengthRead;
sl@0
  1766
		}
sl@0
  1767
	}
sl@0
  1768
sl@0
  1769
sl@0
  1770
sl@0
  1771
EXPORT_C void CPlainText::SetPageTable(TPageTable* aPageTable)
sl@0
  1772
/** Links the text object to a page table. A page table is an array of integers; 
sl@0
  1773
each integer represents the number of characters on a page. It is required 
sl@0
  1774
for pagination. The page table is updated when changes are made to the document, 
sl@0
  1775
e.g. after pasting from the clipboard, inserting, importing or deleting text.
sl@0
  1776
sl@0
  1777
The text object does not take ownership of the page table specified.
sl@0
  1778
sl@0
  1779
@param aPageTable The page table to be referenced by the text object. */
sl@0
  1780
	{
sl@0
  1781
	iPageTable=aPageTable;
sl@0
  1782
	SetHasChanged(ETrue);
sl@0
  1783
	}
sl@0
  1784
sl@0
  1785
sl@0
  1786
void CPlainText::UpdatePageTable(TInt aPos,TInt aLength)
sl@0
  1787
// Adds aLength number of characters to the page in the page table
sl@0
  1788
// specified by the character position aPos.
sl@0
  1789
// Called from i) Insert  ii) Delete  iii) Paste from clipboard  iv) Text file import.
sl@0
  1790
//
sl@0
  1791
	{
sl@0
  1792
	__TEST_INVARIANT;
sl@0
  1793
	if (aPos<0 || aPos>DocumentLength()+1)
sl@0
  1794
	    {
sl@0
  1795
	    OstTrace0( TRACE_FATAL, CPLAINTEXT_UPDATEPAGETABLE, "ECharPosBeyondDocument" );
sl@0
  1796
	    }
sl@0
  1797
	__ASSERT_ALWAYS(aPos>=0 && aPos<=DocumentLength()+1,Panic(ECharPosBeyondDocument));
sl@0
  1798
	
sl@0
  1799
	if (iPageTable)
sl@0
  1800
		(*iPageTable)[PageContainingPos(aPos)]+=aLength;
sl@0
  1801
	}
sl@0
  1802
sl@0
  1803
sl@0
  1804
EXPORT_C TInt CPlainText::PageContainingPos(TInt aPos)const
sl@0
  1805
/** Gets the number of the page which contains the specified document position. 
sl@0
  1806
If no page table has been set up, the function returns a value of zero. Use 
sl@0
  1807
SetPageTable() to set up the page table.
sl@0
  1808
sl@0
  1809
@param aPos A document position. Must be valid or a panic occurs. 
sl@0
  1810
@return The page number containing document position aPos. */
sl@0
  1811
    {
sl@0
  1812
	__TEST_INVARIANT;
sl@0
  1813
	if (aPos<0 || aPos>DocumentLength())
sl@0
  1814
	    {
sl@0
  1815
	    OstTrace0( TRACE_FATAL, CPLAINTEXT_PAGECONTAININGPOS, "ECharPosBeyondDocument" );
sl@0
  1816
	    }
sl@0
  1817
	__ASSERT_ALWAYS(aPos>=0 && aPos<=DocumentLength(),Panic(ECharPosBeyondDocument));
sl@0
  1818
sl@0
  1819
    if (!iPageTable || (iPageTable->Count()<1))
sl@0
  1820
        return 0;
sl@0
  1821
    else
sl@0
  1822
        {
sl@0
  1823
        TInt pageOffset=0;
sl@0
  1824
        TInt charCount=(*iPageTable)[pageOffset];
sl@0
  1825
        while (charCount<=aPos)
sl@0
  1826
            {
sl@0
  1827
            pageOffset++;
sl@0
  1828
            charCount+=(*iPageTable)[pageOffset];
sl@0
  1829
            }
sl@0
  1830
        return pageOffset;
sl@0
  1831
        }
sl@0
  1832
    }
sl@0
  1833
sl@0
  1834
EXPORT_C TEtextComponentInfo CPlainText::ComponentInfo()const
sl@0
  1835
/** Gets information about the number of components contained in the text object. 
sl@0
  1836
For plain text, only the field count has relevance.
sl@0
  1837
sl@0
  1838
@return Contains the field count. */
sl@0
  1839
	{return TEtextComponentInfo(FieldCount(),0,0);}
sl@0
  1840
sl@0
  1841
sl@0
  1842
sl@0
  1843
EXPORT_C TInt CPlainText::FieldCount() const
sl@0
  1844
/** Gets a count of the number of fields in the text object's field set.
sl@0
  1845
sl@0
  1846
@return The number of fields in the field set. */
sl@0
  1847
	{
sl@0
  1848
	__TEST_INVARIANT;
sl@0
  1849
sl@0
  1850
	return (FieldSetPresent())
sl@0
  1851
		? iFieldSet->FieldCount()
sl@0
  1852
		: 0;
sl@0
  1853
	}
sl@0
  1854
sl@0
  1855
EXPORT_C void CPlainText::InsertFieldL(TInt aPos,CTextField* aField,TUid aFieldType)
sl@0
  1856
/** Inserts a field into the text object at a specified document position. creating a zero-length field record.
sl@0
  1857
 Maintain the field set.
sl@0
  1858
sl@0
  1859
Note: After insertion, the field should be evaluated in order to make its contents 
sl@0
  1860
visible; use UpdateFieldL().
sl@0
  1861
sl@0
  1862
@param aPos The document position at which to insert the field. Must be valid, 
sl@0
  1863
or a panic occurs. 
sl@0
  1864
@param aField The field to insert, created by NewTextFieldL(). Must not be 
sl@0
  1865
NULL, or a panic occurs. 
sl@0
  1866
@param aFieldType Identifies the type of field to insert. For the built in 
sl@0
  1867
field types, see the UID values defined in flddef.h. */
sl@0
  1868
	{
sl@0
  1869
	__TEST_INVARIANT;
sl@0
  1870
	if (aPos<0 || aPos>DocumentLength())
sl@0
  1871
	    {
sl@0
  1872
	    OstTrace0( TRACE_FATAL, CPLAINTEXT_INSERTFIELDL, "ECharPosBeyondDocument" );
sl@0
  1873
	    }
sl@0
  1874
	__ASSERT_ALWAYS(aPos>=0 && aPos<=DocumentLength(),Panic(ECharPosBeyondDocument));
sl@0
  1875
	if (!aField)
sl@0
  1876
	    {
sl@0
  1877
	    OstTrace0( TRACE_FATAL, DUP1_CPLAINTEXT_INSERTFIELDL, "ENoTextField" );
sl@0
  1878
	    }
sl@0
  1879
	__ASSERT_ALWAYS(aField,Panic(ENoTextField));
sl@0
  1880
sl@0
  1881
	if (!FieldSetPresent())
sl@0
  1882
		CreateFieldSetL(DocumentLength());
sl@0
  1883
	iFieldSet->InsertFieldL(aPos,aField,aFieldType);
sl@0
  1884
	SetHasChanged(ETrue);
sl@0
  1885
sl@0
  1886
	__TEST_INVARIANT;
sl@0
  1887
	}
sl@0
  1888
sl@0
  1889
EXPORT_C void CPlainText::UpdateFieldL(TInt aPos)
sl@0
  1890
/** Re-evaluates the field which covers the document position specified. Re-evaluating 
sl@0
  1891
a field means calculating the field's new value, then inserting that value 
sl@0
  1892
into the text object, replacing the previous value.
sl@0
  1893
sl@0
  1894
Notes:
sl@0
  1895
sl@0
  1896
fields have a maximum length of 20 characters.
sl@0
  1897
sl@0
  1898
the first time a field is updated, the position specified should be the position 
sl@0
  1899
at which the field was inserted.
sl@0
  1900
sl@0
  1901
@param aPos A document position in the field to be updated. Must be a valid 
sl@0
  1902
position, or a panic occurs. */
sl@0
  1903
	{
sl@0
  1904
	__TEST_INVARIANT;
sl@0
  1905
	if (aPos<0 || aPos>DocumentLength())
sl@0
  1906
	    {
sl@0
  1907
	    OstTrace0( TRACE_FATAL, CPLAINTEXT_UPDATEFIELDL, "ECharPosBeyondDocument" );
sl@0
  1908
	    }
sl@0
  1909
	__ASSERT_ALWAYS(aPos>=0 && aPos<=DocumentLength(),Panic(ECharPosBeyondDocument));
sl@0
  1910
sl@0
  1911
	if (!FieldSetPresent())
sl@0
  1912
		return;
sl@0
  1913
	TFindFieldInfo info;
sl@0
  1914
	if (iFieldSet->FindFields(info,aPos))
sl@0
  1915
		{// a field exists at aPos, so update it.
sl@0
  1916
		HBufC* valueBuf=HBufC::NewL(KMaxFieldBufferSize); // will hold the new value,max length 20
sl@0
  1917
		/*
sl@0
  1918
		Don't put valueBuf on the cleanup stack before calling NewFieldValueL because NewFieldValueL
sl@0
  1919
		sometimes changes valueBuf, in which case it itself puts it on the cleanup stack.
sl@0
  1920
		*/
sl@0
  1921
		iFieldSet->NewFieldValueL(valueBuf,info.iFirstFieldPos);  // get the new value
sl@0
  1922
		CleanupStack::PushL(valueBuf);
sl@0
  1923
		DoPtInsertL(info.iFirstFieldPos,*valueBuf);  // insert the new text into the document
sl@0
  1924
		DoPtDelete(info.iFirstFieldPos+valueBuf->Length(),info.iFirstFieldLen);  // delete the old text of the field
sl@0
  1925
		iFieldSet->NotifyFieldUpdate(aPos,valueBuf->Length());  // inform the field set
sl@0
  1926
		CleanupStack::PopAndDestroy();
sl@0
  1927
		}
sl@0
  1928
	SetHasChanged(ETrue);
sl@0
  1929
sl@0
  1930
	__TEST_INVARIANT;
sl@0
  1931
	}
sl@0
  1932
sl@0
  1933
sl@0
  1934
sl@0
  1935
EXPORT_C void CPlainText::UpdateAllFieldsL()
sl@0
  1936
/** Re-evaluates all of the fields in the text object. Re-evaluating a field means 
sl@0
  1937
calculating the field's new value, then inserting that value into the text 
sl@0
  1938
object, replacing the previous value.
sl@0
  1939
sl@0
  1940
Note: Fields have a maximum length of 20 characters. */
sl@0
  1941
	{
sl@0
  1942
	__TEST_INVARIANT;
sl@0
  1943
sl@0
  1944
	TInt numFields=FieldCount();
sl@0
  1945
	TInt pos=0;
sl@0
  1946
	TFindFieldInfo info;
sl@0
  1947
	for (TInt item=0;item<numFields;item++)
sl@0
  1948
		{
sl@0
  1949
		// find the next field and go to its beginning
sl@0
  1950
		iFieldSet->FindFields(info,pos,DocumentLength()-pos);
sl@0
  1951
		pos=info.iFirstFieldPos;
sl@0
  1952
		UpdateFieldL(pos);
sl@0
  1953
		// the field has changed, find out its new length and go to the end of it
sl@0
  1954
		iFieldSet->FindFields(info,pos);
sl@0
  1955
		pos+=info.iFirstFieldLen;
sl@0
  1956
		}
sl@0
  1957
sl@0
  1958
	__TEST_INVARIANT;
sl@0
  1959
	}
sl@0
  1960
sl@0
  1961
sl@0
  1962
sl@0
  1963
EXPORT_C TBool CPlainText::RemoveField(TInt aPos)
sl@0
  1964
/** Removes the field covering the document position specified from the field set, 
sl@0
  1965
and deletes all text content associated with the field from the text object.
sl@0
  1966
sl@0
  1967
@param aPos A document position within the field to be deleted. Must be a 
sl@0
  1968
valid position or a panic occurs. 
sl@0
  1969
@return ETrue if a field was located at aPos. EFalse if no field was located 
sl@0
  1970
at aPos. */
sl@0
  1971
	{
sl@0
  1972
	__TEST_INVARIANT;
sl@0
  1973
	if (aPos<0 || aPos>DocumentLength())
sl@0
  1974
	    {
sl@0
  1975
	    OstTrace0( TRACE_FATAL, CPLAINTEXT_REMOVEFIELD, "ECharPosBeyondDocument" );
sl@0
  1976
	    }
sl@0
  1977
	__ASSERT_ALWAYS(aPos>=0 && aPos<=DocumentLength(),Panic(ECharPosBeyondDocument));
sl@0
  1978
sl@0
  1979
	TBool fieldRemoved=EFalse;
sl@0
  1980
	
sl@0
  1981
	if (FieldSetPresent())
sl@0
  1982
		{
sl@0
  1983
		TFindFieldInfo info;
sl@0
  1984
		if (iFieldSet->FindFields(info,aPos))
sl@0
  1985
			{// remove the field's record & associated text
sl@0
  1986
			Delete(info.iFirstFieldPos,info.iFirstFieldLen);
sl@0
  1987
			iFieldSet->RemoveField(aPos);
sl@0
  1988
			fieldRemoved=ETrue;
sl@0
  1989
			}
sl@0
  1990
		}
sl@0
  1991
	if (fieldRemoved)
sl@0
  1992
		SetHasChanged(ETrue);
sl@0
  1993
	
sl@0
  1994
	__TEST_INVARIANT;
sl@0
  1995
	return fieldRemoved;
sl@0
  1996
	}
sl@0
  1997
sl@0
  1998
sl@0
  1999
sl@0
  2000
EXPORT_C TBool CPlainText::FindFields(TInt aPos) const
sl@0
  2001
	{
sl@0
  2002
	__TEST_INVARIANT;
sl@0
  2003
sl@0
  2004
	if (FieldSetPresent())
sl@0
  2005
		return iFieldSet->FindFields(aPos);
sl@0
  2006
	else
sl@0
  2007
		return EFalse;
sl@0
  2008
	}
sl@0
  2009
sl@0
  2010
sl@0
  2011
EXPORT_C TBool CPlainText::FindFields(TFindFieldInfo& aInfo,TInt aPos,TInt aRange)const
sl@0
  2012
/** Tests whether a document position is located within a field overloaded
sl@0
  2013
function.
sl@0
  2014
sl@0
  2015
The second overload extracts information about all fields located
sl@0
  2016
within a range of characters.
sl@0
  2017
sl@0
  2018
@param aPos The document position. Must be valid or a panic occurs.
sl@0
  2019
@param aInfo  On return, contains the number of fields fully or partially 
sl@0
  2020
within the range of characters specified and the start position and length 
sl@0
  2021
of the first field found.
sl@0
  2022
@param   aRange The number of characters to search, beginning at aPos. Must 
sl@0
  2023
not be negative, or a panic occurs. The sum of aPos and aRange must be less 
sl@0
  2024
than the document length, or a panic occurs. The default range is zero. In 
sl@0
  2025
this case the function just returns information about the single field located 
sl@0
  2026
at the position specified.
sl@0
  2027
@return ETrue if aPos is located within a field, or if there were one or more 
sl@0
  2028
fields found in the range. EFalse if not. */
sl@0
  2029
	{
sl@0
  2030
	__TEST_INVARIANT;
sl@0
  2031
sl@0
  2032
	if (FieldSetPresent())
sl@0
  2033
		return iFieldSet->FindFields(aInfo,aPos,aRange);
sl@0
  2034
	else
sl@0
  2035
		return EFalse;
sl@0
  2036
	}
sl@0
  2037
sl@0
  2038
EXPORT_C const CTextField* CPlainText::TextField(TInt aPos)const
sl@0
  2039
/** Returns a pointer to the field located at the specified document position.
sl@0
  2040
sl@0
  2041
@param aPos A document position within the field. Must be a valid document 
sl@0
  2042
position, or a panic occurs. 
sl@0
  2043
@return Pointer to the field which covers position aPos. NULL if there is no 
sl@0
  2044
field at the specified position. */
sl@0
  2045
	{
sl@0
  2046
	__TEST_INVARIANT;
sl@0
  2047
sl@0
  2048
	return (FieldSetPresent())
sl@0
  2049
		? iFieldSet->TextField(aPos)
sl@0
  2050
		: NULL;
sl@0
  2051
	}
sl@0
  2052
sl@0
  2053
EXPORT_C TBool CPlainText::ConvertFieldToText(TInt aPos)
sl@0
  2054
/** Converts the field containing the specified document position into text, leaving 
sl@0
  2055
its current value in the text object. Does not update the field beforehand.
sl@0
  2056
sl@0
  2057
@param aPos A document position within the field to convert. Must be a valid 
sl@0
  2058
position or a panic occurs. 
sl@0
  2059
@return ETrue if there was a field located at aPos. EFalse if there was no 
sl@0
  2060
field located at aPos. */
sl@0
  2061
	{
sl@0
  2062
	__TEST_INVARIANT;
sl@0
  2063
	if (aPos<0 || aPos>DocumentLength())
sl@0
  2064
	    {
sl@0
  2065
	    OstTrace0( TRACE_FATAL, CPLAINTEXT_CONVERTFIELDTOTEXT, "ECharPosBeyondDocument" );
sl@0
  2066
	    }
sl@0
  2067
	__ASSERT_ALWAYS(aPos>=0 && aPos<=DocumentLength(),Panic(ECharPosBeyondDocument));
sl@0
  2068
sl@0
  2069
	TBool fieldConverted=EFalse;
sl@0
  2070
	
sl@0
  2071
	if (FieldSetPresent())
sl@0
  2072
		{
sl@0
  2073
		TFindFieldInfo info;
sl@0
  2074
		iFieldSet->FindFields(info,aPos);
sl@0
  2075
		if (iFieldSet->RemoveField(aPos))
sl@0
  2076
			fieldConverted=ETrue;
sl@0
  2077
		}
sl@0
  2078
	if (fieldConverted)
sl@0
  2079
		SetHasChanged(ETrue);
sl@0
  2080
	
sl@0
  2081
	__TEST_INVARIANT;
sl@0
  2082
	return fieldConverted;
sl@0
  2083
	}
sl@0
  2084
sl@0
  2085
sl@0
  2086
EXPORT_C void CPlainText::ConvertAllFieldsToText()
sl@0
  2087
/** Removes all fields from the text object's field set, leaving their current 
sl@0
  2088
text value in the text object. Does not update the fields beforehand. */
sl@0
  2089
	{
sl@0
  2090
	__TEST_INVARIANT;
sl@0
  2091
sl@0
  2092
	TInt fieldCount=FieldCount();
sl@0
  2093
	TInt pos=0;
sl@0
  2094
	for (TInt item=0;item<fieldCount;item++)
sl@0
  2095
		{// Convert each field in turn.
sl@0
  2096
		TFindFieldInfo info;
sl@0
  2097
		iFieldSet->FindFields(info,pos);  // find the next field and go to its beginning
sl@0
  2098
		pos=info.iFirstFieldPos;
sl@0
  2099
		ConvertFieldToText(pos);
sl@0
  2100
		}
sl@0
  2101
sl@0
  2102
	__TEST_INVARIANT;
sl@0
  2103
	}
sl@0
  2104
sl@0
  2105
EXPORT_C void CPlainText::SetFieldFactory(MTextFieldFactory* aFactory)
sl@0
  2106
/** Sets up a field factory. A field factory is an instance of a class deriving 
sl@0
  2107
from MTextFieldFactory. It must implement a NewFieldL() function to create 
sl@0
  2108
and return fields of the desired type. The field factory's NewFieldL() function 
sl@0
  2109
is called by CPlainText::NewTextFieldL(). A field factory must be set up if 
sl@0
  2110
you intend to add any fields to the text object.
sl@0
  2111
sl@0
  2112
@param aFactory The field factory. */
sl@0
  2113
	{
sl@0
  2114
	// Set the FieldSet's header factory handle (this points to the built-in factory by default)
sl@0
  2115
	//+ This function has no way to report failure, which can happen if CreateFieldSetL leaves. It ought to leave.
sl@0
  2116
	
sl@0
  2117
	// Create field set if necessary & set the factory
sl@0
  2118
	int error = 0;
sl@0
  2119
	if (!FieldSetPresent())
sl@0
  2120
		TRAP(error,CreateFieldSetL(DocumentLength()));
sl@0
  2121
	if (!error)
sl@0
  2122
		iFieldSet->SetFieldFactory(aFactory);
sl@0
  2123
	}
sl@0
  2124
sl@0
  2125
sl@0
  2126
sl@0
  2127
EXPORT_C CTextField* CPlainText::NewTextFieldL(TUid aFieldType)const
sl@0
  2128
/** Creates and returns a new field. Before calling this function, a field 
sl@0
  2129
factory should have been set up, either by calling SetFieldFactory(), or by 
sl@0
  2130
specifying one in the NewL(). The field factory's NewFieldL() function is 
sl@0
  2131
called to create a field of the type specified in the argument. A NULL field 
sl@0
  2132
is returned if no field factory has been set up.
sl@0
  2133
sl@0
  2134
@param aFieldType Identifies the field type. 
sl@0
  2135
@return Pointer to the new text field. NULL if no field factory has been set 
sl@0
  2136
up. */
sl@0
  2137
	{
sl@0
  2138
	__TEST_INVARIANT;
sl@0
  2139
sl@0
  2140
	CTextField* field=NULL;
sl@0
  2141
	if (FieldSetPresent())
sl@0
  2142
		field=iFieldSet->NewFieldL(aFieldType);
sl@0
  2143
sl@0
  2144
	__TEST_INVARIANT;
sl@0
  2145
	return field;
sl@0
  2146
	}
sl@0
  2147
sl@0
  2148
void CPlainText::CreateFieldSetL(TInt aDocumentLength)
sl@0
  2149
	{
sl@0
  2150
	iFieldSet = CTextFieldSet::NewL(aDocumentLength);
sl@0
  2151
	}
sl@0
  2152
sl@0
  2153
EXPORT_C const MTextFieldFactory* CPlainText::FieldFactory()const
sl@0
  2154
/** Gets a pointer to the field factory used by the text object. The field factory 
sl@0
  2155
may be set up using SetFieldFactory(), or may be specified in the NewL().
sl@0
  2156
sl@0
  2157
@return The field factory. NULL if no field factory has been set up. */
sl@0
  2158
	{return (FieldSetPresent()) ? iFieldSet->FieldFactory() : NULL;}
sl@0
  2159
sl@0
  2160
CEditableTextOptionalData::CEditableTextOptionalData()
sl@0
  2161
	{
sl@0
  2162
	// do nothing
sl@0
  2163
	}
sl@0
  2164
sl@0
  2165
CEditableTextOptionalData::~CEditableTextOptionalData()
sl@0
  2166
	{
sl@0
  2167
	delete iInlineEditData;
sl@0
  2168
	}