sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2003-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 "TXTRICH.H"
|
sl@0
|
23 |
|
sl@0
|
24 |
#include "TXTINDEX.H"
|
sl@0
|
25 |
#include "TXTSTD.H"
|
sl@0
|
26 |
#include "TXTRTPFL.H"
|
sl@0
|
27 |
#include "ParseLst.h"
|
sl@0
|
28 |
|
sl@0
|
29 |
#include "OstTraceDefinitions.h"
|
sl@0
|
30 |
#ifdef OST_TRACE_COMPILER_IN_USE
|
sl@0
|
31 |
#include "TXTRTSTRTraces.h"
|
sl@0
|
32 |
#endif
|
sl@0
|
33 |
|
sl@0
|
34 |
#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
|
sl@0
|
35 |
#include "TXTETEXT_INTERNAL.H"
|
sl@0
|
36 |
#include "TXTRICH_INTERNAL.H"
|
sl@0
|
37 |
#endif
|
sl@0
|
38 |
|
sl@0
|
39 |
///////////////////////////////////////////////////////////
|
sl@0
|
40 |
//
|
sl@0
|
41 |
// Default persist functions - Deferred loading of pictures
|
sl@0
|
42 |
//
|
sl@0
|
43 |
///////////////////////////////////////////////////////////
|
sl@0
|
44 |
|
sl@0
|
45 |
|
sl@0
|
46 |
EXPORT_C void CRichText::RestoreWithStyleListL(const CStreamStore& aStore, TStreamId aStreamId, const CStyleList& aExternalStyleList)
|
sl@0
|
47 |
/** Restores a rich text object, including all of its components and an
|
sl@0
|
48 |
externally owned style list, from a stream store.
|
sl@0
|
49 |
|
sl@0
|
50 |
@param aStore Stream store from which the object is restored.
|
sl@0
|
51 |
@param aStreamId ID of the stream store.
|
sl@0
|
52 |
@param aExternalStyleList An externally owned style list. */
|
sl@0
|
53 |
{
|
sl@0
|
54 |
RStoreReadStream stream;
|
sl@0
|
55 |
stream.OpenLC(aStore,aStreamId);
|
sl@0
|
56 |
//
|
sl@0
|
57 |
InternalizeL(stream,&aExternalStyleList);
|
sl@0
|
58 |
CleanupStack::PopAndDestroy(); // stream
|
sl@0
|
59 |
RestoreComponentsL(aStore);
|
sl@0
|
60 |
}
|
sl@0
|
61 |
|
sl@0
|
62 |
EXPORT_C void CRichText::StoreComponentsL(CStreamStore& aStore, CStoreMap& aMap) const
|
sl@0
|
63 |
/** Stores the rich text object's components (field set, style list, formatting
|
sl@0
|
64 |
and pictures) to the stream store specified.
|
sl@0
|
65 |
|
sl@0
|
66 |
@param aStore Stream store to which the text components are written.
|
sl@0
|
67 |
@param aMap A store map. This binds the address of text components to the
|
sl@0
|
68 |
stream ID of aStore. This is needed to support the deferred loading of pictures
|
sl@0
|
69 |
in rich text. */
|
sl@0
|
70 |
{
|
sl@0
|
71 |
CGlobalText::StoreComponentsL(aStore,aMap);
|
sl@0
|
72 |
StoreStylesL(aStore,aMap);
|
sl@0
|
73 |
StoreMarkupL(aStore,aMap);
|
sl@0
|
74 |
}
|
sl@0
|
75 |
|
sl@0
|
76 |
EXPORT_C void CRichText::RestoreComponentsL(const CStreamStore& aStore)
|
sl@0
|
77 |
/** Restores the rich text object's components (field set, style list,
|
sl@0
|
78 |
formatting and pictures) from a stream store.
|
sl@0
|
79 |
|
sl@0
|
80 |
@param aStore The stream store from which the text object's components are
|
sl@0
|
81 |
restored. */
|
sl@0
|
82 |
{
|
sl@0
|
83 |
CPlainText::RestoreComponentsL(aStore); // field components
|
sl@0
|
84 |
if (iStyleList.IsId() && iStyleList.AsId()!=KNullStreamId)
|
sl@0
|
85 |
RestoreStylesL(aStore,iStyleList.AsId(),iGlobalParaFormatLayer,iGlobalCharFormatLayer);
|
sl@0
|
86 |
if (iIndex.AsId()!=KNullStreamId)
|
sl@0
|
87 |
iIndex=CRichTextIndex::NewL(aStore,iIndex.AsId(),iGlobalParaFormatLayer,iGlobalCharFormatLayer,*this);
|
sl@0
|
88 |
}
|
sl@0
|
89 |
|
sl@0
|
90 |
|
sl@0
|
91 |
|
sl@0
|
92 |
EXPORT_C void CRichText::ExternalizeL(RWriteStream& aStream)const
|
sl@0
|
93 |
/** Externalises the rich text object and all of its components (field set,
|
sl@0
|
94 |
style list, rich text formatting, pictures) to a read stream. The presence
|
sl@0
|
95 |
of this function means that the standard templated operator<<() (defined in
|
sl@0
|
96 |
s32strm.h) is available to externalise objects of this class.
|
sl@0
|
97 |
|
sl@0
|
98 |
Notes:
|
sl@0
|
99 |
|
sl@0
|
100 |
Any "insert pending" state is cancelled (calls CancelInsertCharFormat()).
|
sl@0
|
101 |
|
sl@0
|
102 |
The global format layers are not owned by the object; they are supplied by
|
sl@0
|
103 |
the owner of the object and not saved when the object is externalised or loaded
|
sl@0
|
104 |
when it is internalized.
|
sl@0
|
105 |
|
sl@0
|
106 |
StoreComponentsL() must be called before calling this function. This is necessary to set
|
sl@0
|
107 |
up the the stream store needed to externalize rich text objects. It is not possible to get
|
sl@0
|
108 |
a stream store into a stream and a rich text object cannot be externalized to an arbitrary
|
sl@0
|
109 |
stream thus StoreComponentsL() will set up this stream store before externalizing.
|
sl@0
|
110 |
|
sl@0
|
111 |
The inherited function CEditableText::StoreL() combines both calling of StoreComponentsL()
|
sl@0
|
112 |
to set up the stream store and externalizing the rich text object to this stream store.
|
sl@0
|
113 |
|
sl@0
|
114 |
@param aStream Stream to which to write the rich text object. */
|
sl@0
|
115 |
{
|
sl@0
|
116 |
__TEST_INVARIANT;
|
sl@0
|
117 |
|
sl@0
|
118 |
CONST_CAST(CRichText*,this)->CancelInsertCharFormat();
|
sl@0
|
119 |
CEditableText::ExternalizeL(aStream);
|
sl@0
|
120 |
DoExternalizeFieldDataL(aStream);
|
sl@0
|
121 |
DoExternalizeStyleDataL(aStream);
|
sl@0
|
122 |
DoExternalizeMarkupDataL(aStream);
|
sl@0
|
123 |
DoExternalizePlainTextL(aStream);
|
sl@0
|
124 |
}
|
sl@0
|
125 |
|
sl@0
|
126 |
|
sl@0
|
127 |
EXPORT_C void CRichText::InternalizeL(RReadStream& aStream)
|
sl@0
|
128 |
/** Internalises the rich text object and all of its components (field set,
|
sl@0
|
129 |
style list, rich text formatting and pictures) from a read stream. The
|
sl@0
|
130 |
presence of this function means that the standard templated operator>>()
|
sl@0
|
131 |
(defined in s32strm.h) is available to internalise objects of this class.
|
sl@0
|
132 |
|
sl@0
|
133 |
Note: The global format layers are not owned by the object; they are supplied by
|
sl@0
|
134 |
the owner of the object and not saved when the object is externalised or loaded
|
sl@0
|
135 |
when it is internalized.
|
sl@0
|
136 |
|
sl@0
|
137 |
@param aStream Stream from which to read the rich text object. */
|
sl@0
|
138 |
{InternalizeL(aStream,NULL);}
|
sl@0
|
139 |
|
sl@0
|
140 |
|
sl@0
|
141 |
void CRichText::InternalizeL(RReadStream& aStream,const CStyleList* aExternalStyleList)
|
sl@0
|
142 |
// Restore this rich text object.
|
sl@0
|
143 |
// The global format layers are not present in this persistent state.
|
sl@0
|
144 |
//
|
sl@0
|
145 |
{
|
sl@0
|
146 |
CEditableText::InternalizeL(aStream);
|
sl@0
|
147 |
DoInternalizeFieldDataL(aStream);
|
sl@0
|
148 |
DoInternalizeStyleDataL(aStream,aExternalStyleList);
|
sl@0
|
149 |
DoInternalizeMarkupDataL(aStream);
|
sl@0
|
150 |
DoInternalizePlainTextL(aStream);
|
sl@0
|
151 |
if (iParserData == NULL)
|
sl@0
|
152 |
iParserData = new(ELeave) CParserData(DocumentLength());
|
sl@0
|
153 |
iParserData->KillRange();
|
sl@0
|
154 |
iParserData->MergeRange(0,0,DocumentLength());
|
sl@0
|
155 |
CallEditObserver(0,DocumentLength());
|
sl@0
|
156 |
}
|
sl@0
|
157 |
|
sl@0
|
158 |
|
sl@0
|
159 |
void CRichText::StoreStylesL(CStreamStore& aStore,CStoreMap& aMap)const
|
sl@0
|
160 |
// Write the style list, if present, out of line.
|
sl@0
|
161 |
//
|
sl@0
|
162 |
{
|
sl@0
|
163 |
if (StyleListPresent() && !StyleListExternallyOwned())
|
sl@0
|
164 |
{
|
sl@0
|
165 |
TStreamId id=iStyleList->StoreL(aStore);
|
sl@0
|
166 |
aMap.BindL(iStyleList,id);
|
sl@0
|
167 |
}
|
sl@0
|
168 |
}
|
sl@0
|
169 |
|
sl@0
|
170 |
|
sl@0
|
171 |
void CRichText::RestoreStylesL(const CStreamStore& aStore,TStreamId aId,const CParaFormatLayer* aParaFormatLayer,const CCharFormatLayer* aCharFormatLayer)
|
sl@0
|
172 |
// Restore the style list
|
sl@0
|
173 |
//
|
sl@0
|
174 |
{
|
sl@0
|
175 |
RStoreReadStream stream;
|
sl@0
|
176 |
stream.OpenLC(aStore,aId);
|
sl@0
|
177 |
//
|
sl@0
|
178 |
iStyleList=CStyleList::NewL(stream,aParaFormatLayer,aCharFormatLayer);
|
sl@0
|
179 |
CleanupStack::PopAndDestroy(); // stream
|
sl@0
|
180 |
}
|
sl@0
|
181 |
|
sl@0
|
182 |
|
sl@0
|
183 |
void CRichText::StoreMarkupL(CStreamStore& aStore,CStoreMap& aMap)const
|
sl@0
|
184 |
// Write the index/markup data, if present, out of line.
|
sl@0
|
185 |
//
|
sl@0
|
186 |
{
|
sl@0
|
187 |
if (IndexPresent())
|
sl@0
|
188 |
{
|
sl@0
|
189 |
TStreamId id=iIndex->StoreMarkupL(aStore,iStyleList);
|
sl@0
|
190 |
aMap.BindL(iIndex,id);
|
sl@0
|
191 |
}
|
sl@0
|
192 |
}
|
sl@0
|
193 |
|
sl@0
|
194 |
|
sl@0
|
195 |
EXPORT_C void CRichText::DoExternalizeStyleDataL(RWriteStream& aStream)const
|
sl@0
|
196 |
// Write to the stream, the T.V. representing the style definitions.
|
sl@0
|
197 |
//
|
sl@0
|
198 |
{
|
sl@0
|
199 |
aStream<< KRichTextStyleDataUid;
|
sl@0
|
200 |
if (StyleListPresent() && !StyleListExternallyOwned())
|
sl@0
|
201 |
aStream<< iStyleList;
|
sl@0
|
202 |
else
|
sl@0
|
203 |
aStream<< KNullStreamId;
|
sl@0
|
204 |
}
|
sl@0
|
205 |
|
sl@0
|
206 |
|
sl@0
|
207 |
EXPORT_C void CRichText::DoInternalizeStyleDataL(RReadStream& aStream)
|
sl@0
|
208 |
// Load the out-of-line component representing the style list.
|
sl@0
|
209 |
//
|
sl@0
|
210 |
{DoInternalizeStyleDataL(aStream,NULL);}
|
sl@0
|
211 |
|
sl@0
|
212 |
|
sl@0
|
213 |
void CRichText::DoInternalizeStyleDataL(RReadStream& aStream,const CStyleList* aExternalStyleList)
|
sl@0
|
214 |
// Load the out-of-line component representing the style list.
|
sl@0
|
215 |
//
|
sl@0
|
216 |
{
|
sl@0
|
217 |
TUid uid=UidFromStreamL(aStream);
|
sl@0
|
218 |
while (uid!=KRichTextStyleDataUid)
|
sl@0
|
219 |
{
|
sl@0
|
220 |
if (uid==KPlainTextCharacterDataUid)
|
sl@0
|
221 |
User::Leave(KErrCorrupt); // There is no style or markup Data !!!!!
|
sl@0
|
222 |
CPlainText::ConsumeAdornmentL(aStream);
|
sl@0
|
223 |
uid=UidFromStreamL(aStream);
|
sl@0
|
224 |
}
|
sl@0
|
225 |
aStream>> iStyleList;
|
sl@0
|
226 |
if (aExternalStyleList)
|
sl@0
|
227 |
iStyleList=CONST_CAST(CStyleList*,aExternalStyleList);
|
sl@0
|
228 |
}
|
sl@0
|
229 |
|
sl@0
|
230 |
|
sl@0
|
231 |
|
sl@0
|
232 |
EXPORT_C void CRichText::DoExternalizeMarkupDataL(RWriteStream& aStream)const
|
sl@0
|
233 |
// Write to the stream, the T.V. representing the markup.
|
sl@0
|
234 |
//
|
sl@0
|
235 |
{
|
sl@0
|
236 |
aStream<< KRichTextMarkupDataUid;
|
sl@0
|
237 |
aStream<< iIndex; // the specific markup
|
sl@0
|
238 |
}
|
sl@0
|
239 |
|
sl@0
|
240 |
|
sl@0
|
241 |
EXPORT_C void CRichText::DoInternalizeMarkupDataL(RReadStream& aStream)
|
sl@0
|
242 |
// Load the out-of-line component representing the markup data.
|
sl@0
|
243 |
{
|
sl@0
|
244 |
TUid uid=UidFromStreamL(aStream);
|
sl@0
|
245 |
while (uid!=KRichTextMarkupDataUid)
|
sl@0
|
246 |
{
|
sl@0
|
247 |
if (uid==KPlainTextCharacterDataUid)
|
sl@0
|
248 |
User::Leave(KErrCorrupt); // There is no style or markup Data !!!!!
|
sl@0
|
249 |
CPlainText::ConsumeAdornmentL(aStream);
|
sl@0
|
250 |
uid=UidFromStreamL(aStream);
|
sl@0
|
251 |
}
|
sl@0
|
252 |
KillIndex(); // prevent alloc heaven when current index handle is lost to internalized swizzle
|
sl@0
|
253 |
aStream>> iIndex;
|
sl@0
|
254 |
}
|
sl@0
|
255 |
|
sl@0
|
256 |
|
sl@0
|
257 |
///////////////////////////////////////////////////////////
|
sl@0
|
258 |
//
|
sl@0
|
259 |
// Custom persist functions
|
sl@0
|
260 |
//
|
sl@0
|
261 |
///////////////////////////////////////////////////////////
|
sl@0
|
262 |
|
sl@0
|
263 |
|
sl@0
|
264 |
|
sl@0
|
265 |
|
sl@0
|
266 |
EXPORT_C void CRichText::ExternalizeStyleDataL(RWriteStream& aStream)const
|
sl@0
|
267 |
/** Externalises the style list owned by the rich text object.
|
sl@0
|
268 |
|
sl@0
|
269 |
@param aStream Stream to which to write the style list. */
|
sl@0
|
270 |
{
|
sl@0
|
271 |
__TEST_INVARIANT;
|
sl@0
|
272 |
|
sl@0
|
273 |
if (StyleListPresent() && !StyleListExternallyOwned())
|
sl@0
|
274 |
{
|
sl@0
|
275 |
aStream.WriteUint8L((TUint8)1); // there follows a style list
|
sl@0
|
276 |
aStream<< *iStyleList;
|
sl@0
|
277 |
}
|
sl@0
|
278 |
else
|
sl@0
|
279 |
aStream.WriteUint8L((TUint8)0); // there are no paragraph styles
|
sl@0
|
280 |
}
|
sl@0
|
281 |
|
sl@0
|
282 |
EXPORT_C void CRichText::InternalizeStyleDataL(RReadStream& aStream)
|
sl@0
|
283 |
/** Internalises the style list owned by the rich text object from a read stream,
|
sl@0
|
284 |
if one is present in the stream.
|
sl@0
|
285 |
|
sl@0
|
286 |
@param aStream Stream from which to read the style list. */
|
sl@0
|
287 |
{
|
sl@0
|
288 |
TUint8 styleListPresent=aStream.ReadUint8L();
|
sl@0
|
289 |
if (styleListPresent)
|
sl@0
|
290 |
{
|
sl@0
|
291 |
CStyleList* styleList=CStyleList::NewL(aStream,iGlobalParaFormatLayer,iGlobalCharFormatLayer);
|
sl@0
|
292 |
//coverity[leave_without_push]
|
sl@0
|
293 |
delete iStyleList.AsPtr();
|
sl@0
|
294 |
iStyleList=styleList;
|
sl@0
|
295 |
}
|
sl@0
|
296 |
}
|
sl@0
|
297 |
|
sl@0
|
298 |
EXPORT_C void CRichText::ExternalizeMarkupDataL(RWriteStream& aStream)const
|
sl@0
|
299 |
/** Externalises the rich text object's markup (specific formatting, styles and
|
sl@0
|
300 |
pictures). CRichText::HasMarkupData() can be used to test whether the object
|
sl@0
|
301 |
has any markup information.
|
sl@0
|
302 |
|
sl@0
|
303 |
@param aStream Stream to which to store the rich text markup information. */
|
sl@0
|
304 |
{
|
sl@0
|
305 |
__TEST_INVARIANT;
|
sl@0
|
306 |
|
sl@0
|
307 |
CONST_CAST(CRichText*,this)->CancelInsertCharFormat();
|
sl@0
|
308 |
if (!IndexPresent())
|
sl@0
|
309 |
CONST_CAST(CRichText*,this)->CreateAndGenerateMarkupComponentL();
|
sl@0
|
310 |
aStream<< *iIndex;
|
sl@0
|
311 |
}
|
sl@0
|
312 |
|
sl@0
|
313 |
EXPORT_C void CRichText::InternalizeMarkupDataL(RReadStream& aStream)
|
sl@0
|
314 |
/** Internalises the rich text object's markup (specific formatting, styles and
|
sl@0
|
315 |
pictures).
|
sl@0
|
316 |
|
sl@0
|
317 |
@param aStream Stream from which to internalise the rich text markup. */
|
sl@0
|
318 |
{
|
sl@0
|
319 |
KillIndex();
|
sl@0
|
320 |
CreateEmptyMarkupComponentL(); // set iIndex::iStyleList
|
sl@0
|
321 |
iIndex->InternalizeL(aStream,iGlobalParaFormatLayer,iGlobalCharFormatLayer,iStyleList.AsPtr());
|
sl@0
|
322 |
}
|
sl@0
|
323 |
|
sl@0
|
324 |
EXPORT_C void CRichText::StoreMarkupComponentsL(CStreamStore& aStore,CStoreMap& aMap)const
|
sl@0
|
325 |
/** Stores all pictures in the rich text object to a stream store.
|
sl@0
|
326 |
|
sl@0
|
327 |
@param aStore Stream store to which the pictures are to be stored.
|
sl@0
|
328 |
@param aMap A store map. This binds the address of pictures to the stream ID
|
sl@0
|
329 |
of aStore. This is needed to support the deferred loading of pictures. */
|
sl@0
|
330 |
{
|
sl@0
|
331 |
__TEST_INVARIANT;
|
sl@0
|
332 |
|
sl@0
|
333 |
if (!IndexPresent())
|
sl@0
|
334 |
CONST_CAST(CRichText*,this)->CreateAndGenerateMarkupComponentL();
|
sl@0
|
335 |
iIndex->StorePicturesL(aStore,aMap);
|
sl@0
|
336 |
}
|
sl@0
|
337 |
|
sl@0
|
338 |
|
sl@0
|
339 |
///////////////////////////////////////////////////////////
|
sl@0
|
340 |
//
|
sl@0
|
341 |
// Utility persist functions
|
sl@0
|
342 |
//
|
sl@0
|
343 |
///////////////////////////////////////////////////////////
|
sl@0
|
344 |
|
sl@0
|
345 |
EXPORT_C TBool CRichText::HasMarkupData()const
|
sl@0
|
346 |
/** Tests whether the rich text object has any markup, or owns a style list.
|
sl@0
|
347 |
|
sl@0
|
348 |
Markup is rich text-specific information, for instance specific formatting,
|
sl@0
|
349 |
styles and pictures. It may be stored in a separate stream from the text.
|
sl@0
|
350 |
|
sl@0
|
351 |
@return ETrue if the rich text object has markup, or owns a style list. EFalse
|
sl@0
|
352 |
if not. */
|
sl@0
|
353 |
{
|
sl@0
|
354 |
if (StyleListPresent() && !StyleListExternallyOwned())
|
sl@0
|
355 |
return ETrue;
|
sl@0
|
356 |
if (IndexPresent())
|
sl@0
|
357 |
return iIndex->HasMarkupData(iGlobalParaFormatLayer);
|
sl@0
|
358 |
else
|
sl@0
|
359 |
return EFalse;
|
sl@0
|
360 |
}
|
sl@0
|
361 |
|
sl@0
|
362 |
|
sl@0
|
363 |
|
sl@0
|
364 |
|
sl@0
|
365 |
EXPORT_C void CRichText::DetachFromStoreL(CPicture::TDetach aDegree)
|
sl@0
|
366 |
/** Loads pictures not already present in memory overloaded function.
|
sl@0
|
367 |
Either loads all pictures in the document, or just the pictures located within
|
sl@0
|
368 |
a specified range. Note: In order to load pictures, a picture factory and a
|
sl@0
|
369 |
store resolver must have been set.
|
sl@0
|
370 |
|
sl@0
|
371 |
@param aDegree There are two possible values: EDetachFull and EDetachDraw.
|
sl@0
|
372 |
If you detach using EDetachFull then you can both draw and edit the picture(s),
|
sl@0
|
373 |
but if you detach with EDetachDraw then you can only draw them any attempt
|
sl@0
|
374 |
at editing them causes a panic.
|
sl@0
|
375 |
@param aPos The start of the range of characters to search.
|
sl@0
|
376 |
@param aLength The number of characters in the range. */
|
sl@0
|
377 |
{
|
sl@0
|
378 |
__ETEXT_WATCH(DETACH);
|
sl@0
|
379 |
|
sl@0
|
380 |
__TEST_INVARIANT;
|
sl@0
|
381 |
|
sl@0
|
382 |
if (IndexPresent())
|
sl@0
|
383 |
iIndex->DetachFromStoreL(aDegree,0,DocumentLength());
|
sl@0
|
384 |
|
sl@0
|
385 |
__TEST_INVARIANT;
|
sl@0
|
386 |
|
sl@0
|
387 |
__ETEXT_WATCH_END(DETACH);
|
sl@0
|
388 |
}
|
sl@0
|
389 |
|
sl@0
|
390 |
|
sl@0
|
391 |
EXPORT_C void CRichText::DetachFromStoreL(CPicture::TDetach aDegree,TInt aPos,TInt aLength)
|
sl@0
|
392 |
/** Loads pictures not already present in memory overloaded function. Either
|
sl@0
|
393 |
loads all pictures in the document, or just the pictures located within a
|
sl@0
|
394 |
specified range.
|
sl@0
|
395 |
|
sl@0
|
396 |
Note: In order to load pictures, a picture factory and a store resolver must have
|
sl@0
|
397 |
been set.
|
sl@0
|
398 |
|
sl@0
|
399 |
@param aDegree There are two possible values: EDetachFull and EDetachDraw.
|
sl@0
|
400 |
If you detach using EDetachFull then you can both draw and edit the picture(s),
|
sl@0
|
401 |
but if you detach with EDetachDraw then you can only draw them any attempt
|
sl@0
|
402 |
at editing them causes a panic.
|
sl@0
|
403 |
@param aPos The start of the range of characters to search.
|
sl@0
|
404 |
@param aLength The number of characters in the range. */
|
sl@0
|
405 |
{
|
sl@0
|
406 |
__ETEXT_WATCH(DETACH_POS_LENGTH);
|
sl@0
|
407 |
|
sl@0
|
408 |
__TEST_INVARIANT;
|
sl@0
|
409 |
TInt documentLength = DocumentLength();
|
sl@0
|
410 |
if (aPos < 0 || aPos > documentLength)
|
sl@0
|
411 |
{
|
sl@0
|
412 |
OstTrace0( TRACE_FATAL, DUP1_CRICHTEXT_DETACHFROMSTOREL, "ECharPosBeyondDocument" );
|
sl@0
|
413 |
}
|
sl@0
|
414 |
__ASSERT_ALWAYS(aPos >= 0 && aPos <= documentLength,Panic(ECharPosBeyondDocument));
|
sl@0
|
415 |
if (aLength < 0)
|
sl@0
|
416 |
{
|
sl@0
|
417 |
OstTrace0( TRACE_FATAL, CRICHTEXT_DETACHFROMSTOREL, "ECopyToStreamNegativeLength" );
|
sl@0
|
418 |
}
|
sl@0
|
419 |
__ASSERT_ALWAYS(aLength >= 0,Panic(ECopyToStreamNegativeLength));
|
sl@0
|
420 |
if (aPos + aLength > documentLength)
|
sl@0
|
421 |
{
|
sl@0
|
422 |
OstTrace0( TRACE_FATAL, DUP2_CRICHTEXT_DETACHFROMSTOREL, "ECharPosBeyondDocument" );
|
sl@0
|
423 |
}
|
sl@0
|
424 |
__ASSERT_ALWAYS(aPos + aLength <= documentLength,Panic(ECharPosBeyondDocument));
|
sl@0
|
425 |
|
sl@0
|
426 |
if (aLength > 0 && IndexPresent())
|
sl@0
|
427 |
iIndex->DetachFromStoreL(aDegree,aPos,aLength);
|
sl@0
|
428 |
|
sl@0
|
429 |
__TEST_INVARIANT;
|
sl@0
|
430 |
|
sl@0
|
431 |
__ETEXT_WATCH_END(DETACH_POS_LENGTH);
|
sl@0
|
432 |
}
|
sl@0
|
433 |
|
sl@0
|
434 |
EXPORT_C void CRichText::SetPictureFactory(MPictureFactory* aPictureFactory,MRichTextStoreResolver* aStoreResolver)
|
sl@0
|
435 |
// Sets up a callback for the index.
|
sl@0
|
436 |
// Only called if the owner of this rich text component knows they will wanting to restore pictures
|
sl@0
|
437 |
// into this rich text.
|
sl@0
|
438 |
// If the index component is not yet present, the callbacks are preserved until required.
|
sl@0
|
439 |
//
|
sl@0
|
440 |
/** Sets the picture factory.
|
sl@0
|
441 |
|
sl@0
|
442 |
Pictures in a rich text object may be represented as picture headers, or by
|
sl@0
|
443 |
the picture data itself. CRichText supports the deferred loading of picture
|
sl@0
|
444 |
data, so that it is only loaded when it is needed to be displayed, thus
|
sl@0
|
445 |
economising on memory use. A rich text object which supports the deferred
|
sl@0
|
446 |
loading of pictures needs to be supplied with a picture factory. It can either
|
sl@0
|
447 |
be set using this function, or during construction.
|
sl@0
|
448 |
|
sl@0
|
449 |
Note: A panic occurs if the factory is NULL, but the store resolver is not NULL.
|
sl@0
|
450 |
|
sl@0
|
451 |
@param aPictureFactory The picture factory.
|
sl@0
|
452 |
@param aStoreResolver The store resolver. This determines which file store
|
sl@0
|
453 |
the picture is stored in. */
|
sl@0
|
454 |
{
|
sl@0
|
455 |
__TEST_INVARIANT;
|
sl@0
|
456 |
if (!aPictureFactory && aStoreResolver)
|
sl@0
|
457 |
{
|
sl@0
|
458 |
OstTrace0( TRACE_FATAL, CRICHTEXT_SETPICTUREFACTORY, "EInvalidPictureFactorySettings" );
|
sl@0
|
459 |
}
|
sl@0
|
460 |
__ASSERT_ALWAYS(!(!aPictureFactory && aStoreResolver),Panic(EInvalidPictureFactorySettings));
|
sl@0
|
461 |
|
sl@0
|
462 |
iPictureFactory=aPictureFactory;
|
sl@0
|
463 |
iStoreResolver=aStoreResolver;
|
sl@0
|
464 |
}
|
sl@0
|
465 |
|
sl@0
|
466 |
EXPORT_C TPictureHeader CRichText::PictureHeader(TInt aPos)const
|
sl@0
|
467 |
/** Gets the picture header which describes the picture located at a specified
|
sl@0
|
468 |
document position. If no picture header is located at the position, the function
|
sl@0
|
469 |
constructs and returns a default one.
|
sl@0
|
470 |
|
sl@0
|
471 |
@param aPos The document position. Must be valid.
|
sl@0
|
472 |
@return The picture header located at document position aPos, or a default
|
sl@0
|
473 |
picture header. */
|
sl@0
|
474 |
{
|
sl@0
|
475 |
__TEST_INVARIANT;
|
sl@0
|
476 |
if (aPos<0 || aPos>DocumentLength())
|
sl@0
|
477 |
{
|
sl@0
|
478 |
OstTrace0( TRACE_FATAL, CRICHTEXT_PICTUREHEADER, "ECharPosBeyondDocument" );
|
sl@0
|
479 |
}
|
sl@0
|
480 |
__ASSERT_ALWAYS(aPos>=0 && aPos<=DocumentLength(),Panic(ECharPosBeyondDocument));
|
sl@0
|
481 |
|
sl@0
|
482 |
return (IndexPresent())
|
sl@0
|
483 |
? iIndex->PictureHeader(aPos)
|
sl@0
|
484 |
: TPictureHeader();
|
sl@0
|
485 |
}
|
sl@0
|
486 |
|
sl@0
|
487 |
EXPORT_C void CRichText::DropPictureOwnership(TInt aPos)
|
sl@0
|
488 |
/** Removes ownership from this rich text object of the picture located at a
|
sl@0
|
489 |
document position. The picture character is deleted from the document and
|
sl@0
|
490 |
ownership of the picture passes to the caller of this function.
|
sl@0
|
491 |
Use PictureHandleL() beforehand to get a pointer to the picture.
|
sl@0
|
492 |
|
sl@0
|
493 |
@param aPos The document position of the picture character. Must be valid
|
sl@0
|
494 |
or a panic occurs.
|
sl@0
|
495 |
@see CRichText::PictureHandleL() */
|
sl@0
|
496 |
{
|
sl@0
|
497 |
__TEST_INVARIANT;
|
sl@0
|
498 |
if (aPos<0 || aPos>DocumentLength())
|
sl@0
|
499 |
{
|
sl@0
|
500 |
OstTrace0( TRACE_FATAL, CRICHTEXT_DROPPICTUREOWNERSHIP, "ECharPosBeyondDocument" );
|
sl@0
|
501 |
}
|
sl@0
|
502 |
__ASSERT_ALWAYS(aPos>=0 && aPos<=DocumentLength(),Panic(ECharPosBeyondDocument));
|
sl@0
|
503 |
|
sl@0
|
504 |
TPictureHeader* p = IndexPresent()? iIndex->PictureHeaderPtr(aPos) : 0;
|
sl@0
|
505 |
if (!p)
|
sl@0
|
506 |
return;
|
sl@0
|
507 |
|
sl@0
|
508 |
p->iPicture = 0;
|
sl@0
|
509 |
DeleteFromParagraph(aPos, 1);
|
sl@0
|
510 |
}
|
sl@0
|
511 |
|