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 <gdi.h>
|
sl@0
|
23 |
#include <s32stor.h>
|
sl@0
|
24 |
#include "TXTFMLYR.H"
|
sl@0
|
25 |
#include "TXTETEXT.H"
|
sl@0
|
26 |
#include "TXTLAYDC.H"
|
sl@0
|
27 |
#include "TXTSTYLE.H"
|
sl@0
|
28 |
#include "TXTINDEX.H"
|
sl@0
|
29 |
|
sl@0
|
30 |
#include "OstTraceDefinitions.h"
|
sl@0
|
31 |
#ifdef OST_TRACE_COMPILER_IN_USE
|
sl@0
|
32 |
#include "TXTINDEXTraces.h"
|
sl@0
|
33 |
#endif
|
sl@0
|
34 |
|
sl@0
|
35 |
#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
|
sl@0
|
36 |
#include "TXTFMLYR_INTERNAL.H"
|
sl@0
|
37 |
#include "TXTSTYLE_INTERNAL.H"
|
sl@0
|
38 |
#endif
|
sl@0
|
39 |
|
sl@0
|
40 |
TGlobalLayerInfoAppend::TGlobalLayerInfoAppend()
|
sl@0
|
41 |
: iAggParaFormatLayer(NULL),iAggCharFormatLayer(NULL),iComParaFormatLayer(NULL),iComCharFormatLayer(NULL)
|
sl@0
|
42 |
{}
|
sl@0
|
43 |
|
sl@0
|
44 |
TGlobalLayerInfoAppend::TGlobalLayerInfoAppend(const CParaFormatLayer* aAggParaFormatLayer,const CCharFormatLayer* aAggCharFormatLayer,
|
sl@0
|
45 |
const CParaFormatLayer* aComParaFormatLayer,const CCharFormatLayer* aComCharFormatLayer)
|
sl@0
|
46 |
: iAggParaFormatLayer(aAggParaFormatLayer),iAggCharFormatLayer(aAggCharFormatLayer),
|
sl@0
|
47 |
iComParaFormatLayer(aComParaFormatLayer),iComCharFormatLayer(aComCharFormatLayer)
|
sl@0
|
48 |
{}
|
sl@0
|
49 |
|
sl@0
|
50 |
|
sl@0
|
51 |
TTextFragment::TTextFragment():
|
sl@0
|
52 |
iLength(0),
|
sl@0
|
53 |
iPhraseCount(0)
|
sl@0
|
54 |
{
|
sl@0
|
55 |
}
|
sl@0
|
56 |
|
sl@0
|
57 |
|
sl@0
|
58 |
TCurrentIndexRecords::TCurrentIndexRecords()
|
sl@0
|
59 |
{
|
sl@0
|
60 |
}
|
sl@0
|
61 |
|
sl@0
|
62 |
|
sl@0
|
63 |
DLLEXPORT_C void CRichTextIndex::__DbgTestInvariant()const
|
sl@0
|
64 |
// Provides class invariants. Explanations below:
|
sl@0
|
65 |
//
|
sl@0
|
66 |
{
|
sl@0
|
67 |
#ifdef _DEBUG
|
sl@0
|
68 |
// ASSERT: Every phrase index is consistent with its corresponding paragraph.
|
sl@0
|
69 |
TInt zeroLengthPhraseCount=0;
|
sl@0
|
70 |
TInt maxPara=iParaIx->Count();
|
sl@0
|
71 |
TInt numberOfReferencesToSharedList=0;
|
sl@0
|
72 |
TInt currentPhraseElement=0;
|
sl@0
|
73 |
for (TInt para=0;para<maxPara;para++)
|
sl@0
|
74 |
{
|
sl@0
|
75 |
// ASSERT: The basedOn link is valid.
|
sl@0
|
76 |
CFormatLayer* thisLayer=(*iParaIx)[para].iParaAttribs->iParaFormat;
|
sl@0
|
77 |
CFormatLayer* base=CONST_CAST(CFormatLayer*,thisLayer->SenseBase());
|
sl@0
|
78 |
if (base==NULL)
|
sl@0
|
79 |
{
|
sl@0
|
80 |
OstTrace0( TRACE_DUMP, CRICHTEXTINDEX_DBGTESTINVARIANT, "base==NULL" );
|
sl@0
|
81 |
}
|
sl@0
|
82 |
__ASSERT_DEBUG(base!=NULL,User::Invariant());
|
sl@0
|
83 |
if ((*iParaIx)[para].iParaAttribs->iRefCount>0)
|
sl@0
|
84 |
numberOfReferencesToSharedList++;
|
sl@0
|
85 |
TInt paragraphLength=(*iParaIx)[para].iLength;
|
sl@0
|
86 |
TInt sumOfPhraseLengths=0;
|
sl@0
|
87 |
TInt maxPhrase=(*iParaIx)[para].iParaAttribs->PhraseCount();
|
sl@0
|
88 |
for (TInt phrase=0;phrase<maxPhrase;phrase++)
|
sl@0
|
89 |
{
|
sl@0
|
90 |
if (maxPhrase>1)
|
sl@0
|
91 |
{
|
sl@0
|
92 |
const RPhraseAttribsEntry* phrase=&(*iPhraseIx)[currentPhraseElement];
|
sl@0
|
93 |
CCharFormatLayer* charFormatLayer=phrase->CharFormat();
|
sl@0
|
94 |
// ASSERT: The basedOn link is valid.
|
sl@0
|
95 |
if (charFormatLayer->SenseBase()==NULL)
|
sl@0
|
96 |
{
|
sl@0
|
97 |
OstTrace0( TRACE_DUMP, DUP1_CRICHTEXTINDEX_DBGTESTINVARIANT, "charFormatLayer->SenseBase()==NULL" );
|
sl@0
|
98 |
}
|
sl@0
|
99 |
__ASSERT_DEBUG(charFormatLayer->SenseBase()!=NULL,User::Invariant());
|
sl@0
|
100 |
if (TInt(charFormatLayer->SenseBase())<=0x1000)
|
sl@0
|
101 |
{
|
sl@0
|
102 |
OstTrace0( TRACE_DUMP, DUP2_CRICHTEXTINDEX_DBGTESTINVARIANT, "TInt(charFormatLayer->SenseBase())<=0x1000" );
|
sl@0
|
103 |
}
|
sl@0
|
104 |
__ASSERT_DEBUG(TInt(charFormatLayer->SenseBase())>0x1000,User::Invariant());
|
sl@0
|
105 |
sumOfPhraseLengths+=(*iPhraseIx)[currentPhraseElement].Length();
|
sl@0
|
106 |
if ((*iPhraseIx)[currentPhraseElement].Length()==0)
|
sl@0
|
107 |
zeroLengthPhraseCount++;
|
sl@0
|
108 |
currentPhraseElement++;
|
sl@0
|
109 |
}
|
sl@0
|
110 |
else
|
sl@0
|
111 |
{
|
sl@0
|
112 |
CCharFormatLayer* charFormatLayer=(*iParaIx)[para].iParaAttribs->iCharFormat;
|
sl@0
|
113 |
// ASSERT: The basedOn link is valid.
|
sl@0
|
114 |
if (charFormatLayer->SenseBase()==NULL)
|
sl@0
|
115 |
{
|
sl@0
|
116 |
OstTrace0( TRACE_DUMP, DUP3_CRICHTEXTINDEX_DBGTESTINVARIANT, "charFormatLayer->SenseBase()==NULL" );
|
sl@0
|
117 |
}
|
sl@0
|
118 |
__ASSERT_DEBUG(charFormatLayer->SenseBase()!=NULL,User::Invariant());
|
sl@0
|
119 |
sumOfPhraseLengths+=(*iParaIx)[para].iLength;
|
sl@0
|
120 |
}
|
sl@0
|
121 |
}
|
sl@0
|
122 |
if (sumOfPhraseLengths!=paragraphLength)
|
sl@0
|
123 |
{
|
sl@0
|
124 |
OstTrace0( TRACE_DUMP, DUP4_CRICHTEXTINDEX_DBGTESTINVARIANT, "sumOfPhraseLengths!=paragraphLength" );
|
sl@0
|
125 |
}
|
sl@0
|
126 |
__ASSERT_DEBUG(sumOfPhraseLengths==paragraphLength,User::Invariant());
|
sl@0
|
127 |
}
|
sl@0
|
128 |
// ASSERT: We have no unexpected phrases left over
|
sl@0
|
129 |
if (currentPhraseElement!=-1 &&
|
sl@0
|
130 |
currentPhraseElement!=iPhraseIx->Count())
|
sl@0
|
131 |
{
|
sl@0
|
132 |
OstTrace0( TRACE_DUMP, DUP5_CRICHTEXTINDEX_DBGTESTINVARIANT, "We have no unexpected phrases left over" );
|
sl@0
|
133 |
}
|
sl@0
|
134 |
__ASSERT_DEBUG(currentPhraseElement==-1 ||
|
sl@0
|
135 |
currentPhraseElement==iPhraseIx->Count(),User::Invariant());
|
sl@0
|
136 |
// ASSERT: There is either zero(0) or one(1) zero length phrase in the whole index
|
sl@0
|
137 |
if (!((zeroLengthPhraseCount==0) ||
|
sl@0
|
138 |
(zeroLengthPhraseCount==1 && iPendingNewPhrasePos!=EInsertCharFormatReset)))
|
sl@0
|
139 |
{
|
sl@0
|
140 |
OstTrace0( TRACE_DUMP, DUP6_CRICHTEXTINDEX_DBGTESTINVARIANT, "There is either zero(0) or one(1) zero length phrase in the whole index" );
|
sl@0
|
141 |
}
|
sl@0
|
142 |
__ASSERT_DEBUG( (zeroLengthPhraseCount==0) ||
|
sl@0
|
143 |
(zeroLengthPhraseCount==1 && iPendingNewPhrasePos!=EInsertCharFormatReset),
|
sl@0
|
144 |
User::Invariant());
|
sl@0
|
145 |
// ASSERT: the number of paraEntries with paraAttribs of refCount>0 == the sum of refCounts in the shared list.
|
sl@0
|
146 |
// or is only one less - as is set when SetInsertCharFormat is called on a shared paraAttribs.
|
sl@0
|
147 |
TInt totalReferenceCount=0;
|
sl@0
|
148 |
if (!iSharedParaQueHead.IsEmpty())
|
sl@0
|
149 |
{
|
sl@0
|
150 |
CParaAttribs* currentSharedPara;
|
sl@0
|
151 |
TDblQueIter<CParaAttribs> iterator(((CRichTextIndex*)this)->iSharedParaQueHead);
|
sl@0
|
152 |
while ((currentSharedPara=iterator++)!=NULL)
|
sl@0
|
153 |
totalReferenceCount+=currentSharedPara->iRefCount;
|
sl@0
|
154 |
}
|
sl@0
|
155 |
if ((numberOfReferencesToSharedList!=totalReferenceCount) &&
|
sl@0
|
156 |
(numberOfReferencesToSharedList!=totalReferenceCount-1))
|
sl@0
|
157 |
{
|
sl@0
|
158 |
OstTrace0( TRACE_DUMP, DUP7_CRICHTEXTINDEX_DBGTESTINVARIANT, "Invariant" );
|
sl@0
|
159 |
}
|
sl@0
|
160 |
__ASSERT_DEBUG((numberOfReferencesToSharedList==totalReferenceCount) ||
|
sl@0
|
161 |
(numberOfReferencesToSharedList==totalReferenceCount-1),User::Invariant());
|
sl@0
|
162 |
// ASSERT: iPictureCount corresponds to the number of pictures in the stored in the index.
|
sl@0
|
163 |
TInt picCount=0;
|
sl@0
|
164 |
TInt phraseCount=(iPhraseIx) ? iPhraseIx->Count() : 0;
|
sl@0
|
165 |
for (TInt item=0;item<phraseCount;item++)
|
sl@0
|
166 |
picCount+=((*iPhraseIx)[item].IsPicturePhrase())
|
sl@0
|
167 |
? 1
|
sl@0
|
168 |
: 0;
|
sl@0
|
169 |
if (iPictureCount!=picCount)
|
sl@0
|
170 |
{
|
sl@0
|
171 |
OstTrace0( TRACE_DUMP, DUP8_CRICHTEXTINDEX_DBGTESTINVARIANT, "Invariant" );
|
sl@0
|
172 |
}
|
sl@0
|
173 |
__ASSERT_DEBUG(iPictureCount==picCount,User::Invariant());
|
sl@0
|
174 |
#endif
|
sl@0
|
175 |
}
|
sl@0
|
176 |
|
sl@0
|
177 |
|
sl@0
|
178 |
CRichTextIndex* CRichTextIndex::NewL(const CParaFormatLayer* aGlobalParaLayer,const CCharFormatLayer* aGlobalCharLayer,
|
sl@0
|
179 |
const CRichText& aText,TInt aParaGran,TInt aPhraseGran)
|
sl@0
|
180 |
// Return a handle to a new instance of this class.
|
sl@0
|
181 |
// Requires the global format layer handles on which to base the first content.
|
sl@0
|
182 |
//
|
sl@0
|
183 |
{
|
sl@0
|
184 |
CRichTextIndex* self=new(ELeave) CRichTextIndex(aText);
|
sl@0
|
185 |
CleanupStack::PushL(self);
|
sl@0
|
186 |
self->ConstructL(aGlobalParaLayer,aGlobalCharLayer,aParaGran,aPhraseGran);
|
sl@0
|
187 |
CleanupStack::Pop();
|
sl@0
|
188 |
return self;
|
sl@0
|
189 |
}
|
sl@0
|
190 |
|
sl@0
|
191 |
|
sl@0
|
192 |
CRichTextIndex::CRichTextIndex(const CRichText& aText):
|
sl@0
|
193 |
iText(aText),
|
sl@0
|
194 |
iPendingNewPhrasePos(EInsertCharFormatReset),
|
sl@0
|
195 |
iSharedParaQueHead(_FOFF(CParaAttribs,link))
|
sl@0
|
196 |
{
|
sl@0
|
197 |
}
|
sl@0
|
198 |
|
sl@0
|
199 |
|
sl@0
|
200 |
void CRichTextIndex::ConstructL(const CParaFormatLayer* aGlobalParaLayer,const CCharFormatLayer* aGlobalCharLayer,TInt aParaGran,TInt aPhraseGran)
|
sl@0
|
201 |
// Provides a fully initialised rich text index.
|
sl@0
|
202 |
// Upon construction, the index contains a single paragraph of length 1 (para.terminator).
|
sl@0
|
203 |
// This first paragraph initially has constant character formatting, ie the shared para list
|
sl@0
|
204 |
// must have one item in it.
|
sl@0
|
205 |
//
|
sl@0
|
206 |
{
|
sl@0
|
207 |
CParaFormatLayer* paraLayer=CParaFormatLayer::NewL(); // Creates empty layer.
|
sl@0
|
208 |
paraLayer->SetBase(aGlobalParaLayer); // Sets basedOn to global default.
|
sl@0
|
209 |
CleanupStack::PushL(paraLayer);
|
sl@0
|
210 |
CCharFormatLayer* charLayer=CCharFormatLayer::NewL(); // Creates empty layer.
|
sl@0
|
211 |
charLayer->SetBase(aGlobalCharLayer); // Sets basedOn to global default.
|
sl@0
|
212 |
CleanupStack::PushL(charLayer);
|
sl@0
|
213 |
CParaAttribs* paraAttribs=GetParaAttribsL(paraLayer,charLayer);
|
sl@0
|
214 |
CleanupStack::PopAndDestroy(2);
|
sl@0
|
215 |
CleanupStack::PushL(TCleanupItem(ReleaseOnCleanup,paraAttribs));
|
sl@0
|
216 |
iParaIx=new(ELeave) CArrayFixSeg<TParaAttribsEntry>(aParaGran);
|
sl@0
|
217 |
TParaAttribsEntry para(1,paraAttribs);
|
sl@0
|
218 |
iParaIx->AppendL(para);
|
sl@0
|
219 |
CleanupStack::Pop();
|
sl@0
|
220 |
iPhraseIx=new(ELeave) CArrayFixSeg<RPhraseAttribsEntry>(aPhraseGran);
|
sl@0
|
221 |
|
sl@0
|
222 |
__TEST_INVARIANT;
|
sl@0
|
223 |
}
|
sl@0
|
224 |
|
sl@0
|
225 |
|
sl@0
|
226 |
CRichTextIndex::~CRichTextIndex()
|
sl@0
|
227 |
// Free up all storage allocated in the rich text index.
|
sl@0
|
228 |
//
|
sl@0
|
229 |
{
|
sl@0
|
230 |
TInt count;
|
sl@0
|
231 |
if (iPhraseIx)
|
sl@0
|
232 |
{// Destroy the phrase index and its contents.
|
sl@0
|
233 |
if (!iParaIx)
|
sl@0
|
234 |
{
|
sl@0
|
235 |
OstTrace0( TRACE_FATAL, CRICHTEXTINDEX_CRICHTEXTINDEX, "EPhraseIxPresentWithNoParaIx" );
|
sl@0
|
236 |
}
|
sl@0
|
237 |
__ASSERT_ALWAYS(iParaIx,Panic(EPhraseIxPresentWithNoParaIx));
|
sl@0
|
238 |
count=iPhraseIx->Count();
|
sl@0
|
239 |
for (TInt offset=0;offset<count;offset++)
|
sl@0
|
240 |
(*iPhraseIx)[offset].Discard();
|
sl@0
|
241 |
}
|
sl@0
|
242 |
delete iPhraseIx;
|
sl@0
|
243 |
if (iParaIx)
|
sl@0
|
244 |
{// Destroy the para index and its contents.
|
sl@0
|
245 |
count=iParaIx->Count();
|
sl@0
|
246 |
for (TInt offset=0;offset<count;offset++)
|
sl@0
|
247 |
{
|
sl@0
|
248 |
CParaAttribs* pA=(*iParaIx)[offset].iParaAttribs;
|
sl@0
|
249 |
if (!pA->IsShared())
|
sl@0
|
250 |
pA->Release();
|
sl@0
|
251 |
}
|
sl@0
|
252 |
}
|
sl@0
|
253 |
delete iParaIx;
|
sl@0
|
254 |
RebalanceIndex();
|
sl@0
|
255 |
//
|
sl@0
|
256 |
// Clear the shared list. (Will usually be empty by now
|
sl@0
|
257 |
// unless internalize failed after getting shared list & before getting all para data.
|
sl@0
|
258 |
CParaAttribs* currentSharedPara;
|
sl@0
|
259 |
TDblQueIter<CParaAttribs> iterator(iSharedParaQueHead);
|
sl@0
|
260 |
while ((currentSharedPara=iterator++)!=NULL)
|
sl@0
|
261 |
currentSharedPara->Release(currentSharedPara->iRefCount);
|
sl@0
|
262 |
if (!iSharedParaQueHead.IsEmpty())
|
sl@0
|
263 |
{
|
sl@0
|
264 |
OstTrace0( TRACE_FATAL, DUP1_CRICHTEXTINDEX_CRICHTEXTINDEX, "ERichTextIndexIntegrityErr" );
|
sl@0
|
265 |
}
|
sl@0
|
266 |
__ASSERT_ALWAYS(iSharedParaQueHead.IsEmpty(),Panic(ERichTextIndexIntegrityErr));
|
sl@0
|
267 |
}
|
sl@0
|
268 |
|
sl@0
|
269 |
|
sl@0
|
270 |
TInt CRichTextIndex::CharPosOfParagraph(TInt& aLength,TInt aParaOffset)const
|
sl@0
|
271 |
// Returns the character position of the first character of paragraph aParaOffset,
|
sl@0
|
272 |
// where aParaOffset specifies the nth paragraph.
|
sl@0
|
273 |
// The length of this nth paragraph is written to aLength.
|
sl@0
|
274 |
//
|
sl@0
|
275 |
// If aParaOffset specifies a paragraph that does not exist, EScanEndOfData is returned.
|
sl@0
|
276 |
//
|
sl@0
|
277 |
{
|
sl@0
|
278 |
__TEST_INVARIANT;
|
sl@0
|
279 |
|
sl@0
|
280 |
if (aParaOffset>=iParaIx->Count())
|
sl@0
|
281 |
return CPlainText::EScanEndOfData;
|
sl@0
|
282 |
TInt pos=0,offset=0;
|
sl@0
|
283 |
for (offset=0;offset<aParaOffset;offset++)
|
sl@0
|
284 |
pos+=(*iParaIx)[offset].iLength;
|
sl@0
|
285 |
aLength=(*iParaIx)[offset].iLength;
|
sl@0
|
286 |
return pos;
|
sl@0
|
287 |
}
|
sl@0
|
288 |
|
sl@0
|
289 |
|
sl@0
|
290 |
TInt CRichTextIndex::ParagraphNumberForPos(TInt& aPos)const
|
sl@0
|
291 |
// Returns the paragraph offset for the specified character position aPos.
|
sl@0
|
292 |
// aPos is in turn modified to hold the character position of the first character
|
sl@0
|
293 |
// of this paragraph. If aPos is already on a paragraph boundary then do nothing.
|
sl@0
|
294 |
//
|
sl@0
|
295 |
{
|
sl@0
|
296 |
__TEST_INVARIANT;
|
sl@0
|
297 |
|
sl@0
|
298 |
((CRichTextIndex*)this)->ScanToPosition(aPos,EScanToPositionAbsolute);
|
sl@0
|
299 |
aPos-=iPos.iParaElementOffset;
|
sl@0
|
300 |
return iPos.iParaElement;
|
sl@0
|
301 |
}
|
sl@0
|
302 |
|
sl@0
|
303 |
|
sl@0
|
304 |
void CRichTextIndex::DocumentChanged()const
|
sl@0
|
305 |
{
|
sl@0
|
306 |
MUTABLE_CAST(TLogicalPosition&,iLastUsed).Clear();
|
sl@0
|
307 |
}
|
sl@0
|
308 |
|
sl@0
|
309 |
|
sl@0
|
310 |
void CRichTextIndex::DoSoloInsertL(TInt aPos,TInt aLength)
|
sl@0
|
311 |
// Updates the index following the insertion of content into a single phrase.
|
sl@0
|
312 |
// First find the phrase record the governs the insert pos.
|
sl@0
|
313 |
// (1) If the current phrase is a text phrase, then simply extend the length of the phrase record.
|
sl@0
|
314 |
// (2) If the current phrase is a picture phrase then this cannot be extended.
|
sl@0
|
315 |
// There is 1 pathological case here:
|
sl@0
|
316 |
// (i) The [current] picture phrase is the 1st phrase in the paragraph, and the insert pos
|
sl@0
|
317 |
// is before this phrase. (paragraph insert pos == 0).
|
sl@0
|
318 |
// In this case we must insert a new text phrase *before* the picture phrase.
|
sl@0
|
319 |
// (ii) In normal circumstances the inserted text is after the picture phrase. So, if the
|
sl@0
|
320 |
// following phrase is of the same character format as the picture then we can re-use this phrase.
|
sl@0
|
321 |
// If it is not of the same character format (or is also a picture phrase),
|
sl@0
|
322 |
// then we must insert a new text phrase of the correct format immediately following the current picture phrase.
|
sl@0
|
323 |
//
|
sl@0
|
324 |
{
|
sl@0
|
325 |
RebalanceIndex();
|
sl@0
|
326 |
if (!((iPendingNewPhrasePos == EInsertCharFormatReset) || (aPos == iPendingNewPhrasePos)))
|
sl@0
|
327 |
CancelInsertCharFormat();
|
sl@0
|
328 |
|
sl@0
|
329 |
ScanToPosition(aPos,EScanToPositionMatchLeft);
|
sl@0
|
330 |
TCurrentIndexRecords current; GetCurrentRecords(current);
|
sl@0
|
331 |
if (current.iPhrase && current.iPhrase->IsPicturePhrase())
|
sl@0
|
332 |
{// Paragraph has specific char format, and current phrase is picture phrase.
|
sl@0
|
333 |
TInt newPhraseRequired=EFalse;
|
sl@0
|
334 |
CCharFormatLayer* charLayer=current.iPhrase->CharFormat();
|
sl@0
|
335 |
if (FirstPhraseOfParagraph() && iPos.iPhraseElementOffset==0)
|
sl@0
|
336 |
newPhraseRequired=ETrue; // Text is inserted at the start of the para behind the picture.
|
sl@0
|
337 |
else
|
sl@0
|
338 |
{// Check for re-use of the next text phrase.
|
sl@0
|
339 |
iPos.iPhraseElement++;
|
sl@0
|
340 |
iPos.iPhraseElementOffset=0;
|
sl@0
|
341 |
const RPhraseAttribsEntry& nextPhrase=(*iPhraseIx)[iPos.iPhraseElement];
|
sl@0
|
342 |
if (nextPhrase.IsPicturePhrase() || !nextPhrase.CharFormat()->IsIdentical(charLayer,EFalse))
|
sl@0
|
343 |
{// Need a new phrase if the formats don't match OR the next phrase is a picture phrase.
|
sl@0
|
344 |
newPhraseRequired=ETrue; // Need to create a new phrase to take this insert.
|
sl@0
|
345 |
}
|
sl@0
|
346 |
}
|
sl@0
|
347 |
if (newPhraseRequired)
|
sl@0
|
348 |
{// Insert new phrase & record this fact
|
sl@0
|
349 |
CCharFormatLayer* charFormat=CCharFormatLayer::NewCopyBaseL(charLayer);
|
sl@0
|
350 |
RPhraseAttribsEntry newPhrase(charFormat);
|
sl@0
|
351 |
CleanupStack::PushL(charFormat);
|
sl@0
|
352 |
iPhraseIx->InsertL(iPos.iPhraseElement,newPhrase);
|
sl@0
|
353 |
CleanupStack::Pop();
|
sl@0
|
354 |
current.iParaAttribs->iPhraseCount++;
|
sl@0
|
355 |
}
|
sl@0
|
356 |
GetCurrentRecords(current); // Update current records, cos used below.
|
sl@0
|
357 |
}
|
sl@0
|
358 |
// Extend the lengths in the index.
|
sl@0
|
359 |
current.iParaEntry->iLength+=aLength; // Increase length of paragraph.
|
sl@0
|
360 |
if (current.iPhrase)
|
sl@0
|
361 |
current.iPhrase->AdjustLength(aLength); // Increase the length of this phrase.
|
sl@0
|
362 |
iPos.iPhraseElementOffset+=aLength;
|
sl@0
|
363 |
iPos.iParaElementOffset+=aLength;
|
sl@0
|
364 |
iPos.iDocPos+=aLength;
|
sl@0
|
365 |
}
|
sl@0
|
366 |
|
sl@0
|
367 |
|
sl@0
|
368 |
void CRichTextIndex::InsertL(TInt aPos,const TDesC& aBuf,const CParaFormatLayer& aGlobalParaFormatLayer)
|
sl@0
|
369 |
// Updates the index following the insertion of a descriptor of text into the document.
|
sl@0
|
370 |
// Correctly handles embedded paragraph delimiters.
|
sl@0
|
371 |
//
|
sl@0
|
372 |
{
|
sl@0
|
373 |
__TEST_INVARIANT;
|
sl@0
|
374 |
TInt bufLen=aBuf.Length();
|
sl@0
|
375 |
|
sl@0
|
376 |
RebalanceIndex();
|
sl@0
|
377 |
TInt paragraphCount=0;
|
sl@0
|
378 |
const TText* start=aBuf.Ptr();
|
sl@0
|
379 |
const TText* end=start+bufLen;
|
sl@0
|
380 |
while (start<end)
|
sl@0
|
381 |
{
|
sl@0
|
382 |
if (*start++==CEditableText::EParagraphDelimiter)
|
sl@0
|
383 |
paragraphCount++;
|
sl@0
|
384 |
}
|
sl@0
|
385 |
if (paragraphCount==0)
|
sl@0
|
386 |
{
|
sl@0
|
387 |
if (bufLen > 0)
|
sl@0
|
388 |
{
|
sl@0
|
389 |
DoSoloInsertL(aPos,bufLen);
|
sl@0
|
390 |
CancelInsertCharFormat();
|
sl@0
|
391 |
}
|
sl@0
|
392 |
__TEST_INVARIANT;
|
sl@0
|
393 |
return;
|
sl@0
|
394 |
}
|
sl@0
|
395 |
ScanToPosition(aPos,EScanToPositionMatchLeft);
|
sl@0
|
396 |
TLogicalPosition pastePos=iPos; // Used to adjust paragraph/phrase lengths later
|
sl@0
|
397 |
|
sl@0
|
398 |
if (paragraphCount>1)
|
sl@0
|
399 |
{
|
sl@0
|
400 |
TCurrentIndexRecords current;
|
sl@0
|
401 |
GetCurrentRecords(current);
|
sl@0
|
402 |
const CParaAttribs& paraAttribs=*current.iParaAttribs;
|
sl@0
|
403 |
CCharFormatLayer* charLayer=(paraAttribs.IsShared())
|
sl@0
|
404 |
? paraAttribs.iCharFormat
|
sl@0
|
405 |
: (*iPhraseIx)[iPos.iPhraseElement].CharFormat();
|
sl@0
|
406 |
CParaFormatLayer* paraLayer=paraAttribs.iParaFormat;
|
sl@0
|
407 |
CParaAttribs* theParaAttribs=GetParaAttribsL(paraLayer,charLayer);
|
sl@0
|
408 |
CleanupStack::PushL(TCleanupItem(ReleaseOnCleanup,theParaAttribs));
|
sl@0
|
409 |
iParaIx->InsertL(pastePos.iParaElement,TParaAttribsEntry(0,theParaAttribs),paragraphCount-1);
|
sl@0
|
410 |
CleanupStack::Pop();
|
sl@0
|
411 |
theParaAttribs->iRefCount+=paragraphCount-2; // add the extra references
|
sl@0
|
412 |
}
|
sl@0
|
413 |
TLogicalPosition pos;
|
sl@0
|
414 |
TRAPD(ret,
|
sl@0
|
415 |
SplitParagraphAtPastePosL(pastePos,pos,aGlobalParaFormatLayer));
|
sl@0
|
416 |
if (ret!=KErrNone)
|
sl@0
|
417 |
{
|
sl@0
|
418 |
RbRemoveInsertedParaAttribsEntries(pastePos.iParaElement,paragraphCount-1);
|
sl@0
|
419 |
User::Leave(ret);
|
sl@0
|
420 |
}
|
sl@0
|
421 |
|
sl@0
|
422 |
if (paragraphCount>1)
|
sl@0
|
423 |
{ // swap the entries for the split and first inserted paragraph
|
sl@0
|
424 |
TParaAttribsEntry& paraEntry=(*iParaIx)[pastePos.iParaElement+paragraphCount-1];
|
sl@0
|
425 |
TParaAttribsEntry& insertEntry=(*iParaIx)[pastePos.iParaElement];
|
sl@0
|
426 |
TParaAttribsEntry temp=paraEntry;
|
sl@0
|
427 |
paraEntry=insertEntry;
|
sl@0
|
428 |
insertEntry=temp;
|
sl@0
|
429 |
}// Cos weve inserted new paragraphs in front of the governing one.
|
sl@0
|
430 |
|
sl@0
|
431 |
// Sort out the front para
|
sl@0
|
432 |
TParaAttribsEntry& frontPara=(*iParaIx)[pastePos.iParaElement];
|
sl@0
|
433 |
TPtrC buf(aBuf);
|
sl@0
|
434 |
TInt lengthOfFirstPara=ParaLengthFromBuffer(buf);
|
sl@0
|
435 |
frontPara.iLength+=lengthOfFirstPara; // Adjust the para length
|
sl@0
|
436 |
buf.Set(aBuf.Right(aBuf.Length()-lengthOfFirstPara-1));
|
sl@0
|
437 |
if (!frontPara.iParaAttribs->IsShared() && lengthOfFirstPara != 0)
|
sl@0
|
438 |
{
|
sl@0
|
439 |
RPhraseAttribsEntry* phrase=&(*iPhraseIx)[pastePos.iPhraseElement];
|
sl@0
|
440 |
if (phrase->IsPicturePhrase())
|
sl@0
|
441 |
{ // move insertion past any picture phrase
|
sl@0
|
442 |
pastePos.iPhraseElement++;
|
sl@0
|
443 |
pastePos.iPhraseElementOffset=0;
|
sl@0
|
444 |
phrase=&(*iPhraseIx)[pastePos.iPhraseElement];
|
sl@0
|
445 |
}
|
sl@0
|
446 |
phrase->AdjustLength(lengthOfFirstPara); // Adjust the phrase length
|
sl@0
|
447 |
}
|
sl@0
|
448 |
for (TInt paraItem=1;paraItem<paragraphCount;paraItem++)
|
sl@0
|
449 |
{// For each para inserted between the fist and last
|
sl@0
|
450 |
TParaAttribsEntry& para=(*iParaIx)[pastePos.iParaElement+paraItem];
|
sl@0
|
451 |
TInt length=ParaLengthFromBuffer(buf)+1;
|
sl@0
|
452 |
if (length==KErrNotFound)
|
sl@0
|
453 |
{
|
sl@0
|
454 |
OstTrace0( TRACE_DUMP, CRICHTEXTINDEX_INSERTL, "EInsertEmbeddedParaErr" );
|
sl@0
|
455 |
}
|
sl@0
|
456 |
__ASSERT_DEBUG(length!=KErrNotFound,Panic(EInsertEmbeddedParaErr));
|
sl@0
|
457 |
para.iLength=length;
|
sl@0
|
458 |
buf.Set(buf.Right(buf.Length()-length));
|
sl@0
|
459 |
}
|
sl@0
|
460 |
// For final paragrph
|
sl@0
|
461 |
TInt trailingTextLen=buf.Length();
|
sl@0
|
462 |
if (trailingTextLen>0)
|
sl@0
|
463 |
{
|
sl@0
|
464 |
TParaAttribsEntry& backPara=(*iParaIx)[pos.iParaElement];
|
sl@0
|
465 |
backPara.iLength+=trailingTextLen;
|
sl@0
|
466 |
if (!backPara.iParaAttribs->IsShared())
|
sl@0
|
467 |
{
|
sl@0
|
468 |
RPhraseAttribsEntry& phrase=(*iPhraseIx)[pos.iPhraseElement];
|
sl@0
|
469 |
phrase.AdjustLength(trailingTextLen); // Adjust phrase length
|
sl@0
|
470 |
}
|
sl@0
|
471 |
}
|
sl@0
|
472 |
//
|
sl@0
|
473 |
// Now tidy up
|
sl@0
|
474 |
if (bufLen>1 && iPendingNewPhrasePos!=EInsertCharFormatReset)
|
sl@0
|
475 |
{
|
sl@0
|
476 |
iPendingNewPhrasePos=aPos+(bufLen-trailingTextLen);
|
sl@0
|
477 |
CancelInsertCharFormat();
|
sl@0
|
478 |
}
|
sl@0
|
479 |
|
sl@0
|
480 |
__TEST_INVARIANT;
|
sl@0
|
481 |
}
|
sl@0
|
482 |
|
sl@0
|
483 |
|
sl@0
|
484 |
void CRichTextIndex::SplitParagraphAtPastePosL(TLogicalPosition& aPastePos,TLogicalPosition& aNewPos,
|
sl@0
|
485 |
const CParaFormatLayer& aGlobalParaFormatLayer)
|
sl@0
|
486 |
// Breaks the paragraph specified by the logical position aPastePos, inserting a paragraph delimiter.
|
sl@0
|
487 |
//
|
sl@0
|
488 |
{
|
sl@0
|
489 |
TInt insertPendingPos = iPendingNewPhrasePos;
|
sl@0
|
490 |
DoSoloInsertL(aPastePos.iDocPos,1);
|
sl@0
|
491 |
TBool insertCharFormatDeleted = EFalse;
|
sl@0
|
492 |
if (InsertCharFormatIsActive())
|
sl@0
|
493 |
{
|
sl@0
|
494 |
insertCharFormatDeleted = DeleteInsertCharFormat();
|
sl@0
|
495 |
iPendingNewPhrasePos = EInsertCharFormatReset;
|
sl@0
|
496 |
}
|
sl@0
|
497 |
TRAPD(ret,
|
sl@0
|
498 |
InsertParagraphL(aPastePos.iDocPos+1,aGlobalParaFormatLayer)); // Split the current para (and maybe phrase index).
|
sl@0
|
499 |
if (ret!=KErrNone)
|
sl@0
|
500 |
{
|
sl@0
|
501 |
// locate the character inserted by DoSoloInsertL() above
|
sl@0
|
502 |
ScanToPosition(aPastePos.iDocPos,EScanToPositionAbsolute);
|
sl@0
|
503 |
TCurrentIndexRecords current;
|
sl@0
|
504 |
GetCurrentRecords(current);
|
sl@0
|
505 |
current.iParaEntry->iLength--;
|
sl@0
|
506 |
if (current.iPhrase)
|
sl@0
|
507 |
{
|
sl@0
|
508 |
current.iPhrase->AdjustLength(-1); // collapse phrase by right amount
|
sl@0
|
509 |
if (insertPendingPos!=EInsertCharFormatReset)
|
sl@0
|
510 |
{
|
sl@0
|
511 |
if (current.iPhrase->Length()!=0)
|
sl@0
|
512 |
{
|
sl@0
|
513 |
OstTrace0( TRACE_DUMP, CRICHTEXTINDEX_SPLITPARAGRAPHATPASTEPOSL, "Invariant" );
|
sl@0
|
514 |
}
|
sl@0
|
515 |
__ASSERT_DEBUG(current.iPhrase->Length()==0,User::Invariant());
|
sl@0
|
516 |
iPendingNewPhrasePos=insertPendingPos;
|
sl@0
|
517 |
}
|
sl@0
|
518 |
else if (current.iPhrase->Length()==0)
|
sl@0
|
519 |
{
|
sl@0
|
520 |
RemoveFromPhraseIx(iPos.iPhraseElement,1);
|
sl@0
|
521 |
current.iParaAttribs->iPhraseCount--;
|
sl@0
|
522 |
if (current.iParaAttribs->PhraseCount()<=1)
|
sl@0
|
523 |
{
|
sl@0
|
524 |
OstTrace0( TRACE_DUMP, DUP1_CRICHTEXTINDEX_SPLITPARAGRAPHATPASTEPOSL, "Invariant" );
|
sl@0
|
525 |
}
|
sl@0
|
526 |
__ASSERT_DEBUG(current.iParaAttribs->PhraseCount()>1,User::Invariant());
|
sl@0
|
527 |
}
|
sl@0
|
528 |
}
|
sl@0
|
529 |
OstTrace1( TRACE_DUMP, DUP2_CRICHTEXTINDEX_SPLITPARAGRAPHATPASTEPOSL, "Leave code=%d", ret );
|
sl@0
|
530 |
User::Leave(ret);
|
sl@0
|
531 |
}
|
sl@0
|
532 |
if (insertPendingPos != EInsertCharFormatReset)
|
sl@0
|
533 |
ConsolidateAt(insertPendingPos, insertCharFormatDeleted?
|
sl@0
|
534 |
EPositionOnly : EFollowingPhrase);
|
sl@0
|
535 |
ScanToPosition(aPastePos.iDocPos+1,EScanToPositionMatchLeft); // Gives us the next para.
|
sl@0
|
536 |
aNewPos=iPos;
|
sl@0
|
537 |
}
|
sl@0
|
538 |
|
sl@0
|
539 |
|
sl@0
|
540 |
TInt CRichTextIndex::ParaLengthFromBuffer(TDesC& aBuf)const
|
sl@0
|
541 |
// Returns the length of the first para found in the buffer.
|
sl@0
|
542 |
// The returned length excludes the paragraph delimiter character.
|
sl@0
|
543 |
// Returns KNotFound if there is no paragraph delimiter.
|
sl@0
|
544 |
//
|
sl@0
|
545 |
{return aBuf.Locate(CEditableText::EParagraphDelimiter);}
|
sl@0
|
546 |
|
sl@0
|
547 |
|
sl@0
|
548 |
void CRichTextIndex::InsertL(TInt aPos,const TPictureHeader& aPicHdr, TBool& aPictureOwnershipTaken)
|
sl@0
|
549 |
// Updates the index following the insertion of a picture header object into the text
|
sl@0
|
550 |
// component. This is accomplished by creating & inserting a picture phrase at the
|
sl@0
|
551 |
// relevant place.
|
sl@0
|
552 |
//
|
sl@0
|
553 |
{
|
sl@0
|
554 |
__TEST_INVARIANT;
|
sl@0
|
555 |
|
sl@0
|
556 |
RebalanceIndex();
|
sl@0
|
557 |
// ASSERT: A valid picture header, referencing a valid picture has been inserted.
|
sl@0
|
558 |
if (!aPicHdr.iPicture.IsPtr() || aPicHdr.iPicture.AsPtr()==NULL)
|
sl@0
|
559 |
{
|
sl@0
|
560 |
OstTrace0( TRACE_FATAL, DUP1_CRICHTEXTINDEX_INSERTL, "EInsertNullPicHdrData" );
|
sl@0
|
561 |
}
|
sl@0
|
562 |
__ASSERT_ALWAYS(aPicHdr.iPicture.IsPtr() && aPicHdr.iPicture.AsPtr()!=NULL,Panic(EInsertNullPicHdrData));
|
sl@0
|
563 |
// ASSERT: The current insert pos hasn't been changed without cancelling SetInsertCharFormat.
|
sl@0
|
564 |
if ((iPendingNewPhrasePos!=EInsertCharFormatReset) && (aPos!=iPendingNewPhrasePos))
|
sl@0
|
565 |
{
|
sl@0
|
566 |
OstTrace0( TRACE_FATAL, DUP2_CRICHTEXTINDEX_INSERTL, "ESetInsertCharFormatIntegrityErr" );
|
sl@0
|
567 |
}
|
sl@0
|
568 |
__ASSERT_ALWAYS((iPendingNewPhrasePos==EInsertCharFormatReset) || (aPos==iPendingNewPhrasePos),
|
sl@0
|
569 |
Panic(ESetInsertCharFormatIntegrityErr));
|
sl@0
|
570 |
if (iPendingNewPhrasePos!=EInsertCharFormatReset)
|
sl@0
|
571 |
CancelInsertCharFormat(); // Cancel this state before inserting picture. Rebalances the index.
|
sl@0
|
572 |
ScanToPosition(aPos,EScanToPositionMatchLeft);
|
sl@0
|
573 |
TCurrentIndexRecords current; GetCurrentRecords(current);
|
sl@0
|
574 |
TCharFormatX format;
|
sl@0
|
575 |
TCharFormatXMask mask; //...and build up its format.
|
sl@0
|
576 |
CCharFormatLayer* baseChar;
|
sl@0
|
577 |
GetPhraseFormat(current,format,mask,baseChar); //...inherit format from prev. phrase.
|
sl@0
|
578 |
// Create the picture phrase. Takes ownership of the aPicHdr.iPicture
|
sl@0
|
579 |
CPicturePhrase* picture=CPicturePhrase::NewL(aPicHdr,format,mask,baseChar,aPictureOwnershipTaken);
|
sl@0
|
580 |
CleanupStack::PushL(picture);
|
sl@0
|
581 |
//New reclaimed CParaAttribs instance
|
sl@0
|
582 |
CParaAttribs* reclaimed=RequestReclaimShareL(current.iParaAttribs,current.iParaEntry);
|
sl@0
|
583 |
//Store the old CParaAttribs instance in rollbackParaAttribsHandle
|
sl@0
|
584 |
CParaAttribs* rollbackParaAttribsHandle=current.iParaAttribs;
|
sl@0
|
585 |
if (reclaimed)
|
sl@0
|
586 |
{
|
sl@0
|
587 |
CleanupStack::PushL(TCleanupItem(ReleaseOnCleanup,reclaimed));
|
sl@0
|
588 |
current.iParaEntry->iParaAttribs=reclaimed; // Use this reclaimed para attribs (the new CParaAttribs instance)
|
sl@0
|
589 |
}
|
sl@0
|
590 |
GetCurrentRecords(current);
|
sl@0
|
591 |
// ASSERT: The reclaim succeeded. We must always end up with a PhraseIx-not constant char format.
|
sl@0
|
592 |
if (current.iPhrase==NULL)
|
sl@0
|
593 |
{
|
sl@0
|
594 |
OstTrace0( TRACE_DUMP, DUP3_CRICHTEXTINDEX_INSERTL, "EReclaimShareError" );
|
sl@0
|
595 |
}
|
sl@0
|
596 |
__ASSERT_DEBUG(current.iPhrase!=NULL,Panic(EReclaimShareError));
|
sl@0
|
597 |
TRAPD(ret1,
|
sl@0
|
598 |
SplitPhraseL(aPos)); // Phrase may not be split if at boundary.
|
sl@0
|
599 |
|
sl@0
|
600 |
if (ret1!=KErrNone)
|
sl@0
|
601 |
{
|
sl@0
|
602 |
RbInsertPicture(rollbackParaAttribsHandle);//Restore the old CParaAttribs instance
|
sl@0
|
603 |
User::Leave(ret1);
|
sl@0
|
604 |
}
|
sl@0
|
605 |
|
sl@0
|
606 |
TInt offset=(PhraseSplit())?1:0; // Insert position of new phrase relative to current.
|
sl@0
|
607 |
RPhraseAttribsEntry newPhrase(picture);
|
sl@0
|
608 |
TRAPD(ret2,
|
sl@0
|
609 |
iPhraseIx->InsertL(iPos.iPhraseElement+offset,newPhrase));
|
sl@0
|
610 |
if (ret2!=KErrNone)
|
sl@0
|
611 |
{
|
sl@0
|
612 |
RbInsertPicture(rollbackParaAttribsHandle);//Restore the old CParaAttribs instance
|
sl@0
|
613 |
User::Leave(ret2);
|
sl@0
|
614 |
}
|
sl@0
|
615 |
|
sl@0
|
616 |
if(reclaimed)
|
sl@0
|
617 |
{
|
sl@0
|
618 |
CleanupStack::Pop();//"Pop" for CleanupStack::PushL(TCleanupItem(ReleaseOnCleanup,reclaimed));
|
sl@0
|
619 |
}
|
sl@0
|
620 |
CleanupStack::Pop(picture);
|
sl@0
|
621 |
// Update counts etc. - cannot leave now.
|
sl@0
|
622 |
current.iParaEntry->iLength+=RPhraseAttribsEntry::EPicturePhraseLength;
|
sl@0
|
623 |
current.iParaAttribs->iPhraseCount++; // for the picture phrase
|
sl@0
|
624 |
iPictureCount++;
|
sl@0
|
625 |
|
sl@0
|
626 |
// Commit
|
sl@0
|
627 |
if(reclaimed)
|
sl@0
|
628 |
{
|
sl@0
|
629 |
rollbackParaAttribsHandle->Release(); // Release hold on original shared paraAttribs.
|
sl@0
|
630 |
}
|
sl@0
|
631 |
|
sl@0
|
632 |
__TEST_INVARIANT;
|
sl@0
|
633 |
//coverity[memory_leak]
|
sl@0
|
634 |
}
|
sl@0
|
635 |
|
sl@0
|
636 |
void CRichTextIndex::RbInsertPicture(CParaAttribs* aGoodParaAttribs)
|
sl@0
|
637 |
// Reinstate the original good paraAttribs.
|
sl@0
|
638 |
// Then rollback the SplitPhrase() call if it succeeded.
|
sl@0
|
639 |
//
|
sl@0
|
640 |
{
|
sl@0
|
641 |
(*iParaIx)[iPos.iParaElement].iParaAttribs=aGoodParaAttribs;
|
sl@0
|
642 |
if (PhraseSplit())
|
sl@0
|
643 |
{// Rollback the SplitPhrase()
|
sl@0
|
644 |
TInt length=(*iPhraseIx)[iPos.iPhraseElement+1].Length();
|
sl@0
|
645 |
RemoveFromPhraseIx(iPos.iPhraseElement+1);
|
sl@0
|
646 |
(*iPhraseIx)[iPos.iPhraseElement].AdjustLength(length);
|
sl@0
|
647 |
}
|
sl@0
|
648 |
}
|
sl@0
|
649 |
|
sl@0
|
650 |
|
sl@0
|
651 |
// Insert a new paragraph immediately following character position aPos, fixing the length of the preceeding
|
sl@0
|
652 |
// paragraph. The new paragraph preserves any explicit paragraph/character formatting, and is based on the
|
sl@0
|
653 |
// global layers. (Do not need to rebalance the index here; a previous call to DoSoloInsertL accomplishes this)
|
sl@0
|
654 |
|
sl@0
|
655 |
void CRichTextIndex::InsertParagraphL(TInt aPos,const CParaFormatLayer& aGlobalParaFormatLayer)
|
sl@0
|
656 |
{
|
sl@0
|
657 |
ScanToPosition(aPos,EScanToPositionMatchLeft);
|
sl@0
|
658 |
TCurrentIndexRecords current;
|
sl@0
|
659 |
GetCurrentRecords(current);
|
sl@0
|
660 |
TParaAttribsEntry newPara;
|
sl@0
|
661 |
CCharFormatLayer* charLayer;
|
sl@0
|
662 |
if (current.iPhrase) // entry in phrase index
|
sl@0
|
663 |
charLayer=current.iPhrase->CharFormat();
|
sl@0
|
664 |
else
|
sl@0
|
665 |
charLayer=current.iParaAttribs->iCharFormat;
|
sl@0
|
666 |
//
|
sl@0
|
667 |
// New para format layer, based on normal, inheriting specific format
|
sl@0
|
668 |
CParaFormatLayer* currentParaFormat=current.iParaAttribs->iParaFormat;
|
sl@0
|
669 |
CParaFormatLayer* newParaLayer=CParaFormatLayer::NewL(currentParaFormat);
|
sl@0
|
670 |
const CParaFormatLayer& currentStyle=STATIC_CAST(const CParaFormatLayer&,*currentParaFormat->SenseBase());
|
sl@0
|
671 |
const TUid currentStyleType=currentStyle.Type();
|
sl@0
|
672 |
|
sl@0
|
673 |
// !!
|
sl@0
|
674 |
// Only change to Normal if current style is a built-in one
|
sl@0
|
675 |
// or we are not at the end of a heading style.
|
sl@0
|
676 |
TBool useNormal;
|
sl@0
|
677 |
if (currentStyleType==KNormalParagraphStyleUid)
|
sl@0
|
678 |
useNormal=ETrue;
|
sl@0
|
679 |
else if (currentStyleType==KUserDefinedParagraphStyleUid)
|
sl@0
|
680 |
useNormal=EFalse;
|
sl@0
|
681 |
else if (iPos.iParaElementOffset<=(current.iParaEntry->iLength-2)) // cos of previous call to DoSoloInsertL()
|
sl@0
|
682 |
useNormal=EFalse;
|
sl@0
|
683 |
else
|
sl@0
|
684 |
useNormal=ETrue;
|
sl@0
|
685 |
newParaLayer->SetBase((useNormal)
|
sl@0
|
686 |
? &aGlobalParaFormatLayer
|
sl@0
|
687 |
: ¤tStyle);
|
sl@0
|
688 |
const CCharFormatLayer* newCharBase=(useNormal)
|
sl@0
|
689 |
? iText.GlobalCharFormatLayer()
|
sl@0
|
690 |
: STATIC_CAST(const CParagraphStyle&,currentStyle).CharFormatLayer();
|
sl@0
|
691 |
CleanupStack::PushL(newParaLayer);
|
sl@0
|
692 |
//
|
sl@0
|
693 |
if (current.iParaAttribs->IsShared())
|
sl@0
|
694 |
{// Current para has constant char format - so the new one also has constant char format
|
sl@0
|
695 |
// New char format layer, based on normal, inheriting specific format
|
sl@0
|
696 |
CCharFormatLayer* newCharLayer=CCharFormatLayer::NewL(charLayer);
|
sl@0
|
697 |
newCharLayer->SetBase(newCharBase);
|
sl@0
|
698 |
CleanupStack::PushL(newCharLayer);
|
sl@0
|
699 |
newPara.iParaAttribs=GetParaAttribsL(newParaLayer,newCharLayer);
|
sl@0
|
700 |
CleanupStack::PopAndDestroy(2); // newCharLayer/newParaLayer
|
sl@0
|
701 |
CleanupStack::PushL(TCleanupItem(ReleaseOnCleanup,newPara.iParaAttribs));
|
sl@0
|
702 |
iParaIx->InsertL(iPos.iParaElement+1,newPara);
|
sl@0
|
703 |
CleanupStack::Pop(); // paraAttribs cleanup item
|
sl@0
|
704 |
GetCurrentRecords(current); // could be changed by InsertL() above
|
sl@0
|
705 |
}
|
sl@0
|
706 |
else // Do the split myself since this para has specific character formatting.
|
sl@0
|
707 |
{// Make the new CParaAttribs
|
sl@0
|
708 |
CParaAttribs* newParaAttribs=CParaAttribs::NewL(newParaLayer);
|
sl@0
|
709 |
CleanupStack::PopAndDestroy(); // newParaLayer - copy owned by newParaAttribs
|
sl@0
|
710 |
CleanupStack::PushL(TCleanupItem(ReleaseOnCleanup,newParaAttribs));
|
sl@0
|
711 |
//
|
sl@0
|
712 |
// Split current phrase & insert if necessary.
|
sl@0
|
713 |
// Split even when we are at a phrase boundary -> this introduces an z.l.p. for the insertion point
|
sl@0
|
714 |
RPhraseAttribsEntry& insertPhrase=iPhraseIx->At(iPos.iPhraseElement);
|
sl@0
|
715 |
TInt insertPendingPos=(iPos.iPhraseElementOffset==insertPhrase.Length()) ? aPos : EInsertCharFormatReset;
|
sl@0
|
716 |
DoSplitPhraseL(insertPhrase,iPos.iPhraseElementOffset,current.iParaAttribs); // Ups iPhraseCount
|
sl@0
|
717 |
//
|
sl@0
|
718 |
// Insert the new paragraph.
|
sl@0
|
719 |
newPara.iParaAttribs=newParaAttribs;
|
sl@0
|
720 |
TRAPD(ret,
|
sl@0
|
721 |
iParaIx->InsertL(iPos.iParaElement+1,newPara)); // Inserts the new paraAttribsEntry record.
|
sl@0
|
722 |
if (ret!=KErrNone)
|
sl@0
|
723 |
{
|
sl@0
|
724 |
RemoveFromPhraseIx(iPos.iPhraseElement+1,1); // inserted by DoSplitPhraseL
|
sl@0
|
725 |
current.iParaAttribs->iPhraseCount--;
|
sl@0
|
726 |
User::Leave(ret);
|
sl@0
|
727 |
}
|
sl@0
|
728 |
|
sl@0
|
729 |
iPendingNewPhrasePos=insertPendingPos;
|
sl@0
|
730 |
CleanupStack::Pop(); // newParaAttribs. All OK now
|
sl@0
|
731 |
GetCurrentRecords(current); // could be changed by InsertL() above
|
sl@0
|
732 |
//
|
sl@0
|
733 |
// Calculate new paraAttribs phrase counts.
|
sl@0
|
734 |
TInt remainder=(iPos.iPhraseElement+1)-iPos.iParaBasePhraseElement;
|
sl@0
|
735 |
TInt newPhraseCount=current.iParaAttribs->iPhraseCount-remainder;
|
sl@0
|
736 |
newParaAttribs->iPhraseCount=newPhraseCount;
|
sl@0
|
737 |
current.iParaAttribs->iPhraseCount=remainder;
|
sl@0
|
738 |
|
sl@0
|
739 |
const CArrayFix<RPhraseAttribsEntry>& phraseIx=*iPhraseIx;
|
sl@0
|
740 |
TInt startPhrase=iPos.iPhraseElement+1;
|
sl@0
|
741 |
for (TInt ii=startPhrase; ii<startPhrase+newPhraseCount; ii++)
|
sl@0
|
742 |
{
|
sl@0
|
743 |
RPhraseAttribsEntry phrase=phraseIx[ii];
|
sl@0
|
744 |
phrase.CharFormat()->SetBase(newCharBase);
|
sl@0
|
745 |
}
|
sl@0
|
746 |
//
|
sl@0
|
747 |
// The index now reflects the correct state.
|
sl@0
|
748 |
// Next, the efficiency thing - see if the new paras can share existing ones.
|
sl@0
|
749 |
if (newPhraseCount==1)
|
sl@0
|
750 |
Share(iParaIx->At(iPos.iParaElement+1),iPos.iParaBasePhraseElement+remainder);
|
sl@0
|
751 |
if (remainder==1)
|
sl@0
|
752 |
Share(iParaIx->At(iPos.iParaElement),iPos.iParaBasePhraseElement);
|
sl@0
|
753 |
}
|
sl@0
|
754 |
// Alter the length of the original paragraph and the new paragraph.
|
sl@0
|
755 |
TInt currentLength=current.iParaEntry->iLength;
|
sl@0
|
756 |
current.iParaEntry->iLength=iPos.iParaElementOffset;
|
sl@0
|
757 |
((*iParaIx)[iPos.iParaElement+1]).iLength+=currentLength-current.iParaEntry->iLength; // Alters the length of the copy of aNewPara.
|
sl@0
|
758 |
}
|
sl@0
|
759 |
|
sl@0
|
760 |
|
sl@0
|
761 |
void CRichTextIndex::SetForDeleteL(TIndexDeleteInfo& aInfo,TInt aPos,TInt aLength)
|
sl@0
|
762 |
//
|
sl@0
|
763 |
{
|
sl@0
|
764 |
__TEST_INVARIANT; // Do not need to RebalanceIndex(); part of defined behaviour for delete.
|
sl@0
|
765 |
|
sl@0
|
766 |
aInfo.iDeleteLength=aLength;
|
sl@0
|
767 |
//
|
sl@0
|
768 |
// Check for simple cases first
|
sl@0
|
769 |
DocumentChanged(); // clears internal position record.
|
sl@0
|
770 |
ScanToPosition(aPos,EScanToPositionAbsolute,&iLastUsed);
|
sl@0
|
771 |
TCurrentIndexRecords current;
|
sl@0
|
772 |
GetCurrentRecords(current);
|
sl@0
|
773 |
aInfo.iStartPara=iPos.iParaElement;
|
sl@0
|
774 |
aInfo.iEndPara=iPos.iParaElement; // default
|
sl@0
|
775 |
aInfo.iDeletePos=iPos; // default
|
sl@0
|
776 |
//
|
sl@0
|
777 |
TInt startParaLength=current.iParaEntry->iLength;
|
sl@0
|
778 |
TInt lengthRemainingInPara=startParaLength-iPos.iParaElementOffset;
|
sl@0
|
779 |
if (aLength<lengthRemainingInPara)
|
sl@0
|
780 |
{// Case is delete-from-paragraph
|
sl@0
|
781 |
aInfo.iDeleteType=TIndexDeleteInfo::EDeleteFromParagraph;
|
sl@0
|
782 |
return;
|
sl@0
|
783 |
}
|
sl@0
|
784 |
//
|
sl@0
|
785 |
ScanToPosition(aPos+aLength,EScanToPositionMatchLeft,&iLastUsed); // Forces endPara to be next para when just removing a para delimiter.
|
sl@0
|
786 |
aInfo.iEndPara=iPos.iParaElement;
|
sl@0
|
787 |
// if (iPos.iParaElementOffset==0)
|
sl@0
|
788 |
// {// Can use delete-paragraph
|
sl@0
|
789 |
// aInfo.iDeleteType=TIndexDeleteInfo::EDeleteParagraph;
|
sl@0
|
790 |
// return;
|
sl@0
|
791 |
// }
|
sl@0
|
792 |
//
|
sl@0
|
793 |
// Set for the general (leaving) delete.
|
sl@0
|
794 |
GetCurrentRecords(current);
|
sl@0
|
795 |
CParaAttribs* reclaimedEndPara=RequestReclaimShareL(current.iParaAttribs,current.iParaEntry); // does not release share.
|
sl@0
|
796 |
TParaAttribsEntry* origEndParaEntry=current.iParaEntry;
|
sl@0
|
797 |
CParaAttribs* origParaAttribs=current.iParaAttribs;
|
sl@0
|
798 |
TInt endPosPhrase=iPos.iPhraseElement;
|
sl@0
|
799 |
if (reclaimedEndPara)
|
sl@0
|
800 |
origEndParaEntry->iParaAttribs=reclaimedEndPara;
|
sl@0
|
801 |
// Get start para info.
|
sl@0
|
802 |
ScanToPosition(aPos,EScanToPositionAbsolute);
|
sl@0
|
803 |
GetCurrentRecords(current);
|
sl@0
|
804 |
CParaAttribs* reclaimedStartPara=NULL;
|
sl@0
|
805 |
TRAPD(ret,
|
sl@0
|
806 |
reclaimedStartPara=RequestReclaimShareL(current.iParaAttribs,current.iParaEntry));
|
sl@0
|
807 |
if (ret!=KErrNone)
|
sl@0
|
808 |
{
|
sl@0
|
809 |
if (reclaimedEndPara)
|
sl@0
|
810 |
{
|
sl@0
|
811 |
reclaimedEndPara->Release();
|
sl@0
|
812 |
RemoveFromPhraseIx(endPosPhrase);
|
sl@0
|
813 |
origEndParaEntry->iParaAttribs=origParaAttribs;
|
sl@0
|
814 |
}
|
sl@0
|
815 |
User::Leave(ret);
|
sl@0
|
816 |
}
|
sl@0
|
817 |
if (reclaimedEndPara)
|
sl@0
|
818 |
origParaAttribs->Release(); // Release share on the original end para attribs
|
sl@0
|
819 |
if (reclaimedStartPara)
|
sl@0
|
820 |
{// Use the specific start para
|
sl@0
|
821 |
current.iParaAttribs->Release();
|
sl@0
|
822 |
current.iParaEntry->iParaAttribs=reclaimedStartPara;
|
sl@0
|
823 |
ScanToPosition(aPos,EScanToPositionAbsolute); // Pick up reclaimed phrase.
|
sl@0
|
824 |
}
|
sl@0
|
825 |
aInfo.iDeletePos=iPos; // internal position of aPos after any reclaim
|
sl@0
|
826 |
// Note: iDeleteType can surely be made obsolete now? TPB 7/11/2000
|
sl@0
|
827 |
aInfo.iDeleteType=TIndexDeleteInfo::EDeleteFromParagraph;
|
sl@0
|
828 |
|
sl@0
|
829 |
/*
|
sl@0
|
830 |
* Pointer to memory allocated to 'reclaimedEndPara' is assigned to
|
sl@0
|
831 |
* 'origEndParaEntry->iParaAttribs' on line 706. The memory will be
|
sl@0
|
832 |
* released in CRichTextIndex's destructor.
|
sl@0
|
833 |
*/
|
sl@0
|
834 |
// coverity[memory_leak]
|
sl@0
|
835 |
}
|
sl@0
|
836 |
|
sl@0
|
837 |
|
sl@0
|
838 |
TBool CRichTextIndex::DeleteParagraph(TInt aPos,TInt aLength)
|
sl@0
|
839 |
// Remove aCount entire paragraphs from the text.
|
sl@0
|
840 |
// Leave-safe
|
sl@0
|
841 |
// Returns EFalse indicating that no paragraphs were merged together,
|
sl@0
|
842 |
// as a result of the delete action.
|
sl@0
|
843 |
// Does NOT preserve any zero-length/insert pending state.
|
sl@0
|
844 |
//
|
sl@0
|
845 |
{
|
sl@0
|
846 |
__TEST_INVARIANT; // Do not need to RebalanceIndex(); part of defined behaviour for delete.
|
sl@0
|
847 |
|
sl@0
|
848 |
CancelInsertCharFormat();
|
sl@0
|
849 |
ScanToPosition(aPos,EScanToPositionAbsolute,&iLastUsed);
|
sl@0
|
850 |
|
sl@0
|
851 |
if (iPos.iParaElementOffset!=0)
|
sl@0
|
852 |
{
|
sl@0
|
853 |
OstTrace0( TRACE_DUMP, CRICHTEXTINDEX_DELETEPARAGRAPH, "EDeleteParagraphInvalidStartValue" );
|
sl@0
|
854 |
}
|
sl@0
|
855 |
__ASSERT_DEBUG(iPos.iParaElementOffset==0,Panic(EDeleteParagraphInvalidStartValue));
|
sl@0
|
856 |
|
sl@0
|
857 |
TIndexDeleteInfo info;
|
sl@0
|
858 |
info.iDeleteType=TIndexDeleteInfo::EDeleteParagraph;
|
sl@0
|
859 |
info.iDeletePos=iPos;
|
sl@0
|
860 |
info.iStartPara=iPos.iParaElement;
|
sl@0
|
861 |
//
|
sl@0
|
862 |
TInt documentLength=iText.DocumentLength();
|
sl@0
|
863 |
TInt pos=(aPos+aLength>documentLength
|
sl@0
|
864 |
? documentLength
|
sl@0
|
865 |
: aPos+aLength);
|
sl@0
|
866 |
ScanToPosition(pos,EScanToPositionMatchLeft,&iLastUsed); // Forces endPara to be next para when just removing a para delimiter.
|
sl@0
|
867 |
|
sl@0
|
868 |
info.iEndPara=iPos.iParaElement;
|
sl@0
|
869 |
info.iDeleteLength=aLength;
|
sl@0
|
870 |
|
sl@0
|
871 |
DeleteNow(info);
|
sl@0
|
872 |
// do not want to call TidyAfterDelete()
|
sl@0
|
873 |
|
sl@0
|
874 |
return EFalse;
|
sl@0
|
875 |
}
|
sl@0
|
876 |
|
sl@0
|
877 |
|
sl@0
|
878 |
|
sl@0
|
879 |
void CRichTextIndex::DeleteFromParagraph(TInt aPos,TInt aLength)
|
sl@0
|
880 |
// Special case delete for removing content from within a single paragraph only.
|
sl@0
|
881 |
// Not to be used for deleting an entire paragraph or paragraphs.
|
sl@0
|
882 |
// Returns EFalse indicating that no paragraphs were merged together,
|
sl@0
|
883 |
// as a result of the delete action.
|
sl@0
|
884 |
//
|
sl@0
|
885 |
{
|
sl@0
|
886 |
__TEST_INVARIANT; // Do not need to RebalanceIndex(); part of defined behaviour for delete.
|
sl@0
|
887 |
|
sl@0
|
888 |
ScanToPosition(aPos,EScanToPositionAbsolute);
|
sl@0
|
889 |
|
sl@0
|
890 |
#ifdef _DEBUG
|
sl@0
|
891 |
{
|
sl@0
|
892 |
TCurrentIndexRecords current;
|
sl@0
|
893 |
GetCurrentRecords(current);
|
sl@0
|
894 |
TInt startParaLength=current.iParaEntry->iLength;
|
sl@0
|
895 |
TInt lengthRemainingInPara=startParaLength-iPos.iParaElementOffset;
|
sl@0
|
896 |
|
sl@0
|
897 |
if (aLength>=lengthRemainingInPara)
|
sl@0
|
898 |
{
|
sl@0
|
899 |
OstTrace0( TRACE_FATAL, CRICHTEXTINDEX_DELETEFROMPARAGRAPH, "EDeleteFromParagraphInvalidRange" );
|
sl@0
|
900 |
}
|
sl@0
|
901 |
__ASSERT_ALWAYS(aLength<lengthRemainingInPara,Panic(EDeleteFromParagraphInvalidRange));
|
sl@0
|
902 |
}
|
sl@0
|
903 |
#endif
|
sl@0
|
904 |
|
sl@0
|
905 |
TIndexDeleteInfo info;
|
sl@0
|
906 |
info.iDeleteLength=aLength;
|
sl@0
|
907 |
info.iStartPara=iPos.iParaElement;
|
sl@0
|
908 |
info.iEndPara=iPos.iParaElement;
|
sl@0
|
909 |
info.iDeletePos=iPos;
|
sl@0
|
910 |
info.iDeleteType=TIndexDeleteInfo::EDeleteFromParagraph;
|
sl@0
|
911 |
|
sl@0
|
912 |
DoDeleteFromParagraph(info);
|
sl@0
|
913 |
|
sl@0
|
914 |
__TEST_INVARIANT;
|
sl@0
|
915 |
}
|
sl@0
|
916 |
|
sl@0
|
917 |
|
sl@0
|
918 |
TBool CRichTextIndex::DoDeleteFromParagraph(const TIndexDeleteInfo& aInfo)
|
sl@0
|
919 |
// Delete content from *within* the boundary of a single paragraph only.0
|
sl@0
|
920 |
// Returns EFalse indicating that no paragraphs were merged together,
|
sl@0
|
921 |
// as a result of the delete action.
|
sl@0
|
922 |
//
|
sl@0
|
923 |
{
|
sl@0
|
924 |
iPos=aInfo.iDeletePos;
|
sl@0
|
925 |
TInt length=aInfo.iDeleteLength;
|
sl@0
|
926 |
DeleteParagraphText(length);
|
sl@0
|
927 |
TidyAfterDelete(aInfo);
|
sl@0
|
928 |
|
sl@0
|
929 |
return EFalse;
|
sl@0
|
930 |
}
|
sl@0
|
931 |
|
sl@0
|
932 |
|
sl@0
|
933 |
TBool CRichTextIndex::DeleteNow(TIndexDeleteInfo& aInfo)
|
sl@0
|
934 |
// Deletes index data corresponding the info argument.
|
sl@0
|
935 |
// Returns ETrue is 2 paragraphs are merged as a result of the delete, otherwise returns false.
|
sl@0
|
936 |
//
|
sl@0
|
937 |
{
|
sl@0
|
938 |
iPos=aInfo.iDeletePos;
|
sl@0
|
939 |
TCurrentIndexRecords current;
|
sl@0
|
940 |
GetCurrentRecords(current);
|
sl@0
|
941 |
TInt leftToDelete=aInfo.iDeleteLength;
|
sl@0
|
942 |
TInt charsLeftInPara=(current.iParaEntry->iLength)-(iPos.iParaElementOffset);
|
sl@0
|
943 |
TBool doParaMerge=((iPos.iPhraseElement>0 || iPos.iPhraseElementOffset>0) && leftToDelete>=charsLeftInPara);
|
sl@0
|
944 |
// ETrue if the 1st para has content remaining but no paragraph delimiter.
|
sl@0
|
945 |
//
|
sl@0
|
946 |
TBool firstParaRemoved=(FirstPhraseOfParagraph() && iPos.iPhraseElementOffset==0 && aInfo.iDeleteLength>=current.iParaEntry->iLength);
|
sl@0
|
947 |
// ETrue if the 1st para has been *wholly* deleted.
|
sl@0
|
948 |
//
|
sl@0
|
949 |
DeleteParagraphText(leftToDelete); // Delete range will be in a minimum of 1 paragraph.
|
sl@0
|
950 |
if (aInfo.iStartPara<aInfo.iEndPara)
|
sl@0
|
951 |
{// The delete range crosses paragraph boundaries.
|
sl@0
|
952 |
for (TInt currentPara=aInfo.iStartPara+1;currentPara<=aInfo.iEndPara;currentPara++)
|
sl@0
|
953 |
{
|
sl@0
|
954 |
ScanToPosition(aInfo.iDeletePos.iDocPos,EScanToPositionAbsolute);
|
sl@0
|
955 |
DeleteParagraphText(leftToDelete);
|
sl@0
|
956 |
}
|
sl@0
|
957 |
}
|
sl@0
|
958 |
// Now tidy up
|
sl@0
|
959 |
if (doParaMerge && !firstParaRemoved)
|
sl@0
|
960 |
{// Merge the 2 paras together.
|
sl@0
|
961 |
TParaAttribsEntry* paraEntry=&(*iParaIx)[aInfo.iStartPara];
|
sl@0
|
962 |
TParaAttribsEntry* paraEntryFollowing=&(*iParaIx)[aInfo.iStartPara+1];
|
sl@0
|
963 |
paraEntryFollowing->iLength+=paraEntry->iLength; // Extend length of remaining para.
|
sl@0
|
964 |
paraEntryFollowing->iParaAttribs->iPhraseCount+=paraEntry->iParaAttribs->iPhraseCount; // Extend phrase count
|
sl@0
|
965 |
paraEntry->iParaAttribs->Release();
|
sl@0
|
966 |
iParaIx->Delete(aInfo.iStartPara);
|
sl@0
|
967 |
}
|
sl@0
|
968 |
if (aInfo.iDeleteType!=TIndexDeleteInfo::EDeleteParagraph)
|
sl@0
|
969 |
TidyAfterDelete(aInfo);
|
sl@0
|
970 |
|
sl@0
|
971 |
__TEST_INVARIANT;
|
sl@0
|
972 |
return doParaMerge;
|
sl@0
|
973 |
}
|
sl@0
|
974 |
|
sl@0
|
975 |
|
sl@0
|
976 |
void CRichTextIndex::TidyAfterDelete(const TIndexDeleteInfo& aInfo)
|
sl@0
|
977 |
//
|
sl@0
|
978 |
//
|
sl@0
|
979 |
{
|
sl@0
|
980 |
MergePhrases(aInfo.iDeletePos.iDocPos); // Alters internal position record.
|
sl@0
|
981 |
TCurrentIndexRecords current;
|
sl@0
|
982 |
GetCurrentRecords(current); // So must get records again.
|
sl@0
|
983 |
if (!current.iParaAttribs->IsShared())
|
sl@0
|
984 |
{// May be able to reclaim a share from this *specific* record
|
sl@0
|
985 |
CParaAttribs* sharedParaAttribs=RequestShare(iPos);
|
sl@0
|
986 |
if (sharedParaAttribs!=NULL && current.iParaAttribs!=sharedParaAttribs)
|
sl@0
|
987 |
{// Use this shared record
|
sl@0
|
988 |
current.iParaAttribs->Release();
|
sl@0
|
989 |
RemoveFromPhraseIx(iPos.iPhraseElement);
|
sl@0
|
990 |
current.iParaEntry->iParaAttribs=sharedParaAttribs;
|
sl@0
|
991 |
}
|
sl@0
|
992 |
}
|
sl@0
|
993 |
}
|
sl@0
|
994 |
|
sl@0
|
995 |
|
sl@0
|
996 |
void CRichTextIndex::Normalize(TInt aPos)
|
sl@0
|
997 |
//
|
sl@0
|
998 |
{
|
sl@0
|
999 |
ScanToPosition(aPos,EScanToPositionAbsolute);
|
sl@0
|
1000 |
NormalizeNow(iPos);
|
sl@0
|
1001 |
|
sl@0
|
1002 |
__TEST_INVARIANT;
|
sl@0
|
1003 |
}
|
sl@0
|
1004 |
|
sl@0
|
1005 |
|
sl@0
|
1006 |
void CRichTextIndex::NormalizeNow(const TLogicalPosition& aNormalizePos)
|
sl@0
|
1007 |
//
|
sl@0
|
1008 |
{
|
sl@0
|
1009 |
CParaAttribs* currentParaAttribs=(*iParaIx)[aNormalizePos.iParaElement].iParaAttribs;
|
sl@0
|
1010 |
if (!currentParaAttribs->IsShared())
|
sl@0
|
1011 |
{
|
sl@0
|
1012 |
CParaAttribs* sharedParaAttribs=RequestShare(iPos);
|
sl@0
|
1013 |
if (sharedParaAttribs!=NULL && currentParaAttribs!=sharedParaAttribs)
|
sl@0
|
1014 |
{// We must have been given a share on something already in the shared list. Dump current stuff.
|
sl@0
|
1015 |
currentParaAttribs->Release();
|
sl@0
|
1016 |
(*iParaIx)[aNormalizePos.iParaElement].iParaAttribs=sharedParaAttribs;
|
sl@0
|
1017 |
RemoveFromPhraseIx(aNormalizePos.iParaBasePhraseElement);
|
sl@0
|
1018 |
}
|
sl@0
|
1019 |
}
|
sl@0
|
1020 |
}
|
sl@0
|
1021 |
|
sl@0
|
1022 |
|
sl@0
|
1023 |
CParaAttribs* CRichTextIndex::ReserveCellLC()
|
sl@0
|
1024 |
// Returns a handle to a newly created CParaAttribs object. This may be used
|
sl@0
|
1025 |
// during a call to GetParaAttribsL() as a pre-allocated cell, thus ensuring
|
sl@0
|
1026 |
// that the call cannot possibly leave.
|
sl@0
|
1027 |
// ASSUMES: that the internal position record has been set correctly.
|
sl@0
|
1028 |
//
|
sl@0
|
1029 |
{
|
sl@0
|
1030 |
CParaAttribs* reservedCell=ReserveCellL();
|
sl@0
|
1031 |
CleanupStack::PushL(TCleanupItem(ReleaseOnCleanup,reservedCell));
|
sl@0
|
1032 |
return reservedCell;
|
sl@0
|
1033 |
}
|
sl@0
|
1034 |
|
sl@0
|
1035 |
|
sl@0
|
1036 |
CParaAttribs* CRichTextIndex::ReserveCellL()
|
sl@0
|
1037 |
// Returns a handle to a newly created CParaAttribs object. This may be used
|
sl@0
|
1038 |
// during a call to GetParaAttribsL() as a pre-allocated cell, thus ensuring
|
sl@0
|
1039 |
// that the call cannot possibly leave.
|
sl@0
|
1040 |
// ASSUMES: that the internal position record has been set correctly.
|
sl@0
|
1041 |
//
|
sl@0
|
1042 |
{
|
sl@0
|
1043 |
TCurrentIndexRecords current;
|
sl@0
|
1044 |
GetCurrentRecords(current);
|
sl@0
|
1045 |
const CParaAttribs& paraAttribs=*current.iParaAttribs;
|
sl@0
|
1046 |
CParaFormatLayer* paraLayer=paraAttribs.iParaFormat;
|
sl@0
|
1047 |
CCharFormatLayer* charLayer=(paraAttribs.IsShared())
|
sl@0
|
1048 |
? paraAttribs.iCharFormat
|
sl@0
|
1049 |
: (*iPhraseIx)[iPos.iPhraseElement].CharFormat();
|
sl@0
|
1050 |
CParaAttribs* reservedCell=CParaAttribs::NewL(paraLayer,charLayer);
|
sl@0
|
1051 |
return reservedCell;
|
sl@0
|
1052 |
}
|
sl@0
|
1053 |
|
sl@0
|
1054 |
|
sl@0
|
1055 |
TBool CRichTextIndex::DeleteParagraphText(TInt& aLength)
|
sl@0
|
1056 |
// Called once for each paragraph that's included in the delete range.
|
sl@0
|
1057 |
// Assumes the internal position record has already been set correctly.
|
sl@0
|
1058 |
// The delete range may cover: (1) The entire paragraph - so just destroy the paragraph,
|
sl@0
|
1059 |
// (2i) At least a portion of a single phrase, and possibly
|
sl@0
|
1060 |
// (2ii) 0..n whole contiguous phrases, and possibly
|
sl@0
|
1061 |
// (2iii) a trailing partial phrase.
|
sl@0
|
1062 |
// Returns ETrue if the full paragraph is deleted, otherwise returns EFalase.
|
sl@0
|
1063 |
//
|
sl@0
|
1064 |
{
|
sl@0
|
1065 |
TCurrentIndexRecords current; GetCurrentRecords(current);
|
sl@0
|
1066 |
if (FirstPhraseOfParagraph() && iPos.iPhraseElementOffset==0 && aLength>=current.iParaEntry->iLength)
|
sl@0
|
1067 |
{// The entire paragraph needs to be deleted.
|
sl@0
|
1068 |
aLength-=current.iParaEntry->iLength;
|
sl@0
|
1069 |
if (!current.iParaAttribs->IsShared())
|
sl@0
|
1070 |
RemoveFromPhraseIx(iPos.iParaBasePhraseElement,current.iParaAttribs->iPhraseCount);
|
sl@0
|
1071 |
current.iParaAttribs->Release();
|
sl@0
|
1072 |
iParaIx->Delete(iPos.iParaElement);
|
sl@0
|
1073 |
return ETrue;
|
sl@0
|
1074 |
}
|
sl@0
|
1075 |
TInt deleteFromPhrase=CurrentPhraseLength()-iPos.iPhraseElementOffset;
|
sl@0
|
1076 |
TInt maxPhrase=current.iParaAttribs->PhraseCount();
|
sl@0
|
1077 |
TInt currentPhrase=(iPos.iPhraseElement-iPos.iParaBasePhraseElement);
|
sl@0
|
1078 |
while (currentPhrase<maxPhrase)
|
sl@0
|
1079 |
{
|
sl@0
|
1080 |
TInt deletable=Min(deleteFromPhrase,aLength);
|
sl@0
|
1081 |
current.iParaEntry->iLength-=deletable; // Adjust the paragraph length.
|
sl@0
|
1082 |
if (current.iPhrase && deletable>=CurrentPhraseLength())
|
sl@0
|
1083 |
{// Remove the now empty phrase from the phrase index.
|
sl@0
|
1084 |
RemoveFromPhraseIx(iPos.iPhraseElement);
|
sl@0
|
1085 |
current.iParaAttribs->iPhraseCount--;
|
sl@0
|
1086 |
}
|
sl@0
|
1087 |
else if (current.iPhrase)
|
sl@0
|
1088 |
{// Adjust phrase length and move onto the next phrase.
|
sl@0
|
1089 |
current.iPhrase->AdjustLength(-deletable);
|
sl@0
|
1090 |
iPos.iPhraseElement++;
|
sl@0
|
1091 |
iPos.iPhraseElementOffset=0;
|
sl@0
|
1092 |
}
|
sl@0
|
1093 |
currentPhrase++;
|
sl@0
|
1094 |
aLength-=deletable;
|
sl@0
|
1095 |
if(aLength==0)
|
sl@0
|
1096 |
break; // Nothing left to delete in this paragraph.
|
sl@0
|
1097 |
// Get the data for the next phrase.
|
sl@0
|
1098 |
GetCurrentRecords(current);
|
sl@0
|
1099 |
deleteFromPhrase=CurrentPhraseLength();
|
sl@0
|
1100 |
}
|
sl@0
|
1101 |
return EFalse;
|
sl@0
|
1102 |
}
|
sl@0
|
1103 |
|
sl@0
|
1104 |
TBool CRichTextIndex::InsertCharFormatIsActive()
|
sl@0
|
1105 |
{
|
sl@0
|
1106 |
return iPendingNewPhrasePos != EInsertCharFormatReset;
|
sl@0
|
1107 |
}
|
sl@0
|
1108 |
|
sl@0
|
1109 |
/** Sets an *InsertPending* state, where format has been inserted into the
|
sl@0
|
1110 |
text, but no content has yet been inserted. This *state* is cancelled by cursor
|
sl@0
|
1111 |
movement etc. Split the current phrase at aPos (if necessary) and insert a zero
|
sl@0
|
1112 |
length phrase, ready to accept the pending content of the specified format.
|
sl@0
|
1113 |
*/
|
sl@0
|
1114 |
void CRichTextIndex::SetInsertCharFormatL(const TCharFormatX& aFormat,const TCharFormatXMask& aMask,TInt aPos)
|
sl@0
|
1115 |
{
|
sl@0
|
1116 |
if (InsertCharFormatIsActive() && aPos!=iPendingNewPhrasePos)
|
sl@0
|
1117 |
{
|
sl@0
|
1118 |
OstTrace0( TRACE_FATAL, CRICHTEXTINDEX_SETINSERTCHARFORMATL, "ESetInsertCharFormatIntegrityErr" );
|
sl@0
|
1119 |
}
|
sl@0
|
1120 |
__ASSERT_ALWAYS(!InsertCharFormatIsActive() || aPos==iPendingNewPhrasePos,
|
sl@0
|
1121 |
Panic(ESetInsertCharFormatIntegrityErr));
|
sl@0
|
1122 |
if (InsertCharFormatIsActive())
|
sl@0
|
1123 |
UpdateInsertCharFormatL(aFormat, aMask);
|
sl@0
|
1124 |
else
|
sl@0
|
1125 |
NewInsertCharFormatL(aFormat, aMask, aPos);
|
sl@0
|
1126 |
}
|
sl@0
|
1127 |
|
sl@0
|
1128 |
void CRichTextIndex::NewInsertCharFormatL(const TCharFormatX& aFormat,
|
sl@0
|
1129 |
const TCharFormatXMask& aMask, TInt aPos)
|
sl@0
|
1130 |
{
|
sl@0
|
1131 |
if (InsertCharFormatIsActive())
|
sl@0
|
1132 |
{
|
sl@0
|
1133 |
OstTrace0( TRACE_FATAL, CRICHTEXTINDEX_NEWINSERTCHARFORMATL, "ESetInsertCharFormatIntegrityErr" );
|
sl@0
|
1134 |
}
|
sl@0
|
1135 |
__ASSERT_ALWAYS(!InsertCharFormatIsActive(),
|
sl@0
|
1136 |
Panic(ESetInsertCharFormatIntegrityErr));
|
sl@0
|
1137 |
ScanToPosition(aPos,EScanToPositionMatchLeft);
|
sl@0
|
1138 |
TCurrentIndexRecords current;
|
sl@0
|
1139 |
GetCurrentRecords(current);
|
sl@0
|
1140 |
CCharFormatLayer* basedOn;
|
sl@0
|
1141 |
TCharFormatX applyFormat=aFormat;
|
sl@0
|
1142 |
TCharFormatXMask applyMask=aMask;
|
sl@0
|
1143 |
GetPhraseFormat(current,applyFormat,applyMask,basedOn); // Inherit phrase attributes to the left, over what is present.
|
sl@0
|
1144 |
TBool origParaAttribsShared=current.iParaAttribs->IsShared();
|
sl@0
|
1145 |
if (origParaAttribsShared)
|
sl@0
|
1146 |
{// Current paraAttribs is shared.
|
sl@0
|
1147 |
iRollbackParaAttribsHandle=current.iParaAttribs;
|
sl@0
|
1148 |
current.iParaEntry->iParaAttribs=RequestReclaimShareL(current.iParaAttribs,current.iParaEntry); // Does not release share.
|
sl@0
|
1149 |
ScanToPosition(aPos,EScanToPositionMatchLeft); // Pick up reclaimed phrase.
|
sl@0
|
1150 |
} // Now current.iParaAttribs has specific character formatting - guaranteed.
|
sl@0
|
1151 |
GetCurrentRecords(current);
|
sl@0
|
1152 |
TRAPD(ret, DoNewInsertCharFormatL(applyFormat, applyMask,
|
sl@0
|
1153 |
basedOn, current.iParaAttribs));
|
sl@0
|
1154 |
if (ret!=KErrNone)
|
sl@0
|
1155 |
{// Rollback as if this function call never happened.
|
sl@0
|
1156 |
if (origParaAttribsShared)
|
sl@0
|
1157 |
{// Revert back to sharing the original.
|
sl@0
|
1158 |
current.iParaAttribs->Release();
|
sl@0
|
1159 |
RemoveFromPhraseIx(iPos.iPhraseElement);
|
sl@0
|
1160 |
current.iParaEntry->iParaAttribs=iRollbackParaAttribsHandle;
|
sl@0
|
1161 |
}
|
sl@0
|
1162 |
else
|
sl@0
|
1163 |
{// Restore the original phrase index.
|
sl@0
|
1164 |
if (PhraseSplit())
|
sl@0
|
1165 |
MergePhrases(aPos);
|
sl@0
|
1166 |
}
|
sl@0
|
1167 |
OstTrace0( TRACE_FATAL, DUP1_CRICHTEXTINDEX_NEWINSERTCHARFORMATL, "LeaveNoMemory" );
|
sl@0
|
1168 |
User::LeaveNoMemory();
|
sl@0
|
1169 |
}
|
sl@0
|
1170 |
iPendingNewPhrasePos=aPos;
|
sl@0
|
1171 |
}
|
sl@0
|
1172 |
|
sl@0
|
1173 |
void CRichTextIndex::UpdateInsertCharFormatL(const TCharFormatX& aFormat,
|
sl@0
|
1174 |
const TCharFormatXMask& aMask)
|
sl@0
|
1175 |
{
|
sl@0
|
1176 |
CCharFormatLayer* currentLayer = GetCurrentInsertCharFormat();
|
sl@0
|
1177 |
CCharFormatLayer* newLayer = CCharFormatLayer::NewCopyBaseL(currentLayer);
|
sl@0
|
1178 |
CleanupStack::PushL(newLayer);
|
sl@0
|
1179 |
newLayer->SetL(aFormat, aMask);
|
sl@0
|
1180 |
currentLayer->Swap(*newLayer);
|
sl@0
|
1181 |
CleanupStack::PopAndDestroy(newLayer);
|
sl@0
|
1182 |
}
|
sl@0
|
1183 |
|
sl@0
|
1184 |
CCharFormatLayer* CRichTextIndex::GetCurrentInsertCharFormat()
|
sl@0
|
1185 |
{
|
sl@0
|
1186 |
if (!InsertCharFormatIsActive())
|
sl@0
|
1187 |
{
|
sl@0
|
1188 |
OstTrace0( TRACE_DUMP, CRICHTEXTINDEX_GETCURRENTINSERTCHARFORMAT, "ESetInsertCharFormatIntegrityErr" );
|
sl@0
|
1189 |
}
|
sl@0
|
1190 |
__ASSERT_DEBUG(InsertCharFormatIsActive(),
|
sl@0
|
1191 |
Panic(ESetInsertCharFormatIntegrityErr));
|
sl@0
|
1192 |
ScanToPosition(iPendingNewPhrasePos,EScanToPositionMatchLeft);
|
sl@0
|
1193 |
TCurrentIndexRecords current;
|
sl@0
|
1194 |
GetCurrentRecords(current);
|
sl@0
|
1195 |
if ((*iPhraseIx)[iPos.iPhraseElement].Length() != 0)
|
sl@0
|
1196 |
{
|
sl@0
|
1197 |
OstTrace0( TRACE_DUMP, DUP1_CRICHTEXTINDEX_GETCURRENTINSERTCHARFORMAT, "ESetInsertCharFormatIntegrityErr" );
|
sl@0
|
1198 |
}
|
sl@0
|
1199 |
__ASSERT_DEBUG((*iPhraseIx)[iPos.iPhraseElement].Length() == 0,
|
sl@0
|
1200 |
Panic(ESetInsertCharFormatIntegrityErr));
|
sl@0
|
1201 |
return (*iPhraseIx)[iPos.iPhraseElement].CharFormat();
|
sl@0
|
1202 |
}
|
sl@0
|
1203 |
|
sl@0
|
1204 |
void CRichTextIndex::DoNewInsertCharFormatL(const TCharFormatX& aFormat,const TCharFormatXMask& aMask,
|
sl@0
|
1205 |
CCharFormatLayer* aBasedOn,CParaAttribs* aParaAttribs)
|
sl@0
|
1206 |
{
|
sl@0
|
1207 |
SplitPhraseL(iPos.iPhraseElement,iPos.iPhraseElementOffset,aParaAttribs);
|
sl@0
|
1208 |
CCharFormatLayer* layer=CCharFormatLayer::NewL();
|
sl@0
|
1209 |
layer->SetBase(aBasedOn); // must be done before the SetL().
|
sl@0
|
1210 |
CleanupStack::PushL(layer);
|
sl@0
|
1211 |
layer->SetL(aFormat,aMask);
|
sl@0
|
1212 |
RPhraseAttribsEntry pendingNewPhrase(layer);
|
sl@0
|
1213 |
TInt pendingNewPhraseElement=(FirstPhraseOfParagraph() && iPos.iPhraseElementOffset==0)
|
sl@0
|
1214 |
?iPos.iParaBasePhraseElement:iPos.iPhraseElement+1;
|
sl@0
|
1215 |
iPhraseIx->InsertL(pendingNewPhraseElement,pendingNewPhrase);
|
sl@0
|
1216 |
CleanupStack::Pop();
|
sl@0
|
1217 |
aParaAttribs->iPhraseCount++;
|
sl@0
|
1218 |
}
|
sl@0
|
1219 |
|
sl@0
|
1220 |
|
sl@0
|
1221 |
void CRichTextIndex::RebalanceIndex()
|
sl@0
|
1222 |
// Returns the index to a good state, by releasing the extra share taken on the paraAttribs
|
sl@0
|
1223 |
//
|
sl@0
|
1224 |
{
|
sl@0
|
1225 |
if (iRollbackParaAttribsHandle)
|
sl@0
|
1226 |
{
|
sl@0
|
1227 |
// ASSERT: The specified para attribs is indeed in the share list.
|
sl@0
|
1228 |
if (!iRollbackParaAttribsHandle->IsShared())
|
sl@0
|
1229 |
{
|
sl@0
|
1230 |
OstTrace0( TRACE_FATAL, CRICHTEXTINDEX_REBALANCEINDEX, "EParaAttribsNotInSharedList" );
|
sl@0
|
1231 |
}
|
sl@0
|
1232 |
__ASSERT_ALWAYS(iRollbackParaAttribsHandle->IsShared(),Panic(EParaAttribsNotInSharedList));
|
sl@0
|
1233 |
iRollbackParaAttribsHandle->Release();
|
sl@0
|
1234 |
iRollbackParaAttribsHandle=NULL;
|
sl@0
|
1235 |
}
|
sl@0
|
1236 |
}
|
sl@0
|
1237 |
|
sl@0
|
1238 |
/** Cancels the transitory state where a specified character format is applied
|
sl@0
|
1239 |
on top of any inherited formatting. eg, when bold is on. Cancel when: (1) the
|
sl@0
|
1240 |
text position is altered. (2) the first character (or picture) has been
|
sl@0
|
1241 |
inserted following the setting of this state. If a zero length phrase is
|
sl@0
|
1242 |
removed OR has content entered into it, the newly abutting phrases are checked
|
sl@0
|
1243 |
to see if they can be merged. Then a request share of this para is issued.
|
sl@0
|
1244 |
*/
|
sl@0
|
1245 |
void CRichTextIndex::CancelInsertCharFormat()
|
sl@0
|
1246 |
{
|
sl@0
|
1247 |
if (InsertCharFormatIsActive())
|
sl@0
|
1248 |
{
|
sl@0
|
1249 |
TBool isDeleted = DeleteInsertCharFormat();
|
sl@0
|
1250 |
ConsolidateAt(iPendingNewPhrasePos, isDeleted?
|
sl@0
|
1251 |
EPositionOnly : EFollowingPhrase);
|
sl@0
|
1252 |
iPendingNewPhrasePos = EInsertCharFormatReset;
|
sl@0
|
1253 |
}
|
sl@0
|
1254 |
}
|
sl@0
|
1255 |
|
sl@0
|
1256 |
/** Attempts to delete a zero-length phrase at the insert character format
|
sl@0
|
1257 |
position. Does not delete any phrase of non-zero length.
|
sl@0
|
1258 |
@pre The insert character format must be active
|
sl@0
|
1259 |
@return ETrue if a zero-length phrase was deleted.
|
sl@0
|
1260 |
*/
|
sl@0
|
1261 |
TBool CRichTextIndex::DeleteInsertCharFormat()
|
sl@0
|
1262 |
{
|
sl@0
|
1263 |
if (!InsertCharFormatIsActive())
|
sl@0
|
1264 |
{
|
sl@0
|
1265 |
OstTrace0( TRACE_DUMP, CRICHTEXTINDEX_DELETEINSERTCHARFORMAT, "Invariant" );
|
sl@0
|
1266 |
}
|
sl@0
|
1267 |
__ASSERT_DEBUG(InsertCharFormatIsActive(), User::Invariant());
|
sl@0
|
1268 |
ScanToPosition(iPendingNewPhrasePos,EScanToPositionMatchLeft);
|
sl@0
|
1269 |
TCurrentIndexRecords current;
|
sl@0
|
1270 |
GetCurrentRecords(current);
|
sl@0
|
1271 |
if (current.iPhrase && current.iPhrase->Length() == 0)
|
sl@0
|
1272 |
{
|
sl@0
|
1273 |
RemoveFromPhraseIx(iPos.iPhraseElement);
|
sl@0
|
1274 |
current.iParaAttribs->iPhraseCount--; // Para has 1 less phrase in it now.
|
sl@0
|
1275 |
return ETrue;
|
sl@0
|
1276 |
}
|
sl@0
|
1277 |
return EFalse;
|
sl@0
|
1278 |
}
|
sl@0
|
1279 |
|
sl@0
|
1280 |
/** Attempts to merge phrases and share paragraphs.
|
sl@0
|
1281 |
@param aPosition
|
sl@0
|
1282 |
Phrase boundary here is merged if possible, paragraph here is shared if
|
sl@0
|
1283 |
possible.
|
sl@0
|
1284 |
@param aPositionOrPhrase
|
sl@0
|
1285 |
If EPositionOnly the phrases either side of aPosition are considered for merging. If EFollowingPhrase,
|
sl@0
|
1286 |
the end of the phrase following aPosition is also considered.
|
sl@0
|
1287 |
*/
|
sl@0
|
1288 |
void CRichTextIndex::ConsolidateAt(TInt aPosition,
|
sl@0
|
1289 |
TPositionOrPhrase aPositionOrPhrase)
|
sl@0
|
1290 |
{
|
sl@0
|
1291 |
ScanToPosition(aPosition, EScanToPositionAbsolute);
|
sl@0
|
1292 |
TCurrentIndexRecords current;
|
sl@0
|
1293 |
GetCurrentRecords(current);
|
sl@0
|
1294 |
if (!current.iPhrase)
|
sl@0
|
1295 |
return;
|
sl@0
|
1296 |
|
sl@0
|
1297 |
TInt length = current.iPhrase->Length();
|
sl@0
|
1298 |
MergePhrases(aPosition);
|
sl@0
|
1299 |
if (aPositionOrPhrase == EFollowingPhrase)
|
sl@0
|
1300 |
{
|
sl@0
|
1301 |
ScanToPosition(aPosition, EScanToPositionAbsolute);
|
sl@0
|
1302 |
GetCurrentRecords(current);
|
sl@0
|
1303 |
if (current.iPhrase)
|
sl@0
|
1304 |
MergePhrases(aPosition + length);
|
sl@0
|
1305 |
}
|
sl@0
|
1306 |
Normalize(aPosition);
|
sl@0
|
1307 |
RebalanceIndex();
|
sl@0
|
1308 |
}
|
sl@0
|
1309 |
|
sl@0
|
1310 |
TBool CRichTextIndex::DelSetInsertCharFormatL(TInt aPos,TInt aLength)
|
sl@0
|
1311 |
// Delete aLength characters, commencing at, and including, aPos.
|
sl@0
|
1312 |
// Adds value by the following behaviour:
|
sl@0
|
1313 |
// If aPos is on a phrase boundary, then remember temporarily the phrase format.
|
sl@0
|
1314 |
// This is applied to any content that is immediately inserted.
|
sl@0
|
1315 |
//
|
sl@0
|
1316 |
{
|
sl@0
|
1317 |
__TEST_INVARIANT;
|
sl@0
|
1318 |
|
sl@0
|
1319 |
CancelInsertCharFormat();
|
sl@0
|
1320 |
ScanToPosition(aPos,EScanToPositionAbsolute);
|
sl@0
|
1321 |
TCurrentIndexRecords current; GetCurrentRecords(current);
|
sl@0
|
1322 |
if ((!current.iParaAttribs->IsShared()) && iPos.iPhraseElementOffset==0)
|
sl@0
|
1323 |
{// aPos is on phrase boundary so SetState.
|
sl@0
|
1324 |
TCharFormatX format;
|
sl@0
|
1325 |
TCharFormatXMask mask;
|
sl@0
|
1326 |
CCharFormatLayer* charBase;
|
sl@0
|
1327 |
GetPhraseFormat(current,format,mask,charBase);
|
sl@0
|
1328 |
SetInsertCharFormatL(format,mask,aPos);
|
sl@0
|
1329 |
}
|
sl@0
|
1330 |
TIndexDeleteInfo deleteInfo;
|
sl@0
|
1331 |
SetForDeleteL(deleteInfo,aPos,aLength);
|
sl@0
|
1332 |
TBool parasMerged=DeleteNow(deleteInfo);
|
sl@0
|
1333 |
|
sl@0
|
1334 |
__TEST_INVARIANT;
|
sl@0
|
1335 |
return parasMerged;
|
sl@0
|
1336 |
}
|
sl@0
|
1337 |
|
sl@0
|
1338 |
|
sl@0
|
1339 |
void CRichTextIndex::ApplyParaFormatL(const CParaFormat* aFormat,const TParaFormatMask& aMask,TInt aPos,TInt aLength)
|
sl@0
|
1340 |
// Applies the specified format attributes to the paragraphs covering character position aPos to aPos+aLength-1.
|
sl@0
|
1341 |
// Preserves any attributes that are currently stored in this layer.
|
sl@0
|
1342 |
// If the specified para(s) is in the shared list, a new shared para of the desired format must be created,
|
sl@0
|
1343 |
// and the usage count of the original decremented.
|
sl@0
|
1344 |
//
|
sl@0
|
1345 |
{
|
sl@0
|
1346 |
__TEST_INVARIANT;
|
sl@0
|
1347 |
|
sl@0
|
1348 |
TInt offset=(aLength==0)?0 :-1;
|
sl@0
|
1349 |
TInt endPara=OwningParagraph(aPos+(aLength+offset));
|
sl@0
|
1350 |
TInt paraItem=OwningParagraph(aPos);
|
sl@0
|
1351 |
TCurrentIndexRecords current; GetCurrentRecords(current);
|
sl@0
|
1352 |
CParaFormat* pf=CParaFormat::NewL(*aFormat); // preserve the desired tablist.
|
sl@0
|
1353 |
CleanupStack::PushL(pf);
|
sl@0
|
1354 |
for (;paraItem<=endPara;paraItem++)
|
sl@0
|
1355 |
{// For each paragraph, apply the specified format.
|
sl@0
|
1356 |
TParaFormatMask applyMask=aMask;
|
sl@0
|
1357 |
CParaAttribs* currentParaAttribs=(*iParaIx)[paraItem].iParaAttribs;
|
sl@0
|
1358 |
TBool shared=currentParaAttribs->IsShared();
|
sl@0
|
1359 |
if (!shared)
|
sl@0
|
1360 |
{
|
sl@0
|
1361 |
currentParaAttribs->iParaFormat->SenseL(pf,applyMask);
|
sl@0
|
1362 |
currentParaAttribs->iParaFormat->SetL(pf,applyMask);
|
sl@0
|
1363 |
}
|
sl@0
|
1364 |
else
|
sl@0
|
1365 |
{// Must create a new shared para attribs of the specified format
|
sl@0
|
1366 |
// Make a new para format layer
|
sl@0
|
1367 |
currentParaAttribs->iParaFormat->SenseL(pf,applyMask);
|
sl@0
|
1368 |
CParaFormatLayer* newParaLayer=CParaFormatLayer::NewL(pf,applyMask);
|
sl@0
|
1369 |
newParaLayer->SetBase(currentParaAttribs->iParaFormat->SenseBase());
|
sl@0
|
1370 |
CleanupStack::PushL(newParaLayer);
|
sl@0
|
1371 |
// Make a new char format layer
|
sl@0
|
1372 |
CCharFormatLayer* newCharLayer=CCharFormatLayer::NewL(currentParaAttribs->iCharFormat);
|
sl@0
|
1373 |
newCharLayer->SetBase(currentParaAttribs->iCharFormat->SenseBase());
|
sl@0
|
1374 |
CleanupStack::PushL(newCharLayer);
|
sl@0
|
1375 |
//
|
sl@0
|
1376 |
CParaAttribs* sharedParaAttribs=GetParaAttribsL(newParaLayer,newCharLayer);
|
sl@0
|
1377 |
CleanupStack::PopAndDestroy(2);
|
sl@0
|
1378 |
if (sharedParaAttribs)
|
sl@0
|
1379 |
(*iParaIx)[paraItem].iParaAttribs=sharedParaAttribs;
|
sl@0
|
1380 |
currentParaAttribs->Release();
|
sl@0
|
1381 |
}
|
sl@0
|
1382 |
}
|
sl@0
|
1383 |
CleanupStack::PopAndDestroy(); // pf
|
sl@0
|
1384 |
__TEST_INVARIANT;
|
sl@0
|
1385 |
}
|
sl@0
|
1386 |
|
sl@0
|
1387 |
|
sl@0
|
1388 |
void CRichTextIndex::ApplyParagraphStyleL(const CParagraphStyle& aStyle,TInt aPos,TInt aLength,
|
sl@0
|
1389 |
const CCharFormatLayer* aCharStyleNormal,CParagraphStyle::TApplyParaStyleMode aMode)
|
sl@0
|
1390 |
// Applies the specified paragraph style to the paragraphs covering
|
sl@0
|
1391 |
// character positions aPos to aPos+aLength-1.
|
sl@0
|
1392 |
// Alters the specific formatting of the covered paragraphs as specified by aMode.
|
sl@0
|
1393 |
//
|
sl@0
|
1394 |
{
|
sl@0
|
1395 |
__TEST_INVARIANT;
|
sl@0
|
1396 |
|
sl@0
|
1397 |
TInt offset=(aLength==0)?0 :-1;
|
sl@0
|
1398 |
TInt endPara=OwningParagraph(aPos+(aLength+offset));
|
sl@0
|
1399 |
TInt paraItem=OwningParagraph(aPos);
|
sl@0
|
1400 |
TInt paragraphBasePhrase=iPos.iParaBasePhraseElement;
|
sl@0
|
1401 |
TCurrentIndexRecords current;
|
sl@0
|
1402 |
GetCurrentRecords(current);
|
sl@0
|
1403 |
for (;paraItem<=endPara;paraItem++)
|
sl@0
|
1404 |
{// For each paragraph, apply the specified style
|
sl@0
|
1405 |
CParaAttribs& currentParaAttribs=*(*iParaIx)[paraItem].iParaAttribs;
|
sl@0
|
1406 |
TBool shared=currentParaAttribs.IsShared();
|
sl@0
|
1407 |
TUid type=aStyle.Type();
|
sl@0
|
1408 |
if (!shared)
|
sl@0
|
1409 |
{
|
sl@0
|
1410 |
currentParaAttribs.iParaFormat->SetBase(&aStyle);
|
sl@0
|
1411 |
TInt phraseCount=currentParaAttribs.PhraseCount();
|
sl@0
|
1412 |
for (TInt phraseItem=0;phraseItem<phraseCount;phraseItem++)
|
sl@0
|
1413 |
{
|
sl@0
|
1414 |
CCharFormatLayer& charLayer=*(*iPhraseIx)[paragraphBasePhrase+phraseItem].CharFormat();
|
sl@0
|
1415 |
if (type==KNormalParagraphStyleUid)
|
sl@0
|
1416 |
charLayer.SetBase(aCharStyleNormal);
|
sl@0
|
1417 |
else
|
sl@0
|
1418 |
charLayer.SetBase(aStyle.CharFormatLayer());
|
sl@0
|
1419 |
ModifySpecificFormatting(*currentParaAttribs.iParaFormat,charLayer,aMode);
|
sl@0
|
1420 |
}
|
sl@0
|
1421 |
paragraphBasePhrase+=phraseCount;
|
sl@0
|
1422 |
}
|
sl@0
|
1423 |
else
|
sl@0
|
1424 |
{// Must create a new shared para attribs of the same format, but a different based on link
|
sl@0
|
1425 |
// Make a new para format layer
|
sl@0
|
1426 |
CParaFormatLayer* newParaLayer=NULL;
|
sl@0
|
1427 |
if (aMode==CParagraphStyle::ERetainNoSpecificFormats || aMode==CParagraphStyle::ERetainSpecificCharFormat)
|
sl@0
|
1428 |
newParaLayer=CParaFormatLayer::NewL();
|
sl@0
|
1429 |
else
|
sl@0
|
1430 |
newParaLayer=CParaFormatLayer::NewL(currentParaAttribs.iParaFormat);
|
sl@0
|
1431 |
newParaLayer->SetBase(&aStyle);
|
sl@0
|
1432 |
CleanupStack::PushL(newParaLayer);
|
sl@0
|
1433 |
//
|
sl@0
|
1434 |
// Make a new char format layer
|
sl@0
|
1435 |
CCharFormatLayer* newCharLayer=NULL;
|
sl@0
|
1436 |
if (aMode==CParagraphStyle::ERetainNoSpecificFormats || aMode==CParagraphStyle::ERetainSpecificParaFormat)
|
sl@0
|
1437 |
newCharLayer=CCharFormatLayer::NewL();
|
sl@0
|
1438 |
else
|
sl@0
|
1439 |
newCharLayer=CCharFormatLayer::NewL(currentParaAttribs.iCharFormat);
|
sl@0
|
1440 |
if (type==KNormalParagraphStyleUid)
|
sl@0
|
1441 |
newCharLayer->SetBase(aCharStyleNormal);
|
sl@0
|
1442 |
else
|
sl@0
|
1443 |
newCharLayer->SetBase(aStyle.CharFormatLayer());
|
sl@0
|
1444 |
CleanupStack::PushL(newCharLayer);
|
sl@0
|
1445 |
//
|
sl@0
|
1446 |
(*iParaIx)[paraItem].iParaAttribs=GetParaAttribsL(newParaLayer,newCharLayer);
|
sl@0
|
1447 |
CleanupStack::PopAndDestroy(2);
|
sl@0
|
1448 |
currentParaAttribs.Release();
|
sl@0
|
1449 |
}
|
sl@0
|
1450 |
}
|
sl@0
|
1451 |
}
|
sl@0
|
1452 |
|
sl@0
|
1453 |
|
sl@0
|
1454 |
void CRichTextIndex::ModifySpecificFormatting(CParaFormatLayer& aPl,CCharFormatLayer& aCl,CParagraphStyle::TApplyParaStyleMode aMode)
|
sl@0
|
1455 |
//
|
sl@0
|
1456 |
//
|
sl@0
|
1457 |
{
|
sl@0
|
1458 |
switch(aMode)
|
sl@0
|
1459 |
{
|
sl@0
|
1460 |
case(CParagraphStyle::ERetainNoSpecificFormats):
|
sl@0
|
1461 |
aPl.Reset();
|
sl@0
|
1462 |
aCl.Reset();
|
sl@0
|
1463 |
break;
|
sl@0
|
1464 |
case(CParagraphStyle::ERetainSpecificParaFormat):
|
sl@0
|
1465 |
aCl.Reset();
|
sl@0
|
1466 |
break;
|
sl@0
|
1467 |
case(CParagraphStyle::ERetainSpecificCharFormat):
|
sl@0
|
1468 |
aPl.Reset();
|
sl@0
|
1469 |
break;
|
sl@0
|
1470 |
case(CParagraphStyle::ERetainAllSpecificFormats):
|
sl@0
|
1471 |
default:
|
sl@0
|
1472 |
break;
|
sl@0
|
1473 |
}
|
sl@0
|
1474 |
}
|
sl@0
|
1475 |
|
sl@0
|
1476 |
|
sl@0
|
1477 |
/*
|
sl@0
|
1478 |
For every paragraph in the document: (i) if it uses the style aFrom, make it use the style aTo,
|
sl@0
|
1479 |
or the global style if aTo is null; (ii) if any phrase in the paragraph has a character format
|
sl@0
|
1480 |
based on the character format owned by aFrom, change it so that it is based on the character
|
sl@0
|
1481 |
format owned by aTo, or the global character format if aTo is null.
|
sl@0
|
1482 |
|
sl@0
|
1483 |
The action described in (ii) should only occur for an 'orphaned' character insertion format; that is
|
sl@0
|
1484 |
an insertion format left after deletion of a block in a certain style that is itself then deleted.
|
sl@0
|
1485 |
*/
|
sl@0
|
1486 |
void CRichTextIndex::NotifyStyleChangedL(const CParagraphStyle* aTo,const CParagraphStyle* aFrom,
|
sl@0
|
1487 |
const CParaFormatLayer& aGlobalParaFormatLayer,
|
sl@0
|
1488 |
const CCharFormatLayer& aGlobalCharFormatLayer)
|
sl@0
|
1489 |
{
|
sl@0
|
1490 |
__TEST_INVARIANT;
|
sl@0
|
1491 |
|
sl@0
|
1492 |
TInt paraCount=ParagraphCount();
|
sl@0
|
1493 |
TInt currentPhrase = 0;
|
sl@0
|
1494 |
const CCharFormatLayer* oldCharFormatLayer = aFrom->CharFormatLayer();
|
sl@0
|
1495 |
const CParaFormatLayer* newParFormatLayer = aTo ? aTo : &aGlobalParaFormatLayer;
|
sl@0
|
1496 |
const CCharFormatLayer* newCharFormatLayer = aTo ? aTo->CharFormatLayer() : &aGlobalCharFormatLayer;
|
sl@0
|
1497 |
for (TInt paraItem = 0;paraItem < paraCount; paraItem++)
|
sl@0
|
1498 |
{
|
sl@0
|
1499 |
TParaAttribsEntry* currentPara = &(*iParaIx)[paraItem];
|
sl@0
|
1500 |
CParaAttribs* currentParaAttribs = currentPara->iParaAttribs;
|
sl@0
|
1501 |
|
sl@0
|
1502 |
TBool changeParStyleBase = currentParaAttribs->iParaFormat->SenseBase() == aFrom;
|
sl@0
|
1503 |
if (!currentParaAttribs->IsShared())
|
sl@0
|
1504 |
{
|
sl@0
|
1505 |
if (changeParStyleBase)
|
sl@0
|
1506 |
currentParaAttribs->iParaFormat->SetBase(newParFormatLayer);
|
sl@0
|
1507 |
TInt phraseCount = currentParaAttribs->PhraseCount();
|
sl@0
|
1508 |
for (TInt phraseItem = currentPhrase; phraseItem < (currentPhrase + phraseCount); phraseItem++)
|
sl@0
|
1509 |
{
|
sl@0
|
1510 |
CCharFormatLayer* charFormat = (*iPhraseIx)[phraseItem].CharFormat();
|
sl@0
|
1511 |
if (charFormat->SenseBase() == oldCharFormatLayer)
|
sl@0
|
1512 |
charFormat->SetBase(newCharFormatLayer);
|
sl@0
|
1513 |
}
|
sl@0
|
1514 |
currentPhrase += phraseCount;
|
sl@0
|
1515 |
}
|
sl@0
|
1516 |
else
|
sl@0
|
1517 |
{ // Maintain the shared list reference
|
sl@0
|
1518 |
CParaAttribs* resultantParaAttribs = CParaAttribs::NewL(currentParaAttribs);
|
sl@0
|
1519 |
CleanupStack::PushL(TCleanupItem(ReleaseOnCleanup,resultantParaAttribs));
|
sl@0
|
1520 |
if (changeParStyleBase)
|
sl@0
|
1521 |
resultantParaAttribs->iParaFormat->SetBase(newParFormatLayer);
|
sl@0
|
1522 |
if (resultantParaAttribs->iCharFormat->SenseBase() == oldCharFormatLayer)
|
sl@0
|
1523 |
resultantParaAttribs->iCharFormat->SetBase(newCharFormatLayer);
|
sl@0
|
1524 |
CParaAttribs* shared = RequestShareL(resultantParaAttribs); // will return a non-NULL handle
|
sl@0
|
1525 |
__ASSERT_DEBUG(shared,Panic(EDebug));
|
sl@0
|
1526 |
currentParaAttribs->Release();
|
sl@0
|
1527 |
iSharedParaQueHead.AddLast(*resultantParaAttribs); // allows correct release of cell.
|
sl@0
|
1528 |
CleanupStack::PopAndDestroy();
|
sl@0
|
1529 |
currentPara->iParaAttribs = shared;
|
sl@0
|
1530 |
}
|
sl@0
|
1531 |
}
|
sl@0
|
1532 |
|
sl@0
|
1533 |
__TEST_INVARIANT;
|
sl@0
|
1534 |
}
|
sl@0
|
1535 |
|
sl@0
|
1536 |
|
sl@0
|
1537 |
const CParaFormatLayer* CRichTextIndex::ParagraphStyle(TBool& aStyleChangesOverRange,
|
sl@0
|
1538 |
TInt aPos,
|
sl@0
|
1539 |
TInt aLength)const
|
sl@0
|
1540 |
// Return the handle of the first paragraph style encountered in the specified range.
|
sl@0
|
1541 |
// Set aStyleChangesOverRange to ETrue, if different paragraph styles are encountered
|
sl@0
|
1542 |
// across the specified range, otherwise set it to EFalse.
|
sl@0
|
1543 |
//
|
sl@0
|
1544 |
{
|
sl@0
|
1545 |
__TEST_INVARIANT;
|
sl@0
|
1546 |
|
sl@0
|
1547 |
aStyleChangesOverRange=EFalse;
|
sl@0
|
1548 |
CParaFormatLayer* style=NULL;
|
sl@0
|
1549 |
TInt para=CONST_CAST(CRichTextIndex*,this)->OwningParagraph(aPos);
|
sl@0
|
1550 |
TInt offset=(aLength==0)?0 :-1;
|
sl@0
|
1551 |
TInt endPara=CONST_CAST(CRichTextIndex*,this)->OwningParagraph(aPos+(aLength+offset));
|
sl@0
|
1552 |
style=(CParaFormatLayer*)(*iParaIx)[para].iParaAttribs->iParaFormat->SenseBase();
|
sl@0
|
1553 |
++para;
|
sl@0
|
1554 |
for (;para<=endPara;para++)
|
sl@0
|
1555 |
{
|
sl@0
|
1556 |
CParaFormatLayer* nextStyle=(CParaFormatLayer*)(*iParaIx)[para].iParaAttribs->iParaFormat->SenseBase();
|
sl@0
|
1557 |
if (nextStyle!=style)
|
sl@0
|
1558 |
aStyleChangesOverRange=ETrue;
|
sl@0
|
1559 |
}
|
sl@0
|
1560 |
|
sl@0
|
1561 |
__TEST_INVARIANT;
|
sl@0
|
1562 |
return style;
|
sl@0
|
1563 |
}
|
sl@0
|
1564 |
|
sl@0
|
1565 |
|
sl@0
|
1566 |
void CRichTextIndex::SplitPhraseL(TInt aPhrase,TInt anOffset,RPhraseAttribsEntry& aPhraseAttribs,CParaAttribs& aParaAttribs)
|
sl@0
|
1567 |
{
|
sl@0
|
1568 |
if (anOffset<=0 || anOffset>=aPhraseAttribs.Length())
|
sl@0
|
1569 |
{
|
sl@0
|
1570 |
OstTrace0( TRACE_DUMP, CRICHTEXTINDEX_SPLITPHRASEL, "Invariant" );
|
sl@0
|
1571 |
}
|
sl@0
|
1572 |
__ASSERT_DEBUG(anOffset>0 && anOffset<aPhraseAttribs.Length(),User::Invariant());
|
sl@0
|
1573 |
//
|
sl@0
|
1574 |
CCharFormatLayer* charLayer=CCharFormatLayer::NewCopyBaseL(aPhraseAttribs.CharFormat());
|
sl@0
|
1575 |
CleanupStack::PushL(charLayer);
|
sl@0
|
1576 |
iPhraseIx->InsertL(aPhrase+1,RPhraseAttribsEntry(charLayer,aPhraseAttribs.Length()-anOffset));
|
sl@0
|
1577 |
CleanupStack::Pop();
|
sl@0
|
1578 |
//
|
sl@0
|
1579 |
// InsertL() has invalidated the phrase index.
|
sl@0
|
1580 |
iPhraseIx->At(aPhrase).SetLength(anOffset); // Adjust the length of the orginal phrase
|
sl@0
|
1581 |
aParaAttribs.iPhraseCount++;
|
sl@0
|
1582 |
}
|
sl@0
|
1583 |
|
sl@0
|
1584 |
|
sl@0
|
1585 |
TBool CRichTextIndex::MergePhrases(TInt aPhrase,RPhraseAttribsEntry& aPhraseAttribs,CParaAttribs& aParaAttribs)
|
sl@0
|
1586 |
{
|
sl@0
|
1587 |
RPhraseAttribsEntry& prevPhrase=iPhraseIx->At(aPhrase-1);
|
sl@0
|
1588 |
if (!aPhraseAttribs.IsIdentical(prevPhrase))
|
sl@0
|
1589 |
return EFalse;
|
sl@0
|
1590 |
// Merge the abutting phrases together.
|
sl@0
|
1591 |
prevPhrase.AdjustLength(aPhraseAttribs.Length()); // Extend the remaining phrase
|
sl@0
|
1592 |
RemoveFromPhraseIx(aPhrase); // Free the resources taken by the redundant phrase
|
sl@0
|
1593 |
aParaAttribs.iPhraseCount--;
|
sl@0
|
1594 |
return ETrue;
|
sl@0
|
1595 |
}
|
sl@0
|
1596 |
|
sl@0
|
1597 |
|
sl@0
|
1598 |
void CRichTextIndex::Share(TParaAttribsEntry& aParaEntry,TInt aPhrase)
|
sl@0
|
1599 |
//
|
sl@0
|
1600 |
// aParaEntry is not shared and can be (phrase count 1), aPhrase is the single phrase element
|
sl@0
|
1601 |
//
|
sl@0
|
1602 |
{
|
sl@0
|
1603 |
CParaAttribs* paraAttribs=aParaEntry.iParaAttribs;
|
sl@0
|
1604 |
if (paraAttribs->iPhraseCount!=1)
|
sl@0
|
1605 |
{
|
sl@0
|
1606 |
OstTrace0( TRACE_DUMP, CRICHTEXTINDEX_SHARE, "Invariant" );
|
sl@0
|
1607 |
}
|
sl@0
|
1608 |
__ASSERT_DEBUG(paraAttribs->iPhraseCount==1,User::Invariant());
|
sl@0
|
1609 |
|
sl@0
|
1610 |
RPhraseAttribsEntry& phraseAttribs=iPhraseIx->At(aPhrase);
|
sl@0
|
1611 |
if (phraseAttribs.IsPicturePhrase())
|
sl@0
|
1612 |
{
|
sl@0
|
1613 |
OstTrace0( TRACE_DUMP, DUP1_CRICHTEXTINDEX_SHARE, "Invariant" );
|
sl@0
|
1614 |
}
|
sl@0
|
1615 |
__ASSERT_DEBUG(!phraseAttribs.IsPicturePhrase(),User::Invariant());
|
sl@0
|
1616 |
|
sl@0
|
1617 |
CParaAttribs* share=GetParaAttribs(paraAttribs,*phraseAttribs.CharFormat());
|
sl@0
|
1618 |
if (share!=paraAttribs)
|
sl@0
|
1619 |
{ // re-use an existing share, so release the current attribs
|
sl@0
|
1620 |
paraAttribs->Release();
|
sl@0
|
1621 |
phraseAttribs.Discard();
|
sl@0
|
1622 |
aParaEntry.iParaAttribs=share;
|
sl@0
|
1623 |
}
|
sl@0
|
1624 |
iPhraseIx->Delete(aPhrase);
|
sl@0
|
1625 |
}
|
sl@0
|
1626 |
|
sl@0
|
1627 |
|
sl@0
|
1628 |
void CRichTextIndex::ApplyCharFormatCleanup(TAny* aPtr)
|
sl@0
|
1629 |
// CLeanup function for ApplyCharFormatL()
|
sl@0
|
1630 |
//
|
sl@0
|
1631 |
{REINTERPRET_CAST(CRichTextIndex*,aPtr)->ApplyCharFormatRollback();}
|
sl@0
|
1632 |
|
sl@0
|
1633 |
|
sl@0
|
1634 |
void CRichTextIndex::ApplyCharFormatRollback()
|
sl@0
|
1635 |
// Paragraph and phrase we were working on are stored in iPos
|
sl@0
|
1636 |
// Return them the canonical form
|
sl@0
|
1637 |
//
|
sl@0
|
1638 |
{
|
sl@0
|
1639 |
TParaAttribsEntry& paraEntry=iParaIx->At(iPos.iParaElement);
|
sl@0
|
1640 |
CParaAttribs* paraAttribs=paraEntry.iParaAttribs;
|
sl@0
|
1641 |
|
sl@0
|
1642 |
if (paraAttribs->IsShared())
|
sl@0
|
1643 |
return;
|
sl@0
|
1644 |
|
sl@0
|
1645 |
TInt phrase=iPos.iPhraseElement;
|
sl@0
|
1646 |
TInt base=iPos.iParaBasePhraseElement;
|
sl@0
|
1647 |
if (phrase<base || phrase>=base+paraAttribs->iPhraseCount)
|
sl@0
|
1648 |
{
|
sl@0
|
1649 |
OstTrace0( TRACE_DUMP, CRICHTEXTINDEX_APPLYCHARFORMATROLLBACK, "Invariant" );
|
sl@0
|
1650 |
}
|
sl@0
|
1651 |
__ASSERT_DEBUG(phrase>=base && phrase<base+paraAttribs->iPhraseCount,User::Invariant());
|
sl@0
|
1652 |
if (phrase<base+paraAttribs->iPhraseCount-1) // merge to the right
|
sl@0
|
1653 |
MergePhrases(phrase+1,iPhraseIx->At(phrase+1),*paraAttribs);
|
sl@0
|
1654 |
if (phrase>base) // merge to the left
|
sl@0
|
1655 |
MergePhrases(phrase,iPhraseIx->At(phrase),*paraAttribs);
|
sl@0
|
1656 |
if (paraAttribs->iPhraseCount==1) // Share the paragraph
|
sl@0
|
1657 |
Share(paraEntry,base);
|
sl@0
|
1658 |
}
|
sl@0
|
1659 |
|
sl@0
|
1660 |
|
sl@0
|
1661 |
void CRichTextIndex::ApplyCharFormatL(const TCharFormatX& aFormat,const TCharFormatXMask& aMask,TInt aPos,TInt aLength,TBool aRemoveSpecific)
|
sl@0
|
1662 |
// Applies the specified character formatting to the characters contained within the range
|
sl@0
|
1663 |
// aPos to aPos+(aLength-1).
|
sl@0
|
1664 |
//
|
sl@0
|
1665 |
{
|
sl@0
|
1666 |
if (aLength<0)
|
sl@0
|
1667 |
{
|
sl@0
|
1668 |
OstTrace0( TRACE_DUMP, CRICHTEXTINDEX_APPLYCHARFORMATL, "Invariant" );
|
sl@0
|
1669 |
}
|
sl@0
|
1670 |
__ASSERT_DEBUG(aLength>=0,User::Invariant());
|
sl@0
|
1671 |
__TEST_INVARIANT;
|
sl@0
|
1672 |
|
sl@0
|
1673 |
ScanToPosition(aPos,EScanToPositionAbsolute);
|
sl@0
|
1674 |
TInt paraOffset=iPos.iParaElementOffset;
|
sl@0
|
1675 |
TInt phraseOffset=iPos.iPhraseElementOffset;
|
sl@0
|
1676 |
TInt phrase=iPos.iPhraseElement;
|
sl@0
|
1677 |
|
sl@0
|
1678 |
// prepare for failure
|
sl@0
|
1679 |
CleanupStack::PushL(TCleanupItem(ApplyCharFormatCleanup,this));
|
sl@0
|
1680 |
|
sl@0
|
1681 |
for (;;)
|
sl@0
|
1682 |
{ // a paragraph at a time
|
sl@0
|
1683 |
TParaAttribsEntry& paraEntry=iParaIx->At(iPos.iParaElement);
|
sl@0
|
1684 |
CParaAttribs* paraAttribs=paraEntry.iParaAttribs;
|
sl@0
|
1685 |
TInt charsToFormat=Min(aLength,paraEntry.iLength-paraOffset);
|
sl@0
|
1686 |
aLength-=charsToFormat;
|
sl@0
|
1687 |
#ifdef _DEBUG
|
sl@0
|
1688 |
aPos+=charsToFormat;
|
sl@0
|
1689 |
#endif
|
sl@0
|
1690 |
|
sl@0
|
1691 |
// STEP 1. Reclaim any shared paragraph into non shared form. Re-use the object if possible
|
sl@0
|
1692 |
|
sl@0
|
1693 |
if (paraAttribs->IsShared())
|
sl@0
|
1694 |
{
|
sl@0
|
1695 |
CCharFormatLayer* charLayer=paraAttribs->iCharFormat;
|
sl@0
|
1696 |
if (paraAttribs->iRefCount==CParaAttribs::EPrimeSharedCount)
|
sl@0
|
1697 |
{ // we are the sole user of this attribute
|
sl@0
|
1698 |
iPhraseIx->InsertL(phrase,RPhraseAttribsEntry(charLayer,paraEntry.iLength));
|
sl@0
|
1699 |
// adjust attribute to be non-shared
|
sl@0
|
1700 |
paraAttribs->link.Deque();
|
sl@0
|
1701 |
paraAttribs->iRefCount=CParaAttribs::EPrimeNonSharedCount;
|
sl@0
|
1702 |
paraAttribs->iPhraseCount=1;
|
sl@0
|
1703 |
}
|
sl@0
|
1704 |
else
|
sl@0
|
1705 |
{ // create a new para attribs object
|
sl@0
|
1706 |
CParaAttribs* newAttribs=CParaAttribs::NewL(paraAttribs->iParaFormat);
|
sl@0
|
1707 |
CleanupReleasePushL(*newAttribs);
|
sl@0
|
1708 |
charLayer=CCharFormatLayer::NewCopyBaseL(charLayer);
|
sl@0
|
1709 |
CleanupStack::PushL(charLayer);
|
sl@0
|
1710 |
iPhraseIx->InsertL(phrase,RPhraseAttribsEntry(charLayer,paraEntry.iLength));
|
sl@0
|
1711 |
CleanupStack::Pop(2); // charlayer, newAttribs
|
sl@0
|
1712 |
paraAttribs->Release(); // lose a share on the old attribs
|
sl@0
|
1713 |
paraEntry.iParaAttribs=paraAttribs=newAttribs;
|
sl@0
|
1714 |
}
|
sl@0
|
1715 |
phraseOffset=paraOffset; // we are now in the current position
|
sl@0
|
1716 |
}
|
sl@0
|
1717 |
|
sl@0
|
1718 |
// STEP 2. Walk through all affected phrases in this paragraph
|
sl@0
|
1719 |
// For each one, we may need to split it, and then apply the new format
|
sl@0
|
1720 |
|
sl@0
|
1721 |
do
|
sl@0
|
1722 |
{
|
sl@0
|
1723 |
if (phrase>=iPos.iParaBasePhraseElement+paraAttribs->iPhraseCount)
|
sl@0
|
1724 |
{
|
sl@0
|
1725 |
OstTrace0( TRACE_DUMP, DUP1_CRICHTEXTINDEX_APPLYCHARFORMATL, "Invariant" );
|
sl@0
|
1726 |
}
|
sl@0
|
1727 |
__ASSERT_DEBUG(phrase<iPos.iParaBasePhraseElement+paraAttribs->iPhraseCount,User::Invariant());
|
sl@0
|
1728 |
//
|
sl@0
|
1729 |
RPhraseAttribsEntry* phraseAttribs=&iPhraseIx->At(phrase);
|
sl@0
|
1730 |
TInt len=phraseAttribs->Length();
|
sl@0
|
1731 |
|
sl@0
|
1732 |
// STEP 2.1 Split the phrase at the beginning of the range?
|
sl@0
|
1733 |
|
sl@0
|
1734 |
if (phraseOffset>0)
|
sl@0
|
1735 |
{ // can only happen for the first phrase
|
sl@0
|
1736 |
/*
|
sl@0
|
1737 |
* The pointer paraAttribs is also stored in
|
sl@0
|
1738 |
* 'paraEntry.iParaAttribs'. The memory pointed to by this
|
sl@0
|
1739 |
* pointer will be released in CRichTextIndex's destructor.
|
sl@0
|
1740 |
*/
|
sl@0
|
1741 |
// coverity[leave_without_push]
|
sl@0
|
1742 |
SplitPhraseL(phrase,phraseOffset,*phraseAttribs,*paraAttribs); // inserts new phrase at correct position
|
sl@0
|
1743 |
len-=phraseOffset;
|
sl@0
|
1744 |
phraseOffset=0;
|
sl@0
|
1745 |
iPos.iPhraseElement=++phrase;
|
sl@0
|
1746 |
phraseAttribs=&iPhraseIx->At(phrase);
|
sl@0
|
1747 |
}
|
sl@0
|
1748 |
|
sl@0
|
1749 |
// STEP 2.2 Split the phrase at the end of the range?
|
sl@0
|
1750 |
|
sl@0
|
1751 |
if (len>charsToFormat)
|
sl@0
|
1752 |
{ // phrase is longer than required format, so split it
|
sl@0
|
1753 |
/*
|
sl@0
|
1754 |
* The pointer paraAttribs is also stored in
|
sl@0
|
1755 |
* 'paraEntry.iParaAttribs'. The memory pointed to by this
|
sl@0
|
1756 |
* pointer will be released in CRichTextIndex's destructor.
|
sl@0
|
1757 |
*/
|
sl@0
|
1758 |
// coverity[leave_without_push]
|
sl@0
|
1759 |
SplitPhraseL(phrase,charsToFormat,*phraseAttribs,*paraAttribs);
|
sl@0
|
1760 |
len=charsToFormat;
|
sl@0
|
1761 |
phraseAttribs=&iPhraseIx->At(phrase); // SplitPhraseL modifies the index array, we must do this!
|
sl@0
|
1762 |
}
|
sl@0
|
1763 |
|
sl@0
|
1764 |
if (phraseAttribs->Length()!=len)
|
sl@0
|
1765 |
{
|
sl@0
|
1766 |
OstTrace0( TRACE_DUMP, DUP2_CRICHTEXTINDEX_APPLYCHARFORMATL, "Invariant" );
|
sl@0
|
1767 |
}
|
sl@0
|
1768 |
__ASSERT_DEBUG(phraseAttribs->Length()==len,User::Invariant());
|
sl@0
|
1769 |
|
sl@0
|
1770 |
// STEP 2.3 Change the format of the current phrase layer
|
sl@0
|
1771 |
|
sl@0
|
1772 |
TCharFormatX format=aFormat;
|
sl@0
|
1773 |
TCharFormatXMask mask=aMask;
|
sl@0
|
1774 |
CCharFormatLayer* charLayer=phraseAttribs->CharFormat();
|
sl@0
|
1775 |
if (!aRemoveSpecific)
|
sl@0
|
1776 |
charLayer->Sense(format,mask); // preserve current specific character formatting
|
sl@0
|
1777 |
charLayer->SetL(format,mask);
|
sl@0
|
1778 |
|
sl@0
|
1779 |
// STEP 2.4 Check for merging with previous phrase
|
sl@0
|
1780 |
|
sl@0
|
1781 |
if (phrase==iPos.iParaBasePhraseElement || !MergePhrases(phrase,*phraseAttribs,*paraAttribs))
|
sl@0
|
1782 |
// if we don't merge this phrase, move on to the next one
|
sl@0
|
1783 |
iPos.iPhraseElement=++phrase;
|
sl@0
|
1784 |
|
sl@0
|
1785 |
charsToFormat-=len;
|
sl@0
|
1786 |
} while (charsToFormat);
|
sl@0
|
1787 |
|
sl@0
|
1788 |
if (phrase!=iPos.iParaBasePhraseElement+paraAttribs->iPhraseCount && aLength!=0)
|
sl@0
|
1789 |
{
|
sl@0
|
1790 |
OstTrace0( TRACE_DUMP, DUP3_CRICHTEXTINDEX_APPLYCHARFORMATL, "Invariant" );
|
sl@0
|
1791 |
}
|
sl@0
|
1792 |
__ASSERT_DEBUG(phrase==iPos.iParaBasePhraseElement+paraAttribs->iPhraseCount || aLength==0,User::Invariant());
|
sl@0
|
1793 |
|
sl@0
|
1794 |
// STEP 3 Reduce the paragraph attributes back to canonical form
|
sl@0
|
1795 |
|
sl@0
|
1796 |
// STEP 3.1 Check for merging at the end of the changes
|
sl@0
|
1797 |
|
sl@0
|
1798 |
if (phrase>iPos.iParaBasePhraseElement && phrase<iPos.iParaBasePhraseElement+paraAttribs->iPhraseCount)
|
sl@0
|
1799 |
MergePhrases(phrase,iPhraseIx->At(phrase),*paraAttribs); // mustn't adjust phrase index to follow merge
|
sl@0
|
1800 |
|
sl@0
|
1801 |
// STEP 3.2 See if we can re-share the paragraph
|
sl@0
|
1802 |
|
sl@0
|
1803 |
if (paraAttribs->iPhraseCount==1)
|
sl@0
|
1804 |
{ // This para has constant character formatting - can be shared.
|
sl@0
|
1805 |
iPos.iPhraseElement=--phrase;
|
sl@0
|
1806 |
Share(paraEntry,phrase);
|
sl@0
|
1807 |
}
|
sl@0
|
1808 |
|
sl@0
|
1809 |
// loop into next paragraph
|
sl@0
|
1810 |
if (aLength==0)
|
sl@0
|
1811 |
break;
|
sl@0
|
1812 |
iPos.iParaElement++;
|
sl@0
|
1813 |
paraOffset=0;
|
sl@0
|
1814 |
iPos.iParaBasePhraseElement=phrase;
|
sl@0
|
1815 |
#ifdef _DEBUG
|
sl@0
|
1816 |
ScanToPosition(aPos,EScanToPositionAbsolute);
|
sl@0
|
1817 |
if (iPos.iDocPos!=aPos)
|
sl@0
|
1818 |
{
|
sl@0
|
1819 |
OstTrace0( TRACE_DUMP, DUP4_CRICHTEXTINDEX_APPLYCHARFORMATL, "Invariant" );
|
sl@0
|
1820 |
}
|
sl@0
|
1821 |
__ASSERT_DEBUG(iPos.iDocPos==aPos,User::Invariant());
|
sl@0
|
1822 |
if (iPos.iPhraseElement!=phrase)
|
sl@0
|
1823 |
{
|
sl@0
|
1824 |
OstTrace0( TRACE_DUMP, DUP5_CRICHTEXTINDEX_APPLYCHARFORMATL, "Invariant" );
|
sl@0
|
1825 |
}
|
sl@0
|
1826 |
__ASSERT_DEBUG(iPos.iPhraseElement==phrase,User::Invariant());
|
sl@0
|
1827 |
if (iPos.iParaElementOffset!=paraOffset)
|
sl@0
|
1828 |
{
|
sl@0
|
1829 |
OstTrace0( TRACE_DUMP, DUP6_CRICHTEXTINDEX_APPLYCHARFORMATL, "Invariant" );
|
sl@0
|
1830 |
}
|
sl@0
|
1831 |
__ASSERT_DEBUG(iPos.iParaElementOffset==paraOffset,User::Invariant());
|
sl@0
|
1832 |
if (iPos.iPhraseElementOffset!=phraseOffset)
|
sl@0
|
1833 |
{
|
sl@0
|
1834 |
OstTrace0( TRACE_DUMP, DUP7_CRICHTEXTINDEX_APPLYCHARFORMATL, "Invariant" );
|
sl@0
|
1835 |
}
|
sl@0
|
1836 |
__ASSERT_DEBUG(iPos.iPhraseElementOffset==phraseOffset,User::Invariant());
|
sl@0
|
1837 |
__TEST_INVARIANT;
|
sl@0
|
1838 |
#endif
|
sl@0
|
1839 |
}
|
sl@0
|
1840 |
|
sl@0
|
1841 |
CleanupStack::Pop(); // rollback item
|
sl@0
|
1842 |
|
sl@0
|
1843 |
__TEST_INVARIANT;
|
sl@0
|
1844 |
}
|
sl@0
|
1845 |
|
sl@0
|
1846 |
|
sl@0
|
1847 |
void CRichTextIndex::RemoveSpecificParaFormatL(TInt aPos,TInt aLength)
|
sl@0
|
1848 |
// Removes all specific paragraph formatting from the specified region.
|
sl@0
|
1849 |
// For each paragraph covered by the range, check if its para attribs is in the
|
sl@0
|
1850 |
// shared list, or not.
|
sl@0
|
1851 |
// If its not shared, then simply reset the para format layer.
|
sl@0
|
1852 |
// If it is in the shared list, then a new shared para attribs must be created,
|
sl@0
|
1853 |
// and the reference count of the original decremented.
|
sl@0
|
1854 |
//
|
sl@0
|
1855 |
{
|
sl@0
|
1856 |
__TEST_INVARIANT;
|
sl@0
|
1857 |
|
sl@0
|
1858 |
TInt endPara=OwningParagraph(aPos+aLength);
|
sl@0
|
1859 |
TInt currentPara=OwningParagraph(aPos);
|
sl@0
|
1860 |
CParaAttribs* currentParaAttribs=NULL;
|
sl@0
|
1861 |
while (currentPara<=endPara)
|
sl@0
|
1862 |
{
|
sl@0
|
1863 |
currentParaAttribs=(*iParaIx)[currentPara].iParaAttribs;
|
sl@0
|
1864 |
if (!currentParaAttribs->IsShared())
|
sl@0
|
1865 |
{// Reset specific paragraph format layer to be empty.
|
sl@0
|
1866 |
currentParaAttribs->iParaFormat->Reset(); // remove specific formatting.
|
sl@0
|
1867 |
}
|
sl@0
|
1868 |
else
|
sl@0
|
1869 |
{// Maintain the shared list reference
|
sl@0
|
1870 |
CParaAttribs* resultantParaAttribs=CParaAttribs::NewL(currentParaAttribs);
|
sl@0
|
1871 |
CleanupStack::PushL(TCleanupItem(ReleaseOnCleanup,resultantParaAttribs));
|
sl@0
|
1872 |
resultantParaAttribs->iParaFormat->Reset(); // remove specific formatting
|
sl@0
|
1873 |
CParaAttribs* shared=RequestShareL(resultantParaAttribs); // Will return a non-NULL handle.
|
sl@0
|
1874 |
__ASSERT_DEBUG(shared,Panic(EDebug));
|
sl@0
|
1875 |
currentParaAttribs->Release();
|
sl@0
|
1876 |
iSharedParaQueHead.AddLast(*resultantParaAttribs); // Allows correct release of cell.
|
sl@0
|
1877 |
CleanupStack::PopAndDestroy();
|
sl@0
|
1878 |
(*iParaIx)[currentPara].iParaAttribs=shared;
|
sl@0
|
1879 |
}
|
sl@0
|
1880 |
currentPara++;
|
sl@0
|
1881 |
}
|
sl@0
|
1882 |
|
sl@0
|
1883 |
|
sl@0
|
1884 |
__TEST_INVARIANT;
|
sl@0
|
1885 |
}
|
sl@0
|
1886 |
|
sl@0
|
1887 |
|
sl@0
|
1888 |
void CRichTextIndex::RemoveSpecificCharFormatL(TInt aPos,TInt aLength)
|
sl@0
|
1889 |
// Removes all specific character formatting from the specified region.
|
sl@0
|
1890 |
// For each paragraph covered by the range, check if its para attribs is in the
|
sl@0
|
1891 |
// shared list, or not.
|
sl@0
|
1892 |
// If its not shared, then simply reset the para format layer.
|
sl@0
|
1893 |
// If it is in the shared list, then a new shared para attribs must be created,
|
sl@0
|
1894 |
// and the reference count of the original decremented.
|
sl@0
|
1895 |
//
|
sl@0
|
1896 |
{
|
sl@0
|
1897 |
__TEST_INVARIANT;
|
sl@0
|
1898 |
|
sl@0
|
1899 |
TCharFormatX format; // dummy format
|
sl@0
|
1900 |
TCharFormatXMask mask;
|
sl@0
|
1901 |
mask.ClearAll();
|
sl@0
|
1902 |
ApplyCharFormatL(format,mask,aPos,aLength,ETrue);
|
sl@0
|
1903 |
|
sl@0
|
1904 |
__TEST_INVARIANT;
|
sl@0
|
1905 |
}
|
sl@0
|
1906 |
|
sl@0
|
1907 |
|
sl@0
|
1908 |
TBool CRichTextIndex::MergePhrases(TInt aPos)
|
sl@0
|
1909 |
// Checks if the specified character position aPos is a phrase boundary.
|
sl@0
|
1910 |
// If so, then examines the two abutting phrases at aPos to see if they
|
sl@0
|
1911 |
// are identical; in which case they are merged into one phrase that covers
|
sl@0
|
1912 |
// the sum of their lengths.
|
sl@0
|
1913 |
//
|
sl@0
|
1914 |
{
|
sl@0
|
1915 |
ScanToPosition(aPos,EScanToPositionAbsolute);
|
sl@0
|
1916 |
return MergePhrases(iPos);
|
sl@0
|
1917 |
}
|
sl@0
|
1918 |
|
sl@0
|
1919 |
|
sl@0
|
1920 |
TBool CRichTextIndex::MergePhrases(const TLogicalPosition& aPos)
|
sl@0
|
1921 |
// Checks if the specified character position record is a phrase boundary.
|
sl@0
|
1922 |
// If so, then examines the two abutting phrases at aPos to see if they
|
sl@0
|
1923 |
// are identical; in which case they are merged into one phrase that covers
|
sl@0
|
1924 |
// the sum of their lengths.
|
sl@0
|
1925 |
//
|
sl@0
|
1926 |
{
|
sl@0
|
1927 |
TCurrentIndexRecords current;
|
sl@0
|
1928 |
GetCurrentRecords(current);
|
sl@0
|
1929 |
TBool phrasesMerged=EFalse;
|
sl@0
|
1930 |
if (!FirstPhraseOfParagraph() && iPos.iPhraseElementOffset==0)
|
sl@0
|
1931 |
{// Check if the 2 abutting phrases can be merged together.
|
sl@0
|
1932 |
TInt rightPhraseElement=iPos.iPhraseElement;
|
sl@0
|
1933 |
RPhraseAttribsEntry* rightPhrase=&(*iPhraseIx)[rightPhraseElement];
|
sl@0
|
1934 |
RPhraseAttribsEntry* leftPhrase=&(*iPhraseIx)[rightPhraseElement-1];
|
sl@0
|
1935 |
if (rightPhrase->IsIdentical(*leftPhrase))
|
sl@0
|
1936 |
{// Merge the abutting phrases together. Cannot merge picture/non-picture/z.l.p. phrase combinations.
|
sl@0
|
1937 |
rightPhrase->AdjustLength(leftPhrase->Length()); // Extend the right phrase length
|
sl@0
|
1938 |
RemoveFromPhraseIx(rightPhraseElement-1); // Free the resources taken by the left phrase - redundant
|
sl@0
|
1939 |
(*iParaIx)[iPos.iParaElement].iParaAttribs->iPhraseCount--; // Update phrase count of owning CParaAttribs
|
sl@0
|
1940 |
ScanToPosition(aPos.iDocPos,EScanToPositionAbsolute); // Pick up new phrase index.
|
sl@0
|
1941 |
phrasesMerged=ETrue;
|
sl@0
|
1942 |
}
|
sl@0
|
1943 |
}
|
sl@0
|
1944 |
return phrasesMerged;
|
sl@0
|
1945 |
}
|
sl@0
|
1946 |
|
sl@0
|
1947 |
|
sl@0
|
1948 |
/** Remove phrases from the containing object. This includes
|
sl@0
|
1949 |
freeing referenced resources. (pictures etc.)
|
sl@0
|
1950 |
@param aPhraseIndex The first phrase to be deleted
|
sl@0
|
1951 |
@param aCount The number of phrases to be deleted
|
sl@0
|
1952 |
*/
|
sl@0
|
1953 |
void CRichTextIndex::RemoveFromPhraseIx(TInt aPhraseIndex,TInt aCount)
|
sl@0
|
1954 |
{
|
sl@0
|
1955 |
// if the phrase being deleted is <= iLastPos
|
sl@0
|
1956 |
// then iLastPos will become invalid so should be reset
|
sl@0
|
1957 |
if (aPhraseIndex <= iLastUsed.iPhraseElement )
|
sl@0
|
1958 |
iLastUsed.Clear();
|
sl@0
|
1959 |
|
sl@0
|
1960 |
for (TInt offset=aPhraseIndex;offset<(aPhraseIndex+aCount);offset++)
|
sl@0
|
1961 |
{
|
sl@0
|
1962 |
// discard phrases & book-keep the picture count
|
sl@0
|
1963 |
RPhraseAttribsEntry& phrase=(*iPhraseIx)[offset];
|
sl@0
|
1964 |
phrase.Discard();
|
sl@0
|
1965 |
if (phrase.IsPicturePhrase())
|
sl@0
|
1966 |
iPictureCount--;
|
sl@0
|
1967 |
}
|
sl@0
|
1968 |
iPhraseIx->Delete(aPhraseIndex,aCount);
|
sl@0
|
1969 |
}
|
sl@0
|
1970 |
|
sl@0
|
1971 |
void CRichTextIndex::GetParagraphFormatL(CParaFormat* aFormat,TInt aPos)const
|
sl@0
|
1972 |
// Fills aFormat with the effective Paragraph format attributes for the paragraph
|
sl@0
|
1973 |
// in which character position aPos is contained.
|
sl@0
|
1974 |
//
|
sl@0
|
1975 |
{
|
sl@0
|
1976 |
__TEST_INVARIANT;
|
sl@0
|
1977 |
|
sl@0
|
1978 |
TLogicalPosition cachePos(iLastUsed);
|
sl@0
|
1979 |
TInt para=CONST_CAST(CRichTextIndex*,this)->OwningParagraph(aPos,&cachePos);
|
sl@0
|
1980 |
(*iParaIx)[para].iParaAttribs->iParaFormat->SenseEffectiveL(aFormat);
|
sl@0
|
1981 |
}
|
sl@0
|
1982 |
|
sl@0
|
1983 |
void CRichTextIndex::GetSpecificParagraphFormatL(CParaFormat* aFormat,
|
sl@0
|
1984 |
TParaFormatMask& aMask,
|
sl@0
|
1985 |
TInt aPos)const
|
sl@0
|
1986 |
{
|
sl@0
|
1987 |
__TEST_INVARIANT;
|
sl@0
|
1988 |
|
sl@0
|
1989 |
TLogicalPosition cachePos(iLastUsed);
|
sl@0
|
1990 |
TInt para=CONST_CAST(CRichTextIndex*,this)->OwningParagraph(aPos,&cachePos);
|
sl@0
|
1991 |
CParaFormatLayer* pLayer = (*iParaIx)[para].iParaAttribs->iParaFormat;
|
sl@0
|
1992 |
pLayer->SenseL(aFormat, aMask);
|
sl@0
|
1993 |
}
|
sl@0
|
1994 |
|
sl@0
|
1995 |
TInt CRichTextIndex::GetChars(TCharFormatX& aFormat,TInt aPos) const
|
sl@0
|
1996 |
// Returns the number of characters, commencing at aStartPos, that occupy the same phrase, and
|
sl@0
|
1997 |
// modifies aFormat, to hold the effective format of that phrase.
|
sl@0
|
1998 |
//
|
sl@0
|
1999 |
{
|
sl@0
|
2000 |
__TEST_INVARIANT;
|
sl@0
|
2001 |
|
sl@0
|
2002 |
CONST_CAST(CRichTextIndex*,this)->ScanToPosition(aPos,EScanToPositionAbsolute,&MUTABLE_CAST(TLogicalPosition&,iLastUsed));
|
sl@0
|
2003 |
TCurrentIndexRecords current;
|
sl@0
|
2004 |
GetCurrentRecords(current);
|
sl@0
|
2005 |
TInt phraseLength;
|
sl@0
|
2006 |
CCharFormatLayer* charFormatLayer;
|
sl@0
|
2007 |
if (current.iPhrase)
|
sl@0
|
2008 |
{// Specific character formatting held in phrase index.
|
sl@0
|
2009 |
charFormatLayer=current.iPhrase->CharFormat();
|
sl@0
|
2010 |
phraseLength=(current.iPhrase->Length())-(iPos.iPhraseElementOffset);
|
sl@0
|
2011 |
}
|
sl@0
|
2012 |
else
|
sl@0
|
2013 |
{// Constant character formatting held in the para attribs
|
sl@0
|
2014 |
charFormatLayer=current.iParaAttribs->iCharFormat;
|
sl@0
|
2015 |
phraseLength=current.iParaEntry->iLength-iPos.iParaElementOffset;
|
sl@0
|
2016 |
}
|
sl@0
|
2017 |
charFormatLayer->SenseEffective(aFormat);
|
sl@0
|
2018 |
return phraseLength;
|
sl@0
|
2019 |
}
|
sl@0
|
2020 |
|
sl@0
|
2021 |
|
sl@0
|
2022 |
TInt CRichTextIndex::GetPictureSizeInTwips(TSize& aSize,TInt aPos)const
|
sl@0
|
2023 |
// Get the size of the specified picture into aSize. The picture is specified by its
|
sl@0
|
2024 |
// character position. Return KErrNotFound if there is no picture at the specified
|
sl@0
|
2025 |
// document position.
|
sl@0
|
2026 |
//
|
sl@0
|
2027 |
{
|
sl@0
|
2028 |
__TEST_INVARIANT;
|
sl@0
|
2029 |
|
sl@0
|
2030 |
CONST_CAST(CRichTextIndex*,this)->ScanToPosition(aPos,EScanToPositionAbsolute,&MUTABLE_CAST(TLogicalPosition&,iLastUsed));
|
sl@0
|
2031 |
TCurrentIndexRecords current;
|
sl@0
|
2032 |
GetCurrentRecords(current);
|
sl@0
|
2033 |
|
sl@0
|
2034 |
return (current.iPhrase)
|
sl@0
|
2035 |
? current.iPhrase->GetPictureSizeInTwips(aSize)
|
sl@0
|
2036 |
: KErrNotFound;
|
sl@0
|
2037 |
}
|
sl@0
|
2038 |
|
sl@0
|
2039 |
TPictureHeader* CRichTextIndex::PictureHeaderPtr(TInt aPos)
|
sl@0
|
2040 |
{
|
sl@0
|
2041 |
__TEST_INVARIANT;
|
sl@0
|
2042 |
|
sl@0
|
2043 |
CONST_CAST(CRichTextIndex*,this)->ScanToPosition(aPos,EScanToPositionAbsolute);
|
sl@0
|
2044 |
TCurrentIndexRecords current;
|
sl@0
|
2045 |
GetCurrentRecords(current);
|
sl@0
|
2046 |
return current.iPhrase? current.iPhrase->PictureHeaderPtr() : 0;
|
sl@0
|
2047 |
}
|
sl@0
|
2048 |
|
sl@0
|
2049 |
TPictureHeader CRichTextIndex::PictureHeader(TInt aPos) const
|
sl@0
|
2050 |
// Return the picture header describing the picture at character position aPos.
|
sl@0
|
2051 |
// If there is no picture at character position aPos, a default picture header is returned.
|
sl@0
|
2052 |
//
|
sl@0
|
2053 |
{
|
sl@0
|
2054 |
const TPictureHeader* p = const_cast<CRichTextIndex*>(this)->PictureHeaderPtr(aPos);
|
sl@0
|
2055 |
return p? *p : TPictureHeader();
|
sl@0
|
2056 |
}
|
sl@0
|
2057 |
|
sl@0
|
2058 |
|
sl@0
|
2059 |
CPicture* CRichTextIndex::PictureHandleL(TInt aPos,MLayDoc::TForcePictureLoad aForceLoad)const
|
sl@0
|
2060 |
// Returns the handle of the concrete picture at character position aPos, if one exists;
|
sl@0
|
2061 |
// otherwise returns NULL.
|
sl@0
|
2062 |
//
|
sl@0
|
2063 |
{
|
sl@0
|
2064 |
__TEST_INVARIANT;
|
sl@0
|
2065 |
|
sl@0
|
2066 |
CONST_CAST(CRichTextIndex*,this)->ScanToPosition(aPos,EScanToPositionAbsolute,&MUTABLE_CAST(TLogicalPosition&,iLastUsed));
|
sl@0
|
2067 |
TCurrentIndexRecords current;
|
sl@0
|
2068 |
GetCurrentRecords(current);
|
sl@0
|
2069 |
return (current.iPhrase)
|
sl@0
|
2070 |
? (CPicture*)current.iPhrase->PictureHandleL(iText.PictureFactory(),iText.StoreResolver(),aPos,aForceLoad)
|
sl@0
|
2071 |
: NULL;
|
sl@0
|
2072 |
}
|
sl@0
|
2073 |
|
sl@0
|
2074 |
|
sl@0
|
2075 |
void CRichTextIndex::GetParaFormatL(CParaFormat* aFormat,TParaFormatMask& aVaries,TInt aPos,TInt aLength,CParaFormat::TParaFormatGetMode aMode)const
|
sl@0
|
2076 |
// Senses the paragraph format of para(s) covered by the region aPos to aPos+aLength-1.
|
sl@0
|
2077 |
// aFormat takes the values of all attributes, and the mask aMask indicates those values that change
|
sl@0
|
2078 |
// over the selected region, and are therefore *indeterminate*.
|
sl@0
|
2079 |
// Application: seeding paragraph formatting dialogs.
|
sl@0
|
2080 |
//
|
sl@0
|
2081 |
{
|
sl@0
|
2082 |
__TEST_INVARIANT;
|
sl@0
|
2083 |
|
sl@0
|
2084 |
TInt para=CONST_CAST(CRichTextIndex*,this)->OwningParagraph(aPos);
|
sl@0
|
2085 |
TInt offset=(aLength==0)?0 :-1;
|
sl@0
|
2086 |
TInt endPara=CONST_CAST(CRichTextIndex*,this)->OwningParagraph(aPos+(aLength+offset));
|
sl@0
|
2087 |
aVaries.ClearAll();
|
sl@0
|
2088 |
(*iParaIx)[para].iParaAttribs->iParaFormat->SenseEffectiveL(aFormat,aMode); // Sense 1st paras' format.
|
sl@0
|
2089 |
++para;
|
sl@0
|
2090 |
CParaFormat* format=CParaFormat::NewLC();
|
sl@0
|
2091 |
for (;para<=endPara;para++)
|
sl@0
|
2092 |
{
|
sl@0
|
2093 |
(*iParaIx)[para].iParaAttribs->iParaFormat->SenseEffectiveL(format,aMode);
|
sl@0
|
2094 |
if (format->iLanguage!=aFormat->iLanguage)
|
sl@0
|
2095 |
aVaries.SetAttrib(EAttParaLanguage);
|
sl@0
|
2096 |
if (format->iFillColor!=aFormat->iFillColor)
|
sl@0
|
2097 |
aVaries.SetAttrib(EAttFillColor);
|
sl@0
|
2098 |
if (format->iLeftMarginInTwips!=aFormat->iLeftMarginInTwips)
|
sl@0
|
2099 |
aVaries.SetAttrib(EAttLeftMargin);
|
sl@0
|
2100 |
if (format->iRightMarginInTwips!=aFormat->iRightMarginInTwips)
|
sl@0
|
2101 |
aVaries.SetAttrib(EAttRightMargin);
|
sl@0
|
2102 |
if (format->iIndentInTwips!=aFormat->iIndentInTwips)
|
sl@0
|
2103 |
aVaries.SetAttrib(EAttIndent);
|
sl@0
|
2104 |
if (format->iHorizontalAlignment!=aFormat->iHorizontalAlignment)
|
sl@0
|
2105 |
aVaries.SetAttrib(EAttAlignment);
|
sl@0
|
2106 |
if (format->iVerticalAlignment!=aFormat->iVerticalAlignment)
|
sl@0
|
2107 |
aVaries.SetAttrib(EAttVerticalAlignment);
|
sl@0
|
2108 |
if (format->iLineSpacingInTwips!=aFormat->iLineSpacingInTwips)
|
sl@0
|
2109 |
aVaries.SetAttrib(EAttLineSpacing);
|
sl@0
|
2110 |
if (format->iLineSpacingControl!=aFormat->iLineSpacingControl)
|
sl@0
|
2111 |
aVaries.SetAttrib(EAttLineSpacingControl);
|
sl@0
|
2112 |
if (format->iSpaceBeforeInTwips!=aFormat->iSpaceBeforeInTwips)
|
sl@0
|
2113 |
aVaries.SetAttrib(EAttSpaceBefore);
|
sl@0
|
2114 |
if (format->iSpaceAfterInTwips!=aFormat->iSpaceAfterInTwips)
|
sl@0
|
2115 |
aVaries.SetAttrib(EAttSpaceAfter);
|
sl@0
|
2116 |
if (format->iKeepTogether!=aFormat->iKeepTogether)
|
sl@0
|
2117 |
aVaries.SetAttrib(EAttKeepTogether);
|
sl@0
|
2118 |
if (format->iKeepWithNext!=aFormat->iKeepWithNext)
|
sl@0
|
2119 |
aVaries.SetAttrib(EAttKeepWithNext);
|
sl@0
|
2120 |
if (format->iWidowOrphan!=aFormat->iWidowOrphan)
|
sl@0
|
2121 |
aVaries.SetAttrib(EAttWidowOrphan);
|
sl@0
|
2122 |
if (format->iWrap!=aFormat->iWrap)
|
sl@0
|
2123 |
aVaries.SetAttrib(EAttWrap);
|
sl@0
|
2124 |
if (format->iBorderMarginInTwips!=aFormat->iBorderMarginInTwips)
|
sl@0
|
2125 |
aVaries.SetAttrib(EAttBorderMargin);
|
sl@0
|
2126 |
if (format->iDefaultTabWidthInTwips!=aFormat->iDefaultTabWidthInTwips)
|
sl@0
|
2127 |
aVaries.SetAttrib(EAttDefaultTabWidth);
|
sl@0
|
2128 |
if (aMode==CParaFormat::EAllAttributes)
|
sl@0
|
2129 |
{
|
sl@0
|
2130 |
// Borders
|
sl@0
|
2131 |
for (TInt border=0;border<CParaFormat::EMaxParaBorder;border++)
|
sl@0
|
2132 |
{// Check each para border individually. Assumes border format attributes run consecutively.
|
sl@0
|
2133 |
if (!format->IsBorderEqual((CParaFormat::TParaBorderSide)border,*aFormat))
|
sl@0
|
2134 |
aVaries.SetAttrib((TTextFormatAttribute)(EAttTopBorder+border));
|
sl@0
|
2135 |
}
|
sl@0
|
2136 |
// Bullet
|
sl@0
|
2137 |
if (!format->iBullet && !aFormat->iBullet)
|
sl@0
|
2138 |
{ /* neither para has bullet, so no variation */ }
|
sl@0
|
2139 |
else if (!format->iBullet || !aFormat->iBullet
|
sl@0
|
2140 |
|| *format->iBullet!=*aFormat->iBullet)
|
sl@0
|
2141 |
aVaries.SetAttrib(EAttBullet);
|
sl@0
|
2142 |
// The Tab-List
|
sl@0
|
2143 |
if (format->TabCount()!=aFormat->TabCount())
|
sl@0
|
2144 |
aVaries.SetAttrib(EAttTabStop); // TabLists are different.
|
sl@0
|
2145 |
else
|
sl@0
|
2146 |
{// The 2 tablists have the same number of tab stops - but are not necessarily the same.
|
sl@0
|
2147 |
TBool matched=ETrue;
|
sl@0
|
2148 |
TInt tabCount=format->TabCount();
|
sl@0
|
2149 |
for (TInt tabItem=0;tabItem<tabCount;tabItem++)
|
sl@0
|
2150 |
{// Compare the 2 tabs.
|
sl@0
|
2151 |
TTabStop comp1,comp2;
|
sl@0
|
2152 |
comp1=format->TabStop(tabItem);
|
sl@0
|
2153 |
comp2=aFormat->TabStop(tabItem);
|
sl@0
|
2154 |
if (comp1!=comp2)
|
sl@0
|
2155 |
matched=EFalse;
|
sl@0
|
2156 |
}
|
sl@0
|
2157 |
if (!matched)
|
sl@0
|
2158 |
aVaries.SetAttrib(EAttTabStop);
|
sl@0
|
2159 |
}
|
sl@0
|
2160 |
}
|
sl@0
|
2161 |
}
|
sl@0
|
2162 |
CleanupStack::PopAndDestroy();
|
sl@0
|
2163 |
}
|
sl@0
|
2164 |
|
sl@0
|
2165 |
|
sl@0
|
2166 |
// Compare all attributes in two formats and where they differ set the appropriate flag in the aVaries mask.
|
sl@0
|
2167 |
void CRichTextIndex::CheckForUndetermined(const TCharFormatX& aFormatA,const TCharFormatX& aFormatB,
|
sl@0
|
2168 |
TCharFormatXMask& aVaries) const
|
sl@0
|
2169 |
{
|
sl@0
|
2170 |
const TCharFormat& a = aFormatA.iCharFormat;
|
sl@0
|
2171 |
const TCharFormat& b = aFormatB.iCharFormat;
|
sl@0
|
2172 |
if (a.iLanguage!=b.iLanguage)
|
sl@0
|
2173 |
aVaries.SetAttrib(EAttCharLanguage);
|
sl@0
|
2174 |
if (a.iFontPresentation.iTextColor!=b.iFontPresentation.iTextColor)
|
sl@0
|
2175 |
aVaries.SetAttrib(EAttColor);
|
sl@0
|
2176 |
if (a.iFontPresentation.iHighlightColor!=b.iFontPresentation.iHighlightColor)
|
sl@0
|
2177 |
aVaries.SetAttrib(EAttFontHighlightColor);
|
sl@0
|
2178 |
if (a.iFontPresentation.iHighlightStyle!=b.iFontPresentation.iHighlightStyle)
|
sl@0
|
2179 |
aVaries.SetAttrib(EAttFontHighlightStyle);
|
sl@0
|
2180 |
if (a.iFontPresentation.iStrikethrough!=b.iFontPresentation.iStrikethrough)
|
sl@0
|
2181 |
aVaries.SetAttrib(EAttFontStrikethrough);
|
sl@0
|
2182 |
if (a.iFontPresentation.iUnderline!=b.iFontPresentation.iUnderline)
|
sl@0
|
2183 |
aVaries.SetAttrib(EAttFontUnderline);
|
sl@0
|
2184 |
if (a.iFontPresentation.iHiddenText!=b.iFontPresentation.iHiddenText)
|
sl@0
|
2185 |
aVaries.SetAttrib(EAttFontHiddenText);
|
sl@0
|
2186 |
if (a.iFontPresentation.iPictureAlignment!=b.iFontPresentation.iPictureAlignment)
|
sl@0
|
2187 |
aVaries.SetAttrib(EAttFontPictureAlignment);
|
sl@0
|
2188 |
if (a.iFontSpec.iHeight!=b.iFontSpec.iHeight)
|
sl@0
|
2189 |
aVaries.SetAttrib(EAttFontHeight);
|
sl@0
|
2190 |
if (!(a.iFontSpec.iTypeface==b.iFontSpec.iTypeface))
|
sl@0
|
2191 |
aVaries.SetAttrib(EAttFontTypeface);
|
sl@0
|
2192 |
if (a.iFontSpec.iFontStyle.Posture()!=b.iFontSpec.iFontStyle.Posture())
|
sl@0
|
2193 |
aVaries.SetAttrib(EAttFontPosture);
|
sl@0
|
2194 |
if (a.iFontSpec.iFontStyle.StrokeWeight()!=b.iFontSpec.iFontStyle.StrokeWeight())
|
sl@0
|
2195 |
aVaries.SetAttrib(EAttFontStrokeWeight);
|
sl@0
|
2196 |
if (a.iFontSpec.iFontStyle.PrintPosition()!=b.iFontSpec.iFontStyle.PrintPosition())
|
sl@0
|
2197 |
aVaries.SetAttrib(EAttFontPrintPos);
|
sl@0
|
2198 |
if (aFormatA.iParserTag != aFormatB.iParserTag)
|
sl@0
|
2199 |
aVaries.SetAttrib(EAttParserTag);
|
sl@0
|
2200 |
}
|
sl@0
|
2201 |
|
sl@0
|
2202 |
|
sl@0
|
2203 |
void CRichTextIndex::GetCharFormat(TCharFormatX& aFormat,TCharFormatXMask& aVaries,TInt aPos,TInt aLength)const
|
sl@0
|
2204 |
// Senses the character formatting of the phrase(s) covered by the region aPos to aPos+aLength-1.
|
sl@0
|
2205 |
// aFormat takes the values of all character format attributes, and the mask aMask indicates those
|
sl@0
|
2206 |
// values that change over the selected region, and are therefore *indeterminate*.
|
sl@0
|
2207 |
// Application: seeding character formatting dialogs.
|
sl@0
|
2208 |
// If aLength is zero, the character format sensed is that of the charcter immediatley to the left (behind) the cursor.
|
sl@0
|
2209 |
//
|
sl@0
|
2210 |
{
|
sl@0
|
2211 |
__TEST_INVARIANT;
|
sl@0
|
2212 |
|
sl@0
|
2213 |
aVaries.ClearAll();
|
sl@0
|
2214 |
if (aLength==0) // Get the format of the character to the left of the cursor.
|
sl@0
|
2215 |
((CRichTextIndex*)this)->ScanToPosition(aPos,EScanToPositionMatchLeft);
|
sl@0
|
2216 |
else
|
sl@0
|
2217 |
((CRichTextIndex*)this)->ScanToPosition(aPos,EScanToPositionAbsolute);
|
sl@0
|
2218 |
// Get char format of first phrase
|
sl@0
|
2219 |
TCurrentIndexRecords current;
|
sl@0
|
2220 |
GetCurrentRecords(current);
|
sl@0
|
2221 |
if (current.iPhrase)
|
sl@0
|
2222 |
current.iPhrase->CharFormat()->SenseEffective(aFormat);
|
sl@0
|
2223 |
else
|
sl@0
|
2224 |
current.iParaAttribs->iCharFormat->SenseEffective(aFormat);
|
sl@0
|
2225 |
// Place pos at start of next phrase
|
sl@0
|
2226 |
TInt pos=aPos+(CurrentPhraseLength()-CurrentPhraseOffset());
|
sl@0
|
2227 |
while (pos<=aPos+aLength-1)
|
sl@0
|
2228 |
{// Get the format of the next phrase and check if attributes change value
|
sl@0
|
2229 |
((CRichTextIndex*)this)->ScanToPosition(pos,EScanToPositionAbsolute);
|
sl@0
|
2230 |
GetCurrentRecords(current);
|
sl@0
|
2231 |
TCharFormatX format;
|
sl@0
|
2232 |
if (current.iPhrase)
|
sl@0
|
2233 |
current.iPhrase->CharFormat()->SenseEffective(format);
|
sl@0
|
2234 |
else
|
sl@0
|
2235 |
current.iParaAttribs->iCharFormat->SenseEffective(format);
|
sl@0
|
2236 |
CheckForUndetermined(format,aFormat,aVaries);
|
sl@0
|
2237 |
pos+=CurrentPhraseLength();
|
sl@0
|
2238 |
}
|
sl@0
|
2239 |
}
|
sl@0
|
2240 |
|
sl@0
|
2241 |
|
sl@0
|
2242 |
void CRichTextIndex::GetSpecificCharFormatDirection(TCharFormatX& aFormat,
|
sl@0
|
2243 |
TCharFormatXMask& aMask,
|
sl@0
|
2244 |
TInt aPos,
|
sl@0
|
2245 |
TBool aGetLeft) const
|
sl@0
|
2246 |
{
|
sl@0
|
2247 |
__TEST_INVARIANT;
|
sl@0
|
2248 |
|
sl@0
|
2249 |
aMask.ClearAll();
|
sl@0
|
2250 |
((CRichTextIndex*)this)->ScanToPosition(aPos,
|
sl@0
|
2251 |
aGetLeft? EScanToPositionMatchLeft : EScanToPositionAbsolute);
|
sl@0
|
2252 |
TCurrentIndexRecords current;
|
sl@0
|
2253 |
GetCurrentRecords(current);
|
sl@0
|
2254 |
if (current.iPhrase)
|
sl@0
|
2255 |
current.iPhrase->CharFormat()->Sense(aFormat,aMask);
|
sl@0
|
2256 |
else
|
sl@0
|
2257 |
current.iParaAttribs->iCharFormat->Sense(aFormat,aMask);
|
sl@0
|
2258 |
}
|
sl@0
|
2259 |
|
sl@0
|
2260 |
void CRichTextIndex::GetSpecificCharFormat(TCharFormatX& aFormat,TCharFormatXMask& aMask,TInt aPos)const
|
sl@0
|
2261 |
// Return the format attributes store in the specific layer only, for the specified document position.
|
sl@0
|
2262 |
// THIS IS NOT THE EFFECTIVE FORMAT, BUT THE SPECIFIC FORMATTING ONLY.
|
sl@0
|
2263 |
//
|
sl@0
|
2264 |
{
|
sl@0
|
2265 |
GetSpecificCharFormatDirection(aFormat, aMask, aPos, ETrue);
|
sl@0
|
2266 |
}
|
sl@0
|
2267 |
|
sl@0
|
2268 |
|
sl@0
|
2269 |
CParaAttribs* CRichTextIndex::RequestReclaimShareL(CParaAttribs* aParaAttribs,TParaAttribsEntry* aParaEntry)
|
sl@0
|
2270 |
// If the specified para attribs is currently on the shared list, then
|
sl@0
|
2271 |
// a specific para attribs is *reclaimed* and returned.
|
sl@0
|
2272 |
// The current share on the CParaAttribs is not *Released*.
|
sl@0
|
2273 |
// A new CParaAttribs is created of the same paragraph format as the shared one,
|
sl@0
|
2274 |
// but with a reference count of zero, (as this now has specific character formatting),
|
sl@0
|
2275 |
// and 1 phrase that is of the same character format as the shared one.
|
sl@0
|
2276 |
// The reclaimed specific para attribs is attactched to the specified para entry.
|
sl@0
|
2277 |
// NOTE:
|
sl@0
|
2278 |
// If the specified CParaAttribs is not currently on the shared list, NULL
|
sl@0
|
2279 |
// is returned, and aParaAttribs left unchanged..
|
sl@0
|
2280 |
// Assumes a previous call to ScanToPosition has correctly set the internal position record.
|
sl@0
|
2281 |
// This function can be called safely in any situation. (Except that it may *LEAVE*).
|
sl@0
|
2282 |
//
|
sl@0
|
2283 |
{
|
sl@0
|
2284 |
if (!(aParaAttribs->IsShared()))
|
sl@0
|
2285 |
return NULL; // This para attribs is not currently shared.
|
sl@0
|
2286 |
// We are dealing with a shared paraAttribs from now on.
|
sl@0
|
2287 |
CParaAttribs* reclaimedPara=CParaAttribs::NewL(aParaAttribs->iParaFormat); // Create the re-claimed paraAttribs.
|
sl@0
|
2288 |
CleanupStack::PushL(TCleanupItem(ReleaseOnCleanup,reclaimedPara));
|
sl@0
|
2289 |
CCharFormatLayer* newFormat=CCharFormatLayer::NewCopyBaseL(aParaAttribs->iCharFormat);
|
sl@0
|
2290 |
CleanupStack::PushL(newFormat);
|
sl@0
|
2291 |
RPhraseAttribsEntry phrase(newFormat,aParaEntry->iLength);
|
sl@0
|
2292 |
// Now insert this phrase into the index.
|
sl@0
|
2293 |
iPhraseIx->InsertL(iPos.iPhraseElement,phrase);
|
sl@0
|
2294 |
CleanupStack::Pop(2); // newFormat, reclaimedPara
|
sl@0
|
2295 |
return reclaimedPara;
|
sl@0
|
2296 |
}
|
sl@0
|
2297 |
|
sl@0
|
2298 |
|
sl@0
|
2299 |
CParaAttribs* CRichTextIndex::RequestShareL(CParaAttribs* aParaAttribs,CCharFormatLayer* aCharFormat,CParaAttribs* aReservedCell)
|
sl@0
|
2300 |
// Attempts to re-use an existing paraAttribs that matches the one specified.
|
sl@0
|
2301 |
// Returns the handle of a CParaAttribs, or NULL if the specified argument cannot
|
sl@0
|
2302 |
// be shared.
|
sl@0
|
2303 |
// aCharFormat may be NULL, as may aReservedCell.
|
sl@0
|
2304 |
//
|
sl@0
|
2305 |
{
|
sl@0
|
2306 |
if (aParaAttribs->iRefCount<=0 && aParaAttribs->iPhraseCount>1)
|
sl@0
|
2307 |
return NULL; // This para has specific character formatting & multiple phrases and so cannot be shared.
|
sl@0
|
2308 |
// This para has constant character formatting - can be shared.
|
sl@0
|
2309 |
CCharFormatLayer* charFormat;
|
sl@0
|
2310 |
if (aCharFormat)
|
sl@0
|
2311 |
charFormat=aCharFormat; // Has a phrase index.
|
sl@0
|
2312 |
else
|
sl@0
|
2313 |
charFormat=aParaAttribs->iCharFormat; // Has constant char formatting.
|
sl@0
|
2314 |
return GetParaAttribsL(aParaAttribs->iParaFormat,charFormat,aReservedCell);
|
sl@0
|
2315 |
}
|
sl@0
|
2316 |
|
sl@0
|
2317 |
|
sl@0
|
2318 |
CParaAttribs* CRichTextIndex::RequestShare(const TLogicalPosition& aLogicalPosition)
|
sl@0
|
2319 |
// Returns a handle to a paraAttribs on the shared list that matches the paragraph at the
|
sl@0
|
2320 |
// specified position. Returns NULL if the specified paragraph does not have constant
|
sl@0
|
2321 |
// character formatting.
|
sl@0
|
2322 |
//
|
sl@0
|
2323 |
{
|
sl@0
|
2324 |
CParaAttribs* paraAttribs=(*iParaIx)[aLogicalPosition.iParaElement].iParaAttribs;
|
sl@0
|
2325 |
if (paraAttribs->iRefCount<=0 && paraAttribs->iPhraseCount>1)
|
sl@0
|
2326 |
return NULL; // This para has specific character formatting and so cannot be shared.
|
sl@0
|
2327 |
// This para has constant character formatting - can be shared.
|
sl@0
|
2328 |
return GetParaAttribs(aLogicalPosition);
|
sl@0
|
2329 |
}
|
sl@0
|
2330 |
|
sl@0
|
2331 |
|
sl@0
|
2332 |
CParaAttribs* CRichTextIndex::GetParaAttribsL(const CParaFormatLayer* aParaFormat,const CCharFormatLayer* aCharFormat,
|
sl@0
|
2333 |
CParaAttribs* aReservedCell)
|
sl@0
|
2334 |
// Attempts to match the specified arguments to a CParaAttribs in the shared list.
|
sl@0
|
2335 |
// If matched, the handle of the matched para attribs is returned, and the reference count
|
sl@0
|
2336 |
// of that item is incremented.
|
sl@0
|
2337 |
//
|
sl@0
|
2338 |
// aReservedCell is a pre-allocated CParaAttribs that has been correctly setup. If no match
|
sl@0
|
2339 |
// is found, and the reserved cell is specified, this is used in preference to creating a new one.
|
sl@0
|
2340 |
// If the reserved cell is not specified and there is no match, a new CParaAttribs of the correct
|
sl@0
|
2341 |
// specification is created and added to the shared list.
|
sl@0
|
2342 |
//
|
sl@0
|
2343 |
{
|
sl@0
|
2344 |
CParaAttribs* handle=FindSharedParaAttribs(*aParaFormat,*aCharFormat);
|
sl@0
|
2345 |
if (handle)
|
sl@0
|
2346 |
return handle; // match found already in the shared list.
|
sl@0
|
2347 |
// There is no match, so create new sharedPara and add to list.
|
sl@0
|
2348 |
if (!aReservedCell)
|
sl@0
|
2349 |
aReservedCell=CParaAttribs::NewL(aParaFormat,aCharFormat); // Reusing aReservedCell saves an automatic.
|
sl@0
|
2350 |
iSharedParaQueHead.AddLast(*aReservedCell);
|
sl@0
|
2351 |
return aReservedCell;
|
sl@0
|
2352 |
}
|
sl@0
|
2353 |
|
sl@0
|
2354 |
|
sl@0
|
2355 |
CParaAttribs* CRichTextIndex::GetParaAttribs(CParaAttribs* aParaAttribs,CCharFormatLayer& aCharFormatLayer)
|
sl@0
|
2356 |
// Called by Reset.
|
sl@0
|
2357 |
//
|
sl@0
|
2358 |
{
|
sl@0
|
2359 |
CParaAttribs* handle=FindSharedParaAttribs(*aParaAttribs->iParaFormat,aCharFormatLayer);
|
sl@0
|
2360 |
if (handle)
|
sl@0
|
2361 |
return handle;
|
sl@0
|
2362 |
else
|
sl@0
|
2363 |
{// No match, so piece together new shared paraAttribs and add to shared para list.
|
sl@0
|
2364 |
aParaAttribs->iRefCount=1;
|
sl@0
|
2365 |
aParaAttribs->iCharFormat=&aCharFormatLayer;
|
sl@0
|
2366 |
iSharedParaQueHead.AddLast(*aParaAttribs);
|
sl@0
|
2367 |
return aParaAttribs;
|
sl@0
|
2368 |
}
|
sl@0
|
2369 |
}
|
sl@0
|
2370 |
|
sl@0
|
2371 |
|
sl@0
|
2372 |
CParaAttribs* CRichTextIndex::GetParaAttribs(const TLogicalPosition& aLogicalPosition)
|
sl@0
|
2373 |
// Attempts to match the specified arguments to a CParaAttribs in the shared list.
|
sl@0
|
2374 |
// If matched, the handle of the matched para attribs is returned, and the reference count
|
sl@0
|
2375 |
// of that item is incremented. If no match is found, the current para attribs is
|
sl@0
|
2376 |
// transformed into one that is placed in the shared list.
|
sl@0
|
2377 |
//
|
sl@0
|
2378 |
{
|
sl@0
|
2379 |
CParaAttribs* sourceParaAttribs=(*iParaIx)[aLogicalPosition.iParaElement].iParaAttribs;
|
sl@0
|
2380 |
RPhraseAttribsEntry* sourcePhrase=&(*iPhraseIx)[aLogicalPosition.iPhraseElement];
|
sl@0
|
2381 |
//
|
sl@0
|
2382 |
CParaAttribs* handle=FindSharedParaAttribs(*sourceParaAttribs->iParaFormat,*sourcePhrase->CharFormat());
|
sl@0
|
2383 |
if (handle)
|
sl@0
|
2384 |
return handle;
|
sl@0
|
2385 |
else
|
sl@0
|
2386 |
{// No match, so piece together new shared paraAttribs and add to shared para list
|
sl@0
|
2387 |
sourceParaAttribs->iRefCount=1;
|
sl@0
|
2388 |
if (sourcePhrase->IsPicturePhrase())
|
sl@0
|
2389 |
{
|
sl@0
|
2390 |
OstTrace0( TRACE_FATAL, CRICHTEXTINDEX_GETPARAATTRIBS, "EReleasCharFormatLayerOwnershipCalledOnPicturePhrase" );
|
sl@0
|
2391 |
}
|
sl@0
|
2392 |
__ASSERT_ALWAYS(!sourcePhrase->IsPicturePhrase(),Panic(EReleasCharFormatLayerOwnershipCalledOnPicturePhrase));
|
sl@0
|
2393 |
sourceParaAttribs->iCharFormat=sourcePhrase->ReleaseCharFormatLayerOwnership();
|
sl@0
|
2394 |
sourcePhrase->Discard();
|
sl@0
|
2395 |
iPhraseIx->Delete(aLogicalPosition.iPhraseElement); // remove the deleted phrase from the phrase index.
|
sl@0
|
2396 |
iSharedParaQueHead.AddLast(*sourceParaAttribs);
|
sl@0
|
2397 |
return sourceParaAttribs;
|
sl@0
|
2398 |
}
|
sl@0
|
2399 |
}
|
sl@0
|
2400 |
|
sl@0
|
2401 |
|
sl@0
|
2402 |
CParaAttribs* CRichTextIndex::FindSharedParaAttribs(const CParaFormatLayer& aParaFormatLayer,const CCharFormatLayer& aCharFormatLayer)
|
sl@0
|
2403 |
// Attempts to match the specified arguments to an item in the shared para list.
|
sl@0
|
2404 |
// If found, the handle of the matched para attribs is returned, and the reference count
|
sl@0
|
2405 |
// of that item is incremented.
|
sl@0
|
2406 |
// If no match is made NULL is returned.
|
sl@0
|
2407 |
//
|
sl@0
|
2408 |
{
|
sl@0
|
2409 |
CParaAttribs* currentSharedPara=NULL;
|
sl@0
|
2410 |
TBool matched=EFalse;
|
sl@0
|
2411 |
if (!iSharedParaQueHead.IsEmpty())
|
sl@0
|
2412 |
{
|
sl@0
|
2413 |
TDblQueIter<CParaAttribs> iterator(iSharedParaQueHead);
|
sl@0
|
2414 |
while ((currentSharedPara=iterator++)!=NULL)
|
sl@0
|
2415 |
{// Try and match each item in the shared para list.
|
sl@0
|
2416 |
matched=aParaFormatLayer.IsIdentical(currentSharedPara->iParaFormat);
|
sl@0
|
2417 |
if (!matched)
|
sl@0
|
2418 |
continue;
|
sl@0
|
2419 |
matched=aCharFormatLayer.IsIdentical(currentSharedPara->iCharFormat);
|
sl@0
|
2420 |
if (!matched)
|
sl@0
|
2421 |
continue;
|
sl@0
|
2422 |
// We have a match, so adjust reference count.
|
sl@0
|
2423 |
currentSharedPara->iRefCount++;
|
sl@0
|
2424 |
return currentSharedPara;
|
sl@0
|
2425 |
}
|
sl@0
|
2426 |
}
|
sl@0
|
2427 |
return currentSharedPara;
|
sl@0
|
2428 |
}
|
sl@0
|
2429 |
|
sl@0
|
2430 |
|
sl@0
|
2431 |
void CRichTextIndex::ScanToPosition(TInt aCharPos,TScanToPositionMode aMode,TLogicalPosition* aLastUsed/*=NULL*/)
|
sl@0
|
2432 |
// Move the internal position record to that indicated by the specified character position, aCharPos.
|
sl@0
|
2433 |
// Behaviour follows:
|
sl@0
|
2434 |
// aCharPos is considered to be goverened by the phrase covering aCharPos-1,
|
sl@0
|
2435 |
// except when aCharPos is the fist character of a paragraph, when
|
sl@0
|
2436 |
// aCharPos is goverened by the phrase coverng aCharPos.
|
sl@0
|
2437 |
// (If nothing else, aCharPos will be a paragraph delimiter or the end-of-document
|
sl@0
|
2438 |
// character.
|
sl@0
|
2439 |
// The implementation below matches to the right as standard, then checks if a left
|
sl@0
|
2440 |
// phrase match is available.
|
sl@0
|
2441 |
//
|
sl@0
|
2442 |
{
|
sl@0
|
2443 |
if (!aLastUsed || aLastUsed->iDocPos-aLastUsed->iParaElementOffset>aCharPos)
|
sl@0
|
2444 |
iPos.Clear(); // Reset the internal position record.
|
sl@0
|
2445 |
else
|
sl@0
|
2446 |
{
|
sl@0
|
2447 |
iPos=*aLastUsed;
|
sl@0
|
2448 |
if (iPos.iDocPos>aCharPos || (aMode==EScanToPositionMatchLeft && iPos.iDocPos==aCharPos))
|
sl@0
|
2449 |
{// reset to the start of paragraph if aPos < cache pos or aPos==chache Pos whilst matching left
|
sl@0
|
2450 |
iPos.iDocPos-=iPos.iParaElementOffset;
|
sl@0
|
2451 |
iPos.iParaElementOffset=iPos.iPhraseElementOffset=0;
|
sl@0
|
2452 |
iPos.iPhraseElement=iPos.iParaBasePhraseElement;
|
sl@0
|
2453 |
}
|
sl@0
|
2454 |
}
|
sl@0
|
2455 |
|
sl@0
|
2456 |
TInt phraseElement=iPos.iPhraseElement;
|
sl@0
|
2457 |
TInt startOfPara=iPos.iDocPos-iPos.iParaElementOffset;
|
sl@0
|
2458 |
TInt paraElement=iPos.iParaElement;
|
sl@0
|
2459 |
const CArrayFix<TParaAttribsEntry>& paraIx=*iParaIx;
|
sl@0
|
2460 |
const TParaAttribsEntry* para=¶Ix[paraElement];
|
sl@0
|
2461 |
TInt len=para->iLength;
|
sl@0
|
2462 |
if (aCharPos>=(startOfPara+len))
|
sl@0
|
2463 |
{
|
sl@0
|
2464 |
iPos.iParaElementOffset=iPos.iPhraseElementOffset=0;
|
sl@0
|
2465 |
phraseElement=iPos.iParaBasePhraseElement;
|
sl@0
|
2466 |
const TParaAttribsEntry* end=paraIx.End(paraElement);
|
sl@0
|
2467 |
do
|
sl@0
|
2468 |
{// Find the paragraph...
|
sl@0
|
2469 |
startOfPara+=len;
|
sl@0
|
2470 |
if (!(para->iParaAttribs->IsShared())) // Adjust position within phrase index
|
sl@0
|
2471 |
phraseElement+=para->iParaAttribs->iPhraseCount;
|
sl@0
|
2472 |
++paraElement;
|
sl@0
|
2473 |
if (++para==end)
|
sl@0
|
2474 |
{
|
sl@0
|
2475 |
para=¶Ix[paraElement];
|
sl@0
|
2476 |
end=paraIx.End(paraElement);
|
sl@0
|
2477 |
}
|
sl@0
|
2478 |
len=para->iLength;
|
sl@0
|
2479 |
}
|
sl@0
|
2480 |
while (aCharPos>=(startOfPara+len) && (paraElement+1) < paraIx.Count());
|
sl@0
|
2481 |
iPos.iParaBasePhraseElement=phraseElement;
|
sl@0
|
2482 |
iPos.iParaElement=paraElement;
|
sl@0
|
2483 |
}
|
sl@0
|
2484 |
TInt startOfPhrase=iPos.iParaElementOffset-iPos.iPhraseElementOffset;
|
sl@0
|
2485 |
// the offset within the paragraph.
|
sl@0
|
2486 |
TInt paraElementOffset=aCharPos-startOfPara;
|
sl@0
|
2487 |
iPos.iParaElementOffset=paraElementOffset;
|
sl@0
|
2488 |
|
sl@0
|
2489 |
if (!(para->iParaAttribs->IsShared()))
|
sl@0
|
2490 |
{// Find phrase & offset within it.
|
sl@0
|
2491 |
TInt lastPhraseLength=-1; // Record phrase length in case left match required.
|
sl@0
|
2492 |
const CArrayFix<RPhraseAttribsEntry>& phraseIx=*iPhraseIx;
|
sl@0
|
2493 |
const RPhraseAttribsEntry* phrase=&phraseIx[phraseElement];
|
sl@0
|
2494 |
const RPhraseAttribsEntry* end=NULL;
|
sl@0
|
2495 |
for (;;)
|
sl@0
|
2496 |
{ // Find the phrase in the paragraph...
|
sl@0
|
2497 |
len=phrase->Length();
|
sl@0
|
2498 |
if (paraElementOffset<(startOfPhrase+len))
|
sl@0
|
2499 |
break;
|
sl@0
|
2500 |
startOfPhrase+=len;
|
sl@0
|
2501 |
lastPhraseLength=len;
|
sl@0
|
2502 |
if (end==NULL)
|
sl@0
|
2503 |
end=phraseIx.End(phraseElement);
|
sl@0
|
2504 |
phraseElement++;
|
sl@0
|
2505 |
if (++phrase<end)
|
sl@0
|
2506 |
continue;
|
sl@0
|
2507 |
phrase=&phraseIx[phraseElement];
|
sl@0
|
2508 |
end=phraseIx.End(phraseElement);
|
sl@0
|
2509 |
}//...and the offset within this.
|
sl@0
|
2510 |
// Check now for match left.
|
sl@0
|
2511 |
if ((aMode==EScanToPositionMatchLeft) && lastPhraseLength>=0 && paraElementOffset==startOfPhrase)
|
sl@0
|
2512 |
{// Match to the left most phrase if at the start of a phrase.
|
sl@0
|
2513 |
phraseElement--;
|
sl@0
|
2514 |
iPos.iPhraseElementOffset=lastPhraseLength;
|
sl@0
|
2515 |
}
|
sl@0
|
2516 |
else
|
sl@0
|
2517 |
iPos.iPhraseElementOffset=paraElementOffset-startOfPhrase;
|
sl@0
|
2518 |
}
|
sl@0
|
2519 |
else
|
sl@0
|
2520 |
{
|
sl@0
|
2521 |
if (iPos.iParaBasePhraseElement!=phraseElement)
|
sl@0
|
2522 |
{
|
sl@0
|
2523 |
OstTrace0( TRACE_DUMP, CRICHTEXTINDEX_SCANTOPOSITION, "EDebug" );
|
sl@0
|
2524 |
}
|
sl@0
|
2525 |
__ASSERT_DEBUG(iPos.iParaBasePhraseElement==phraseElement,Panic(EDebug));
|
sl@0
|
2526 |
}
|
sl@0
|
2527 |
iPos.iPhraseElement=phraseElement;
|
sl@0
|
2528 |
iPos.iDocPos=aCharPos;
|
sl@0
|
2529 |
if (aLastUsed)
|
sl@0
|
2530 |
*aLastUsed=iPos;
|
sl@0
|
2531 |
}
|
sl@0
|
2532 |
|
sl@0
|
2533 |
|
sl@0
|
2534 |
TBool CRichTextIndex::FirstPhraseOfParagraph()const
|
sl@0
|
2535 |
// Interogates the current internal position record.
|
sl@0
|
2536 |
// Return ETrue if the current phrase element is the first phrase
|
sl@0
|
2537 |
// of specific character format in the current paragraph;
|
sl@0
|
2538 |
// Otherwise return EFalse.
|
sl@0
|
2539 |
//
|
sl@0
|
2540 |
{return iPos.iPhraseElement==iPos.iParaBasePhraseElement;}
|
sl@0
|
2541 |
|
sl@0
|
2542 |
|
sl@0
|
2543 |
TInt CRichTextIndex::CurrentPhraseLength()const
|
sl@0
|
2544 |
// Return the length of the current phrase, where the current
|
sl@0
|
2545 |
// phrase is specified by the state of the internal position record.
|
sl@0
|
2546 |
//
|
sl@0
|
2547 |
{
|
sl@0
|
2548 |
if ((*iParaIx)[iPos.iParaElement].iParaAttribs->IsShared())
|
sl@0
|
2549 |
return (*iParaIx)[iPos.iParaElement].iLength;
|
sl@0
|
2550 |
else
|
sl@0
|
2551 |
return (*iPhraseIx)[iPos.iPhraseElement].Length();
|
sl@0
|
2552 |
}
|
sl@0
|
2553 |
|
sl@0
|
2554 |
|
sl@0
|
2555 |
TInt CRichTextIndex::CurrentPhraseOffset()const
|
sl@0
|
2556 |
// Returns the offset within the current phrase, where the current
|
sl@0
|
2557 |
// phrase is specified by the state of the internal position record.
|
sl@0
|
2558 |
//
|
sl@0
|
2559 |
{
|
sl@0
|
2560 |
if ((*iParaIx)[iPos.iParaElement].iParaAttribs->IsShared())
|
sl@0
|
2561 |
return iPos.iParaElementOffset; // only 1 phrase in para.
|
sl@0
|
2562 |
else
|
sl@0
|
2563 |
return iPos.iPhraseElementOffset;
|
sl@0
|
2564 |
}
|
sl@0
|
2565 |
|
sl@0
|
2566 |
|
sl@0
|
2567 |
void CRichTextIndex::GetCurrentRecords(TCurrentIndexRecords& aRecord)const
|
sl@0
|
2568 |
// Package the phrase and paragraph index records that apply to the
|
sl@0
|
2569 |
// current paragraph and return this package. It is assumed that
|
sl@0
|
2570 |
// the caller has already set the internal position record to a valid state.
|
sl@0
|
2571 |
//
|
sl@0
|
2572 |
{
|
sl@0
|
2573 |
aRecord.iParaEntry=&(*iParaIx)[iPos.iParaElement];
|
sl@0
|
2574 |
aRecord.iParaAttribs=aRecord.iParaEntry->iParaAttribs;
|
sl@0
|
2575 |
if (aRecord.iParaAttribs->IsShared())
|
sl@0
|
2576 |
aRecord.iPhrase=NULL;
|
sl@0
|
2577 |
else
|
sl@0
|
2578 |
aRecord.iPhrase=&((*iPhraseIx)[iPos.iPhraseElement]);
|
sl@0
|
2579 |
}
|
sl@0
|
2580 |
|
sl@0
|
2581 |
|
sl@0
|
2582 |
void CRichTextIndex::GetPhraseFormat(TCurrentIndexRecords& aCurrent,TCharFormatX& aFormat,TCharFormatXMask& aMask,
|
sl@0
|
2583 |
CCharFormatLayer*& aCharBase)const
|
sl@0
|
2584 |
// Fills aFormat and aMask with the character formatting information of the current record.
|
sl@0
|
2585 |
// aCharBase is set to the basedOn link if present.
|
sl@0
|
2586 |
// Encapsulates the concepts of the specific phrase index, and the constant character format.
|
sl@0
|
2587 |
// Only senses the format in the layer, does *NOT* perform a SenseEffective.
|
sl@0
|
2588 |
//
|
sl@0
|
2589 |
{
|
sl@0
|
2590 |
CCharFormatLayer* charFormatLayer=NULL;
|
sl@0
|
2591 |
if (aCurrent.iPhrase)
|
sl@0
|
2592 |
{// Specific character formatting held by phrase index.
|
sl@0
|
2593 |
charFormatLayer=aCurrent.iPhrase->CharFormat();
|
sl@0
|
2594 |
}
|
sl@0
|
2595 |
else
|
sl@0
|
2596 |
{// Constant character formatting held in the para attribs
|
sl@0
|
2597 |
charFormatLayer=aCurrent.iParaAttribs->iCharFormat;
|
sl@0
|
2598 |
}
|
sl@0
|
2599 |
charFormatLayer->Sense(aFormat,aMask);
|
sl@0
|
2600 |
aCharBase=(CCharFormatLayer*)(charFormatLayer->SenseBase());
|
sl@0
|
2601 |
}
|
sl@0
|
2602 |
|
sl@0
|
2603 |
|
sl@0
|
2604 |
TInt CRichTextIndex::OwningParagraph(TInt aPos,TLogicalPosition* aLastUsed/*=NULL*/)const
|
sl@0
|
2605 |
// Return the paragraph element number that contains character position aPos.
|
sl@0
|
2606 |
// Assumes the caller has validated aPos. Alters the internal record position.
|
sl@0
|
2607 |
//
|
sl@0
|
2608 |
{
|
sl@0
|
2609 |
((CRichTextIndex*)this)->ScanToPosition(aPos,EScanToPositionMatchLeft,aLastUsed);
|
sl@0
|
2610 |
return iPos.iParaElement;
|
sl@0
|
2611 |
}
|
sl@0
|
2612 |
|
sl@0
|
2613 |
|
sl@0
|
2614 |
void CRichTextIndex::SplitPhraseL(TInt aSplitPos)
|
sl@0
|
2615 |
// Splits the phrase at the offset aSplitPos, creating a new phrase
|
sl@0
|
2616 |
// which is filled with the split part of the current phrase, includig aSplitPos.
|
sl@0
|
2617 |
// The character format applied to the new phrase is the format of the phrase from which it has been split.
|
sl@0
|
2618 |
// The resulting new phrase is inserted into the phrase index immediately following the
|
sl@0
|
2619 |
// current element. If aSplitPos is already at a phrase boundary, then no split is performed.
|
sl@0
|
2620 |
// (This means that a picture phrase in effect can never be split).
|
sl@0
|
2621 |
//
|
sl@0
|
2622 |
{
|
sl@0
|
2623 |
SetPhraseSplit(EFalse);
|
sl@0
|
2624 |
ScanToPosition(aSplitPos,EScanToPositionAbsolute);
|
sl@0
|
2625 |
if (iPos.iPhraseElementOffset==0)
|
sl@0
|
2626 |
return; // aSplitPos on a phrase boundary; urgo no split.
|
sl@0
|
2627 |
TCurrentIndexRecords current; GetCurrentRecords(current);
|
sl@0
|
2628 |
// ASSERT: This function set can only be called on CParaAttribs that specific char format.
|
sl@0
|
2629 |
if (current.iPhrase==NULL)
|
sl@0
|
2630 |
{
|
sl@0
|
2631 |
OstTrace0( TRACE_FATAL, DUP1_CRICHTEXTINDEX_SPLITPHRASEL, "ESplitPhraseCalledOnSharedPara" );
|
sl@0
|
2632 |
}
|
sl@0
|
2633 |
__ASSERT_ALWAYS(current.iPhrase!=NULL,Panic(ESplitPhraseCalledOnSharedPara));
|
sl@0
|
2634 |
DoSplitPhraseL(*current.iPhrase,iPos.iPhraseElementOffset,current.iParaAttribs);
|
sl@0
|
2635 |
}
|
sl@0
|
2636 |
|
sl@0
|
2637 |
|
sl@0
|
2638 |
void CRichTextIndex::SplitPhraseL(TInt aPhraseElement,TInt aPhraseOffset,CParaAttribs* aParaAttribs)
|
sl@0
|
2639 |
// Splits the specified phrase at the offset aOffsetInPhrase, creating a new phrase
|
sl@0
|
2640 |
// which is filled with the split part of the current phrase, includig the split pos.
|
sl@0
|
2641 |
// The character format applied to the new phrase is the format of the phrase from which it has been split.
|
sl@0
|
2642 |
// The resulting new phrase is inserted into the phrase index immediately following the
|
sl@0
|
2643 |
// current element. If the split pos is already at a phrase boundary, then no split is performed.
|
sl@0
|
2644 |
// (This means that a picture phrase in effect can never be split).
|
sl@0
|
2645 |
//
|
sl@0
|
2646 |
{
|
sl@0
|
2647 |
SetPhraseSplit(EFalse);
|
sl@0
|
2648 |
RPhraseAttribsEntry& phrase=(*iPhraseIx)[aPhraseElement];
|
sl@0
|
2649 |
if ((aPhraseOffset>0) && (aPhraseOffset<phrase.Length()))
|
sl@0
|
2650 |
{// Not at a phrase boundary so split the current phrase.
|
sl@0
|
2651 |
DoSplitPhraseL(phrase,aPhraseOffset,aParaAttribs);
|
sl@0
|
2652 |
}
|
sl@0
|
2653 |
}
|
sl@0
|
2654 |
|
sl@0
|
2655 |
|
sl@0
|
2656 |
void CRichTextIndex::DoSplitPhraseL(RPhraseAttribsEntry& aCurrentPhrase,TInt aPhraseOffset,CParaAttribs* aParaAttribs)
|
sl@0
|
2657 |
// Splits the specified phrase, creating a new phrase of the same character format.
|
sl@0
|
2658 |
// This new phrase is inserted into the phrase index immediately following the current one.
|
sl@0
|
2659 |
//
|
sl@0
|
2660 |
{
|
sl@0
|
2661 |
// ASSERT: Cannot split a picture phrase.
|
sl@0
|
2662 |
if (aCurrentPhrase.IsPicturePhrase())
|
sl@0
|
2663 |
{
|
sl@0
|
2664 |
OstTrace0( TRACE_DUMP, CRICHTEXTINDEX_DOSPLITPHRASEL, "ESplitPhraseCalledOnPicturePhrase" );
|
sl@0
|
2665 |
}
|
sl@0
|
2666 |
__ASSERT_DEBUG(!aCurrentPhrase.IsPicturePhrase(),Panic(ESplitPhraseCalledOnPicturePhrase));
|
sl@0
|
2667 |
CCharFormatLayer* layer=CCharFormatLayer::NewCopyBaseL(aCurrentPhrase.CharFormat());
|
sl@0
|
2668 |
CleanupStack::PushL(layer);
|
sl@0
|
2669 |
RPhraseAttribsEntry newPhrase(layer,aCurrentPhrase.Length()-aPhraseOffset);
|
sl@0
|
2670 |
iPhraseIx->InsertL(iPos.iPhraseElement+1,newPhrase);
|
sl@0
|
2671 |
CleanupStack::Pop();
|
sl@0
|
2672 |
//
|
sl@0
|
2673 |
// InsertL() has invalidated the current internal position record.
|
sl@0
|
2674 |
iPhraseIx->At(iPos.iPhraseElement).SetLength(aPhraseOffset);
|
sl@0
|
2675 |
SetPhraseSplit(ETrue);
|
sl@0
|
2676 |
aParaAttribs->iPhraseCount++;
|
sl@0
|
2677 |
}
|
sl@0
|
2678 |
|
sl@0
|
2679 |
|
sl@0
|
2680 |
TBool CRichTextIndex::HasMarkupData(const CFormatLayer* aGlobalParaFormatLayer)const
|
sl@0
|
2681 |
// Returns ETure if this rich text instance has any specific markup,
|
sl@0
|
2682 |
// otherwise returns EFalse.
|
sl@0
|
2683 |
// The presence of specific markup is indicated by the following...
|
sl@0
|
2684 |
// 1) Style list is present (if style table is owned by the rich text)
|
sl@0
|
2685 |
// 2) Any phrase index content
|
sl@0
|
2686 |
// 3) >1 shared para attribs
|
sl@0
|
2687 |
// or
|
sl@0
|
2688 |
// 3) 1 shared para attribs that has specific markup
|
sl@0
|
2689 |
// 4) any paragraph is based on a style other than normal (the global paraformatlayer)
|
sl@0
|
2690 |
//
|
sl@0
|
2691 |
{
|
sl@0
|
2692 |
TInt phraseCount=PhraseCount();
|
sl@0
|
2693 |
if (phraseCount>0)
|
sl@0
|
2694 |
return ETrue;
|
sl@0
|
2695 |
//
|
sl@0
|
2696 |
TInt sharedParaCount=SharedParaCount(this);
|
sl@0
|
2697 |
if (sharedParaCount<1 && (sharedParaCount!=0 || phraseCount<=0))
|
sl@0
|
2698 |
{
|
sl@0
|
2699 |
OstTrace0( TRACE_FATAL, CRICHTEXTINDEX_HASMARKUPDATA, "ERichTextIndexIntegrityErr" );
|
sl@0
|
2700 |
}
|
sl@0
|
2701 |
__ASSERT_ALWAYS(sharedParaCount>=1 || (sharedParaCount==0 && phraseCount>0),Panic(ERichTextIndexIntegrityErr));
|
sl@0
|
2702 |
if (sharedParaCount>1)
|
sl@0
|
2703 |
return ETrue;
|
sl@0
|
2704 |
const CParaAttribs* paraAttribs=iSharedParaQueHead.First();
|
sl@0
|
2705 |
if (!paraAttribs->iParaFormat->IsEmpty())
|
sl@0
|
2706 |
return ETrue;
|
sl@0
|
2707 |
if (!paraAttribs->iCharFormat->IsEmpty())
|
sl@0
|
2708 |
return ETrue;
|
sl@0
|
2709 |
if (paraAttribs->iParaFormat->SenseBase()!=aGlobalParaFormatLayer)
|
sl@0
|
2710 |
return ETrue;
|
sl@0
|
2711 |
return EFalse;
|
sl@0
|
2712 |
}
|
sl@0
|
2713 |
|
sl@0
|
2714 |
|
sl@0
|
2715 |
TInt CRichTextIndex::SharedParaCount(const CRichTextIndex* aSource)const
|
sl@0
|
2716 |
// Return a count of the number of shared paragraph formats present
|
sl@0
|
2717 |
// in the specified object.
|
sl@0
|
2718 |
//
|
sl@0
|
2719 |
{
|
sl@0
|
2720 |
TInt sharedParaCount = 0;
|
sl@0
|
2721 |
TDblQueIter<CParaAttribs> iterator( MUTABLE_CAST(TDblQue<CParaAttribs>&, aSource->iSharedParaQueHead) );
|
sl@0
|
2722 |
while ( iterator++ != NULL )
|
sl@0
|
2723 |
sharedParaCount++;
|
sl@0
|
2724 |
return sharedParaCount;
|
sl@0
|
2725 |
}
|
sl@0
|
2726 |
|
sl@0
|
2727 |
|
sl@0
|
2728 |
void CRichTextIndex::AppendTakingSolePictureOwnershipL(const CRichTextIndex* aSource,const TGlobalLayerInfoAppend& aGlobalLayerInfo)
|
sl@0
|
2729 |
// No paragraph style information is appended.
|
sl@0
|
2730 |
//
|
sl@0
|
2731 |
{
|
sl@0
|
2732 |
CancelInsertCharFormat();
|
sl@0
|
2733 |
CONST_CAST(CRichTextIndex*,aSource)->CancelInsertCharFormat();
|
sl@0
|
2734 |
|
sl@0
|
2735 |
TInt origParaCount=ParagraphCount();
|
sl@0
|
2736 |
TInt origPhraseCount=iPhraseIx->Count();
|
sl@0
|
2737 |
TRAPD(ret,
|
sl@0
|
2738 |
AppendParaIndexL(aSource,aGlobalLayerInfo);
|
sl@0
|
2739 |
AppendPhraseIndexL(aSource,aGlobalLayerInfo);
|
sl@0
|
2740 |
);
|
sl@0
|
2741 |
if (ret!=KErrNone)
|
sl@0
|
2742 |
{
|
sl@0
|
2743 |
RemoveFromPhraseIx(origPhraseCount,iPhraseIx->Count()-origPhraseCount); // remove any added phrases etc.
|
sl@0
|
2744 |
RbRemoveInsertedParaAttribsEntries(origParaCount,ParagraphCount()-origParaCount); // remove any added paragraphs etc.
|
sl@0
|
2745 |
NormalizeSharedList(); // remove any added shared paragraph attributes
|
sl@0
|
2746 |
User::Leave(ret);
|
sl@0
|
2747 |
}
|
sl@0
|
2748 |
|
sl@0
|
2749 |
__TEST_INVARIANT;
|
sl@0
|
2750 |
}
|
sl@0
|
2751 |
|
sl@0
|
2752 |
|
sl@0
|
2753 |
void CRichTextIndex::AppendParaIndexL(const CRichTextIndex* aSource,const TGlobalLayerInfoAppend& aGlobalLayerInfo)
|
sl@0
|
2754 |
//
|
sl@0
|
2755 |
{
|
sl@0
|
2756 |
CRichTextStoreMap<CParaAttribs>* map=CRichTextStoreMap<CParaAttribs>::NewLC(SharedParaCount(aSource));
|
sl@0
|
2757 |
|
sl@0
|
2758 |
AppendSharedFormatsL(*map,aSource,aGlobalLayerInfo);
|
sl@0
|
2759 |
|
sl@0
|
2760 |
// Extend para index by required amount
|
sl@0
|
2761 |
TInt originalParaCount=iParaIx->Count();
|
sl@0
|
2762 |
TInt requiredParaCount=aSource->iParaIx->Count();
|
sl@0
|
2763 |
iParaIx->AppendL(TParaAttribsEntry(),requiredParaCount);
|
sl@0
|
2764 |
|
sl@0
|
2765 |
for (TInt ii=0;ii<requiredParaCount;ii++)
|
sl@0
|
2766 |
{// Copy the paragraph data for each of the appended paragraphs.
|
sl@0
|
2767 |
const TParaAttribsEntry& sParaEntry=(*aSource->iParaIx)[ii];
|
sl@0
|
2768 |
const CParaAttribs* sParaAttribs=sParaEntry.iParaAttribs;
|
sl@0
|
2769 |
CParaAttribs* tParaAttribs;
|
sl@0
|
2770 |
if (sParaAttribs->IsShared())
|
sl@0
|
2771 |
{
|
sl@0
|
2772 |
tParaAttribs=map->Item(sParaAttribs);
|
sl@0
|
2773 |
if (tParaAttribs==NULL)
|
sl@0
|
2774 |
{
|
sl@0
|
2775 |
OstTrace0( TRACE_DUMP, CRICHTEXTINDEX_APPENDPARAINDEXL, "ESharedFormatsMapIntegrityError" );
|
sl@0
|
2776 |
}
|
sl@0
|
2777 |
__ASSERT_DEBUG(tParaAttribs!=NULL,Panic(ESharedFormatsMapIntegrityError));
|
sl@0
|
2778 |
tParaAttribs->iRefCount++;
|
sl@0
|
2779 |
}
|
sl@0
|
2780 |
else
|
sl@0
|
2781 |
{// Have to build up the specific para attribs
|
sl@0
|
2782 |
tParaAttribs=CParaAttribs::NewL(sParaAttribs->iParaFormat); // sets iRefCount=0, copies the format layer
|
sl@0
|
2783 |
tParaAttribs->iParaFormat->SetBase(aGlobalLayerInfo.iAggParaFormatLayer);
|
sl@0
|
2784 |
tParaAttribs->iPhraseCount=sParaAttribs->iPhraseCount;
|
sl@0
|
2785 |
}
|
sl@0
|
2786 |
TParaAttribsEntry& tParaEntry=(*iParaIx)[originalParaCount+ii];
|
sl@0
|
2787 |
tParaEntry.iLength=sParaEntry.iLength;
|
sl@0
|
2788 |
tParaEntry.iParaAttribs=tParaAttribs;
|
sl@0
|
2789 |
|
sl@0
|
2790 |
// tParaAttribs is attached to CRichTextIndex::iParaIx, and will be
|
sl@0
|
2791 |
// released in destructor CRichTextIndex::~CRichTextIndex().
|
sl@0
|
2792 |
// To prevent Coverity from reporting defect, add a comment:
|
sl@0
|
2793 |
// coverity[memory_leak]
|
sl@0
|
2794 |
}
|
sl@0
|
2795 |
|
sl@0
|
2796 |
CleanupStack::PopAndDestroy(); // map
|
sl@0
|
2797 |
}
|
sl@0
|
2798 |
|
sl@0
|
2799 |
|
sl@0
|
2800 |
void CRichTextIndex::AppendSharedFormatsL(CParaAttribsMap& aMap,const CRichTextIndex* aSource,
|
sl@0
|
2801 |
const TGlobalLayerInfoAppend& aGlobalLayerInfo)
|
sl@0
|
2802 |
// A map is kept, that for each original format specifies the corresponding new one that appended
|
sl@0
|
2803 |
// paragraphs should use.
|
sl@0
|
2804 |
//
|
sl@0
|
2805 |
{
|
sl@0
|
2806 |
TDblQueIter<CParaAttribs> iterator(MUTABLE_CAST(TDblQue<CParaAttribs>&,aSource->iSharedParaQueHead));
|
sl@0
|
2807 |
CParaAttribs* currentSharedPara;
|
sl@0
|
2808 |
while ((currentSharedPara=iterator++)!=NULL)
|
sl@0
|
2809 |
{
|
sl@0
|
2810 |
if (!currentSharedPara->IsShared())
|
sl@0
|
2811 |
{
|
sl@0
|
2812 |
OstTrace0( TRACE_DUMP, CRICHTEXTINDEX_APPENDSHAREDFORMATSL, "Invariant" );
|
sl@0
|
2813 |
}
|
sl@0
|
2814 |
__ASSERT_DEBUG(currentSharedPara->IsShared(),User::Invariant());
|
sl@0
|
2815 |
|
sl@0
|
2816 |
CParaFormatLayer* sPl=currentSharedPara->iParaFormat;
|
sl@0
|
2817 |
CCharFormatLayer* sCl=currentSharedPara->iCharFormat;
|
sl@0
|
2818 |
sPl->SetBase(aGlobalLayerInfo.iAggParaFormatLayer); // alter the original so that the following GetParaAttribsL() call will
|
sl@0
|
2819 |
sCl->SetBase(aGlobalLayerInfo.iAggCharFormatLayer); // match based on our global format layers, not those of aSource's.
|
sl@0
|
2820 |
CParaAttribs* newParaAttribs=FindSharedParaAttribs(*sPl,*sCl);
|
sl@0
|
2821 |
sPl->SetBase(aGlobalLayerInfo.iComParaFormatLayer); // set the global format layers back again, cos we don't want to
|
sl@0
|
2822 |
sCl->SetBase(aGlobalLayerInfo.iComCharFormatLayer); // corrupt aSource.
|
sl@0
|
2823 |
if (newParaAttribs==NULL)
|
sl@0
|
2824 |
{
|
sl@0
|
2825 |
newParaAttribs=CParaAttribs::NewL(currentSharedPara);
|
sl@0
|
2826 |
// change the based-on links (they are copied in the construction)
|
sl@0
|
2827 |
newParaAttribs->iParaFormat->SetBase(aGlobalLayerInfo.iAggParaFormatLayer);
|
sl@0
|
2828 |
newParaAttribs->iCharFormat->SetBase(aGlobalLayerInfo.iAggCharFormatLayer);
|
sl@0
|
2829 |
iSharedParaQueHead.AddLast(*newParaAttribs);
|
sl@0
|
2830 |
}
|
sl@0
|
2831 |
newParaAttribs->iRefCount--; // we have not yet linked incoming para - taken out no shares just yet
|
sl@0
|
2832 |
aMap.Bind(currentSharedPara,newParaAttribs);
|
sl@0
|
2833 |
}
|
sl@0
|
2834 |
}
|
sl@0
|
2835 |
|
sl@0
|
2836 |
void CRichTextIndex::AppendPhraseIndexL(const CRichTextIndex* aSource,const TGlobalLayerInfoAppend& aGlobalLayerInfo)
|
sl@0
|
2837 |
//
|
sl@0
|
2838 |
{
|
sl@0
|
2839 |
TInt originalPhraseCount=iPhraseIx->Count();
|
sl@0
|
2840 |
TInt requiredPhraseCount=aSource->iPhraseIx->Count();
|
sl@0
|
2841 |
|
sl@0
|
2842 |
// Extend phrase index by required amount
|
sl@0
|
2843 |
iPhraseIx->AppendL(RPhraseAttribsEntry(),requiredPhraseCount);
|
sl@0
|
2844 |
|
sl@0
|
2845 |
CArrayFixFlat<TInt>* pictureMap=new(ELeave) CArrayFixFlat<TInt>(16);
|
sl@0
|
2846 |
CleanupStack::PushL(pictureMap);
|
sl@0
|
2847 |
|
sl@0
|
2848 |
for (TInt jj=0;jj<requiredPhraseCount;jj++)
|
sl@0
|
2849 |
{
|
sl@0
|
2850 |
RPhraseAttribsEntry& sPhrase=(*aSource->iPhraseIx)[jj];
|
sl@0
|
2851 |
CCharFormatLayer* sCharFormatLayer=sPhrase.CharFormat();
|
sl@0
|
2852 |
CCharFormatLayer* charLayer=CCharFormatLayer::NewL(sCharFormatLayer);
|
sl@0
|
2853 |
charLayer->SetBase(aGlobalLayerInfo.iAggCharFormatLayer);
|
sl@0
|
2854 |
RPhraseAttribsEntry& tPhrase=(*iPhraseIx)[jj+originalPhraseCount];
|
sl@0
|
2855 |
if (!sPhrase.IsPicturePhrase())
|
sl@0
|
2856 |
tPhrase=RPhraseAttribsEntry(charLayer,sPhrase.Length());
|
sl@0
|
2857 |
else
|
sl@0
|
2858 |
{
|
sl@0
|
2859 |
TPictureHeader hdr;
|
sl@0
|
2860 |
hdr=sPhrase.PictureHeader(); // copy the header from the source
|
sl@0
|
2861 |
if (hdr.iPicture.IsPtr())
|
sl@0
|
2862 |
hdr.iPicture=NULL; // pic.ownership transferred later.
|
sl@0
|
2863 |
CleanupStack::PushL(charLayer);
|
sl@0
|
2864 |
TBool ownershipTaken(EFalse);
|
sl@0
|
2865 |
CPicturePhrase* picPhrase=CPicturePhrase::NewL(hdr,charLayer,ownershipTaken);
|
sl@0
|
2866 |
CleanupStack::Pop(); // charLayer
|
sl@0
|
2867 |
tPhrase=RPhraseAttribsEntry(picPhrase);
|
sl@0
|
2868 |
iPictureCount++;
|
sl@0
|
2869 |
pictureMap->AppendL(jj);
|
sl@0
|
2870 |
}
|
sl@0
|
2871 |
}
|
sl@0
|
2872 |
|
sl@0
|
2873 |
// transfer pictures now
|
sl@0
|
2874 |
for (TInt kk=pictureMap->Count();--kk>=0;)
|
sl@0
|
2875 |
{
|
sl@0
|
2876 |
TInt jj=pictureMap->At(kk);
|
sl@0
|
2877 |
TPictureHeader* sHeader=(*aSource->iPhraseIx)[jj].PictureHeaderPtr();
|
sl@0
|
2878 |
if (!sHeader)
|
sl@0
|
2879 |
{
|
sl@0
|
2880 |
OstTrace0( TRACE_DUMP, CRICHTEXTINDEX_APPENDPHRASEINDEXL, "Invariant" );
|
sl@0
|
2881 |
}
|
sl@0
|
2882 |
__ASSERT_DEBUG(sHeader,User::Invariant());
|
sl@0
|
2883 |
if (sHeader->iPicture.IsPtr())
|
sl@0
|
2884 |
{ // transfer picture to us
|
sl@0
|
2885 |
TPictureHeader* tHeader=(*iPhraseIx)[jj+originalPhraseCount].PictureHeaderPtr();
|
sl@0
|
2886 |
if (!tHeader)
|
sl@0
|
2887 |
{
|
sl@0
|
2888 |
OstTrace0( TRACE_DUMP, DUP1_CRICHTEXTINDEX_APPENDPHRASEINDEXL, "Invariant" );
|
sl@0
|
2889 |
}
|
sl@0
|
2890 |
__ASSERT_DEBUG(tHeader,User::Invariant());
|
sl@0
|
2891 |
tHeader->iPicture=sHeader->iPicture.AsPtr();
|
sl@0
|
2892 |
sHeader->iPicture=NULL;
|
sl@0
|
2893 |
}
|
sl@0
|
2894 |
}
|
sl@0
|
2895 |
|
sl@0
|
2896 |
CleanupStack::PopAndDestroy(); // pictureMap
|
sl@0
|
2897 |
}
|
sl@0
|
2898 |
|
sl@0
|
2899 |
|
sl@0
|
2900 |
void CRichTextIndex::AppendParagraphL(const CParaFormatLayer* aGlobalParaFormatLayer,
|
sl@0
|
2901 |
const CCharFormatLayer* aGlobalCharFormatLayer,
|
sl@0
|
2902 |
TInt aReplicas)
|
sl@0
|
2903 |
// Append aReplicas empty paragraphs, the format of which is based on the
|
sl@0
|
2904 |
// global format layers.
|
sl@0
|
2905 |
//
|
sl@0
|
2906 |
{
|
sl@0
|
2907 |
__TEST_INVARIANT;
|
sl@0
|
2908 |
|
sl@0
|
2909 |
// add the shared para format record
|
sl@0
|
2910 |
CParaAttribs* paraAttribs=CParaAttribs::NewL(aGlobalParaFormatLayer,aGlobalCharFormatLayer);
|
sl@0
|
2911 |
paraAttribs->iParaFormat->SetBase(aGlobalParaFormatLayer); // reset the base properly
|
sl@0
|
2912 |
paraAttribs->iCharFormat->SetBase(aGlobalCharFormatLayer); // reset the base properly.
|
sl@0
|
2913 |
CleanupStack::PushL(TCleanupItem(ReleaseOnCleanup,paraAttribs));
|
sl@0
|
2914 |
CParaAttribs* paUsed=GetParaAttribsL(aGlobalParaFormatLayer,aGlobalCharFormatLayer,paraAttribs);
|
sl@0
|
2915 |
// guaranteed not to leave as 3rd argument specified.
|
sl@0
|
2916 |
// The refCount of paUsed is incremented here by one share.
|
sl@0
|
2917 |
//
|
sl@0
|
2918 |
// add the paragraph records
|
sl@0
|
2919 |
TParaAttribsEntry paraEntry(1,paUsed);
|
sl@0
|
2920 |
iParaIx->AppendL(paraEntry,aReplicas);
|
sl@0
|
2921 |
if (paUsed!=paraAttribs)
|
sl@0
|
2922 |
CleanupStack::PopAndDestroy();
|
sl@0
|
2923 |
else
|
sl@0
|
2924 |
CleanupStack::Pop();
|
sl@0
|
2925 |
//
|
sl@0
|
2926 |
// set the ref count of paUsed
|
sl@0
|
2927 |
paUsed->iRefCount+=(aReplicas-1); // compensate for already adding 1 share.
|
sl@0
|
2928 |
|
sl@0
|
2929 |
__TEST_INVARIANT;
|
sl@0
|
2930 |
}
|
sl@0
|
2931 |
|
sl@0
|
2932 |
|
sl@0
|
2933 |
TParaAttribsEntry::TParaAttribsEntry():
|
sl@0
|
2934 |
iLength(0),
|
sl@0
|
2935 |
iParaAttribs(NULL)
|
sl@0
|
2936 |
{
|
sl@0
|
2937 |
}
|
sl@0
|
2938 |
|
sl@0
|
2939 |
|
sl@0
|
2940 |
TParaAttribsEntry::TParaAttribsEntry(TInt aLength,CParaAttribs* aParaAttribs):
|
sl@0
|
2941 |
iLength(aLength),
|
sl@0
|
2942 |
iParaAttribs(aParaAttribs)
|
sl@0
|
2943 |
{
|
sl@0
|
2944 |
}
|
sl@0
|
2945 |
|
sl@0
|
2946 |
|
sl@0
|
2947 |
CParaAttribs* CParaAttribs::NewL(const CParaFormatLayer* aParaLayer,const CCharFormatLayer* aCharLayer)
|
sl@0
|
2948 |
// Returns a handle to a new instance of this class.
|
sl@0
|
2949 |
// Creates a CParaAttribs with constant character formatting.
|
sl@0
|
2950 |
//
|
sl@0
|
2951 |
{
|
sl@0
|
2952 |
CParaAttribs* self=new(ELeave) CParaAttribs();
|
sl@0
|
2953 |
CleanupStack::PushL(self);
|
sl@0
|
2954 |
self->iParaFormat=CParaFormatLayer::NewCopyBaseL(aParaLayer);
|
sl@0
|
2955 |
// iParaFormat will be released in destructor.
|
sl@0
|
2956 |
// To prevent Coverity from reporting defect, add a comment:
|
sl@0
|
2957 |
// coverity[leave_without_push]
|
sl@0
|
2958 |
self->iCharFormat=CCharFormatLayer::NewCopyBaseL(aCharLayer);
|
sl@0
|
2959 |
CleanupStack::Pop();
|
sl@0
|
2960 |
self->iRefCount=EPrimeSharedCount;
|
sl@0
|
2961 |
return self;
|
sl@0
|
2962 |
}
|
sl@0
|
2963 |
|
sl@0
|
2964 |
|
sl@0
|
2965 |
CParaAttribs* CParaAttribs::NewL(const CParaFormatLayer* aParaLayer)
|
sl@0
|
2966 |
// Returns a handle to a new instance of this class.
|
sl@0
|
2967 |
// Creates a CParaAttribs for specific character formatting.
|
sl@0
|
2968 |
//
|
sl@0
|
2969 |
{
|
sl@0
|
2970 |
CParaAttribs* self=new(ELeave) CParaAttribs();
|
sl@0
|
2971 |
CleanupStack::PushL(self);
|
sl@0
|
2972 |
self->iParaFormat=CParaFormatLayer::NewCopyBaseL(aParaLayer);
|
sl@0
|
2973 |
CleanupStack::Pop();
|
sl@0
|
2974 |
self->iRefCount=EPrimeNonSharedCount;
|
sl@0
|
2975 |
self->iPhraseCount=1;
|
sl@0
|
2976 |
return self;
|
sl@0
|
2977 |
}
|
sl@0
|
2978 |
|
sl@0
|
2979 |
|
sl@0
|
2980 |
CParaAttribs* CParaAttribs::NewL(const CParaAttribs* aParaAttribs)
|
sl@0
|
2981 |
{
|
sl@0
|
2982 |
return NewL(aParaAttribs->iParaFormat,aParaAttribs->iCharFormat);
|
sl@0
|
2983 |
}
|
sl@0
|
2984 |
|
sl@0
|
2985 |
|
sl@0
|
2986 |
CParaAttribs::CParaAttribs():
|
sl@0
|
2987 |
iRefCount(-1) // Ensures Destruct works correctly when called on a semi-initialised object.
|
sl@0
|
2988 |
{
|
sl@0
|
2989 |
}
|
sl@0
|
2990 |
|
sl@0
|
2991 |
|
sl@0
|
2992 |
void CParaAttribs::Release()
|
sl@0
|
2993 |
// Release a share on this CParaAttribs.
|
sl@0
|
2994 |
// If after this, no shares remain, destroy this CParaAttribs.
|
sl@0
|
2995 |
//
|
sl@0
|
2996 |
{
|
sl@0
|
2997 |
iRefCount--;
|
sl@0
|
2998 |
if (iRefCount<=0)
|
sl@0
|
2999 |
delete this;
|
sl@0
|
3000 |
}
|
sl@0
|
3001 |
|
sl@0
|
3002 |
|
sl@0
|
3003 |
void CParaAttribs::Release(TInt aCount)
|
sl@0
|
3004 |
// Release aCount number of shares of this CParaAttribs.
|
sl@0
|
3005 |
// If after this, no shares remain, destroy this CParaAttribs.
|
sl@0
|
3006 |
//
|
sl@0
|
3007 |
{
|
sl@0
|
3008 |
iRefCount-=aCount;
|
sl@0
|
3009 |
if (iRefCount<=0)
|
sl@0
|
3010 |
delete this;
|
sl@0
|
3011 |
}
|
sl@0
|
3012 |
|
sl@0
|
3013 |
|
sl@0
|
3014 |
CParaAttribs::~CParaAttribs()
|
sl@0
|
3015 |
// Release the memory associated with this object.
|
sl@0
|
3016 |
//
|
sl@0
|
3017 |
{
|
sl@0
|
3018 |
delete iParaFormat;
|
sl@0
|
3019 |
if (iRefCount==0)
|
sl@0
|
3020 |
{// Constant character formatting - in the shared list.
|
sl@0
|
3021 |
delete iCharFormat;
|
sl@0
|
3022 |
link.Deque(); // Remove this para attribs from the shared list.
|
sl@0
|
3023 |
}
|
sl@0
|
3024 |
}
|
sl@0
|
3025 |
|
sl@0
|
3026 |
|
sl@0
|
3027 |
TInt CParaAttribs::PhraseCount()const
|
sl@0
|
3028 |
// Return a count of the number of phrases in this para attribs.
|
sl@0
|
3029 |
//
|
sl@0
|
3030 |
{return (iRefCount>=1)?1:iPhraseCount;}
|
sl@0
|
3031 |
|
sl@0
|
3032 |
|
sl@0
|
3033 |
DLLEXPORT_C void RPhraseAttribsEntry::__DbgTestInvariant()const
|
sl@0
|
3034 |
// Class invariants.
|
sl@0
|
3035 |
//
|
sl@0
|
3036 |
{
|
sl@0
|
3037 |
#ifdef _DEBUG
|
sl@0
|
3038 |
// ASSERT: iLength is +ve (applying to character formatting, or is set to indicate a picture phrase.
|
sl@0
|
3039 |
if (iLength<0 && !IsPicturePhrase())
|
sl@0
|
3040 |
{
|
sl@0
|
3041 |
OstTrace0( TRACE_DUMP, RPHRASEATTRIBSENTRY_DBGTESTINVARIANT, "Invariant" );
|
sl@0
|
3042 |
}
|
sl@0
|
3043 |
__ASSERT_DEBUG(iLength>=0 || IsPicturePhrase(),User::Invariant());
|
sl@0
|
3044 |
#endif
|
sl@0
|
3045 |
}
|
sl@0
|
3046 |
|
sl@0
|
3047 |
|
sl@0
|
3048 |
RPhraseAttribsEntry::RPhraseAttribsEntry():
|
sl@0
|
3049 |
iLength(0),
|
sl@0
|
3050 |
iCharFormat(NULL)
|
sl@0
|
3051 |
{
|
sl@0
|
3052 |
}
|
sl@0
|
3053 |
|
sl@0
|
3054 |
|
sl@0
|
3055 |
RPhraseAttribsEntry::RPhraseAttribsEntry(CCharFormatLayer* aCharFormat,TInt aLength):
|
sl@0
|
3056 |
iLength(aLength),
|
sl@0
|
3057 |
iCharFormat(aCharFormat)
|
sl@0
|
3058 |
{
|
sl@0
|
3059 |
}
|
sl@0
|
3060 |
|
sl@0
|
3061 |
|
sl@0
|
3062 |
RPhraseAttribsEntry::RPhraseAttribsEntry(CPicturePhrase* aPicturePhrase):
|
sl@0
|
3063 |
iLength(EPictureIndicator),
|
sl@0
|
3064 |
iPicturePhrase(aPicturePhrase)
|
sl@0
|
3065 |
{
|
sl@0
|
3066 |
}
|
sl@0
|
3067 |
|
sl@0
|
3068 |
|
sl@0
|
3069 |
void RPhraseAttribsEntry::AssignAndRelease(const RPhraseAttribsEntry& aPhrase)
|
sl@0
|
3070 |
// Assign the state of the specified object to this,
|
sl@0
|
3071 |
//
|
sl@0
|
3072 |
{
|
sl@0
|
3073 |
iLength=aPhrase.iLength;
|
sl@0
|
3074 |
iCharFormat=aPhrase.iCharFormat; // both union members share the same address space, so this is fine.
|
sl@0
|
3075 |
}
|
sl@0
|
3076 |
|
sl@0
|
3077 |
|
sl@0
|
3078 |
void RPhraseAttribsEntry::Discard()
|
sl@0
|
3079 |
// Free storage.
|
sl@0
|
3080 |
//
|
sl@0
|
3081 |
{
|
sl@0
|
3082 |
__TEST_INVARIANT;
|
sl@0
|
3083 |
|
sl@0
|
3084 |
if (iLength==EPictureIndicator)
|
sl@0
|
3085 |
delete iPicturePhrase;
|
sl@0
|
3086 |
else
|
sl@0
|
3087 |
delete iCharFormat;
|
sl@0
|
3088 |
}
|
sl@0
|
3089 |
|
sl@0
|
3090 |
|
sl@0
|
3091 |
void RPhraseAttribsEntry::ExternalizeL(RWriteStream& aStream)const
|
sl@0
|
3092 |
// Save this phrase into aStream.
|
sl@0
|
3093 |
//
|
sl@0
|
3094 |
{
|
sl@0
|
3095 |
TUint8 picIndicator=(TUint8)(IsPicturePhrase()!=EFalse);
|
sl@0
|
3096 |
aStream.WriteUint8L(picIndicator);
|
sl@0
|
3097 |
aStream.WriteInt32L(Length());
|
sl@0
|
3098 |
aStream<< *CharFormat();
|
sl@0
|
3099 |
if ((TBool)picIndicator)
|
sl@0
|
3100 |
aStream<< *PictureHeaderPtr();
|
sl@0
|
3101 |
}
|
sl@0
|
3102 |
|
sl@0
|
3103 |
|
sl@0
|
3104 |
CCharFormatLayer* RPhraseAttribsEntry::CharFormat()const
|
sl@0
|
3105 |
// Returns a pointer the CCharFormatLayer of this phrase.
|
sl@0
|
3106 |
//
|
sl@0
|
3107 |
{return (iLength==EPictureIndicator)?iPicturePhrase->iCharFormat:iCharFormat;}
|
sl@0
|
3108 |
|
sl@0
|
3109 |
|
sl@0
|
3110 |
void RPhraseAttribsEntry::SetLength(TInt aLength)
|
sl@0
|
3111 |
// Sets the phrase length.
|
sl@0
|
3112 |
//
|
sl@0
|
3113 |
{
|
sl@0
|
3114 |
__TEST_INVARIANT;
|
sl@0
|
3115 |
|
sl@0
|
3116 |
iLength=aLength;
|
sl@0
|
3117 |
}
|
sl@0
|
3118 |
|
sl@0
|
3119 |
|
sl@0
|
3120 |
void RPhraseAttribsEntry::AdjustLength(TInt aIncrement)
|
sl@0
|
3121 |
// Adjusts the length of the phrase by the signed value aIncrement.
|
sl@0
|
3122 |
//
|
sl@0
|
3123 |
{
|
sl@0
|
3124 |
// ASSERT: The length of a picture phrase may only be altered by deleting it, in which case
|
sl@0
|
3125 |
// the only adjustment made will be an increment of -1 (EPictureIndicator).
|
sl@0
|
3126 |
if (IsPicturePhrase() && (!IsPicturePhrase() || aIncrement!=EPictureIndicator)
|
sl@0
|
3127 |
&& (!IsPicturePhrase() || aIncrement!=0) )
|
sl@0
|
3128 |
{
|
sl@0
|
3129 |
OstTrace0( TRACE_DUMP, RPHRASEATTRIBSENTRY_ADJUSTLENGTH, "EModifiedPicturePhraseLength" );
|
sl@0
|
3130 |
}
|
sl@0
|
3131 |
__ASSERT_DEBUG(!IsPicturePhrase() || (IsPicturePhrase() && aIncrement==EPictureIndicator)
|
sl@0
|
3132 |
|| (IsPicturePhrase() && aIncrement==0)
|
sl@0
|
3133 |
,Panic(EModifiedPicturePhraseLength));
|
sl@0
|
3134 |
TInt len=iLength;
|
sl@0
|
3135 |
iLength=(len==EPictureIndicator)
|
sl@0
|
3136 |
? len-aIncrement
|
sl@0
|
3137 |
: len+aIncrement;
|
sl@0
|
3138 |
}
|
sl@0
|
3139 |
|
sl@0
|
3140 |
|
sl@0
|
3141 |
TInt RPhraseAttribsEntry::GetPictureSizeInTwips(TSize& aSize)const
|
sl@0
|
3142 |
// If this is a picture phrase, write the size of the picture to aSize,
|
sl@0
|
3143 |
// otherwise return KErrNotFound.
|
sl@0
|
3144 |
//
|
sl@0
|
3145 |
{
|
sl@0
|
3146 |
if (!IsPicturePhrase())
|
sl@0
|
3147 |
return KErrNotFound;
|
sl@0
|
3148 |
if (iPicturePhrase->iPicHdr.iPicture.IsPtr() && iPicturePhrase->iPicHdr.iPicture.AsPtr())
|
sl@0
|
3149 |
iPicturePhrase->iPicHdr.iPicture->GetSizeInTwips(aSize);
|
sl@0
|
3150 |
else
|
sl@0
|
3151 |
aSize=iPicturePhrase->iPicHdr.iSize;
|
sl@0
|
3152 |
return KErrNone;
|
sl@0
|
3153 |
}
|
sl@0
|
3154 |
|
sl@0
|
3155 |
|
sl@0
|
3156 |
TPictureHeader RPhraseAttribsEntry::PictureHeader()const
|
sl@0
|
3157 |
// Return the picture header describing the picture at character position aPos.
|
sl@0
|
3158 |
// If there is no picture at character position aPos, a default picture header is returned.
|
sl@0
|
3159 |
//
|
sl@0
|
3160 |
{
|
sl@0
|
3161 |
return (IsPicturePhrase())
|
sl@0
|
3162 |
? iPicturePhrase->iPicHdr
|
sl@0
|
3163 |
: TPictureHeader();
|
sl@0
|
3164 |
}
|
sl@0
|
3165 |
|
sl@0
|
3166 |
|
sl@0
|
3167 |
const CPicture* RPhraseAttribsEntry::PictureHandleL(const MPictureFactory* aFactory,
|
sl@0
|
3168 |
const MRichTextStoreResolver* aResolver,
|
sl@0
|
3169 |
TInt aPos,
|
sl@0
|
3170 |
MLayDoc::TForcePictureLoad aForceLoad)const
|
sl@0
|
3171 |
// For a text phrase returns NULL.
|
sl@0
|
3172 |
// For a picture phrase returns a pointer to the picture object itself.
|
sl@0
|
3173 |
// May leave since loading of pictures is deferred until this point,
|
sl@0
|
3174 |
// ie, when the picture is required.
|
sl@0
|
3175 |
// Also returns NULL if the picture is not in memory *and* TForcePictureLoad is false.
|
sl@0
|
3176 |
//
|
sl@0
|
3177 |
{
|
sl@0
|
3178 |
if (iLength!=EPictureIndicator)
|
sl@0
|
3179 |
return NULL;
|
sl@0
|
3180 |
else
|
sl@0
|
3181 |
{// Check if the picture is in memory
|
sl@0
|
3182 |
CPicture* handle=NULL;
|
sl@0
|
3183 |
if (iPicturePhrase->iPicHdr.iPicture.IsPtr())
|
sl@0
|
3184 |
handle=iPicturePhrase->iPicHdr.iPicture;
|
sl@0
|
3185 |
else
|
sl@0
|
3186 |
{// Check if the picture should be loaded from persistent storage
|
sl@0
|
3187 |
if (aForceLoad==MLayDoc::EForceLoadTrue) // picture not in memory, so load it.
|
sl@0
|
3188 |
{
|
sl@0
|
3189 |
if (aResolver==NULL || aFactory==NULL)
|
sl@0
|
3190 |
return NULL;
|
sl@0
|
3191 |
const CStreamStore& store=aResolver->StreamStoreL(aPos);
|
sl@0
|
3192 |
aFactory->NewPictureL(iPicturePhrase->iPicHdr,store);
|
sl@0
|
3193 |
handle=iPicturePhrase->iPicHdr.iPicture;
|
sl@0
|
3194 |
}
|
sl@0
|
3195 |
}
|
sl@0
|
3196 |
return handle;
|
sl@0
|
3197 |
}
|
sl@0
|
3198 |
}
|
sl@0
|
3199 |
|
sl@0
|
3200 |
|
sl@0
|
3201 |
TPictureHeader* RPhraseAttribsEntry::PictureHeaderPtr()const
|
sl@0
|
3202 |
// For a [text] phrase returns NULL.
|
sl@0
|
3203 |
// For a picture phrase returns a pointer to the picture header.
|
sl@0
|
3204 |
//
|
sl@0
|
3205 |
{return (iLength==EPictureIndicator)? &iPicturePhrase->iPicHdr:NULL;}
|
sl@0
|
3206 |
|
sl@0
|
3207 |
|
sl@0
|
3208 |
CCharFormatLayer* RPhraseAttribsEntry::ReleaseCharFormatLayerOwnership()
|
sl@0
|
3209 |
// Return a handle to the character format layer, then set this handle to it to NULL.
|
sl@0
|
3210 |
// thus giving up ownership of the object.
|
sl@0
|
3211 |
//
|
sl@0
|
3212 |
{
|
sl@0
|
3213 |
CCharFormatLayer*& layer=(iLength==EPictureIndicator)?iPicturePhrase->iCharFormat:iCharFormat;
|
sl@0
|
3214 |
CCharFormatLayer* charFormatLayer=layer;
|
sl@0
|
3215 |
layer=NULL;
|
sl@0
|
3216 |
return charFormatLayer;
|
sl@0
|
3217 |
}
|
sl@0
|
3218 |
|
sl@0
|
3219 |
|
sl@0
|
3220 |
TBool RPhraseAttribsEntry::IsIdentical(const RPhraseAttribsEntry& aPhrase)const
|
sl@0
|
3221 |
// Returns ETrue if this phrase is identical to the specified phrase.
|
sl@0
|
3222 |
// otherwise returns EFalse.
|
sl@0
|
3223 |
// The 2 are equal only if they are both non-zero length text phrases, and of identical character format.
|
sl@0
|
3224 |
//
|
sl@0
|
3225 |
{
|
sl@0
|
3226 |
if (iLength<=0) // picture or zero-length
|
sl@0
|
3227 |
return EFalse;
|
sl@0
|
3228 |
if (aPhrase.iLength<=0) // picture or zero-length
|
sl@0
|
3229 |
return EFalse;
|
sl@0
|
3230 |
return iCharFormat->IsIdentical(aPhrase.iCharFormat,EFalse); // EFalse=do not compare based-on link
|
sl@0
|
3231 |
}
|
sl@0
|
3232 |
|
sl@0
|
3233 |
|
sl@0
|
3234 |
CPicturePhrase* CPicturePhrase::NewL(const TPictureHeader& aPicHdr,TCharFormatX& aFormat,
|
sl@0
|
3235 |
TCharFormatXMask& aMask,CCharFormatLayer* aCharBase,
|
sl@0
|
3236 |
TBool& aPictureOwnershipTaken)
|
sl@0
|
3237 |
{
|
sl@0
|
3238 |
CPicturePhrase* self=new(ELeave) CPicturePhrase(aPicHdr,aPictureOwnershipTaken);
|
sl@0
|
3239 |
CleanupStack::PushL(self);
|
sl@0
|
3240 |
self->ConstructL(aFormat,aMask,aCharBase);
|
sl@0
|
3241 |
CleanupStack::Pop();
|
sl@0
|
3242 |
return self;
|
sl@0
|
3243 |
}
|
sl@0
|
3244 |
|
sl@0
|
3245 |
|
sl@0
|
3246 |
// The charLayer is assumed to have a valid based-on link already set.
|
sl@0
|
3247 |
// Called as part of the rich text index Internalize only.
|
sl@0
|
3248 |
CPicturePhrase* CPicturePhrase::NewL(const TPictureHeader& aPicHdr,
|
sl@0
|
3249 |
CCharFormatLayer* aCharLayer,
|
sl@0
|
3250 |
TBool& aPictureOwnershipTaken)
|
sl@0
|
3251 |
{
|
sl@0
|
3252 |
return new(ELeave) CPicturePhrase(aPicHdr,aCharLayer,aPictureOwnershipTaken);
|
sl@0
|
3253 |
}
|
sl@0
|
3254 |
|
sl@0
|
3255 |
|
sl@0
|
3256 |
CPicturePhrase::CPicturePhrase(const TPictureHeader& aPicHdr,TBool& aPictureOwnershipTaken):
|
sl@0
|
3257 |
iPicHdr(aPicHdr)
|
sl@0
|
3258 |
{
|
sl@0
|
3259 |
aPictureOwnershipTaken=ETrue;
|
sl@0
|
3260 |
}
|
sl@0
|
3261 |
|
sl@0
|
3262 |
|
sl@0
|
3263 |
CPicturePhrase::CPicturePhrase(const TPictureHeader& aPicHdr,
|
sl@0
|
3264 |
CCharFormatLayer* aCharLayer,
|
sl@0
|
3265 |
TBool& aPictureOwnershipTaken):
|
sl@0
|
3266 |
iCharFormat(aCharLayer),
|
sl@0
|
3267 |
iPicHdr(aPicHdr)
|
sl@0
|
3268 |
{
|
sl@0
|
3269 |
aPictureOwnershipTaken=ETrue;
|
sl@0
|
3270 |
}
|
sl@0
|
3271 |
|
sl@0
|
3272 |
|
sl@0
|
3273 |
void CPicturePhrase::ConstructL(TCharFormatX& aFormat,TCharFormatXMask& aMask,CCharFormatLayer* aCharBase)
|
sl@0
|
3274 |
{
|
sl@0
|
3275 |
iCharFormat=CCharFormatLayer::NewL(aFormat,aMask);
|
sl@0
|
3276 |
iCharFormat->SetBase(aCharBase);
|
sl@0
|
3277 |
}
|
sl@0
|
3278 |
|
sl@0
|
3279 |
|
sl@0
|
3280 |
CPicturePhrase::~CPicturePhrase()
|
sl@0
|
3281 |
{
|
sl@0
|
3282 |
iPicHdr.DeletePicture();
|
sl@0
|
3283 |
delete iCharFormat;
|
sl@0
|
3284 |
}
|
sl@0
|
3285 |
|
sl@0
|
3286 |
TLogicalPosition::TLogicalPosition():
|
sl@0
|
3287 |
iDocPos(0),
|
sl@0
|
3288 |
iParaElement(0),
|
sl@0
|
3289 |
iParaElementOffset(0),
|
sl@0
|
3290 |
iPhraseElement(0),
|
sl@0
|
3291 |
iPhraseElementOffset(0)
|
sl@0
|
3292 |
{
|
sl@0
|
3293 |
}
|
sl@0
|
3294 |
|
sl@0
|
3295 |
|
sl@0
|
3296 |
void TLogicalPosition::Clear()
|
sl@0
|
3297 |
// Reset this logical position record.
|
sl@0
|
3298 |
//
|
sl@0
|
3299 |
{
|
sl@0
|
3300 |
*this=TLogicalPosition();
|
sl@0
|
3301 |
iParaBasePhraseElement=0;
|
sl@0
|
3302 |
}
|