os/textandloc/textrendering/texthandling/inc/FLDSET.H
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description: 
sl@0
    15
*
sl@0
    16
*/
sl@0
    17
sl@0
    18
sl@0
    19
#ifndef __FLDSET_H__
sl@0
    20
#define __FLDSET_H__
sl@0
    21
sl@0
    22
#include <e32std.h>
sl@0
    23
#include <e32base.h>
sl@0
    24
#include <fldinfo.h>
sl@0
    25
#include <fldbase.h>
sl@0
    26
#include <fldbltin.h>
sl@0
    27
sl@0
    28
//
sl@0
    29
// Classes declared in this file
sl@0
    30
class CTextFieldSet;
sl@0
    31
//
sl@0
    32
// Classes referenced
sl@0
    33
class RReadStream;
sl@0
    34
class RWriteStream;
sl@0
    35
class TTextFieldEntry;
sl@0
    36
class CStreamStore;
sl@0
    37
class CStoreMap;
sl@0
    38
class TRollbackInfo;
sl@0
    39
sl@0
    40
/**
sl@0
    41
@internalComponent
sl@0
    42
*/
sl@0
    43
const TInt KFieldArrayGranularity=1;
sl@0
    44
sl@0
    45
sl@0
    46
class CTextFieldSet : public CBase
sl@0
    47
/**
sl@0
    48
The engine that keeps the field table up to date
sl@0
    49
@internalComponent
sl@0
    50
*/
sl@0
    51
	{
sl@0
    52
public:
sl@0
    53
	enum {ENoPasteLimit=-1};
sl@0
    54
public:
sl@0
    55
	IMPORT_C static CTextFieldSet* NewL(TInt aDocumentLength=0);
sl@0
    56
	IMPORT_C static CTextFieldSet* NewL(const MTextFieldFactory* aFactory,const CStreamStore& aStore,TStreamId aStreamId);
sl@0
    57
	IMPORT_C ~CTextFieldSet();
sl@0
    58
	//
sl@0
    59
	// Factory functions
sl@0
    60
	IMPORT_C void SetFieldFactory(MTextFieldFactory* aFactory);
sl@0
    61
	IMPORT_C MTextFieldFactory* FieldFactory()const;
sl@0
    62
	//
sl@0
    63
	IMPORT_C void Reset(); // removes all fields from the array and reinitialises field array
sl@0
    64
	//
sl@0
    65
	// Persistence
sl@0
    66
	IMPORT_C TStreamId StoreL(CStreamStore& aStore)const;
sl@0
    67
	IMPORT_C void RestoreL(const CStreamStore& aFieldStore,TStreamId aStreamId);
sl@0
    68
	//
sl@0
    69
	// Component persistence
sl@0
    70
	IMPORT_C void StoreFieldsL(CStreamStore& aStore,CStoreMap& aMap)const;
sl@0
    71
	IMPORT_C void RestoreFieldsL(const CStreamStore& aFieldStore);
sl@0
    72
	//
sl@0
    73
	// Headstream persistence
sl@0
    74
	IMPORT_C void InternalizeL(RReadStream& aStream);
sl@0
    75
	IMPORT_C void ExternalizeL(RWriteStream& aStream)const;
sl@0
    76
	//	Cut/Paste
sl@0
    77
	IMPORT_C TStreamId CopyToStoreL(CStreamStore& aStore,TInt aPos,TInt aLength)const;
sl@0
    78
	IMPORT_C void CopyComponentsL(CStreamStore& aStore,CStoreMap& aMap,TInt aPos,TInt aLength)const;
sl@0
    79
	IMPORT_C void CopyToStreamL(RWriteStream& aStream,TInt aPos,TInt aLength)const;
sl@0
    80
	IMPORT_C void PasteFromStoreL(const CStreamStore& aFieldStore,TStreamId aStreamId,TInt aPos,TInt aMaxLen=ENoPasteLimit);
sl@0
    81
	IMPORT_C void PasteComponentsL(const CStreamStore& aFieldStore,TInt aPos);
sl@0
    82
	IMPORT_C void PasteFromStreamL(RReadStream& aStream,TInt aPos,TInt aMaxLen=ENoPasteLimit);
sl@0
    83
	// Insert/Remove field
sl@0
    84
	IMPORT_C CTextField* NewFieldL(TUid aFieldType);
sl@0
    85
	IMPORT_C TInt InsertFieldL(TInt aPos,CTextField* aField,TUid aFieldType); // inserts a field (including text) into doc (returns error num if it fails)
sl@0
    86
	IMPORT_C TInt RemoveField(TInt aPos); // remove the field aPos is in
sl@0
    87
	IMPORT_C TInt NewFieldValueL(HBufC*& aBuf, TInt aPos); // returns new value of the field in aBuf (or returns false if aPos not in field)
sl@0
    88
	// Update field set
sl@0
    89
	IMPORT_C void NotifyInsertion(TInt aPos, TInt aNumberAdded);
sl@0
    90
	IMPORT_C void NotifyDeletion(TInt aPos, TInt aNumberRemoved);
sl@0
    91
	IMPORT_C void NotifyFieldUpdate(TInt aPos, TInt aNewFieldValueLength);
sl@0
    92
	// Utilities
sl@0
    93
	IMPORT_C TInt FieldCount() const; // returns total number of fields in document
sl@0
    94
	IMPORT_C TInt CharCount() const; // returns num characters in the document (according to fields)
sl@0
    95
	IMPORT_C TBool FindFields(TInt aPos) const; // Returns ETrue if aPos is in a field
sl@0
    96
	IMPORT_C TBool FindFields(TFindFieldInfo& aInfo,TInt aPos,TInt aRange=0) const; // finds num fields at least partly in range. Returns true if aPos is in field, and returns info on the first field in aRange
sl@0
    97
	IMPORT_C const CTextField* TextField(TInt aPos)const;
sl@0
    98
	// Rollback
sl@0
    99
	IMPORT_C void RollbackPaste(); // call to carry out rollback if a paste goes wrong
sl@0
   100
protected:
sl@0
   101
	CTextFieldSet();
sl@0
   102
	void ConstructL(TInt aDocumentLength);
sl@0
   103
	void ConstructL(const CStreamStore& aFieldStore,TStreamId aStreamId);
sl@0
   104
private:
sl@0
   105
	// persistence
sl@0
   106
	void StoreFieldsL(CStreamStore& aStore,CStoreMap& aMap,CArrayFixSeg<TTextFieldEntry>* aArray)const;
sl@0
   107
	void DoRestoreL(const CStreamStore& aFieldStore,TStreamId aStreamId);
sl@0
   108
	void DoRestoreFieldsL(CArrayFixSeg<TTextFieldEntry>* aArray,const CStreamStore& aFieldStore,TInt aStartIndex=0);
sl@0
   109
	void InternalizeL(CArrayFixSeg<TTextFieldEntry>* aArray,RReadStream& aStream);
sl@0
   110
	void ExternalizeL(RWriteStream& aStream,CArrayFixSeg<TTextFieldEntry>* aArray)const;
sl@0
   111
	void DoPasteL(CArrayFixSeg<TTextFieldEntry>* aSourceArray,TInt aPos);
sl@0
   112
	// utility functions
sl@0
   113
	void AddInitialFieldEntryL(CArrayFixSeg<TTextFieldEntry>* aArray,TInt aDocumentLength); // used to initialise the array
sl@0
   114
	void InsertEntryL(TInt aIndex,TTextFieldEntry& aEntry); // inserts into iFieldArray
sl@0
   115
	void InsertEntryL(TInt aIndex,TTextFieldEntry& aEntry,CArrayFixSeg<TTextFieldEntry>* aArray);
sl@0
   116
	void AppendEntryL(TTextFieldEntry& aEntry); // appends into iFieldArray
sl@0
   117
	void AppendEntryL(TTextFieldEntry& aEntry,CArrayFixSeg<TTextFieldEntry>* aArray);
sl@0
   118
	void CopyToArrayL(CArrayFixSeg<TTextFieldEntry>* aArray,TInt aPos,TInt aLength)const;
sl@0
   119
	TBool InField(const TInt aPos, TInt& anIndex, TInt& anOffset) const; // anOffset set to distance into field or gap
sl@0
   120
	void DeleteFieldEntry(TInt anIndex);
sl@0
   121
	void DeleteFieldEntry(CArrayFixSeg<TTextFieldEntry>* aArray,TInt anIndex);
sl@0
   122
	TTextFieldEntry SplitEntry(TInt aIndex,TInt aOffset,TInt aRange)const;
sl@0
   123
	TInt EntryLen(const TTextFieldEntry& aEntry)const;
sl@0
   124
	TInt EntryLen(TInt aIndex)const;
sl@0
   125
	// rollback
sl@0
   126
	void RecordRollbackInfoL(TInt aPastePos);
sl@0
   127
private:
sl@0
   128
	MTextFieldFactory* iFieldFactory;
sl@0
   129
	CArrayFixSeg<TTextFieldEntry>* iFieldArray; // Array of fields in the document
sl@0
   130
	TRollbackInfo* iRollbackInfo;
sl@0
   131
	__DECLARE_TEST;
sl@0
   132
	};
sl@0
   133
sl@0
   134
class TFieldMapExternalizer : public MExternalizer<TStreamRef>
sl@0
   135
/**
sl@0
   136
Allows NULL streams id's to be written out
sl@0
   137
when no reference is found in a store map.
sl@0
   138
@internalComponent
sl@0
   139
*/
sl@0
   140
	{
sl@0
   141
private:
sl@0
   142
	friend class CPlainText;
sl@0
   143
	friend class CTextFieldSet;
sl@0
   144
private:
sl@0
   145
	IMPORT_C TFieldMapExternalizer(const CStoreMap& aMap);
sl@0
   146
	IMPORT_C void ExternalizeL(const TStreamRef& anObject,RWriteStream& aStream) const;
sl@0
   147
private:
sl@0
   148
	const CStoreMap* iMap;
sl@0
   149
	};
sl@0
   150
sl@0
   151
#endif