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 |
#include <s32strm.h>
|
sl@0
|
22 |
|
sl@0
|
23 |
#include "TXTSTYLE.H"
|
sl@0
|
24 |
#include "TXTFRMAT.H"
|
sl@0
|
25 |
#include "TXTSTD.H"
|
sl@0
|
26 |
|
sl@0
|
27 |
#include "OstTraceDefinitions.h"
|
sl@0
|
28 |
#ifdef OST_TRACE_COMPILER_IN_USE
|
sl@0
|
29 |
#include "TXTSTYLETraces.h"
|
sl@0
|
30 |
#endif
|
sl@0
|
31 |
|
sl@0
|
32 |
#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
|
sl@0
|
33 |
#include "TXTFMLYR_INTERNAL.H"
|
sl@0
|
34 |
#include "TXTSTYLE_INTERNAL.H"
|
sl@0
|
35 |
#endif
|
sl@0
|
36 |
|
sl@0
|
37 |
// Return the handle of a new paragraph style
|
sl@0
|
38 |
|
sl@0
|
39 |
|
sl@0
|
40 |
EXPORT_C CParagraphStyle* CParagraphStyle::NewL(const CParaFormatLayer& aGlobalParaFormatLayer,
|
sl@0
|
41 |
const CCharFormatLayer& aGlobalCharFormatLayer)
|
sl@0
|
42 |
/** Allocates and constructs a CParagraphStyle object whose formatting is based
|
sl@0
|
43 |
on a global paragraph and character format layer. The type UID is initialised
|
sl@0
|
44 |
to KUserDefinedParagraphStyleUid. The outline level is not initialised.
|
sl@0
|
45 |
|
sl@0
|
46 |
@param aGlobalParaFormatLayer The paragraph format layer on which the style's
|
sl@0
|
47 |
paragraph formatting is based.
|
sl@0
|
48 |
@param aGlobalCharFormatLayer The character format layer on which the style's
|
sl@0
|
49 |
character formatting is based.
|
sl@0
|
50 |
@return Pointer to the new CParagraphStyle object. */
|
sl@0
|
51 |
{
|
sl@0
|
52 |
CParagraphStyle* self=new(ELeave) CParagraphStyle();
|
sl@0
|
53 |
CleanupStack::PushL(self);
|
sl@0
|
54 |
self->ConstructL(aGlobalParaFormatLayer,aGlobalCharFormatLayer);
|
sl@0
|
55 |
CleanupStack::Pop();
|
sl@0
|
56 |
return self;
|
sl@0
|
57 |
}
|
sl@0
|
58 |
|
sl@0
|
59 |
|
sl@0
|
60 |
CParagraphStyle::CParagraphStyle():
|
sl@0
|
61 |
iType(KUserDefinedParagraphStyleUid)
|
sl@0
|
62 |
{
|
sl@0
|
63 |
}
|
sl@0
|
64 |
|
sl@0
|
65 |
|
sl@0
|
66 |
// Create style and base it on the specified 'Normal' layers
|
sl@0
|
67 |
void CParagraphStyle::ConstructL(const CParaFormatLayer& aGlobalParaFormatLayer,
|
sl@0
|
68 |
const CCharFormatLayer& aGlobalCharFormatLayer)
|
sl@0
|
69 |
{
|
sl@0
|
70 |
SetBase(&aGlobalParaFormatLayer);
|
sl@0
|
71 |
//
|
sl@0
|
72 |
// Force para format layer storage allocation with empty layer
|
sl@0
|
73 |
TParaFormatMask paraMask;
|
sl@0
|
74 |
SetL((CParaFormat*)NULL,paraMask);
|
sl@0
|
75 |
//
|
sl@0
|
76 |
// Force char format layer storage allocation with empty layer;
|
sl@0
|
77 |
/* TCharFormat format;
|
sl@0
|
78 |
TCharFormatMask mask;
|
sl@0
|
79 |
iCharFormatLayer=CCharFormatLayer::NewL(format,mask);
|
sl@0
|
80 |
*/
|
sl@0
|
81 |
iCharFormatLayer=CCharFormatLayer::NewL();
|
sl@0
|
82 |
iCharFormatLayer->SetBase(&aGlobalCharFormatLayer);
|
sl@0
|
83 |
}
|
sl@0
|
84 |
|
sl@0
|
85 |
|
sl@0
|
86 |
EXPORT_C CParagraphStyle::~CParagraphStyle()
|
sl@0
|
87 |
/** The destructor frees all resources owned by the object, prior to its destruction. */
|
sl@0
|
88 |
{
|
sl@0
|
89 |
delete iCharFormatLayer;
|
sl@0
|
90 |
}
|
sl@0
|
91 |
|
sl@0
|
92 |
|
sl@0
|
93 |
EXPORT_C CFormatLayer* CParagraphStyle::DoCloneL()const
|
sl@0
|
94 |
{
|
sl@0
|
95 |
const CCharFormatLayer* charLayer=STATIC_CAST(const CCharFormatLayer*,iCharFormatLayer->SenseBase());
|
sl@0
|
96 |
CParagraphStyle* clone=CParagraphStyle::NewL(STATIC_CAST(const CParaFormatLayer&,*SenseBase()),*charLayer);
|
sl@0
|
97 |
CleanupStack::PushL(clone);
|
sl@0
|
98 |
CloneLayerL(clone); // clones the paragraph format layer
|
sl@0
|
99 |
delete clone->iCharFormatLayer;
|
sl@0
|
100 |
clone->iCharFormatLayer=NULL; // necessary precaution if next instruction leaves
|
sl@0
|
101 |
clone->iCharFormatLayer=iCharFormatLayer->CloneL(); // clones the character format layer
|
sl@0
|
102 |
clone->iCharFormatLayer->SetBase(charLayer); // restore the based on link
|
sl@0
|
103 |
CleanupStack::Pop(); // clone
|
sl@0
|
104 |
//
|
sl@0
|
105 |
clone->SetType(Type());
|
sl@0
|
106 |
clone->SetOutlineLevel(OutlineLevel());
|
sl@0
|
107 |
clone->iName=iName;
|
sl@0
|
108 |
//
|
sl@0
|
109 |
return clone;
|
sl@0
|
110 |
}
|
sl@0
|
111 |
|
sl@0
|
112 |
|
sl@0
|
113 |
|
sl@0
|
114 |
|
sl@0
|
115 |
EXPORT_C TUid CParagraphStyle::Type()const
|
sl@0
|
116 |
/** Gets the style's type UID.
|
sl@0
|
117 |
|
sl@0
|
118 |
@return The style's type UID. */
|
sl@0
|
119 |
{return iType;}
|
sl@0
|
120 |
|
sl@0
|
121 |
|
sl@0
|
122 |
CParagraphStyle* CParagraphStyle::NewL(RReadStream& aStream,
|
sl@0
|
123 |
const CParaFormatLayer& aGlobalParaFormatLayer,
|
sl@0
|
124 |
const CCharFormatLayer& aGlobalCharFormatLayer)
|
sl@0
|
125 |
{
|
sl@0
|
126 |
CParagraphStyle* self=new(ELeave) CParagraphStyle();
|
sl@0
|
127 |
CleanupStack::PushL(self);
|
sl@0
|
128 |
self->ConstructL(aGlobalParaFormatLayer,aGlobalCharFormatLayer);
|
sl@0
|
129 |
self->InternalizeL(aStream,&aGlobalParaFormatLayer,&aGlobalCharFormatLayer);
|
sl@0
|
130 |
CleanupStack::Pop();
|
sl@0
|
131 |
return self;
|
sl@0
|
132 |
}
|
sl@0
|
133 |
|
sl@0
|
134 |
|
sl@0
|
135 |
// Load into this style from the specified readStream. Base this style on the layer aBase - Default NULL
|
sl@0
|
136 |
void CParagraphStyle::InternalizeL(RReadStream& aStream,const CFormatLayer* aParaLayerBase,const CFormatLayer* aCharLayerBase)
|
sl@0
|
137 |
{
|
sl@0
|
138 |
aStream>> iName;
|
sl@0
|
139 |
aStream>> iType;
|
sl@0
|
140 |
iOutlineLevel=aStream.ReadInt32L();
|
sl@0
|
141 |
iCharFormatLayer->InternalizeL(aStream,aCharLayerBase);
|
sl@0
|
142 |
//
|
sl@0
|
143 |
CParaFormatLayer::InternalizeL(aStream,aParaLayerBase);
|
sl@0
|
144 |
}
|
sl@0
|
145 |
|
sl@0
|
146 |
|
sl@0
|
147 |
// Save the style in the specified WriteStream. The based on link is *NOT* stored.
|
sl@0
|
148 |
void CParagraphStyle::ExternalizeL(RWriteStream& aStream)const
|
sl@0
|
149 |
{
|
sl@0
|
150 |
aStream<< iName;
|
sl@0
|
151 |
aStream<< iType;
|
sl@0
|
152 |
aStream.WriteInt32L(iOutlineLevel);
|
sl@0
|
153 |
aStream<< *iCharFormatLayer;
|
sl@0
|
154 |
//
|
sl@0
|
155 |
CParaFormatLayer::ExternalizeL(aStream);
|
sl@0
|
156 |
}
|
sl@0
|
157 |
|
sl@0
|
158 |
|
sl@0
|
159 |
DLLEXPORT_C void CStyleList::__DbgTestInvariant()const
|
sl@0
|
160 |
// Provides class invariants. Explanations below:
|
sl@0
|
161 |
//
|
sl@0
|
162 |
{
|
sl@0
|
163 |
#ifdef _DEBUG
|
sl@0
|
164 |
TInt styleCount=Count();
|
sl@0
|
165 |
for (TInt nn=0;nn<styleCount;nn++)
|
sl@0
|
166 |
{
|
sl@0
|
167 |
RParagraphStyleInfo info=iList->At(nn);
|
sl@0
|
168 |
if (info.iStyleForNextPara)
|
sl@0
|
169 |
{
|
sl@0
|
170 |
TInt index=IndexByPtr(info.iStyleForNextPara);
|
sl@0
|
171 |
// ASSERT: The style-to-follow is present in the list.
|
sl@0
|
172 |
if (!((info.iStyleForNextPara==NULL) ||
|
sl@0
|
173 |
((info.iStyleForNextPara) && (index!=KErrNotFound && index>=0 && index<styleCount))))
|
sl@0
|
174 |
{
|
sl@0
|
175 |
OstTrace0( TRACE_DUMP, CSTYLELIST_DBGTESTINVARIANT, "Invariant" );
|
sl@0
|
176 |
}
|
sl@0
|
177 |
__ASSERT_DEBUG(
|
sl@0
|
178 |
(info.iStyleForNextPara==NULL) ||
|
sl@0
|
179 |
((info.iStyleForNextPara) && (index!=KErrNotFound && index>=0 && index<styleCount)),User::Invariant());
|
sl@0
|
180 |
}
|
sl@0
|
181 |
}
|
sl@0
|
182 |
#endif
|
sl@0
|
183 |
}
|
sl@0
|
184 |
|
sl@0
|
185 |
|
sl@0
|
186 |
|
sl@0
|
187 |
|
sl@0
|
188 |
EXPORT_C CStyleList* CStyleList::NewL(TInt aCapacity /*=KMaxStyleListGranularity*/)
|
sl@0
|
189 |
/** Allocates and constructs an empty CStyleList object with an array granularity.
|
sl@0
|
190 |
|
sl@0
|
191 |
@param aCapacity The number of entries by which the array of styles expands
|
sl@0
|
192 |
when its buffer is reallocated. By default, KMaxStyleListGranularity (= 4).
|
sl@0
|
193 |
Must be positive or a panic occurs.
|
sl@0
|
194 |
@return Pointer to the new style list. */
|
sl@0
|
195 |
{
|
sl@0
|
196 |
CStyleList* self=new(ELeave) CStyleList();
|
sl@0
|
197 |
CleanupStack::PushL(self);
|
sl@0
|
198 |
self->ConstructL(aCapacity);
|
sl@0
|
199 |
CleanupStack::Pop();
|
sl@0
|
200 |
return self;
|
sl@0
|
201 |
}
|
sl@0
|
202 |
|
sl@0
|
203 |
|
sl@0
|
204 |
EXPORT_C CStyleList* CStyleList::NewL(RReadStream& aStream,
|
sl@0
|
205 |
const CParaFormatLayer* aGlobalParaFormatLayer,
|
sl@0
|
206 |
const CCharFormatLayer* aGlobalCharFormatLayer)
|
sl@0
|
207 |
/** Allocates and constructs a CStyleList, restoring its contents from the specified
|
sl@0
|
208 |
stream store. Each style in the list is set to be based on the global format
|
sl@0
|
209 |
layers specified.
|
sl@0
|
210 |
|
sl@0
|
211 |
@param aStream Stream store from which the style list is restored.
|
sl@0
|
212 |
@param aGlobalParaFormatLayer Pointer to the global paragraph format layer
|
sl@0
|
213 |
on which all styles in the list are based.
|
sl@0
|
214 |
@param aGlobalCharFormatLayer Pointer to the global character format layer
|
sl@0
|
215 |
on which all styles in the list are based.
|
sl@0
|
216 |
@return Pointer to the new style list. */
|
sl@0
|
217 |
{
|
sl@0
|
218 |
CStyleList* self=new(ELeave) CStyleList();
|
sl@0
|
219 |
CleanupStack::PushL(self);
|
sl@0
|
220 |
self->InternalizeL(aStream,aGlobalParaFormatLayer,aGlobalCharFormatLayer);
|
sl@0
|
221 |
CleanupStack::Pop();
|
sl@0
|
222 |
return self;
|
sl@0
|
223 |
}
|
sl@0
|
224 |
|
sl@0
|
225 |
|
sl@0
|
226 |
EXPORT_C CStyleList::CStyleList()
|
sl@0
|
227 |
{
|
sl@0
|
228 |
}
|
sl@0
|
229 |
|
sl@0
|
230 |
|
sl@0
|
231 |
EXPORT_C void CStyleList::ConstructL(TInt aCount)
|
sl@0
|
232 |
// Allocate the style list.
|
sl@0
|
233 |
//
|
sl@0
|
234 |
{
|
sl@0
|
235 |
iList=new(ELeave) CArrayFixFlat<RParagraphStyleInfo>(aCount);
|
sl@0
|
236 |
}
|
sl@0
|
237 |
|
sl@0
|
238 |
|
sl@0
|
239 |
|
sl@0
|
240 |
|
sl@0
|
241 |
EXPORT_C CStyleList::~CStyleList()
|
sl@0
|
242 |
/** Deletes all the entries in the list and the list itself. */
|
sl@0
|
243 |
{
|
sl@0
|
244 |
KillStyleList();
|
sl@0
|
245 |
}
|
sl@0
|
246 |
|
sl@0
|
247 |
|
sl@0
|
248 |
|
sl@0
|
249 |
|
sl@0
|
250 |
EXPORT_C const RParagraphStyleInfo& CStyleList::At(TInt aIndex)const
|
sl@0
|
251 |
/** Gets a style from the style list, from its index into the array. Two versions
|
sl@0
|
252 |
are supplied. The compiler chooses the appropriate version based on the use
|
sl@0
|
253 |
made of the returned reference. If it is used in an expression where that
|
sl@0
|
254 |
reference can be modified, then the non-const version is chosen.
|
sl@0
|
255 |
|
sl@0
|
256 |
@param aIndex The index of the style into the list. The first style is at
|
sl@0
|
257 |
position zero. Must be within the bounds of the array, or a panic occurs.
|
sl@0
|
258 |
@return A const reference to the style at position aIndex in the array.
|
sl@0
|
259 |
@return A non-const reference to the style at position aIndex in the array. */
|
sl@0
|
260 |
{
|
sl@0
|
261 |
if (!iList)
|
sl@0
|
262 |
{
|
sl@0
|
263 |
OstTrace0( TRACE_FATAL, CSTYLELIST_AT, "EStyleIntegrityError" );
|
sl@0
|
264 |
}
|
sl@0
|
265 |
__ASSERT_ALWAYS(iList,Panic(EStyleIntegrityError));
|
sl@0
|
266 |
if (aIndex<0 || aIndex>=iList->Count())
|
sl@0
|
267 |
{
|
sl@0
|
268 |
OstTrace0( TRACE_DUMP, DUP3_CSTYLELIST_AT, "EStyleIndexOutOfRange" );
|
sl@0
|
269 |
}
|
sl@0
|
270 |
__ASSERT_DEBUG(aIndex>=0 && aIndex<iList->Count(),Panic(EStyleIndexOutOfRange));
|
sl@0
|
271 |
|
sl@0
|
272 |
return (*iList)[aIndex];
|
sl@0
|
273 |
}
|
sl@0
|
274 |
|
sl@0
|
275 |
|
sl@0
|
276 |
EXPORT_C RParagraphStyleInfo& CStyleList::At(TInt aIndex)
|
sl@0
|
277 |
{
|
sl@0
|
278 |
if (!iList)
|
sl@0
|
279 |
{
|
sl@0
|
280 |
OstTrace0( TRACE_FATAL, DUP2_CSTYLELIST_AT, "EStyleIntegrityError" );
|
sl@0
|
281 |
}
|
sl@0
|
282 |
__ASSERT_ALWAYS(iList,Panic(EStyleIntegrityError));
|
sl@0
|
283 |
if (aIndex<0 || aIndex>=iList->Count())
|
sl@0
|
284 |
{
|
sl@0
|
285 |
OstTrace0( TRACE_DUMP, DUP1_CSTYLELIST_AT, "EStyleIndexOutOfRange" );
|
sl@0
|
286 |
}
|
sl@0
|
287 |
__ASSERT_DEBUG(aIndex>=0 && aIndex<iList->Count(),Panic(EStyleIndexOutOfRange));
|
sl@0
|
288 |
|
sl@0
|
289 |
return (*iList)[aIndex];
|
sl@0
|
290 |
}
|
sl@0
|
291 |
|
sl@0
|
292 |
|
sl@0
|
293 |
|
sl@0
|
294 |
EXPORT_C void CStyleList::Reset()
|
sl@0
|
295 |
/** Deletes the contents of the list. */
|
sl@0
|
296 |
{
|
sl@0
|
297 |
__TEST_INVARIANT;
|
sl@0
|
298 |
|
sl@0
|
299 |
TInt styleCount=Count();
|
sl@0
|
300 |
for (TInt nn=0;nn<styleCount;nn++)
|
sl@0
|
301 |
delete (iList->At(nn)).iStyle;
|
sl@0
|
302 |
if (iList)
|
sl@0
|
303 |
iList->Reset();
|
sl@0
|
304 |
|
sl@0
|
305 |
__TEST_INVARIANT;
|
sl@0
|
306 |
}
|
sl@0
|
307 |
|
sl@0
|
308 |
|
sl@0
|
309 |
void CStyleList::KillStyleList()
|
sl@0
|
310 |
{
|
sl@0
|
311 |
Reset();
|
sl@0
|
312 |
delete iList;
|
sl@0
|
313 |
}
|
sl@0
|
314 |
|
sl@0
|
315 |
|
sl@0
|
316 |
|
sl@0
|
317 |
EXPORT_C TStreamId CStyleList::StoreL(CStreamStore& aStore)const
|
sl@0
|
318 |
/** Stores the style list to a stream store.
|
sl@0
|
319 |
|
sl@0
|
320 |
@param aStore Stream store to which the style list is written.
|
sl@0
|
321 |
@return The ID of the stream store. */
|
sl@0
|
322 |
{
|
sl@0
|
323 |
__TEST_INVARIANT;
|
sl@0
|
324 |
|
sl@0
|
325 |
RStoreWriteStream stream;
|
sl@0
|
326 |
TStreamId id=stream.CreateLC(aStore);
|
sl@0
|
327 |
//
|
sl@0
|
328 |
stream<< *this;
|
sl@0
|
329 |
//
|
sl@0
|
330 |
stream.CommitL();
|
sl@0
|
331 |
CleanupStack::PopAndDestroy();
|
sl@0
|
332 |
return id;
|
sl@0
|
333 |
}
|
sl@0
|
334 |
|
sl@0
|
335 |
|
sl@0
|
336 |
|
sl@0
|
337 |
|
sl@0
|
338 |
EXPORT_C void CStyleList::ExternalizeL(RWriteStream& aStream)const
|
sl@0
|
339 |
/** Externalises the style list to a write stream. The presence of this function
|
sl@0
|
340 |
means that the standard templated operator<<() (defined in s32strm.h) is available
|
sl@0
|
341 |
to externalise objects of this class. Does not externalise any styles' based-on
|
sl@0
|
342 |
links.
|
sl@0
|
343 |
|
sl@0
|
344 |
@param aStream Stream to which the object should be externalised. */
|
sl@0
|
345 |
{
|
sl@0
|
346 |
__TEST_INVARIANT;
|
sl@0
|
347 |
|
sl@0
|
348 |
TInt count=Count();
|
sl@0
|
349 |
aStream.WriteUint8L(count);
|
sl@0
|
350 |
for (TInt mm=0;mm<count;mm++)
|
sl@0
|
351 |
{
|
sl@0
|
352 |
CParagraphStyle* style=(iList->At(mm)).iStyle;
|
sl@0
|
353 |
style->ExternalizeL(aStream);
|
sl@0
|
354 |
}
|
sl@0
|
355 |
for (TInt nn=0;nn<count;nn++)
|
sl@0
|
356 |
{
|
sl@0
|
357 |
RParagraphStyleInfo set=iList->At(nn);
|
sl@0
|
358 |
CParagraphStyle* style=set.iStyle;
|
sl@0
|
359 |
TInt offset=(set.iStyleForNextPara!=NULL)
|
sl@0
|
360 |
? IndexByPtr(style)
|
sl@0
|
361 |
: -1;
|
sl@0
|
362 |
if (!(offset==-1 || (offset>=0 && offset<Count())))
|
sl@0
|
363 |
{
|
sl@0
|
364 |
OstTrace0( TRACE_DUMP, CSTYLELIST_EXTERNALIZEL, "EStyleIntegrityError" );
|
sl@0
|
365 |
}
|
sl@0
|
366 |
__ASSERT_DEBUG(offset==-1 || (offset>=0 && offset<Count()),Panic(EStyleIntegrityError));
|
sl@0
|
367 |
aStream.WriteInt8L(offset);
|
sl@0
|
368 |
}
|
sl@0
|
369 |
}
|
sl@0
|
370 |
|
sl@0
|
371 |
|
sl@0
|
372 |
|
sl@0
|
373 |
EXPORT_C void CStyleList::InternalizeL(RReadStream& aStream,
|
sl@0
|
374 |
const CParaFormatLayer* aGlobalParaFormatLayer,
|
sl@0
|
375 |
const CCharFormatLayer* aGlobalCharFormatLayer)
|
sl@0
|
376 |
/** Internalises the style list from a read stream. The presence of this function
|
sl@0
|
377 |
means that the standard templated operator>>() (defined in s32strm.h) is available
|
sl@0
|
378 |
to internalise objects of this class. Any existing style list contents are
|
sl@0
|
379 |
replaced.
|
sl@0
|
380 |
|
sl@0
|
381 |
@param aStream Stream store from which the style list is internalised.
|
sl@0
|
382 |
@param aGlobalParaFormatLayer Pointer to the global paragraph format layer
|
sl@0
|
383 |
on which all styles in the list are based.
|
sl@0
|
384 |
@param aGlobalCharFormatLayer Pointer to the global character format layer
|
sl@0
|
385 |
on which all styles in the list are based. */
|
sl@0
|
386 |
{
|
sl@0
|
387 |
KillStyleList();
|
sl@0
|
388 |
TInt styleCount=aStream.ReadUint8L();
|
sl@0
|
389 |
ConstructL(Max(1,styleCount)); // panics if granularity==0
|
sl@0
|
390 |
RParagraphStyleInfo holdingSet;
|
sl@0
|
391 |
iList->AppendL(holdingSet,styleCount);
|
sl@0
|
392 |
for (TInt mm=0;mm<styleCount;mm++)
|
sl@0
|
393 |
{// restore the paragraph styles
|
sl@0
|
394 |
CParagraphStyle* style=CParagraphStyle::NewL(aStream,*aGlobalParaFormatLayer,*aGlobalCharFormatLayer);
|
sl@0
|
395 |
iList->At(mm).iStyle=style;
|
sl@0
|
396 |
}
|
sl@0
|
397 |
for (TInt nn=0;nn<styleCount;nn++)
|
sl@0
|
398 |
{// restore the "style for next paragraph" for each paragraph
|
sl@0
|
399 |
TInt offset=aStream.ReadInt8L();
|
sl@0
|
400 |
iList->At(nn).iStyleForNextPara=(offset==-1)
|
sl@0
|
401 |
? NULL
|
sl@0
|
402 |
: iList->At(offset).iStyle;
|
sl@0
|
403 |
}
|
sl@0
|
404 |
|
sl@0
|
405 |
__TEST_INVARIANT;
|
sl@0
|
406 |
}
|
sl@0
|
407 |
|
sl@0
|
408 |
|
sl@0
|
409 |
|
sl@0
|
410 |
EXPORT_C TInt CStyleList::AppendL(RParagraphStyleInfo* aStyleSet)
|
sl@0
|
411 |
/** Appends a style to the style list. The list takes ownership of the style.
|
sl@0
|
412 |
|
sl@0
|
413 |
@param aStyleSet The style (and optional style for the following paragraph)
|
sl@0
|
414 |
to append to the list.
|
sl@0
|
415 |
@return KErrNone if successful, or KErrAlreadyExists if the style is already
|
sl@0
|
416 |
present in the list. */
|
sl@0
|
417 |
{
|
sl@0
|
418 |
__TEST_INVARIANT;
|
sl@0
|
419 |
|
sl@0
|
420 |
TInt count=Count();
|
sl@0
|
421 |
for (TInt ii=0;ii<count;ii++)
|
sl@0
|
422 |
{
|
sl@0
|
423 |
if (aStyleSet->iStyle==iList->At(ii).iStyle)
|
sl@0
|
424 |
return KErrAlreadyExists; // we already own this style
|
sl@0
|
425 |
}
|
sl@0
|
426 |
CleanupStack::PushL(aStyleSet->iStyle);
|
sl@0
|
427 |
iList->AppendL(*aStyleSet); // if the append fails, we must take responsibility for the style
|
sl@0
|
428 |
CleanupStack::Pop(); // aStyleSet.iStyle
|
sl@0
|
429 |
|
sl@0
|
430 |
__TEST_INVARIANT;
|
sl@0
|
431 |
return KErrNone;
|
sl@0
|
432 |
}
|
sl@0
|
433 |
|
sl@0
|
434 |
|
sl@0
|
435 |
EXPORT_C void CStyleList::Remove(CParagraphStyle* aStyle)
|
sl@0
|
436 |
/** Removes a style from the style list. If the style is owned by the list, it
|
sl@0
|
437 |
is deleted. If the style is not owned by the list, but is referenced by a
|
sl@0
|
438 |
style owned by the list, (i.e. a style in the list is based on it, or references
|
sl@0
|
439 |
it as its iStyleForNextPara pointer) then the pointer to aStyle is set to
|
sl@0
|
440 |
NULL.
|
sl@0
|
441 |
|
sl@0
|
442 |
@param aStyle Pointer to the style to remove from the style list, or to set
|
sl@0
|
443 |
to NULL. */
|
sl@0
|
444 |
{
|
sl@0
|
445 |
__TEST_INVARIANT;
|
sl@0
|
446 |
|
sl@0
|
447 |
TInt styles = Count();
|
sl@0
|
448 |
TInt index = -1;
|
sl@0
|
449 |
for (TInt i = 0; i < styles; i++)
|
sl@0
|
450 |
{
|
sl@0
|
451 |
RParagraphStyleInfo& cur_style = (*iList)[i];
|
sl@0
|
452 |
if (cur_style.iStyleForNextPara == aStyle)
|
sl@0
|
453 |
cur_style.iStyleForNextPara = NULL;
|
sl@0
|
454 |
if (cur_style.iStyle->iBasedOn == aStyle)
|
sl@0
|
455 |
cur_style.iStyle->iBasedOn = NULL;
|
sl@0
|
456 |
if (cur_style.iStyle == aStyle)
|
sl@0
|
457 |
{
|
sl@0
|
458 |
// Assert that the style must occur only once in the style list.
|
sl@0
|
459 |
if (index != -1)
|
sl@0
|
460 |
{
|
sl@0
|
461 |
OstTrace0( TRACE_DUMP, CSTYLELIST_REMOVE, "EStyleIntegrityError" );
|
sl@0
|
462 |
}
|
sl@0
|
463 |
__ASSERT_DEBUG(index == -1,Panic(EStyleIntegrityError));
|
sl@0
|
464 |
index = i;
|
sl@0
|
465 |
}
|
sl@0
|
466 |
}
|
sl@0
|
467 |
|
sl@0
|
468 |
if (index != -1)
|
sl@0
|
469 |
{
|
sl@0
|
470 |
delete aStyle;
|
sl@0
|
471 |
iList->Delete(index);
|
sl@0
|
472 |
}
|
sl@0
|
473 |
|
sl@0
|
474 |
__TEST_INVARIANT;
|
sl@0
|
475 |
}
|
sl@0
|
476 |
|
sl@0
|
477 |
|
sl@0
|
478 |
|
sl@0
|
479 |
EXPORT_C TInt CStyleList::SetStyleToFollow(const RParagraphStyleInfo& aStyleSet)
|
sl@0
|
480 |
/** Sets the style to use for the following paragraph for a style in the style
|
sl@0
|
481 |
list. Both the style (aStyleSet.iStyle) and the style to set for the following
|
sl@0
|
482 |
paragraph (aStyleSet.iStyleForNextPara) must exist in the style list.
|
sl@0
|
483 |
|
sl@0
|
484 |
The function first locates the style (aStyleSet.iStyle) in the list, then
|
sl@0
|
485 |
sets the style to use for the next paragraph to aStyleSet.iStyleForNextPara.
|
sl@0
|
486 |
|
sl@0
|
487 |
If aStyleSet.iStyle does not exist in the style list, the function returns
|
sl@0
|
488 |
with KErrNotFound. If aStyleSet.iStyleForNextPara does not exist in the style
|
sl@0
|
489 |
list, a panic occurs.
|
sl@0
|
490 |
|
sl@0
|
491 |
@param aStyleSet Identifies a style in the list, and a style to use for its
|
sl@0
|
492 |
following paragraph.
|
sl@0
|
493 |
@return KErrNone if successful, or KErrNotFound if the first style contained
|
sl@0
|
494 |
in the argument (aStyleSet.iStyle) is not in the style list. */
|
sl@0
|
495 |
{
|
sl@0
|
496 |
if (IndexByPtr(aStyleSet.iStyleForNextPara) == KErrNotFound)
|
sl@0
|
497 |
{
|
sl@0
|
498 |
OstTrace0( TRACE_FATAL, CSTYLELIST_SETSTYLETOFOLLOW, "EStyleIntegrityError" );
|
sl@0
|
499 |
}
|
sl@0
|
500 |
__ASSERT_ALWAYS( IndexByPtr(aStyleSet.iStyleForNextPara) != KErrNotFound, Panic(EStyleIntegrityError) );
|
sl@0
|
501 |
__TEST_INVARIANT;
|
sl@0
|
502 |
|
sl@0
|
503 |
TInt index = IndexByPtr(aStyleSet.iStyle);
|
sl@0
|
504 |
if (index == KErrNotFound)
|
sl@0
|
505 |
return index;
|
sl@0
|
506 |
|
sl@0
|
507 |
(*iList)[index].iStyleForNextPara = aStyleSet.iStyleForNextPara;
|
sl@0
|
508 |
|
sl@0
|
509 |
__TEST_INVARIANT;
|
sl@0
|
510 |
|
sl@0
|
511 |
return KErrNone;
|
sl@0
|
512 |
|
sl@0
|
513 |
}
|
sl@0
|
514 |
|
sl@0
|
515 |
|
sl@0
|
516 |
|
sl@0
|
517 |
|
sl@0
|
518 |
EXPORT_C RParagraphStyleInfo* CStyleList::PtrByName(const TParagraphStyleName& aName) const
|
sl@0
|
519 |
/** Gets the style with the specified name from the style list.
|
sl@0
|
520 |
|
sl@0
|
521 |
@param aName The name of the style to retrieve.
|
sl@0
|
522 |
@return Pointer to the style with the name specified. NULL if there is no style
|
sl@0
|
523 |
with this name in the list. */
|
sl@0
|
524 |
{
|
sl@0
|
525 |
// Return a pointer to the named style if it's in the list, or null if not.
|
sl@0
|
526 |
__TEST_INVARIANT;
|
sl@0
|
527 |
|
sl@0
|
528 |
int count = Count();
|
sl@0
|
529 |
for (int i = 0; i < count; i++)
|
sl@0
|
530 |
{
|
sl@0
|
531 |
RParagraphStyleInfo& style_info = (*iList)[i];
|
sl@0
|
532 |
if (style_info.iStyle != NULL && style_info.iStyle->iName == aName)
|
sl@0
|
533 |
return &style_info;
|
sl@0
|
534 |
}
|
sl@0
|
535 |
return NULL;
|
sl@0
|
536 |
}
|
sl@0
|
537 |
|
sl@0
|
538 |
|
sl@0
|
539 |
|
sl@0
|
540 |
|
sl@0
|
541 |
EXPORT_C RParagraphStyleInfo* CStyleList::PtrByType(const TUid aType) const
|
sl@0
|
542 |
/** Gets the style with the specified type UID from the style list.
|
sl@0
|
543 |
|
sl@0
|
544 |
@param aType The UID of the style to retrieve.
|
sl@0
|
545 |
@return Pointer to the style with the type UID specified. NULL if there is
|
sl@0
|
546 |
no style with this type in the list. */
|
sl@0
|
547 |
{
|
sl@0
|
548 |
// Return a pointer to the first style with the specified type if any; or null if there are none with this type.
|
sl@0
|
549 |
__TEST_INVARIANT;
|
sl@0
|
550 |
|
sl@0
|
551 |
int count = Count();
|
sl@0
|
552 |
for (int i = 0; i < count; i++)
|
sl@0
|
553 |
{
|
sl@0
|
554 |
RParagraphStyleInfo& style_info = (*iList)[i];
|
sl@0
|
555 |
if (style_info.iStyle != NULL && style_info.iStyle->Type() == aType)
|
sl@0
|
556 |
return &style_info;
|
sl@0
|
557 |
}
|
sl@0
|
558 |
return NULL;
|
sl@0
|
559 |
}
|
sl@0
|
560 |
|
sl@0
|
561 |
|
sl@0
|
562 |
|
sl@0
|
563 |
|
sl@0
|
564 |
EXPORT_C TInt CStyleList::IndexByPtr(const CParaFormatLayer* aPtr)const
|
sl@0
|
565 |
/** Gets the index into the style list of a specified paragraph style.
|
sl@0
|
566 |
|
sl@0
|
567 |
@param aPtr Pointer to the style.
|
sl@0
|
568 |
@return The style's index into the style list. KErrNotFound if the style is
|
sl@0
|
569 |
not found in the style list, or if aPtr is a paragraph format layer rather
|
sl@0
|
570 |
than a style. */
|
sl@0
|
571 |
{
|
sl@0
|
572 |
if (aPtr->Type()==KNormalParagraphStyleUid)
|
sl@0
|
573 |
return KErrNotFound;
|
sl@0
|
574 |
TInt count=Count();
|
sl@0
|
575 |
if (count==0)
|
sl@0
|
576 |
return KErrNotFound; // ptr cannot be matched cos list is empty.
|
sl@0
|
577 |
TInt index=0;
|
sl@0
|
578 |
CParagraphStyle* style=NULL;
|
sl@0
|
579 |
while (index<count)
|
sl@0
|
580 |
{
|
sl@0
|
581 |
style=(*iList)[index].iStyle;
|
sl@0
|
582 |
if (style==aPtr)
|
sl@0
|
583 |
break;
|
sl@0
|
584 |
index++;
|
sl@0
|
585 |
}
|
sl@0
|
586 |
return (index<count)
|
sl@0
|
587 |
? index
|
sl@0
|
588 |
: KErrNotFound;
|
sl@0
|
589 |
}
|
sl@0
|
590 |
|
sl@0
|
591 |
|
sl@0
|
592 |
|
sl@0
|
593 |
|
sl@0
|
594 |
EXPORT_C TInt CStyleList::IndexByName(const TDesC& aName)const
|
sl@0
|
595 |
/** Gets the index into the style list of a specified paragraph style, identified
|
sl@0
|
596 |
by its name.
|
sl@0
|
597 |
|
sl@0
|
598 |
@param aName The name of the style.
|
sl@0
|
599 |
@return The style's index into the style list. KErrNotFound if the style name
|
sl@0
|
600 |
is not found in the style list. */
|
sl@0
|
601 |
{
|
sl@0
|
602 |
TInt count=Count();
|
sl@0
|
603 |
if (count==0)
|
sl@0
|
604 |
return KErrNotFound; // name cannot be in list cos its empty.
|
sl@0
|
605 |
TInt index=0;
|
sl@0
|
606 |
CParagraphStyle* style=NULL;
|
sl@0
|
607 |
while (index<count)
|
sl@0
|
608 |
{
|
sl@0
|
609 |
style=(*iList)[index].iStyle;
|
sl@0
|
610 |
if (style != NULL && style->iName == aName)
|
sl@0
|
611 |
break;
|
sl@0
|
612 |
index++;
|
sl@0
|
613 |
}
|
sl@0
|
614 |
return (index<count)
|
sl@0
|
615 |
? index
|
sl@0
|
616 |
: KErrNotFound;
|
sl@0
|
617 |
}
|
sl@0
|
618 |
|
sl@0
|
619 |
|
sl@0
|
620 |
|
sl@0
|
621 |
EXPORT_C CStyleList* CStyleList::DeepCloneL() const
|
sl@0
|
622 |
/** Creates and returns a style list which is a clone of the current style list.
|
sl@0
|
623 |
|
sl@0
|
624 |
@return Pointer to a clone of the current style list. */
|
sl@0
|
625 |
{
|
sl@0
|
626 |
__TEST_INVARIANT;
|
sl@0
|
627 |
|
sl@0
|
628 |
CStyleList* newList = CStyleList::NewL();
|
sl@0
|
629 |
CleanupStack::PushL(newList);
|
sl@0
|
630 |
|
sl@0
|
631 |
TInt styleCount=Count();
|
sl@0
|
632 |
for (TInt styleItem=0;styleItem<styleCount;styleItem++)
|
sl@0
|
633 |
{
|
sl@0
|
634 |
const RParagraphStyleInfo& source=iList->At(styleItem);
|
sl@0
|
635 |
CParagraphStyle* style=source.iStyle->CloneL();
|
sl@0
|
636 |
RParagraphStyleInfo info(style,source.iStyleForNextPara);
|
sl@0
|
637 |
newList->AppendL(&info);
|
sl@0
|
638 |
}
|
sl@0
|
639 |
|
sl@0
|
640 |
CleanupStack::Pop();
|
sl@0
|
641 |
return newList;
|
sl@0
|
642 |
}
|