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 __TXTINDEX_H__
|
sl@0
|
20 |
#define __TXTINDEX_H__
|
sl@0
|
21 |
|
sl@0
|
22 |
#include <e32std.h>
|
sl@0
|
23 |
#include <e32base.h>
|
sl@0
|
24 |
#include <txtmrtsr.h>
|
sl@0
|
25 |
#include <txtrich.h>
|
sl@0
|
26 |
#include "TXTSTD.H"
|
sl@0
|
27 |
|
sl@0
|
28 |
// forward declarations
|
sl@0
|
29 |
class CParaAttribs;
|
sl@0
|
30 |
class CPicturePhrase;
|
sl@0
|
31 |
class RReadStream;
|
sl@0
|
32 |
class RWriteStream;
|
sl@0
|
33 |
class CStoreMap;
|
sl@0
|
34 |
class CStreamStore;
|
sl@0
|
35 |
class CPicture;
|
sl@0
|
36 |
class CCharFormatLayer;
|
sl@0
|
37 |
class CParaFormatLayer;
|
sl@0
|
38 |
class CRichText;
|
sl@0
|
39 |
class MPictureFactory;
|
sl@0
|
40 |
|
sl@0
|
41 |
/**
|
sl@0
|
42 |
@internalComponent
|
sl@0
|
43 |
*/
|
sl@0
|
44 |
enum TRichTextStylePasteMode
|
sl@0
|
45 |
{
|
sl@0
|
46 |
EAddNewStyles,
|
sl@0
|
47 |
EConvertNewStyles,
|
sl@0
|
48 |
EIgnoreNewStyles
|
sl@0
|
49 |
};
|
sl@0
|
50 |
|
sl@0
|
51 |
class TTextFragment
|
sl@0
|
52 |
/**
|
sl@0
|
53 |
Describes a fragment of text that does not conform to the ERA text model.
|
sl@0
|
54 |
@internalComponent
|
sl@0
|
55 |
*/
|
sl@0
|
56 |
{
|
sl@0
|
57 |
public:
|
sl@0
|
58 |
TTextFragment();
|
sl@0
|
59 |
public:
|
sl@0
|
60 |
TInt iLength; // Number of characters in text fragment
|
sl@0
|
61 |
TInt iPhraseCount; // Number of distinct phrases in text fragment.
|
sl@0
|
62 |
};
|
sl@0
|
63 |
|
sl@0
|
64 |
|
sl@0
|
65 |
class RPhraseAttribsEntry
|
sl@0
|
66 |
/**
|
sl@0
|
67 |
Provides a full description of a phrase.
|
sl@0
|
68 |
A phrase consists of a specified number of contiguous characters [the phrase length]
|
sl@0
|
69 |
of identical character format.
|
sl@0
|
70 |
Where a picture is included as text content, it is described by its own phrase.
|
sl@0
|
71 |
@internalComponent
|
sl@0
|
72 |
*/
|
sl@0
|
73 |
{
|
sl@0
|
74 |
public:
|
sl@0
|
75 |
enum {EPictureIndicator = -1};
|
sl@0
|
76 |
enum {EPicturePhraseLength = 1};
|
sl@0
|
77 |
public:
|
sl@0
|
78 |
RPhraseAttribsEntry();
|
sl@0
|
79 |
RPhraseAttribsEntry(CCharFormatLayer* aCharFormat, TInt aLength = 0); // Sets iLen to zero - empty text phrase
|
sl@0
|
80 |
RPhraseAttribsEntry(CPicturePhrase* aPicturePhrase); // Sets iLen to EPictureIndicator
|
sl@0
|
81 |
inline RPhraseAttribsEntry(const RPhraseAttribsEntry& aPhrase);
|
sl@0
|
82 |
void Discard();
|
sl@0
|
83 |
inline RPhraseAttribsEntry& operator=(const RPhraseAttribsEntry& aPhrase);
|
sl@0
|
84 |
//
|
sl@0
|
85 |
// Persist
|
sl@0
|
86 |
void ExternalizeL(RWriteStream& aStream) const;
|
sl@0
|
87 |
//
|
sl@0
|
88 |
// General enquiry
|
sl@0
|
89 |
inline TBool IsPicturePhrase() const;
|
sl@0
|
90 |
TBool IsIdentical(const RPhraseAttribsEntry& aPhrase) const;
|
sl@0
|
91 |
//
|
sl@0
|
92 |
// Getters
|
sl@0
|
93 |
inline TInt Length() const;
|
sl@0
|
94 |
CCharFormatLayer* CharFormat() const;
|
sl@0
|
95 |
CCharFormatLayer* ReleaseCharFormatLayerOwnership();
|
sl@0
|
96 |
TInt GetPictureSizeInTwips(TSize& aSize) const;
|
sl@0
|
97 |
TPictureHeader* PictureHeaderPtr() const;
|
sl@0
|
98 |
TPictureHeader PictureHeader() const;
|
sl@0
|
99 |
const CPicture* PictureHandleL(const MPictureFactory* aFactory,
|
sl@0
|
100 |
const MRichTextStoreResolver* aResolver,
|
sl@0
|
101 |
TInt aPos,
|
sl@0
|
102 |
MLayDoc::TForcePictureLoad aForceLoad) const;
|
sl@0
|
103 |
//
|
sl@0
|
104 |
// Setters
|
sl@0
|
105 |
void AdjustLength(TInt aIncrement);
|
sl@0
|
106 |
void SetLength(TInt aLength);
|
sl@0
|
107 |
private:
|
sl@0
|
108 |
void AssignAndRelease(const RPhraseAttribsEntry& aPhrase);
|
sl@0
|
109 |
private:
|
sl@0
|
110 |
TInt iLength; // No. of characters covered by this phrase
|
sl@0
|
111 |
union
|
sl@0
|
112 |
{
|
sl@0
|
113 |
CCharFormatLayer* iCharFormat; // *OWNED* format of this text phrase
|
sl@0
|
114 |
CPicturePhrase* iPicturePhrase; // *OWNED* pointer to picture phrase information
|
sl@0
|
115 |
};
|
sl@0
|
116 |
__DECLARE_TEST;
|
sl@0
|
117 |
};
|
sl@0
|
118 |
|
sl@0
|
119 |
|
sl@0
|
120 |
NONSHARABLE_CLASS(CPicturePhrase) : public CBase
|
sl@0
|
121 |
/**
|
sl@0
|
122 |
A low-level class providing a pointer to the character format layer for this picture phrase,
|
sl@0
|
123 |
and a pointer to a picture itself. (Which may be expressed in its persistent form).
|
sl@0
|
124 |
@internalComponent
|
sl@0
|
125 |
*/
|
sl@0
|
126 |
{
|
sl@0
|
127 |
public:
|
sl@0
|
128 |
static CPicturePhrase* NewL(const TPictureHeader& aPicHdr,
|
sl@0
|
129 |
TCharFormatX& aFormat,
|
sl@0
|
130 |
TCharFormatXMask& aMask,
|
sl@0
|
131 |
CCharFormatLayer* aCharBase,
|
sl@0
|
132 |
TBool& aPictureOwnershipTaken);
|
sl@0
|
133 |
|
sl@0
|
134 |
static CPicturePhrase* NewL(const TPictureHeader& aPicHdr,
|
sl@0
|
135 |
CCharFormatLayer* aCharLayer,
|
sl@0
|
136 |
TBool& aPictureOwnershipTaken);
|
sl@0
|
137 |
~CPicturePhrase();
|
sl@0
|
138 |
protected:
|
sl@0
|
139 |
CPicturePhrase(const TPictureHeader& aPicHdr,TBool& aPictureOwnershipTaken);
|
sl@0
|
140 |
CPicturePhrase(const TPictureHeader& aPicHdr, CCharFormatLayer* aCharLayer,TBool& aPictureOwnershipTaken);
|
sl@0
|
141 |
void ConstructL(TCharFormatX& aFormat, TCharFormatXMask& aMask, CCharFormatLayer* aCharBase);
|
sl@0
|
142 |
public:
|
sl@0
|
143 |
CCharFormatLayer* iCharFormat;
|
sl@0
|
144 |
TPictureHeader iPicHdr;
|
sl@0
|
145 |
};
|
sl@0
|
146 |
|
sl@0
|
147 |
|
sl@0
|
148 |
class TParaAttribsEntry
|
sl@0
|
149 |
/**
|
sl@0
|
150 |
Records the length of a paragraph (no. of characters).
|
sl@0
|
151 |
and references a CParaAttributes.
|
sl@0
|
152 |
@internalComponent
|
sl@0
|
153 |
*/
|
sl@0
|
154 |
{
|
sl@0
|
155 |
public:
|
sl@0
|
156 |
TParaAttribsEntry();
|
sl@0
|
157 |
TParaAttribsEntry(TInt aLength, CParaAttribs* aParaAttribs);
|
sl@0
|
158 |
public:
|
sl@0
|
159 |
TInt iLength; // Number of characters in the paragraph (paragraph delimiter inclusive).
|
sl@0
|
160 |
CParaAttribs* iParaAttribs; // Only references this, does not own it.
|
sl@0
|
161 |
};
|
sl@0
|
162 |
|
sl@0
|
163 |
|
sl@0
|
164 |
class TCurrentIndexRecords
|
sl@0
|
165 |
/**
|
sl@0
|
166 |
Packages current phrase & para records.
|
sl@0
|
167 |
@internalComponent
|
sl@0
|
168 |
*/
|
sl@0
|
169 |
{
|
sl@0
|
170 |
public:
|
sl@0
|
171 |
TCurrentIndexRecords();
|
sl@0
|
172 |
public:
|
sl@0
|
173 |
TParaAttribsEntry* iParaEntry;
|
sl@0
|
174 |
CParaAttribs* iParaAttribs;
|
sl@0
|
175 |
RPhraseAttribsEntry* iPhrase; // May be NULL.
|
sl@0
|
176 |
};
|
sl@0
|
177 |
|
sl@0
|
178 |
|
sl@0
|
179 |
|
sl@0
|
180 |
class TLogicalPosition
|
sl@0
|
181 |
/**
|
sl@0
|
182 |
Locates the current cursor position within all aspects of the index.
|
sl@0
|
183 |
@internalComponent
|
sl@0
|
184 |
*/
|
sl@0
|
185 |
{
|
sl@0
|
186 |
public:
|
sl@0
|
187 |
TLogicalPosition();
|
sl@0
|
188 |
void Clear();
|
sl@0
|
189 |
public:
|
sl@0
|
190 |
TInt iDocPos; // Absolute document position.
|
sl@0
|
191 |
TInt iParaElement; // paragraph index
|
sl@0
|
192 |
TInt iParaElementOffset; // position from start of paragraph
|
sl@0
|
193 |
TInt iParaBasePhraseElement; // index of the first phrase in the paragraph
|
sl@0
|
194 |
TInt iPhraseElement;
|
sl@0
|
195 |
TInt iPhraseElementOffset;
|
sl@0
|
196 |
};
|
sl@0
|
197 |
|
sl@0
|
198 |
|
sl@0
|
199 |
|
sl@0
|
200 |
NONSHARABLE_CLASS(CParaAttribs) : public CBase
|
sl@0
|
201 |
/**
|
sl@0
|
202 |
Describes the attributes that apply to the paragraph.
|
sl@0
|
203 |
*owns* an iParaFormat(Layer), and *owns* an iPhraseAttribsIndex
|
sl@0
|
204 |
or charFormatLayer.
|
sl@0
|
205 |
@internalComponent
|
sl@0
|
206 |
*/
|
sl@0
|
207 |
{
|
sl@0
|
208 |
public:
|
sl@0
|
209 |
enum TParaRefCount {EPrimeNonSharedCount, EPrimeSharedCount};
|
sl@0
|
210 |
enum {EPhraseIxGranularity = 1};
|
sl@0
|
211 |
public:
|
sl@0
|
212 |
// Create a CParaAttribs with constant character formatting.
|
sl@0
|
213 |
static CParaAttribs* NewL(const CParaFormatLayer* aParaLayer, const CCharFormatLayer* aCharLayer);
|
sl@0
|
214 |
// Create a CParaAttribs with specific character formatting.
|
sl@0
|
215 |
static CParaAttribs* NewL(const CParaFormatLayer* aParaLayer);
|
sl@0
|
216 |
static CParaAttribs* NewL(const CParaAttribs* aParaAttribs);
|
sl@0
|
217 |
void Release();
|
sl@0
|
218 |
void Release(TInt aCount);
|
sl@0
|
219 |
//
|
sl@0
|
220 |
// Utility functions
|
sl@0
|
221 |
inline TBool IsShared() const;
|
sl@0
|
222 |
TInt PhraseCount() const;
|
sl@0
|
223 |
protected:
|
sl@0
|
224 |
CParaAttribs();
|
sl@0
|
225 |
~CParaAttribs();
|
sl@0
|
226 |
CParaAttribs* CopyParaFormatL();
|
sl@0
|
227 |
private:
|
sl@0
|
228 |
public:
|
sl@0
|
229 |
TDblQueLink link;
|
sl@0
|
230 |
TInt iRefCount; // Indicates re-use of this.
|
sl@0
|
231 |
CParaFormatLayer* iParaFormat;
|
sl@0
|
232 |
union
|
sl@0
|
233 |
{
|
sl@0
|
234 |
CCharFormatLayer* iCharFormat; // iRefCount>0 - a single shared phrase - constant char format.
|
sl@0
|
235 |
TInt iPhraseCount; // iRefCount==0 - the number of phrases in this para.
|
sl@0
|
236 |
};
|
sl@0
|
237 |
};
|
sl@0
|
238 |
|
sl@0
|
239 |
|
sl@0
|
240 |
//
|
sl@0
|
241 |
|
sl@0
|
242 |
class TRtPasteContext
|
sl@0
|
243 |
/**
|
sl@0
|
244 |
Provides the context for pasting of pictures from a clipboard.
|
sl@0
|
245 |
@internalComponent
|
sl@0
|
246 |
*/
|
sl@0
|
247 |
{
|
sl@0
|
248 |
public:
|
sl@0
|
249 |
TRtPasteContext(const CStreamStore* aStore, const CParaFormatLayer* aGlobalParaLayer, const CCharFormatLayer* aGlobalCharLayer, const CStyleList* aStyleList);
|
sl@0
|
250 |
public:
|
sl@0
|
251 |
const CStreamStore* iStore; // the clipboard store
|
sl@0
|
252 |
const CParaFormatLayer* iGlobalParaLayer; // the global para layer of the target text document
|
sl@0
|
253 |
const CCharFormatLayer* iGlobalCharLayer; // the global char layer of the target text document
|
sl@0
|
254 |
const CStyleList* iStyleList; // style list is present
|
sl@0
|
255 |
TBool iParagraphStylesFlag; // ETrue indicates presence of inline style references in index data
|
sl@0
|
256 |
TBool iIncompleteParaFlag; // ETrue indicates the pasted text fragment has no final para delimiter
|
sl@0
|
257 |
TBool iApplyFormatToLastFlag; // ETrue indicates that para format should be applied to last text fragment
|
sl@0
|
258 |
TLogicalPosition iPastePos; // the character position at which the text is to be pasted
|
sl@0
|
259 |
TInt iParasPasted; // the number of paragraphs successfully pasted
|
sl@0
|
260 |
TInt iStylePasteMode;
|
sl@0
|
261 |
};
|
sl@0
|
262 |
|
sl@0
|
263 |
|
sl@0
|
264 |
|
sl@0
|
265 |
class TIndexDeleteInfo
|
sl@0
|
266 |
/**
|
sl@0
|
267 |
Contains information pertaining to an index delete operation.
|
sl@0
|
268 |
Carries between a SetForDeleteL and a DeleteNow method call.
|
sl@0
|
269 |
@internalComponent
|
sl@0
|
270 |
*/
|
sl@0
|
271 |
{
|
sl@0
|
272 |
public:
|
sl@0
|
273 |
enum TDeleteType
|
sl@0
|
274 |
{
|
sl@0
|
275 |
EDeleteFromParagraph,
|
sl@0
|
276 |
EDeleteParagraph,
|
sl@0
|
277 |
ENonspecificDelete
|
sl@0
|
278 |
};
|
sl@0
|
279 |
public:
|
sl@0
|
280 |
TInt iStartPara;
|
sl@0
|
281 |
TInt iEndPara;
|
sl@0
|
282 |
TLogicalPosition iDeletePos;
|
sl@0
|
283 |
TInt iDeleteLength;
|
sl@0
|
284 |
TDeleteType iDeleteType;
|
sl@0
|
285 |
};
|
sl@0
|
286 |
|
sl@0
|
287 |
|
sl@0
|
288 |
class TRichTextMapEntry
|
sl@0
|
289 |
/**
|
sl@0
|
290 |
A utility class for patching references to persisted shared objects
|
sl@0
|
291 |
of the specified type.
|
sl@0
|
292 |
Code at the bottom of the header
|
sl@0
|
293 |
@internalComponent
|
sl@0
|
294 |
*/
|
sl@0
|
295 |
{
|
sl@0
|
296 |
public:
|
sl@0
|
297 |
TRichTextMapEntry(TInt aRefNumber, TAny* aItem);
|
sl@0
|
298 |
TRichTextMapEntry(TAny* aS, TAny* aT);
|
sl@0
|
299 |
public:
|
sl@0
|
300 |
union
|
sl@0
|
301 |
{// The source item - a reference to a persistent one, or the in-memory original.
|
sl@0
|
302 |
TInt iRefNumber;
|
sl@0
|
303 |
TAny* iS; // only used in appending one rich text to another
|
sl@0
|
304 |
};
|
sl@0
|
305 |
TAny* iT; // the newly created/restored item - the target
|
sl@0
|
306 |
};
|
sl@0
|
307 |
|
sl@0
|
308 |
|
sl@0
|
309 |
template <class T>
|
sl@0
|
310 |
class CRichTextStoreMap : public CBase
|
sl@0
|
311 |
/**
|
sl@0
|
312 |
//
|
sl@0
|
313 |
A utility class for patching references to persisted shared objects
|
sl@0
|
314 |
of the specified type.
|
sl@0
|
315 |
Code at the bottom of the header
|
sl@0
|
316 |
Used for clipboarding to i) patch references to paragraph styles
|
sl@0
|
317 |
ii) patch references to shared paragraph formats
|
sl@0
|
318 |
and also used in the appending of one rich text to another.
|
sl@0
|
319 |
@internalComponent
|
sl@0
|
320 |
*/
|
sl@0
|
321 |
{
|
sl@0
|
322 |
public:
|
sl@0
|
323 |
static CRichTextStoreMap* NewLC(TInt aMaximumCapacity);
|
sl@0
|
324 |
~CRichTextStoreMap();
|
sl@0
|
325 |
//
|
sl@0
|
326 |
void Bind(TInt aRefNumber, T* aItem);
|
sl@0
|
327 |
void Bind(T* aS, T* aT);
|
sl@0
|
328 |
//
|
sl@0
|
329 |
T* Item(TInt aRefNo)const;
|
sl@0
|
330 |
T* Item(const T* aS)const;
|
sl@0
|
331 |
inline const TRichTextMapEntry& At(TInt aIndex)const;
|
sl@0
|
332 |
//
|
sl@0
|
333 |
inline TInt Count()const;
|
sl@0
|
334 |
//
|
sl@0
|
335 |
void __DbgTestInvariant()const;
|
sl@0
|
336 |
private:
|
sl@0
|
337 |
void ConstructL(TInt aMaximumCapacity);
|
sl@0
|
338 |
private:
|
sl@0
|
339 |
CArrayFixFlat<TRichTextMapEntry>* iMap;
|
sl@0
|
340 |
public:
|
sl@0
|
341 |
TInt iCapacity;
|
sl@0
|
342 |
};
|
sl@0
|
343 |
|
sl@0
|
344 |
|
sl@0
|
345 |
class TGlobalLayerInfoAppend
|
sl@0
|
346 |
/**
|
sl@0
|
347 |
@internalComponent
|
sl@0
|
348 |
*/
|
sl@0
|
349 |
{
|
sl@0
|
350 |
public:
|
sl@0
|
351 |
TGlobalLayerInfoAppend();
|
sl@0
|
352 |
TGlobalLayerInfoAppend(const CParaFormatLayer* aAggParaFormatLayer, const CCharFormatLayer* aAggCharFormatLayer,
|
sl@0
|
353 |
const CParaFormatLayer* aComParaFormatLayer, const CCharFormatLayer* aComCharFormatLayer);
|
sl@0
|
354 |
public:
|
sl@0
|
355 |
const CParaFormatLayer* iAggParaFormatLayer;
|
sl@0
|
356 |
const CCharFormatLayer* iAggCharFormatLayer;
|
sl@0
|
357 |
const CParaFormatLayer* iComParaFormatLayer;
|
sl@0
|
358 |
const CCharFormatLayer* iComCharFormatLayer;
|
sl@0
|
359 |
};
|
sl@0
|
360 |
|
sl@0
|
361 |
const TInt KSingleParaGranularity = 1;
|
sl@0
|
362 |
const TInt KMultiParaGranularity = 16;
|
sl@0
|
363 |
const TInt KSmallPhraseGranularity = 5;
|
sl@0
|
364 |
const TInt KLargePhraseGranularity = 16;
|
sl@0
|
365 |
const TUint32 KPhraseSplit = 0x01;
|
sl@0
|
366 |
const TUint32 KSpecificMarkupInternalized = 0x04;
|
sl@0
|
367 |
|
sl@0
|
368 |
/**
|
sl@0
|
369 |
@internalComponent
|
sl@0
|
370 |
*/
|
sl@0
|
371 |
typedef CRichTextStoreMap<CParagraphStyle> CStyleMap;
|
sl@0
|
372 |
typedef CRichTextStoreMap<CParaAttribs> CParaAttribsMap;
|
sl@0
|
373 |
|
sl@0
|
374 |
/** Stores the paragraph and character formatting information for CRichText.
|
sl@0
|
375 |
|
sl@0
|
376 |
iParaIx stores the paragraph formatting, one entry per paragraph. Paragraphs
|
sl@0
|
377 |
are pieces of text delimited by the Unicode Paragraph Delimiter character
|
sl@0
|
378 |
U+2029.
|
sl@0
|
379 |
|
sl@0
|
380 |
iPhraseIx stores the character formatting.
|
sl@0
|
381 |
|
sl@0
|
382 |
Paragraph formatting information can be shared or not shared between
|
sl@0
|
383 |
paragraphs. Sharing is only permitted for paragraphs that do not have any
|
sl@0
|
384 |
character formatting applied to their text.
|
sl@0
|
385 |
|
sl@0
|
386 |
A phrase is a run of consistently formatted characters. A phrase may only
|
sl@0
|
387 |
contain a paragraph delimiter in its last character. In other words, phrases
|
sl@0
|
388 |
are not permitted to span paragraph boundaries.
|
sl@0
|
389 |
|
sl@0
|
390 |
iPhraseIx only stores formatting for the non-shared paragraphs. Therefore
|
sl@0
|
391 |
adding up the lengths of all the phrases in iPhraseIx will yield the sum of the
|
sl@0
|
392 |
non-shared paragraphs stored in iParaIx.
|
sl@0
|
393 |
|
sl@0
|
394 |
Note that the "nominal" paragraph delimiter at the end of the text which is not
|
sl@0
|
395 |
stored by CRichText is covered by both character and paragraph formatting. So
|
sl@0
|
396 |
the length of the final paragraph and final phrase (if appropriate) includes
|
sl@0
|
397 |
this character.
|
sl@0
|
398 |
|
sl@0
|
399 |
@internalComponent
|
sl@0
|
400 |
*/
|
sl@0
|
401 |
class CRichTextIndex : public CBase
|
sl@0
|
402 |
{
|
sl@0
|
403 |
public:
|
sl@0
|
404 |
static CRichTextIndex* NewL(const CParaFormatLayer* aGlobalParaLayer, const CCharFormatLayer* aGlobalCharLayer,
|
sl@0
|
405 |
const CRichText& aText,
|
sl@0
|
406 |
TInt aParaGran,TInt aPhraseGran);
|
sl@0
|
407 |
static CRichTextIndex* NewL(const CStreamStore& aStore, TStreamId aId,
|
sl@0
|
408 |
const CParaFormatLayer* aGlobalParaLayer,
|
sl@0
|
409 |
const CCharFormatLayer* aGlobalCharLayer,
|
sl@0
|
410 |
const CRichText& aText);
|
sl@0
|
411 |
~CRichTextIndex();
|
sl@0
|
412 |
//
|
sl@0
|
413 |
// Store/Restore functions - Deferred loading of pictures
|
sl@0
|
414 |
TStreamId StoreMarkupL(CStreamStore& aStore, const CStyleList* aStyleList) const;
|
sl@0
|
415 |
//
|
sl@0
|
416 |
void RestoreL(const CStreamStore& aStore, TStreamId aId,
|
sl@0
|
417 |
const CParaFormatLayer* aGlobalParaLayer, const CCharFormatLayer* aGlobalCharLayer,
|
sl@0
|
418 |
const CStyleList* aStyleList);
|
sl@0
|
419 |
//
|
sl@0
|
420 |
void StorePicturesL(CStreamStore& aStore, CStoreMap& aMap) const;
|
sl@0
|
421 |
void StorePicturesL(CStreamStore& aStore, CStoreMap& aMap, TInt aPos, TInt aLength) const;
|
sl@0
|
422 |
void DetachFromStoreL(CPicture::TDetach aDegree, TInt aPos, TInt aLength);
|
sl@0
|
423 |
void ExternalizeL(RWriteStream& aStream) const;
|
sl@0
|
424 |
void InternalizeL(RReadStream& aStream, const CParaFormatLayer* aGlobalParaLayer, const CCharFormatLayer* aGlobalCharLayer,
|
sl@0
|
425 |
const CStyleList* aStyleList);
|
sl@0
|
426 |
//
|
sl@0
|
427 |
// 3n Persist functions
|
sl@0
|
428 |
TBool HasMarkupData(const CFormatLayer* aGlobalParaFormatLayer) const;
|
sl@0
|
429 |
TPictureHeader PictureHeader(TInt aPos) const;
|
sl@0
|
430 |
TPictureHeader* PictureHeaderPtr(TInt aPos);
|
sl@0
|
431 |
//
|
sl@0
|
432 |
// Undo/CutPaste
|
sl@0
|
433 |
void CopyToStreamL(RWriteStream& aStream, TInt aPos, TInt aLength, TBool aCopyStyles) const;
|
sl@0
|
434 |
void PasteFromStreamL(const CStreamStore& aStore, RReadStream& aStream, TInt aPos, CParagraphStyle::TStylePasteMode aStylePasteMode, const CParaFormatLayer* aGlobalParaLayer, const CCharFormatLayer* aGlobalCharLayer);
|
sl@0
|
435 |
//
|
sl@0
|
436 |
// Content modifier functions
|
sl@0
|
437 |
void Reset(const CParaFormatLayer& aNormalParagraphStyle);
|
sl@0
|
438 |
void InsertL(TInt aPos, const TDesC& aBuf, const CParaFormatLayer& aGlobalParaFormatLayer);
|
sl@0
|
439 |
void InsertL(TInt aPos, const TPictureHeader& aPicHdr, TBool& aPictureOwnershipTaken);
|
sl@0
|
440 |
void SetForDeleteL(TIndexDeleteInfo& aInfo, TInt aPos, TInt aLength);
|
sl@0
|
441 |
TBool DeleteNow(TIndexDeleteInfo& aInfo);
|
sl@0
|
442 |
void DeleteFromParagraph(TInt aPos, TInt aLength);
|
sl@0
|
443 |
TBool DeleteParagraph(TInt aPos, TInt aLength);
|
sl@0
|
444 |
void Normalize(TInt aPos);
|
sl@0
|
445 |
//
|
sl@0
|
446 |
// Insert a new paragraph at position aPos, based on the 'Normal' global defaults.
|
sl@0
|
447 |
// Any explicit paragraph/character formatting is carried forward into this paragraph.
|
sl@0
|
448 |
void InsertParagraphL(TInt aPos, const CParaFormatLayer& aGlobalParaFormatLayer);
|
sl@0
|
449 |
//
|
sl@0
|
450 |
// Special behaviour format modifier functions.
|
sl@0
|
451 |
TBool InsertCharFormatIsActive();
|
sl@0
|
452 |
void SetInsertCharFormatL(const TCharFormatX& aFormat, const TCharFormatXMask& aMask, TInt aPos);
|
sl@0
|
453 |
void NewInsertCharFormatL(const TCharFormatX& aFormat,
|
sl@0
|
454 |
const TCharFormatXMask& aMask, TInt aPos);
|
sl@0
|
455 |
void UpdateInsertCharFormatL(const TCharFormatX& aFormat,
|
sl@0
|
456 |
const TCharFormatXMask& aMask);
|
sl@0
|
457 |
CCharFormatLayer* GetCurrentInsertCharFormat();
|
sl@0
|
458 |
void CancelInsertCharFormat();
|
sl@0
|
459 |
TBool DelSetInsertCharFormatL(TInt aPos, TInt aLength);
|
sl@0
|
460 |
//
|
sl@0
|
461 |
// Laydoc interface support
|
sl@0
|
462 |
void GetParagraphFormatL(CParaFormat* aFormat,TInt aPos) const;
|
sl@0
|
463 |
TInt GetChars(TCharFormatX& aFormat,TInt aPos) const;
|
sl@0
|
464 |
TInt GetPictureSizeInTwips(TSize& aSize, TInt aPos) const;
|
sl@0
|
465 |
CPicture* PictureHandleL(TInt aPos, MLayDoc::TForcePictureLoad aForceLoad) const;
|
sl@0
|
466 |
//
|
sl@0
|
467 |
// FormatText interface support
|
sl@0
|
468 |
void GetParaFormatL(CParaFormat* aFormat, TParaFormatMask& aUndeterminedMask, TInt aPos, TInt aLength,
|
sl@0
|
469 |
CParaFormat::TParaFormatGetMode aMode) const;
|
sl@0
|
470 |
void ApplyParaFormatL(const CParaFormat* aFormat, const TParaFormatMask& aMask, TInt aPos, TInt aLength);
|
sl@0
|
471 |
void GetCharFormat(TCharFormatX& aFormat, TCharFormatXMask& aMask,TInt aPos, TInt aLength) const;
|
sl@0
|
472 |
void ApplyCharFormatL(const TCharFormatX& aFormat, const TCharFormatXMask& aMask, TInt aPos, TInt aLength, TBool aRemoveSpecific = EFalse);
|
sl@0
|
473 |
void RemoveSpecificCharFormatL(TInt aPos, TInt aLength);
|
sl@0
|
474 |
void RemoveSpecificParaFormatL(TInt aPos, TInt aLength);
|
sl@0
|
475 |
//
|
sl@0
|
476 |
//
|
sl@0
|
477 |
void GetSpecificCharFormat(TCharFormatX& aFormat, TCharFormatXMask& aMask, TInt aPos) const;
|
sl@0
|
478 |
void GetSpecificCharFormatDirection(TCharFormatX& aFormat, TCharFormatXMask& aMask,
|
sl@0
|
479 |
TInt aPos, TBool aGetLeft) const;
|
sl@0
|
480 |
//
|
sl@0
|
481 |
// Paragraph style implementation
|
sl@0
|
482 |
void ApplyParagraphStyleL(const CParagraphStyle& aStyle, TInt aPos, TInt aLength, const CCharFormatLayer* aCharStyleNormal, CParagraphStyle::TApplyParaStyleMode aMode);
|
sl@0
|
483 |
void NotifyStyleChangedL(const CParagraphStyle* aTo, const CParagraphStyle* aFrom, const CParaFormatLayer& aGlobalParaFormatLayer, const CCharFormatLayer& aGlobalCharFormatLayer);
|
sl@0
|
484 |
const CParaFormatLayer* ParagraphStyle(TBool& aStylesChangesOverRange, TInt aPos, TInt aLength) const;
|
sl@0
|
485 |
//
|
sl@0
|
486 |
// Utility functions
|
sl@0
|
487 |
inline TInt ParagraphCount() const;
|
sl@0
|
488 |
TInt CharPosOfParagraph(TInt& aLength, TInt aParaOffset) const;
|
sl@0
|
489 |
TInt ParagraphNumberForPos(TInt& aPos) const;
|
sl@0
|
490 |
inline void SetSpecificMarkupInternalized(TBool aBool);
|
sl@0
|
491 |
inline TBool SpecificMarkupInternalized() const;
|
sl@0
|
492 |
void DocumentChanged()const;
|
sl@0
|
493 |
//
|
sl@0
|
494 |
// Speciality functions
|
sl@0
|
495 |
void AppendTakingSolePictureOwnershipL(const CRichTextIndex* aSource, const TGlobalLayerInfoAppend& aGlobalLayerInfo);
|
sl@0
|
496 |
void AppendParagraphL(const CParaFormatLayer* aGlobalParaFormatLayer, const CCharFormatLayer* aGlobalCharFormatLayer,
|
sl@0
|
497 |
TInt aReplicas);
|
sl@0
|
498 |
TInt SharedParaCount(const CRichTextIndex* aSource) const;
|
sl@0
|
499 |
void GetSpecificParagraphFormatL(CParaFormat* aFormat,
|
sl@0
|
500 |
TParaFormatMask& aMask,
|
sl@0
|
501 |
TInt aPos) const;
|
sl@0
|
502 |
private:
|
sl@0
|
503 |
enum TScanToPositionMode {EScanToPositionMatchLeft, EScanToPositionAbsolute};
|
sl@0
|
504 |
enum {EInsertCharFormatReset = -1};
|
sl@0
|
505 |
enum TPositionOrPhrase {EPositionOnly, EFollowingPhrase};
|
sl@0
|
506 |
private:
|
sl@0
|
507 |
CRichTextIndex(const CRichText& aText);
|
sl@0
|
508 |
void ConstructL(const CParaFormatLayer* aGlobalParaFormat, const CCharFormatLayer* aGlobalCharFormat, TInt aParaGran, TInt aPhraseGran);
|
sl@0
|
509 |
//
|
sl@0
|
510 |
// Persistence/Copy,Paste
|
sl@0
|
511 |
void InternalizeRtiHeaderL(RReadStream& aStream, TRtPasteContext& aContext);
|
sl@0
|
512 |
void ExternalizeRtiHeaderL(RWriteStream& aStream, const TLogicalPosition& aEnd, const CStyleList* aStyleList) const;
|
sl@0
|
513 |
void ExternalizeReferencedStylesL(RWriteStream& aStream, const TLogicalPosition& aStart, const TLogicalPosition& aEnd) const;
|
sl@0
|
514 |
void InternalizeSharedFormatsL(RReadStream& aStream, const TRtPasteContext& aContext);
|
sl@0
|
515 |
void ExternalizeSharedFormatsL(RWriteStream& aStream, const TLogicalPosition& aStart, const TLogicalPosition& aEnd, const CStyleList* aStyleList) const;
|
sl@0
|
516 |
void InternalizeParaIxL(RReadStream& aStream, const TRtPasteContext& aContext);
|
sl@0
|
517 |
void ExternalizeParagraphFormatL(RWriteStream& aStream, const CParaFormatLayer& aSpecificParaFormatLayer, const CStyleList* aStyleList) const;
|
sl@0
|
518 |
CParaFormatLayer* InternalizeParagraphFormatL(RReadStream& aStream, const TRtPasteContext& aContext);
|
sl@0
|
519 |
CParaFormatLayer* PasteParagraphFormatL(RReadStream& aStream, const TRtPasteContext& aContext, CStyleMap* styleMap);
|
sl@0
|
520 |
RPhraseAttribsEntry* ExternalizeParaIxL(RWriteStream& aStream, const TLogicalPosition& aStart,
|
sl@0
|
521 |
const TLogicalPosition& aEnd, const CStyleList* aStyleList) const;
|
sl@0
|
522 |
void InternalizePhraseIxL(RReadStream& aStream, const CCharFormatLayer* aGlobalCharFormat);
|
sl@0
|
523 |
void ExternalizePhraseIxL(RWriteStream& aStream) const;
|
sl@0
|
524 |
void ExternalizePhraseIxL(RWriteStream& aStream,
|
sl@0
|
525 |
const TLogicalPosition& aStartPos,
|
sl@0
|
526 |
TLogicalPosition& aEndPos,
|
sl@0
|
527 |
const RPhraseAttribsEntry* aVirtualTrailingText) const;
|
sl@0
|
528 |
inline void ExternalizePhraseCountL(RWriteStream& aStream, TInt aPhraseCount) const;
|
sl@0
|
529 |
void ExternalizePhrasesL(RWriteStream& aStream, TInt aStart, TInt aPhraseCount, const RPhraseAttribsEntry* aVirtualPhrase = NULL) const;
|
sl@0
|
530 |
TInt MarkStyleRegister(TDes8& aBuf, TInt aStartPara, TInt aEndPara) const;
|
sl@0
|
531 |
TInt MarkRegister(TDes8& aBuf, TInt aStartPara, TInt aEndPara) const;
|
sl@0
|
532 |
void GenerateAllPhraseLinksL();
|
sl@0
|
533 |
void GeneratePhraseLink(CCharFormatLayer* aPhraseCharFormatLayer, const CParaFormatLayer* aBase);
|
sl@0
|
534 |
void ExternalizeItemsPresentInStyleRegisterL(RWriteStream& aStream, TInt aRefStyleCount, const TDes8& aBuf) const;
|
sl@0
|
535 |
void ExternalizeItemsPresentInRegisterL(RWriteStream& aStream, TInt aParaCount, const TDes8& aBuf, const CStyleList* aStyleList) const;
|
sl@0
|
536 |
CParaAttribs* SharedParaAttribs(TUint8 aOrdinal);
|
sl@0
|
537 |
TUint8 RefNum(const CParaAttribs* aParaAttribs) const;
|
sl@0
|
538 |
//
|
sl@0
|
539 |
// Copy,Paste
|
sl@0
|
540 |
void PasteStylesL(RReadStream& aStream, CStyleMap& aMap, const TRtPasteContext& aContext);
|
sl@0
|
541 |
void PasteSharedFormatsL(RReadStream& aStream, CParaAttribsMap& aMap, const TRtPasteContext& aContext, CStyleMap* aStyleMap);
|
sl@0
|
542 |
void ImposeCharacterStyleL(CCharFormatLayer** aCharLayer);
|
sl@0
|
543 |
void PasteIxL(RReadStream& aStream, TRtPasteContext& aContext, const CParaAttribsMap& aMap, CStyleMap* aStyleMap/*,CParaAttribs* aSecondReserved*/);
|
sl@0
|
544 |
TInt PasteParaIxL(RReadStream& aStream, TRtPasteContext& aContext, TInt aCompleteParaCount, const CParaAttribsMap& aMap, RPhraseAttribsEntry*& aFirstParaVirtualPhrase, CStyleMap* aStyleMap);
|
sl@0
|
545 |
TParaAttribsEntry DoPasteIntoParaL(RReadStream& aStream, const CParaAttribsMap& aMap, const TRtPasteContext& aContext, CStyleMap* aStyleMap);
|
sl@0
|
546 |
TParaAttribsEntry DoPasteFirstIntoParaL(RReadStream& aStream, const CParaAttribsMap& aMap, const TRtPasteContext& aContext, RPhraseAttribsEntry*& aFirstParaVirtualPhrase, CStyleMap* aStyleMap);
|
sl@0
|
547 |
void DoPasteCleanup(TLogicalPosition& aNormalizePos, CParaAttribs* aReclaimed);
|
sl@0
|
548 |
TTextFragment GetTextFragmentL(RReadStream& aStream);
|
sl@0
|
549 |
void PastePhraseIxL(RReadStream& aStream, TRtPasteContext& aContext, const RPhraseAttribsEntry* aFirstParaVirtualPhrase);
|
sl@0
|
550 |
void DoPastePhraseL(RReadStream& aStream, const TRtPasteContext& aContext, RPhraseAttribsEntry& aPhrase);
|
sl@0
|
551 |
void RbPasteSharedFormatsL(TInt aRet);
|
sl@0
|
552 |
void NormalizeSharedList();
|
sl@0
|
553 |
void RbRemoveInsertedParaAttribsEntries(TInt aFirstParaInsertPos, TInt aInsertedParaCount);
|
sl@0
|
554 |
void RbPasteParaIxL(const TLogicalPosition& aPastePos, TInt aParaCount, TInt aRet);
|
sl@0
|
555 |
void RbPastePhraseIxL(const TLogicalPosition& aPos,TInt aPhraseCount, TInt aRet);
|
sl@0
|
556 |
void RbRemoveInsertedPhraseAttribsEntries(TInt aFirstPhraseInsertPos, TInt aInsertedPhraseCount);
|
sl@0
|
557 |
TUint8 ReadTUint8CountL(RReadStream& aStream) const;
|
sl@0
|
558 |
//
|
sl@0
|
559 |
// General utility
|
sl@0
|
560 |
void DoSoloInsertL(TInt aPos, TInt aLength);
|
sl@0
|
561 |
void ScanToPosition(TInt aCharPos, TScanToPositionMode aMode, TLogicalPosition* aLastUsed=NULL); // Reset the logical position to the passed document position.
|
sl@0
|
562 |
inline TInt PhraseCount() const;
|
sl@0
|
563 |
TBool FirstPhraseOfParagraph() const; // Interrogates current iPos record.
|
sl@0
|
564 |
TInt CurrentPhraseLength() const; // Encapsulates constant/specific character formatting.
|
sl@0
|
565 |
TInt CurrentPhraseOffset() const; // Encapsulates constant/specific character formatting.
|
sl@0
|
566 |
void CheckForUndetermined(const TCharFormatX& aFormatA, const TCharFormatX& aFormatB, TCharFormatXMask& aVaries) const;
|
sl@0
|
567 |
void GetCurrentRecords(TCurrentIndexRecords& aRecord) const;
|
sl@0
|
568 |
void GetPhraseFormat(TCurrentIndexRecords& aCurrent, TCharFormatX& aFormat, TCharFormatXMask& aMask, CCharFormatLayer*& aCharBase) const;
|
sl@0
|
569 |
TInt OwningParagraph(TInt aPos, TLogicalPosition* aLastUsed = NULL) const;
|
sl@0
|
570 |
TBool MergePhrases(TInt aPos);
|
sl@0
|
571 |
TBool MergePhrases(const TLogicalPosition& aPos);
|
sl@0
|
572 |
TBool DeleteInsertCharFormat();
|
sl@0
|
573 |
void ConsolidateAt(TInt aPosition, TPositionOrPhrase aPositionOrPhrase);
|
sl@0
|
574 |
void RemoveFromPhraseIx(TInt aPos, TInt aCount = 1);
|
sl@0
|
575 |
void SplitPhraseL(TInt aSplitPos);
|
sl@0
|
576 |
void SplitPhraseL(TInt aPhraseElement, TInt aPhraseOffset, CParaAttribs* aParaAttribs);
|
sl@0
|
577 |
void DoSplitPhraseL(RPhraseAttribsEntry& aCurrentPhrase, TInt aPhraseOffset, CParaAttribs* aParaAttribs);
|
sl@0
|
578 |
TUint8 SharedParaAttribsEntryCountL() const;
|
sl@0
|
579 |
void ModifySpecificFormatting(CParaFormatLayer& aPl, CCharFormatLayer& aCl, CParagraphStyle::TApplyParaStyleMode aMode);
|
sl@0
|
580 |
//
|
sl@0
|
581 |
// support for applycharformat
|
sl@0
|
582 |
static void ApplyCharFormatCleanup(TAny* aPtr);
|
sl@0
|
583 |
void ApplyCharFormatRollback();
|
sl@0
|
584 |
TInt MergePhrases(TInt aPhrase, RPhraseAttribsEntry& aPhraseAttribs, CParaAttribs& aParaAttribs);
|
sl@0
|
585 |
void SplitPhraseL(TInt aPhrase, TInt anOffset, RPhraseAttribsEntry& aPhraseAttribs, CParaAttribs& aParaAttribs);
|
sl@0
|
586 |
void Share(TParaAttribsEntry& aParaEntry, TInt aPhrase);
|
sl@0
|
587 |
//
|
sl@0
|
588 |
// Specific rollback
|
sl@0
|
589 |
void RbInsertPicture(CParaAttribs* aGoodParaAttribs);
|
sl@0
|
590 |
//
|
sl@0
|
591 |
// General implementation
|
sl@0
|
592 |
void NormalizeNow(const TLogicalPosition& aNormalizePos);
|
sl@0
|
593 |
TBool DeleteParagraphText(TInt& aLength);
|
sl@0
|
594 |
TBool DoDeleteFromParagraph(const TIndexDeleteInfo& aInfo);
|
sl@0
|
595 |
void TidyAfterDelete(const TIndexDeleteInfo& aInfo);
|
sl@0
|
596 |
CParaAttribs* ReserveCellL();
|
sl@0
|
597 |
CParaAttribs* ReserveCellLC();
|
sl@0
|
598 |
void DoNewInsertCharFormatL(const TCharFormatX& aFormat,
|
sl@0
|
599 |
const TCharFormatXMask& aMask, CCharFormatLayer* aBasedOn,
|
sl@0
|
600 |
CParaAttribs* aParaAttribs);
|
sl@0
|
601 |
TInt ParaLengthFromBuffer(TDesC& aBuf) const;
|
sl@0
|
602 |
inline const CStreamStore* ResolvedStreamStore(TInt aPos) const;
|
sl@0
|
603 |
//
|
sl@0
|
604 |
// Agenda functions
|
sl@0
|
605 |
void AppendSharedFormatsL(CParaAttribsMap& aMap, const CRichTextIndex* aSource, const TGlobalLayerInfoAppend& aGlobalLayerInfo);
|
sl@0
|
606 |
void AppendParaIndexL(const CRichTextIndex* aSource, const TGlobalLayerInfoAppend& aGlobalLayerInfo);
|
sl@0
|
607 |
void AppendPhraseIndexL(const CRichTextIndex* aSource, const TGlobalLayerInfoAppend& aGlobalLayerInfo);
|
sl@0
|
608 |
//
|
sl@0
|
609 |
// Shared list management utilities
|
sl@0
|
610 |
CParaAttribs* RequestReclaimShareL(CParaAttribs* aParaAttribs, TParaAttribsEntry* aParaEntry);
|
sl@0
|
611 |
CParaAttribs* RequestShareL(CParaAttribs* aParaAttribs, CCharFormatLayer* aCharFormat = NULL, CParaAttribs* aReservedCell = NULL);
|
sl@0
|
612 |
CParaAttribs* GetParaAttribsL(const CParaFormatLayer* aParaFormat, const CCharFormatLayer* aCharFormat, CParaAttribs* aReservedCell = NULL);
|
sl@0
|
613 |
CParaAttribs* RequestShare(const TLogicalPosition& aLogicalPosition);
|
sl@0
|
614 |
CParaAttribs* GetParaAttribs(const TLogicalPosition& aLogicalPosition);
|
sl@0
|
615 |
CParaAttribs* GetParaAttribs(CParaAttribs* aParaAttribs, CCharFormatLayer& aCharFormatLayer);
|
sl@0
|
616 |
CParaAttribs* FindSharedParaAttribs(const CParaFormatLayer& aParaFormatLayer, const CCharFormatLayer& aCharFormatLayer);
|
sl@0
|
617 |
void RebalanceIndex();
|
sl@0
|
618 |
void SplitParagraphAtPastePosL(TLogicalPosition& aPastePos, TLogicalPosition& aNewPos,
|
sl@0
|
619 |
const CParaFormatLayer& aGlobalParaFormatLayer);
|
sl@0
|
620 |
//
|
sl@0
|
621 |
inline void SetPhraseSplit(TBool aBool);
|
sl@0
|
622 |
inline TBool PhraseSplit() const;
|
sl@0
|
623 |
private:
|
sl@0
|
624 |
const CRichText& iText; // backward reference to owning rich text.
|
sl@0
|
625 |
TUint32 iFlags;
|
sl@0
|
626 |
TInt iPendingNewPhrasePos; // When *INSERTSTATE* is active, this is used to place the zero-length phrase.
|
sl@0
|
627 |
CParaAttribs* iRollbackParaAttribsHandle;
|
sl@0
|
628 |
__MUTABLE TDblQue<CParaAttribs> iSharedParaQueHead;
|
sl@0
|
629 |
__MUTABLE TLogicalPosition iLastUsed;
|
sl@0
|
630 |
CCharFormatLayer* iLastCharacterStyle;
|
sl@0
|
631 |
public:
|
sl@0
|
632 |
CArrayFixSeg<TParaAttribsEntry>* iParaIx; // One entry per paragraph
|
sl@0
|
633 |
CArrayFixSeg<RPhraseAttribsEntry>* iPhraseIx; // One entry per phrase in the rich text
|
sl@0
|
634 |
__MUTABLE TLogicalPosition iPos;
|
sl@0
|
635 |
TInt iPictureCount; // a count of the number of pictures contained by this text
|
sl@0
|
636 |
|
sl@0
|
637 |
__DECLARE_TEST;
|
sl@0
|
638 |
};
|
sl@0
|
639 |
|
sl@0
|
640 |
////////////////////////////////////////
|
sl@0
|
641 |
|
sl@0
|
642 |
template <class T>
|
sl@0
|
643 |
void CRichTextStoreMap<T>::__DbgTestInvariant() const
|
sl@0
|
644 |
// Provides class invariants. Explanations below:
|
sl@0
|
645 |
//
|
sl@0
|
646 |
{
|
sl@0
|
647 |
#ifdef _DEBUG
|
sl@0
|
648 |
TInt count = Count();
|
sl@0
|
649 |
for (TInt ii = 0; ii < count; ii++)
|
sl@0
|
650 |
{
|
sl@0
|
651 |
TInt ref = (*iMap)[ii].iRefNumber;
|
sl@0
|
652 |
__ASSERT_DEBUG(ref > 0, User::Invariant());
|
sl@0
|
653 |
}
|
sl@0
|
654 |
#endif
|
sl@0
|
655 |
}
|
sl@0
|
656 |
|
sl@0
|
657 |
|
sl@0
|
658 |
template <class T>
|
sl@0
|
659 |
CRichTextStoreMap<T>* CRichTextStoreMap<T>::NewLC(TInt aMaximumCapacity)
|
sl@0
|
660 |
// Return a handle to a new instance of this class.
|
sl@0
|
661 |
//
|
sl@0
|
662 |
{
|
sl@0
|
663 |
CRichTextStoreMap* self = new(ELeave) CRichTextStoreMap();
|
sl@0
|
664 |
CleanupStack::PushL(self);
|
sl@0
|
665 |
self->ConstructL(aMaximumCapacity);
|
sl@0
|
666 |
return self;
|
sl@0
|
667 |
}
|
sl@0
|
668 |
|
sl@0
|
669 |
|
sl@0
|
670 |
|
sl@0
|
671 |
template <class T>
|
sl@0
|
672 |
void CRichTextStoreMap<T>::ConstructL(TInt aMaximumCapacity)
|
sl@0
|
673 |
//
|
sl@0
|
674 |
//
|
sl@0
|
675 |
{
|
sl@0
|
676 |
if (aMaximumCapacity > 0)
|
sl@0
|
677 |
{
|
sl@0
|
678 |
iMap = new(ELeave) CArrayFixFlat<TRichTextMapEntry>(aMaximumCapacity);
|
sl@0
|
679 |
iMap->SetReserveL(aMaximumCapacity); // never need to allocate memory
|
sl@0
|
680 |
}
|
sl@0
|
681 |
iCapacity = aMaximumCapacity;
|
sl@0
|
682 |
}
|
sl@0
|
683 |
|
sl@0
|
684 |
|
sl@0
|
685 |
template <class T>
|
sl@0
|
686 |
CRichTextStoreMap<T>::~CRichTextStoreMap()
|
sl@0
|
687 |
//
|
sl@0
|
688 |
//
|
sl@0
|
689 |
{delete iMap;}
|
sl@0
|
690 |
|
sl@0
|
691 |
|
sl@0
|
692 |
template <class T>
|
sl@0
|
693 |
void CRichTextStoreMap<T>::Bind(TInt aRef, T* aT)
|
sl@0
|
694 |
//
|
sl@0
|
695 |
//
|
sl@0
|
696 |
{
|
sl@0
|
697 |
__TEST_INVARIANT;
|
sl@0
|
698 |
__ASSERT_ALWAYS(Count() <= iCapacity, Panic(ESharedFormatsMapOverFlow));
|
sl@0
|
699 |
|
sl@0
|
700 |
TRichTextMapEntry entry(aRef, aT);
|
sl@0
|
701 |
iMap->AppendL(entry); // will not fail: we have reserved the space
|
sl@0
|
702 |
|
sl@0
|
703 |
__TEST_INVARIANT;
|
sl@0
|
704 |
}
|
sl@0
|
705 |
|
sl@0
|
706 |
|
sl@0
|
707 |
|
sl@0
|
708 |
template <class T>
|
sl@0
|
709 |
void CRichTextStoreMap<T>::Bind(T* aS, T* aT)
|
sl@0
|
710 |
//
|
sl@0
|
711 |
//
|
sl@0
|
712 |
{
|
sl@0
|
713 |
__TEST_INVARIANT;
|
sl@0
|
714 |
__ASSERT_ALWAYS(Count() <= iCapacity, Panic(ESharedFormatsMapOverFlow));
|
sl@0
|
715 |
|
sl@0
|
716 |
TRichTextMapEntry entry(aS, aT);
|
sl@0
|
717 |
iMap->AppendL(entry); // will not fail: we have reserved the space
|
sl@0
|
718 |
|
sl@0
|
719 |
__TEST_INVARIANT;
|
sl@0
|
720 |
}
|
sl@0
|
721 |
|
sl@0
|
722 |
|
sl@0
|
723 |
template <class T>
|
sl@0
|
724 |
T* CRichTextStoreMap<T>::Item(TInt aRef) const
|
sl@0
|
725 |
//
|
sl@0
|
726 |
//
|
sl@0
|
727 |
{
|
sl@0
|
728 |
TInt count = Count();
|
sl@0
|
729 |
if (count > 0)
|
sl@0
|
730 |
{
|
sl@0
|
731 |
const TRichTextMapEntry* entry = &(*iMap)[0];
|
sl@0
|
732 |
for (const TRichTextMapEntry* end = entry + count; entry < end; entry++)
|
sl@0
|
733 |
{
|
sl@0
|
734 |
if (entry->iRefNumber == aRef)
|
sl@0
|
735 |
return (T*)entry->iT;
|
sl@0
|
736 |
}
|
sl@0
|
737 |
}
|
sl@0
|
738 |
return NULL;
|
sl@0
|
739 |
}
|
sl@0
|
740 |
|
sl@0
|
741 |
|
sl@0
|
742 |
template <class T>
|
sl@0
|
743 |
T* CRichTextStoreMap<T>::Item(const T* aS) const
|
sl@0
|
744 |
//
|
sl@0
|
745 |
//
|
sl@0
|
746 |
{
|
sl@0
|
747 |
TInt count = Count();
|
sl@0
|
748 |
if (count > 0)
|
sl@0
|
749 |
{
|
sl@0
|
750 |
const TRichTextMapEntry* entry = &(*iMap)[0];
|
sl@0
|
751 |
for (const TRichTextMapEntry* end = entry + count; entry < end; entry++)
|
sl@0
|
752 |
{
|
sl@0
|
753 |
if (entry->iS == (TAny*)aS)
|
sl@0
|
754 |
return (T*)entry->iT;
|
sl@0
|
755 |
}
|
sl@0
|
756 |
}
|
sl@0
|
757 |
return NULL;
|
sl@0
|
758 |
}
|
sl@0
|
759 |
|
sl@0
|
760 |
|
sl@0
|
761 |
#include "TXTINDEX.INL"
|
sl@0
|
762 |
|
sl@0
|
763 |
|
sl@0
|
764 |
#endif
|