sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
#ifndef __TXTRICH_H__
|
sl@0
|
20 |
#define __TXTRICH_H__
|
sl@0
|
21 |
|
sl@0
|
22 |
#include <e32std.h>
|
sl@0
|
23 |
#include <e32base.h>
|
sl@0
|
24 |
#include <txtglobl.h>
|
sl@0
|
25 |
#include <txtstyle.h>
|
sl@0
|
26 |
#include <mparser.h>
|
sl@0
|
27 |
#include <medobsrv.h>
|
sl@0
|
28 |
|
sl@0
|
29 |
#ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
|
sl@0
|
30 |
#include <txtrich_internal.h>
|
sl@0
|
31 |
#include <txtclipboard.h>
|
sl@0
|
32 |
#endif
|
sl@0
|
33 |
|
sl@0
|
34 |
// forward references
|
sl@0
|
35 |
class CRichTextIndex;
|
sl@0
|
36 |
class CStreamStore;
|
sl@0
|
37 |
class CStoreMap;
|
sl@0
|
38 |
class MPictureFactory;
|
sl@0
|
39 |
class MRichTextStoreResolver;
|
sl@0
|
40 |
class TCharFormatX;
|
sl@0
|
41 |
class TCharFormatXMask;
|
sl@0
|
42 |
class CParserData;
|
sl@0
|
43 |
|
sl@0
|
44 |
|
sl@0
|
45 |
class CRichText : public CGlobalText
|
sl@0
|
46 |
/**
|
sl@0
|
47 |
Text with rich formatting.
|
sl@0
|
48 |
|
sl@0
|
49 |
In rich text, each paragraph can have a different paragraph format, and each
|
sl@0
|
50 |
character can have a different character format.
|
sl@0
|
51 |
|
sl@0
|
52 |
All formatting in a rich text object is based on a global character and
|
sl@0
|
53 |
paragraph format layer, and a chain of layers on which they may be based. In
|
sl@0
|
54 |
case of conflict, upper layers override lower layers. These two format layers
|
sl@0
|
55 |
are specified on construction, and are not owned by the text object. Additional
|
sl@0
|
56 |
formatting may then be added to any portion of the text. This is called specific
|
sl@0
|
57 |
formatting and in case of conflict, it overrides the formatting in the global
|
sl@0
|
58 |
layers. Specific formatting is owned by the text object. So, the effective
|
sl@0
|
59 |
formatting of a rich text object may be composed of specific formatting and
|
sl@0
|
60 |
formatting specified in a chain of format layers.
|
sl@0
|
61 |
|
sl@0
|
62 |
Rich text supports styles. A style is a named set of paragraph and character
|
sl@0
|
63 |
format attributes. Styles are stored in a list which is passed to the rich
|
sl@0
|
64 |
text object on construction, or which is assigned to the object after
|
sl@0
|
65 |
construction. Styles can be appended to and removed from the list and existing
|
sl@0
|
66 |
styles can be modified. Only paragraph styles are supported. This means that
|
sl@0
|
67 |
styles are applied to entire paragraphs, although both character and paragraph
|
sl@0
|
68 |
format attributes may be set in the style.
|
sl@0
|
69 |
|
sl@0
|
70 |
Rich text also supports object embedding. Embedded objects are represented
|
sl@0
|
71 |
in rich text by CPicture-derived objects. A rich text object which supports
|
sl@0
|
72 |
the display of pictures needs to be supplied with a picture factory.
|
sl@0
|
73 |
|
sl@0
|
74 |
@see CParagraphStyle
|
sl@0
|
75 |
@publishedAll
|
sl@0
|
76 |
@released
|
sl@0
|
77 |
*/
|
sl@0
|
78 |
{
|
sl@0
|
79 |
public:
|
sl@0
|
80 |
|
sl@0
|
81 |
/** Number of paragraphs in the object. */
|
sl@0
|
82 |
enum TParaType
|
sl@0
|
83 |
{
|
sl@0
|
84 |
/** The text object will contain a single paragraph. */
|
sl@0
|
85 |
ESinglePara,
|
sl@0
|
86 |
/** The text object will contain multiple paragraphs. */
|
sl@0
|
87 |
EMultiPara
|
sl@0
|
88 |
};
|
sl@0
|
89 |
public:
|
sl@0
|
90 |
// Create new rich text component whose sole content is an end-of-document character.
|
sl@0
|
91 |
IMPORT_C static CRichText* NewL(const CParaFormatLayer* aGlobalParaLayer, const CCharFormatLayer* aGlobalCharLayer,
|
sl@0
|
92 |
TDocumentStorage aStorage = ESegmentedStorage,
|
sl@0
|
93 |
TInt aDefaultTextGranularity = EDefaultTextGranularity,
|
sl@0
|
94 |
TParaType aParaType = EMultiPara);
|
sl@0
|
95 |
// Create new rich text component, supporting STYLES, whose sole content is an end-of-document character.
|
sl@0
|
96 |
IMPORT_C static CRichText* NewL(const CParaFormatLayer* aGlobalParaLayer, const CCharFormatLayer* aGlobalCharLayer,
|
sl@0
|
97 |
const CStyleList& aStyleList,
|
sl@0
|
98 |
TDocumentStorage aStorage = ESegmentedStorage,
|
sl@0
|
99 |
TInt aDefaultTextGranularity = EDefaultTextGranularity,
|
sl@0
|
100 |
TParaType aParaType = EMultiPara);
|
sl@0
|
101 |
// Restore into new rich text, using the specified global layers.
|
sl@0
|
102 |
IMPORT_C static CRichText* NewL(const CStreamStore& aStore, TStreamId aStreamId,
|
sl@0
|
103 |
const CParaFormatLayer* aGlobalParaLayer, const CCharFormatLayer* aGlobalCharLayer,
|
sl@0
|
104 |
MTextFieldFactory* aFieldFactory = NULL,
|
sl@0
|
105 |
TDocumentStorage aStorage = ESegmentedStorage);
|
sl@0
|
106 |
// Restore into new rich text, using the specified layers, store & picture factory.
|
sl@0
|
107 |
IMPORT_C static CRichText* NewL(const CStreamStore& aStore, TStreamId aStreamId,
|
sl@0
|
108 |
const CParaFormatLayer* aGlobalParaLayer, const CCharFormatLayer * aGlobalCharLayer,
|
sl@0
|
109 |
MPictureFactory* aPictureFactory, MRichTextStoreResolver* aStoreResolver,
|
sl@0
|
110 |
MTextFieldFactory* aFieldFactory = NULL,
|
sl@0
|
111 |
TDocumentStorage aStorage = ESegmentedStorage);
|
sl@0
|
112 |
IMPORT_C virtual ~CRichText();
|
sl@0
|
113 |
//
|
sl@0
|
114 |
// Default persist functions - Deferred loading of pictures
|
sl@0
|
115 |
IMPORT_C void RestoreWithStyleListL(const CStreamStore& aStore, TStreamId aStreamId, const CStyleList& aExternalStyleList);
|
sl@0
|
116 |
//
|
sl@0
|
117 |
IMPORT_C virtual void StoreComponentsL(CStreamStore& aStore, CStoreMap& aMap) const;
|
sl@0
|
118 |
IMPORT_C virtual void RestoreComponentsL(const CStreamStore& aStore);
|
sl@0
|
119 |
IMPORT_C virtual void ExternalizeL(RWriteStream& aStream) const;
|
sl@0
|
120 |
IMPORT_C virtual void InternalizeL(RReadStream& aStream);
|
sl@0
|
121 |
//
|
sl@0
|
122 |
// Custom persist functions
|
sl@0
|
123 |
IMPORT_C void ExternalizeStyleDataL(RWriteStream& aStream) const;
|
sl@0
|
124 |
IMPORT_C void InternalizeStyleDataL(RReadStream& aStream);
|
sl@0
|
125 |
//
|
sl@0
|
126 |
IMPORT_C void StoreMarkupComponentsL(CStreamStore& aStore, CStoreMap& aMap) const;
|
sl@0
|
127 |
IMPORT_C void ExternalizeMarkupDataL(RWriteStream& aStream) const;
|
sl@0
|
128 |
IMPORT_C void InternalizeMarkupDataL(RReadStream& aStream);
|
sl@0
|
129 |
//
|
sl@0
|
130 |
// Utility persist functions
|
sl@0
|
131 |
IMPORT_C void SetPictureFactory(MPictureFactory* aPictureFactory, MRichTextStoreResolver* aStoreResolver);
|
sl@0
|
132 |
inline MPictureFactory* PictureFactory() const;
|
sl@0
|
133 |
inline MRichTextStoreResolver* StoreResolver() const;
|
sl@0
|
134 |
IMPORT_C TPictureHeader PictureHeader(TInt aPos) const;
|
sl@0
|
135 |
IMPORT_C void DropPictureOwnership(TInt aPos); // delete picture character. Forget but don't delete picture.
|
sl@0
|
136 |
IMPORT_C void DetachFromStoreL(CPicture::TDetach aDegree);
|
sl@0
|
137 |
IMPORT_C void DetachFromStoreL(CPicture::TDetach aDegree, TInt aPos, TInt aLength);
|
sl@0
|
138 |
IMPORT_C TBool HasMarkupData() const;
|
sl@0
|
139 |
//
|
sl@0
|
140 |
// Copy/Paste
|
sl@0
|
141 |
IMPORT_C virtual void CopyToStoreL(CStreamStore& aStore, CStreamDictionary& aDictionary, TInt aPos, TInt aLength) const;
|
sl@0
|
142 |
IMPORT_C virtual TInt PasteFromStoreL(const CStreamStore& aStore, const CStreamDictionary& aDictionary, TInt aPos);
|
sl@0
|
143 |
IMPORT_C TInt PasteFromStoreL(const CStreamStore& aStore, const CStreamDictionary& aDictionary, TInt aPos, CParagraphStyle::TStylePasteMode aStylePasteMode);
|
sl@0
|
144 |
//
|
sl@0
|
145 |
// Content modifier functions
|
sl@0
|
146 |
IMPORT_C virtual void Reset();
|
sl@0
|
147 |
IMPORT_C virtual void InsertL(TInt aPos, const TChar& aChar); // Insert a single character.
|
sl@0
|
148 |
IMPORT_C virtual void InsertL(TInt aPos, const TDesC& aBuf);
|
sl@0
|
149 |
IMPORT_C void InsertL(TInt aPos, const TPictureHeader& aHeader); // Insert a picture header.
|
sl@0
|
150 |
//
|
sl@0
|
151 |
// aPos is the position of the character being deleted, *not* the current cursor position!
|
sl@0
|
152 |
IMPORT_C virtual TBool DeleteL(TInt aPos, TInt aLength); // Call this for a delete-forward.
|
sl@0
|
153 |
//
|
sl@0
|
154 |
// Leave-safe delete for removing content from *within* a single paragraph only
|
sl@0
|
155 |
IMPORT_C void DeleteFromParagraph(TInt aPos, TInt aLength);
|
sl@0
|
156 |
//
|
sl@0
|
157 |
// Leave-safe delete for removing *entire* paragraphs
|
sl@0
|
158 |
IMPORT_C void DeleteParagraph(TInt aPos, TInt aLength);
|
sl@0
|
159 |
//
|
sl@0
|
160 |
// Special behaviour format modifier functions.
|
sl@0
|
161 |
// Call this when applying a character format to a zero length selection, eg, turning bold on.
|
sl@0
|
162 |
IMPORT_C void SetInsertCharFormatL(const TCharFormat& aFormat, const TCharFormatMask& aMask, TInt aPos);
|
sl@0
|
163 |
//
|
sl@0
|
164 |
// Call this on every cursor movement, page up/down etc...
|
sl@0
|
165 |
IMPORT_C void CancelInsertCharFormat();
|
sl@0
|
166 |
//
|
sl@0
|
167 |
// Delete content, but preserve phrase format if aPos is at a phrase boundary.
|
sl@0
|
168 |
// aPos is the position of the character being deleted, *not* the current cursor position!
|
sl@0
|
169 |
IMPORT_C TBool DelSetInsertCharFormatL(TInt aPos, TInt aLength);
|
sl@0
|
170 |
//
|
sl@0
|
171 |
// MLaydoc implementation
|
sl@0
|
172 |
IMPORT_C virtual void GetParagraphFormatL(CParaFormat* aFormat, TInt aPos) const;
|
sl@0
|
173 |
IMPORT_C virtual void GetChars(TPtrC& aView, TCharFormat& aFormat, TInt aPos) const;
|
sl@0
|
174 |
IMPORT_C virtual TInt GetPictureSizeInTwips(TSize& aSize, TInt aPos) const;
|
sl@0
|
175 |
IMPORT_C virtual CPicture* PictureHandleL(TInt aPos, MLayDoc::TForcePictureLoad aForceLoad = MLayDoc::EForceLoadTrue) const;
|
sl@0
|
176 |
//
|
sl@0
|
177 |
// MFormatText implementation
|
sl@0
|
178 |
// Used only by dialog writers, since they are not interested in the text, but require knowledge
|
sl@0
|
179 |
// of attributes whose values change across the specified range.
|
sl@0
|
180 |
IMPORT_C virtual void GetParaFormatL(CParaFormat* aFormat, TParaFormatMask& aVaries, TInt aPos, TInt aLength,
|
sl@0
|
181 |
CParaFormat::TParaFormatGetMode aMode = CParaFormat::EAllAttributes) const;
|
sl@0
|
182 |
IMPORT_C virtual void ApplyParaFormatL(const CParaFormat* aFormat, const TParaFormatMask& aMask, TInt aPos, TInt aLength);
|
sl@0
|
183 |
IMPORT_C virtual void GetCharFormat(TCharFormat& aFormat, TCharFormatMask& aVaries, TInt aPos, TInt aLength) const;
|
sl@0
|
184 |
IMPORT_C virtual void ApplyCharFormatL(const TCharFormat& aFormat, const TCharFormatMask& aMask, TInt aPos, TInt aLength);
|
sl@0
|
185 |
//
|
sl@0
|
186 |
//
|
sl@0
|
187 |
IMPORT_C void GetSpecificCharFormat(TCharFormat& aFormat, TCharFormatMask& aMask, TInt aPos) const;
|
sl@0
|
188 |
IMPORT_C void GetSpecificCharFormatRight(TCharFormat& aFormat, TCharFormatMask& aMask, TInt aPos) const;
|
sl@0
|
189 |
IMPORT_C void GetSpecificParagraphFormatL(CParaFormat* aFormat, TParaFormatMask& aMask, TInt aPos) const;
|
sl@0
|
190 |
//
|
sl@0
|
191 |
// Paragraph style implementation
|
sl@0
|
192 |
IMPORT_C void ApplyParagraphStyleL(const CParagraphStyle& aStyle, TInt aPos, TInt aLength, CParagraphStyle::TApplyParaStyleMode aMode);
|
sl@0
|
193 |
inline void NotifyStyleDeletedL(const CParagraphStyle* aStyle);
|
sl@0
|
194 |
IMPORT_C void NotifyStyleChangedL(const CParagraphStyle* aTo, const CParagraphStyle* aFrom);
|
sl@0
|
195 |
IMPORT_C const CParaFormatLayer* ParagraphStyle(TBool& aStyleChangesOverRange, TInt aPos, TInt aLength) const;
|
sl@0
|
196 |
//
|
sl@0
|
197 |
// StyleList implementation
|
sl@0
|
198 |
inline TBool StyleListPresent() const;
|
sl@0
|
199 |
inline CStyleList* StyleList() const;
|
sl@0
|
200 |
inline TInt StyleCount() const;
|
sl@0
|
201 |
|
sl@0
|
202 |
inline void SetStyleListExternallyOwned(TBool aExternallyOwned);
|
sl@0
|
203 |
IMPORT_C void SetStyleListExternallyOwned(const CStyleList& aStyleList);
|
sl@0
|
204 |
inline TBool StyleListExternallyOwned() const;
|
sl@0
|
205 |
//
|
sl@0
|
206 |
// Utility functions
|
sl@0
|
207 |
IMPORT_C void RemoveSpecificParaFormatL(TInt aPos, TInt aLength);
|
sl@0
|
208 |
IMPORT_C void RemoveSpecificCharFormatL(TInt aPos, TInt aLength);
|
sl@0
|
209 |
IMPORT_C TInt PictureCount() const;
|
sl@0
|
210 |
IMPORT_C virtual TInt ParagraphCount() const;
|
sl@0
|
211 |
IMPORT_C virtual TInt CharPosOfParagraph(TInt& aLength, TInt aParaOffset) const;
|
sl@0
|
212 |
IMPORT_C virtual TInt ParagraphNumberForPos(TInt& aPos) const;
|
sl@0
|
213 |
IMPORT_C virtual TEtextComponentInfo ComponentInfo() const;
|
sl@0
|
214 |
//
|
sl@0
|
215 |
// Text field implementation
|
sl@0
|
216 |
IMPORT_C virtual void UpdateFieldL(TInt aPos); // updates the field at aPos
|
sl@0
|
217 |
// finds number of fields in range. Includes the field containing aPos, if applicable
|
sl@0
|
218 |
// aInfo is set to the first field in the range (if any are found)
|
sl@0
|
219 |
//
|
sl@0
|
220 |
// Speciality functions
|
sl@0
|
221 |
IMPORT_C void AppendTakingSolePictureOwnershipL(const CRichText& aSource);
|
sl@0
|
222 |
IMPORT_C void AppendParagraphL(TInt aReplicas = 1);
|
sl@0
|
223 |
IMPORT_C virtual void SetHasChanged(TBool aHasChanged);
|
sl@0
|
224 |
|
sl@0
|
225 |
IMPORT_C void ExtendedInterface(TAny*& aInterface, TUid aInterfaceId); // from CEditableText
|
sl@0
|
226 |
|
sl@0
|
227 |
// non-exported public functions
|
sl@0
|
228 |
void ApplyExtendedCharFormatL(const TCharFormatX& aFormat, const TCharFormatXMask& aMask, TInt aPos, TInt aLength);
|
sl@0
|
229 |
void GetExtendedCharFormat(TCharFormatX& aFormat, TCharFormatXMask& aVaries, TInt aPos, TInt aLength) const;
|
sl@0
|
230 |
void GetTextAndExtendedFormat(TPtrC& aText, TCharFormatX& aFormat, TInt aPos) const;
|
sl@0
|
231 |
|
sl@0
|
232 |
private:
|
sl@0
|
233 |
CRichText(const CRichText& aRichText);
|
sl@0
|
234 |
CRichText& operator=(const CRichText& aRichText);
|
sl@0
|
235 |
void KillStyleList();
|
sl@0
|
236 |
void KillIndex();
|
sl@0
|
237 |
TBool CreateEmptyMarkupComponentL();
|
sl@0
|
238 |
void CreateAndGenerateMarkupComponentL();
|
sl@0
|
239 |
void GenerateMarkupL();
|
sl@0
|
240 |
void CompletePastePlainTextL(TInt aPos,TInt aCharacterCount);
|
sl@0
|
241 |
TInt DoPasteRtFromStoreL(const CStreamStore& aStore, const CStreamDictionary& aDictionary, TInt aPos, CParagraphStyle::TStylePasteMode aStylePasteMode);
|
sl@0
|
242 |
TBool IndexPresent() const;
|
sl@0
|
243 |
inline void SetParaTypeIsSingle(TBool aBool);
|
sl@0
|
244 |
inline TBool ParaTypeIsSingle() const;
|
sl@0
|
245 |
void SetExtendedInsertCharFormatL(const TCharFormatX& aFormat, const TCharFormatXMask& aMask, TInt aPos);
|
sl@0
|
246 |
void GetSpecificCharFormatLeftRight(TCharFormat& aFormat,
|
sl@0
|
247 |
TCharFormatMask& aMask, TInt aPos, TBool aLeft) const;
|
sl@0
|
248 |
void DoApplyExtendedCharFormatL(const TCharFormatX& aFormat,const TCharFormatXMask& aMask,TInt aPos,TInt aLength);
|
sl@0
|
249 |
|
sl@0
|
250 |
protected:
|
sl@0
|
251 |
IMPORT_C CRichText(const CParaFormatLayer* aGlobalParaLayer, const CCharFormatLayer* aGlobalCharLayer,
|
sl@0
|
252 |
CStyleList* aStyleList = NULL);
|
sl@0
|
253 |
// New constructL's - to be merged post 057
|
sl@0
|
254 |
IMPORT_C void ConstructL(TDocumentStorage aStorage, TInt aDefaultTextGranularity, TParaType aParaType);
|
sl@0
|
255 |
IMPORT_C void ConstructL(const CStreamStore& aStore, TStreamId aStreamId, MPictureFactory* aFactory, MRichTextStoreResolver* aStoreResolver,
|
sl@0
|
256 |
MTextFieldFactory* aFieldFactory=NULL,
|
sl@0
|
257 |
TDocumentStorage aStorage = ESegmentedStorage);
|
sl@0
|
258 |
//
|
sl@0
|
259 |
void InternalizeL(RReadStream& aStream, const CStyleList* aExternalStyleList);
|
sl@0
|
260 |
IMPORT_C void DoExternalizeStyleDataL(RWriteStream& aStream) const;
|
sl@0
|
261 |
IMPORT_C void DoInternalizeStyleDataL(RReadStream& aStream);
|
sl@0
|
262 |
void DoInternalizeStyleDataL(RReadStream& aStream, const CStyleList* aExternalStyleList);
|
sl@0
|
263 |
IMPORT_C void DoExternalizeMarkupDataL(RWriteStream& aStream) const;
|
sl@0
|
264 |
IMPORT_C void DoInternalizeMarkupDataL(RReadStream& aStream);
|
sl@0
|
265 |
void StoreStylesL(CStreamStore& aStore,CStoreMap& aMap) const;
|
sl@0
|
266 |
void RestoreStylesL(const CStreamStore& aStore, TStreamId aId, const CParaFormatLayer* aParaFormatLayer, const CCharFormatLayer* aCharFormatLayer);
|
sl@0
|
267 |
void StoreMarkupL(CStreamStore& aStore,CStoreMap& aMap)const;
|
sl@0
|
268 |
//
|
sl@0
|
269 |
IMPORT_C void RtInsertL(TInt aPos,const TDesC& aBuf);
|
sl@0
|
270 |
//
|
sl@0
|
271 |
TStreamId DoCopyToStoreL(CStreamStore& aStore, TInt aPos, TInt aLength, TStreamId aGlobalTextId, TBool aCopyStyles) const;
|
sl@0
|
272 |
IMPORT_C void CopyComponentsL(CStreamStore& aStore, CStoreMap& aMap, TInt aPos,TInt aLength, TStreamId aGlobalTextId) const;
|
sl@0
|
273 |
IMPORT_C void CopyToStreamL(RWriteStream& aStream, TInt aPos, TInt aLength, TStreamId aGlobalTextId) const;
|
sl@0
|
274 |
IMPORT_C void CopyToStreamL(RWriteStream& aStream, TInt aPos, TInt aLength) const;
|
sl@0
|
275 |
void CopyToStreamL(RWriteStream& aStream, TInt aPos, TInt aLength, TStreamId aGlobalTextId, TBool aCopyStyles) const;
|
sl@0
|
276 |
TInt PasteRichTextFromStoreL(const CStreamStore& aStore, const CStreamDictionary& aDictionary, TStreamId& anId, TInt aPos, CParagraphStyle::TStylePasteMode aStylePasteMode);
|
sl@0
|
277 |
void CompletePasteRichTextFromStoreL(const CStreamStore& aStore, TStreamId& aRichTextStreamId, TInt aPos, CParagraphStyle::TStylePasteMode aStylePasteMode);
|
sl@0
|
278 |
TInt PastePlainTextFromStoreL(const CStreamStore& aStore, TStreamId& anId, TInt aPos);
|
sl@0
|
279 |
//
|
sl@0
|
280 |
// Append
|
sl@0
|
281 |
void PrepareAppendMarkupL(const CRichText& aSource);
|
sl@0
|
282 |
void DoAppendTakingSolePictureOwnershipL(const CRichText& aSource);
|
sl@0
|
283 |
public:
|
sl@0
|
284 |
IMPORT_C static void ActivateParserL(MParser* aParser); // Switch on a particular parser
|
sl@0
|
285 |
IMPORT_C static void DeactivateParser(MParser* aParser); // Switch off a particular parser
|
sl@0
|
286 |
IMPORT_C static void ActivateDefaultParserL(MParser* aParser); // Switch on a default parser
|
sl@0
|
287 |
IMPORT_C static void DeactivateParserDefaults(); // Switch off default set (if any)
|
sl@0
|
288 |
// and delete EText TLS
|
sl@0
|
289 |
|
sl@0
|
290 |
IMPORT_C void SetEditObserver(MEditObserver* aEditObserver);
|
sl@0
|
291 |
IMPORT_C TBool ParseText(TInt& aStartOfTags, TInt& aLength, TBool aForceScanAllText);
|
sl@0
|
292 |
IMPORT_C TBool CursorOverTag(TInt aPos, MParser*& aParser, TInt& aTagStart, TInt& aLength) const;
|
sl@0
|
293 |
// Next tag (forwards), any or specific parser
|
sl@0
|
294 |
IMPORT_C TInt PositionOfNextTag(TInt aPos) const;
|
sl@0
|
295 |
IMPORT_C TInt PositionOfNextTag(TInt aPos, const MParser* aParser) const;
|
sl@0
|
296 |
// Prev tag (backwards), any or specific parser
|
sl@0
|
297 |
IMPORT_C TInt PositionOfPrevTag(TInt aPos) const;
|
sl@0
|
298 |
IMPORT_C TInt PositionOfPrevTag(TInt aPos, const MParser* aParser) const;
|
sl@0
|
299 |
|
sl@0
|
300 |
private:
|
sl@0
|
301 |
static void CreateParserETextTLSL();
|
sl@0
|
302 |
TBool DoCursorOverTag(TInt aPos, MParser*& aParser, TInt& aTagStart, TInt& aLength) const;
|
sl@0
|
303 |
void OverrideFormatForParsersIfApplicable(TPtrC& aText, TCharFormatX& aFormat, TInt aStartPos) const;
|
sl@0
|
304 |
void CallEditObserver(TInt aStart, TInt aExtent) const;
|
sl@0
|
305 |
|
sl@0
|
306 |
protected:
|
sl@0
|
307 |
enum {EDelimiterCharacterLength = 1};
|
sl@0
|
308 |
private:
|
sl@0
|
309 |
TSwizzle<CStyleList> iStyleList;
|
sl@0
|
310 |
TSwizzle<CRichTextIndex> iIndex;
|
sl@0
|
311 |
TUint32 iFlags;
|
sl@0
|
312 |
MPictureFactory* iPictureFactory;
|
sl@0
|
313 |
MRichTextStoreResolver* iStoreResolver;
|
sl@0
|
314 |
|
sl@0
|
315 |
CParserData* iParserData;
|
sl@0
|
316 |
|
sl@0
|
317 |
void* iReserved_3;
|
sl@0
|
318 |
|
sl@0
|
319 |
__DECLARE_TEST; // Index consistency check with document length.
|
sl@0
|
320 |
};
|
sl@0
|
321 |
|
sl@0
|
322 |
|
sl@0
|
323 |
#include <txtrich.inl>
|
sl@0
|
324 |
|
sl@0
|
325 |
|
sl@0
|
326 |
#endif
|
sl@0
|
327 |
|
sl@0
|
328 |
|
sl@0
|
329 |
|