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 __TXTETEXT_H__
|
sl@0
|
20 |
#define __TXTETEXT_H__
|
sl@0
|
21 |
|
sl@0
|
22 |
#include <e32std.h>
|
sl@0
|
23 |
#include <e32base.h>
|
sl@0
|
24 |
#include <s32std.h>
|
sl@0
|
25 |
|
sl@0
|
26 |
#ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
|
sl@0
|
27 |
#include <fldset.h>
|
sl@0
|
28 |
#include <txtetext_internal.h>
|
sl@0
|
29 |
#include <txtclipboard.h>
|
sl@0
|
30 |
#endif
|
sl@0
|
31 |
|
sl@0
|
32 |
// Forward references
|
sl@0
|
33 |
class CParaFormatLayer;
|
sl@0
|
34 |
class CCharFormatLayer;
|
sl@0
|
35 |
class MTextFieldFactory;
|
sl@0
|
36 |
class CTextFieldSet;
|
sl@0
|
37 |
class CTextField;
|
sl@0
|
38 |
class TFindFieldInfo;
|
sl@0
|
39 |
class CInlineEditData;
|
sl@0
|
40 |
class MFepInlineTextFormatRetriever;
|
sl@0
|
41 |
class TCharFormat;
|
sl@0
|
42 |
class CEditableTextOptionalData;
|
sl@0
|
43 |
class RFs;
|
sl@0
|
44 |
|
sl@0
|
45 |
|
sl@0
|
46 |
/**
|
sl@0
|
47 |
An abstract base class which defines the behaviour common to all editable
|
sl@0
|
48 |
text classes.
|
sl@0
|
49 |
|
sl@0
|
50 |
It provides no storage for text or text formatting, so it is not directly
|
sl@0
|
51 |
usable. It defines protocols for editing the contents of a text object and
|
sl@0
|
52 |
for extracting format data from a text object which supports formatting.
|
sl@0
|
53 |
|
sl@0
|
54 |
Note: when specifying a position in a text object (the document position),
|
sl@0
|
55 |
zero is before the first character in the document. If the document contains
|
sl@0
|
56 |
n characters, position n is after the last character. Valid document positions
|
sl@0
|
57 |
are therefore between zero and the length of the document, inclusive. Many
|
sl@0
|
58 |
editable text functions raise a panic if a specified document position is
|
sl@0
|
59 |
invalid.
|
sl@0
|
60 |
|
sl@0
|
61 |
Note also that the functions which implement support for front-end-processor
|
sl@0
|
62 |
inline editing are intended for internal use only by Symbian.
|
sl@0
|
63 |
@publishedAll
|
sl@0
|
64 |
@released
|
sl@0
|
65 |
*/
|
sl@0
|
66 |
class CEditableText : public CBase
|
sl@0
|
67 |
{
|
sl@0
|
68 |
public:
|
sl@0
|
69 |
IMPORT_C ~CEditableText();
|
sl@0
|
70 |
IMPORT_C TStreamId StoreL(CStreamStore& aStore) const;
|
sl@0
|
71 |
IMPORT_C void RestoreL(const CStreamStore& aStore,TStreamId aStreamId);
|
sl@0
|
72 |
|
sl@0
|
73 |
// virtual persistence functions
|
sl@0
|
74 |
virtual void ExternalizeL(RWriteStream& aStream) const;
|
sl@0
|
75 |
virtual void InternalizeL(RReadStream& aStream);
|
sl@0
|
76 |
|
sl@0
|
77 |
/** Stores the text components, e.g. fields, pictures and formatting to the
|
sl@0
|
78 |
stream store specified. Does not store the text content.
|
sl@0
|
79 |
|
sl@0
|
80 |
@param aStore Stream store to which the text components are written.
|
sl@0
|
81 |
@param aMap A store map. This binds the address of text components to the
|
sl@0
|
82 |
stream ID of aStore. This is needed to support deferred loading of
|
sl@0
|
83 |
pictures in rich text. */
|
sl@0
|
84 |
virtual void StoreComponentsL(CStreamStore& aStore,CStoreMap& aMap) const = 0;
|
sl@0
|
85 |
|
sl@0
|
86 |
/** Restores the text components, e.g. fields, pictures and formatting from
|
sl@0
|
87 |
the stream store. Does not restore the text content.
|
sl@0
|
88 |
|
sl@0
|
89 |
@param aStore The stream store from which the text components are restored. */
|
sl@0
|
90 |
virtual void RestoreComponentsL(const CStreamStore& aStore) = 0;
|
sl@0
|
91 |
|
sl@0
|
92 |
// modifier functions
|
sl@0
|
93 |
|
sl@0
|
94 |
/** Deletes the text content and components from the text object, leaving
|
sl@0
|
95 |
the single end-of-text paragraph delimiter. */
|
sl@0
|
96 |
virtual void Reset() = 0;
|
sl@0
|
97 |
|
sl@0
|
98 |
/** Inserts a single character or a descriptor into the text object at a
|
sl@0
|
99 |
specified document position.
|
sl@0
|
100 |
|
sl@0
|
101 |
@param aInsertPos A valid document position at which to insert the
|
sl@0
|
102 |
character or descriptor.
|
sl@0
|
103 |
@param aChar The character to insert. */
|
sl@0
|
104 |
virtual void InsertL(TInt aInsertPos,const TChar& aChar) = 0;
|
sl@0
|
105 |
|
sl@0
|
106 |
/** Inserts a single character or a descriptor into the text object at a
|
sl@0
|
107 |
specified document position.
|
sl@0
|
108 |
|
sl@0
|
109 |
@param aInsertPos A valid document position at which to insert the
|
sl@0
|
110 |
character or descriptor.
|
sl@0
|
111 |
@param aBuf The descriptor to insert.*/
|
sl@0
|
112 |
virtual void InsertL(TInt aInsertPos,const TDesC& aBuf) = 0;
|
sl@0
|
113 |
|
sl@0
|
114 |
/** Deletes one or more characters beginning at (and including) the
|
sl@0
|
115 |
character at the specified document position.
|
sl@0
|
116 |
|
sl@0
|
117 |
@param aPos The document position from which to delete.
|
sl@0
|
118 |
@param aLength The number of characters to delete.
|
sl@0
|
119 |
@return Indicates whether or not two paragraphs have been merged as a
|
sl@0
|
120 |
result of the delete, so that the resulting paragraph needs to be
|
sl@0
|
121 |
reformatted. This value is only relevant to rich text, so for plain and
|
sl@0
|
122 |
global text implementations, the function always returns EFalse. */
|
sl@0
|
123 |
virtual TBool DeleteL(TInt aPos,TInt aLength) = 0;
|
sl@0
|
124 |
|
sl@0
|
125 |
// interrogation functions
|
sl@0
|
126 |
|
sl@0
|
127 |
/** Gets a read-only pointer descriptor to a portion of the text.
|
sl@0
|
128 |
|
sl@0
|
129 |
@param aStartPos A valid document position from which to read.
|
sl@0
|
130 |
@param aLength If specified, the number of characters to read,inclusive of
|
sl@0
|
131 |
the character at position aStartPos. If not specified, the read continues
|
sl@0
|
132 |
to the end of the document, or the end of the segment if using segmented storage.
|
sl@0
|
133 |
@return Read-only pointer descriptor to a portion of the text. */
|
sl@0
|
134 |
virtual TPtrC Read(TInt aStartPos) const = 0;
|
sl@0
|
135 |
|
sl@0
|
136 |
/** Gets a read-only pointer descriptor to a portion of the text.
|
sl@0
|
137 |
|
sl@0
|
138 |
@param aStartPos A valid document position from which to read.
|
sl@0
|
139 |
@param aLength If specified, the number of characters to read, inclusive of
|
sl@0
|
140 |
the character at position aStartPos. If not specified, the read continues
|
sl@0
|
141 |
to the end of the document, or the end of the segment if using segmented
|
sl@0
|
142 |
storage.
|
sl@0
|
143 |
@return Read-only pointer descriptor to a portion of the text. */
|
sl@0
|
144 |
virtual TPtrC Read(TInt aStartPos,TInt aLength) const = 0;
|
sl@0
|
145 |
|
sl@0
|
146 |
/** Copies a portion of the text into a descriptor.
|
sl@0
|
147 |
|
sl@0
|
148 |
Starts at the position specified and continues to the end of the document.
|
sl@0
|
149 |
A length may optionally be specified.
|
sl@0
|
150 |
|
sl@0
|
151 |
@param aBuf Buffer which on return contains the extracted text.
|
sl@0
|
152 |
@param aPos The document position from which to copy. Must be a valid
|
sl@0
|
153 |
position, or a panic occurs.
|
sl@0
|
154 |
@param aLength If specified, the number of characters to copy. */
|
sl@0
|
155 |
virtual void Extract(TDes& aBuf,TInt aPos=0) const = 0;
|
sl@0
|
156 |
|
sl@0
|
157 |
/** Copies a portion of the text into a descriptor. Starts at the position
|
sl@0
|
158 |
specified and continues to the end of the document. A length may optionally
|
sl@0
|
159 |
be specified.
|
sl@0
|
160 |
|
sl@0
|
161 |
@param aBuf Buffer which on return contains the extracted text.
|
sl@0
|
162 |
@param aPos The document position from which to copy. Must be a valid
|
sl@0
|
163 |
position, or a panic occurs.
|
sl@0
|
164 |
@param aLength If specified, the number of characters to copy. */
|
sl@0
|
165 |
virtual void Extract(TDes& aBuf,TInt aPos,TInt aLength) const = 0;
|
sl@0
|
166 |
|
sl@0
|
167 |
// copy and paste
|
sl@0
|
168 |
/** Copies a portion of the text to the clipboard.
|
sl@0
|
169 |
|
sl@0
|
170 |
@param aStore The clipboard's store (see class CClipboard).
|
sl@0
|
171 |
@param aDictionary The clipboard's stream dictionary (see class CClipboard).
|
sl@0
|
172 |
@param aPos A valid document position from which to begin copying.
|
sl@0
|
173 |
@param aLength The number of characters to copy. */
|
sl@0
|
174 |
virtual void CopyToStoreL(CStreamStore& aStore,CStreamDictionary& aDictionary,TInt aPos,TInt aLength) const = 0;
|
sl@0
|
175 |
|
sl@0
|
176 |
/** Pastes the contents of the clipboard into the text object at the
|
sl@0
|
177 |
specified document position.
|
sl@0
|
178 |
|
sl@0
|
179 |
@param aStore The clipboard's store (see class CClipboard).
|
sl@0
|
180 |
@param aDictionary The clipboard's stream dictionary (see class CClipboard).
|
sl@0
|
181 |
@param aPos A valid document position at which to paste the text.
|
sl@0
|
182 |
@return The number of characters pasted. */
|
sl@0
|
183 |
virtual TInt PasteFromStoreL(const CStreamStore& aStore,const CStreamDictionary& aDictionary,TInt aPos) = 0;
|
sl@0
|
184 |
|
sl@0
|
185 |
// utility functions
|
sl@0
|
186 |
|
sl@0
|
187 |
/** Returns a count of the number of words in the document.
|
sl@0
|
188 |
|
sl@0
|
189 |
@return The number of words in the document */
|
sl@0
|
190 |
virtual TInt WordCount() const = 0;
|
sl@0
|
191 |
|
sl@0
|
192 |
/** Returns a count of the number of paragraphs in the document.
|
sl@0
|
193 |
|
sl@0
|
194 |
@return The number of paragraphs in the document. Notes: The end-of-text
|
sl@0
|
195 |
paragraph delimiter at the end of every document means this function
|
sl@0
|
196 |
always returns a count of at least one. */
|
sl@0
|
197 |
virtual TInt ParagraphCount() const = 0;
|
sl@0
|
198 |
|
sl@0
|
199 |
/** Returns a count of the number of characters in the document,
|
sl@0
|
200 |
excluding the end-of-text paragraph delimiter.
|
sl@0
|
201 |
|
sl@0
|
202 |
@return The number of characters in the document. */
|
sl@0
|
203 |
virtual TInt DocumentLength() const = 0;
|
sl@0
|
204 |
|
sl@0
|
205 |
/** Updates a document position to the start of the paragraph.
|
sl@0
|
206 |
|
sl@0
|
207 |
@param aPos Initially specifies a valid document position. On return, set
|
sl@0
|
208 |
to the document position of the first character in the paragraph.
|
sl@0
|
209 |
@return The number of characters skipped in scanning to the start of the
|
sl@0
|
210 |
paragraph. */
|
sl@0
|
211 |
virtual TInt ToParagraphStart(TInt& aPos) const = 0;
|
sl@0
|
212 |
inline TBool HasChanged() const;
|
sl@0
|
213 |
|
sl@0
|
214 |
/** Returns the start position and length of the word that contains the
|
sl@0
|
215 |
specified document position.
|
sl@0
|
216 |
|
sl@0
|
217 |
@param aCurrentPos A valid document position.
|
sl@0
|
218 |
@param aStartPos On return, the document position of the first character in
|
sl@0
|
219 |
the word containing document position aCurrentPos.
|
sl@0
|
220 |
@param aLength On return, the length of the word containing document
|
sl@0
|
221 |
position aCurrentPos. Does not include the trailing word delimiter
|
sl@0
|
222 |
character.
|
sl@0
|
223 |
@param aPictureIsDelimiter Specifies whether picture characters should be
|
sl@0
|
224 |
considered to be word delimiters. For example, this value might be EFalse
|
sl@0
|
225 |
when navigating a document, but ETrue when carrying out spell checking.
|
sl@0
|
226 |
@param aPunctuationIsDelimiter Specifies whether puncutation characters
|
sl@0
|
227 |
should be considered to be word delimiters. */
|
sl@0
|
228 |
virtual void GetWordInfo(TInt aCurrentPos,TInt& aStartPos,TInt& aLength,
|
sl@0
|
229 |
TBool aPictureIsDelimiter,TBool aPunctuationIsDelimiter) const = 0;
|
sl@0
|
230 |
|
sl@0
|
231 |
IMPORT_C virtual TInt ScanWords(TInt& aPos,TUint& aScanMask) const;
|
sl@0
|
232 |
IMPORT_C virtual TInt ScanParas(TInt& aPos,TUint& aScanMask) const;
|
sl@0
|
233 |
IMPORT_C virtual void SetHasChanged(TBool aHasChanged);
|
sl@0
|
234 |
|
sl@0
|
235 |
// Internal to Symbian - support for front-end-processor inline editing
|
sl@0
|
236 |
IMPORT_C void StartFepInlineEditL(TBool& aParagraphContainingStartPositionOfInlineTextHasChangedFormat,TInt& aNumberOfCharactersSuccessfullyDeleted,TInt& aNumberOfCharactersSuccessfullyInserted,TInt& aPositionOfInsertionPointInDocument,TInt aNewPositionOfInsertionPointInDocument,const TDesC& aInitialInlineText,TInt aPositionOfInlineTextInDocument,TInt aNumberOfCharactersToHide,MFepInlineTextFormatRetriever& aInlineTextFormatRetriever);
|
sl@0
|
237 |
IMPORT_C void UpdateFepInlineTextL(TBool& aParagraphContainingStartPositionOfInlineTextHasChangedFormat,TInt& aNumberOfCharactersSuccessfullyDeleted,TInt& aNumberOfCharactersSuccessfullyInserted,TInt& aPositionOfInsertionPointInDocument,TInt aNewPositionOfInsertionPointInDocument,const TDesC& aNewInlineText);
|
sl@0
|
238 |
IMPORT_C void CommitFepInlineEditL(TBool& aParagraphContainingStartPositionOfInlineTextHasChangedFormat,TInt& aNumberOfCharactersSuccessfullyDeleted,TInt& aNumberOfCharactersSuccessfullyInserted,TInt& aPositionOfInsertionPointInDocument,TInt aNewPositionOfInsertionPointInDocument);
|
sl@0
|
239 |
IMPORT_C void CancelFepInlineEdit(TBool& aParagraphContainingStartPositionOfInlineTextHasChangedFormat,TInt& aNumberOfCharactersSuccessfullyDeleted,TInt& aNumberOfCharactersSuccessfullyInserted,TInt& aPositionOfInsertionPointInDocument,TInt aNewPositionOfInsertionPointInDocument);
|
sl@0
|
240 |
|
sl@0
|
241 |
IMPORT_C virtual void ExtendedInterface(TAny*& aInterface, TUid aInterfaceId);
|
sl@0
|
242 |
|
sl@0
|
243 |
IMPORT_C TInt GetPositionOfInlineTextInDocument() const;
|
sl@0
|
244 |
IMPORT_C TInt GetLengthOfInlineText() const;
|
sl@0
|
245 |
|
sl@0
|
246 |
/** Storage type */
|
sl@0
|
247 |
enum TDocumentStorage
|
sl@0
|
248 |
{
|
sl@0
|
249 |
/** Storage uses a flat buffer (CBufFlat). */
|
sl@0
|
250 |
EFlatStorage,
|
sl@0
|
251 |
/** Storage uses a segmented buffer (CBufSeg). */
|
sl@0
|
252 |
ESegmentedStorage
|
sl@0
|
253 |
};
|
sl@0
|
254 |
|
sl@0
|
255 |
/** Miscellaneous constants. */
|
sl@0
|
256 |
enum
|
sl@0
|
257 |
{
|
sl@0
|
258 |
/** Granularity of the buffer, default 256 characters. */
|
sl@0
|
259 |
EDefaultTextGranularity = 256
|
sl@0
|
260 |
};
|
sl@0
|
261 |
|
sl@0
|
262 |
/*
|
sl@0
|
263 |
Useful Unicode character definitions.
|
sl@0
|
264 |
ETEXT uses standard Unicode to store its text. In particular 0x2029 and 0x2028 are used
|
sl@0
|
265 |
as paragraph separator and forced line break respectively.
|
sl@0
|
266 |
*/
|
sl@0
|
267 |
enum
|
sl@0
|
268 |
{ // Unicode name, etc.
|
sl@0
|
269 |
/** Tab stop. */
|
sl@0
|
270 |
ETabCharacter = 0x0009, // horizontal tabulation
|
sl@0
|
271 |
/** New page. */
|
sl@0
|
272 |
EPageBreak = 0x000C, // form feed
|
sl@0
|
273 |
/** Visible space character. */
|
sl@0
|
274 |
ESpace = 0x0020, // space
|
sl@0
|
275 |
EApostrophe = 0x0027, // apostrophe
|
sl@0
|
276 |
EHyphenMinus = 0x002D, // hyphen-minus; generally used for hyphen, but see 0x2010
|
sl@0
|
277 |
/** A hard (non-breaking) space. */
|
sl@0
|
278 |
ENonBreakingSpace = 0x00A0, // no-break space
|
sl@0
|
279 |
/** A soft hyphen (ensures that a hyphen followed by a new line will be
|
sl@0
|
280 |
inserted at that point should a line break be required anywhere within
|
sl@0
|
281 |
the word).
|
sl@0
|
282 |
*/
|
sl@0
|
283 |
EPotentialHyphen = 0x00AD, // soft hyphen
|
sl@0
|
284 |
EHyphen = 0x2010, // hyphen; intended as an unambiguous hyphen codepoint
|
sl@0
|
285 |
/** A hard (non-breaking) hyphen. */
|
sl@0
|
286 |
ENonBreakingHyphen = 0x2011, // non-breaking hyphen
|
sl@0
|
287 |
ELeftSingleQuote = 0x2018, // left single quotation mark
|
sl@0
|
288 |
ERightSingleQuote = 0x2019, // right single quotation mark
|
sl@0
|
289 |
ELeftDoubleQuote = 0x201C, // left double quotation mark
|
sl@0
|
290 |
ERightDoubleQuote = 0x201D, // right double quotation mark
|
sl@0
|
291 |
EBullet = 0x2022, // bullet
|
sl@0
|
292 |
EEllipsis = 0x2026, // horizontal ellipsis
|
sl@0
|
293 |
/** Forced line break. */
|
sl@0
|
294 |
ELineBreak = 0x2028, // line separator
|
sl@0
|
295 |
/** Paragraph delimiter. */
|
sl@0
|
296 |
EParagraphDelimiter = 0x2029, // paragraph separator
|
sl@0
|
297 |
/** Represents a picture inserted into the text object. */
|
sl@0
|
298 |
EPictureCharacter = 0xFFFC, // object replacement character
|
sl@0
|
299 |
EZeroWidthNoBreakSpace = 0xFEFF,// zero-width no-break space
|
sl@0
|
300 |
EByteOrderMark = 0xFEFF, // byte order mark; SAME AS zero-width no-break space
|
sl@0
|
301 |
EReversedByteOrderMark = 0xFFFE // not a character; evidence of endianness opposite to that of platform
|
sl@0
|
302 |
};
|
sl@0
|
303 |
|
sl@0
|
304 |
protected:
|
sl@0
|
305 |
// support for front-end-processor inline-editing
|
sl@0
|
306 |
IMPORT_C void OverrideFormatOfInlineTextIfApplicable(TPtrC& aView,TCharFormat& aFormat,TInt aStartPos) const;
|
sl@0
|
307 |
|
sl@0
|
308 |
TBool iHasChanged;
|
sl@0
|
309 |
|
sl@0
|
310 |
private:
|
sl@0
|
311 |
void SetAndTransferOwnershipOfInlineEditDataL(CInlineEditData* aInlineEditData);
|
sl@0
|
312 |
CInlineEditData* InlineEditData() const;
|
sl@0
|
313 |
void DeleteInlineEditDataAndSetToNull();
|
sl@0
|
314 |
TBool DeleteWithoutDestroyingFormatL(TInt aPos, TInt aLength);
|
sl@0
|
315 |
|
sl@0
|
316 |
CEditableTextOptionalData* iOptionalData;
|
sl@0
|
317 |
};
|
sl@0
|
318 |
|
sl@0
|
319 |
|
sl@0
|
320 |
// Information relating to the number of components owned by an editable text instance.
|
sl@0
|
321 |
|
sl@0
|
322 |
/**
|
sl@0
|
323 |
Provides information about the number of components owned by an editable
|
sl@0
|
324 |
text object.
|
sl@0
|
325 |
|
sl@0
|
326 |
Components are fields and (rich text only), pictures and styles.
|
sl@0
|
327 |
|
sl@0
|
328 |
An instance of this class is returned by CPlainText::ComponentInfo() and by
|
sl@0
|
329 |
CRichText::ComponentInfo().
|
sl@0
|
330 |
@publishedAll
|
sl@0
|
331 |
@released
|
sl@0
|
332 |
*/
|
sl@0
|
333 |
class TEtextComponentInfo
|
sl@0
|
334 |
{
|
sl@0
|
335 |
public:
|
sl@0
|
336 |
IMPORT_C TEtextComponentInfo();
|
sl@0
|
337 |
IMPORT_C TEtextComponentInfo(TInt aFieldCount,TInt aPictureCount,TInt aStyleCount);
|
sl@0
|
338 |
public:
|
sl@0
|
339 |
/** The number of fields in the text object. */
|
sl@0
|
340 |
TInt iFieldCount;
|
sl@0
|
341 |
/** The number of pictures in the text object (rich text only). */
|
sl@0
|
342 |
TInt iPictureCount;
|
sl@0
|
343 |
/** The number of styles owned or referenced by the text object (rich text only). */
|
sl@0
|
344 |
TInt iStyleCount;
|
sl@0
|
345 |
};
|
sl@0
|
346 |
|
sl@0
|
347 |
/**
|
sl@0
|
348 |
Page table.
|
sl@0
|
349 |
|
sl@0
|
350 |
This is an array of integers; each integer represents the number or characters
|
sl@0
|
351 |
on a page.
|
sl@0
|
352 |
@publishedAll
|
sl@0
|
353 |
@released
|
sl@0
|
354 |
*/
|
sl@0
|
355 |
typedef CArrayFix<TInt> TPageTable;
|
sl@0
|
356 |
|
sl@0
|
357 |
/**
|
sl@0
|
358 |
Stores and manipulates plain text.
|
sl@0
|
359 |
|
sl@0
|
360 |
Plain text cannot be displayed, so this class provides no support for formatting.
|
sl@0
|
361 |
It is purely an in-memory buffer for text, and provides services that act
|
sl@0
|
362 |
upon it. These services include the following: import from and export to streams,
|
sl@0
|
363 |
optionally translating between Unicode and other encodings; reading and writing
|
sl@0
|
364 |
of field data; extraction of text; finding word and paragraph boundaries.
|
sl@0
|
365 |
|
sl@0
|
366 |
The type and size of in-memory buffer can be specified upon object construction.
|
sl@0
|
367 |
However, if no specification is provided a buffer is provided with default
|
sl@0
|
368 |
settings. There are two types of storage buffer: segmented buffers and flat
|
sl@0
|
369 |
buffers. The default buffer for plain text is segmented (CBufSeg). This is
|
sl@0
|
370 |
most efficient when a large quantity of text is to be stored, or will have
|
sl@0
|
371 |
a large dynamic range. A flat buffer (CBufFlat) is most appropriate for storing
|
sl@0
|
372 |
small quantities of text of bounded length. For most uses, however, a segmented
|
sl@0
|
373 |
buffer is sufficient.
|
sl@0
|
374 |
@publishedAll
|
sl@0
|
375 |
@released
|
sl@0
|
376 |
*/
|
sl@0
|
377 |
class CPlainText: public CEditableText
|
sl@0
|
378 |
{
|
sl@0
|
379 |
public:
|
sl@0
|
380 |
/** Line delimiter translation. */
|
sl@0
|
381 |
enum TTextOrganisation
|
sl@0
|
382 |
{
|
sl@0
|
383 |
|
sl@0
|
384 |
/** When importing text from a text file, all line feeds are
|
sl@0
|
385 |
converted into paragraph delimiters.
|
sl@0
|
386 |
|
sl@0
|
387 |
When exporting text to a text file, lines do not wrap and paragraph
|
sl@0
|
388 |
delimiters are converted into CR/LF pairs. */
|
sl@0
|
389 |
EOrganiseByParagraph,
|
sl@0
|
390 |
/** When importing text from a text file, a single line feed or a
|
sl@0
|
391 |
line feed followed by a carriage return is converted into a space
|
sl@0
|
392 |
character. A line feed which is followed by another line feed is
|
sl@0
|
393 |
converted into a CEditableText::EParagraphDelimiter.
|
sl@0
|
394 |
|
sl@0
|
395 |
When exporting text to a text file, lines wrap at the specified wrap
|
sl@0
|
396 |
width and paragraph delimiters are converted into CR/LFs pairs. */
|
sl@0
|
397 |
EOrganiseByLine
|
sl@0
|
398 |
};
|
sl@0
|
399 |
|
sl@0
|
400 |
/** Scan mask values. */
|
sl@0
|
401 |
enum
|
sl@0
|
402 |
{
|
sl@0
|
403 |
/** Scan direction is backwards. The default is forwards. */
|
sl@0
|
404 |
EScanBackwards = 0x01,
|
sl@0
|
405 |
/** If the current document position is a word or paragraph boundary, no
|
sl@0
|
406 |
scan occurs.*/
|
sl@0
|
407 |
EScanStayIfBoundary = 0x02,
|
sl@0
|
408 |
/** Scan to the first character in the word or paragraph. */
|
sl@0
|
409 |
EScanToUnitStart = 0x04,
|
sl@0
|
410 |
/** Scan to the last character in the word or paragraph. */
|
sl@0
|
411 |
EScanToUnitEnd = 0x08,
|
sl@0
|
412 |
/** Treat adjacent word or paragraph delimiters as a single delimiter.
|
sl@0
|
413 |
Required when performing a word count, for example.
|
sl@0
|
414 |
*/
|
sl@0
|
415 |
EScanJoinDelimiters = 0x10,
|
sl@0
|
416 |
/** Picture characters are considered to be word delimiters. */
|
sl@0
|
417 |
EScanPictureIsDelimiter = 0x20,
|
sl@0
|
418 |
/** Punctuation characters, except hyphens and apostrophes, are considered
|
sl@0
|
419 |
to be word delimiters. */
|
sl@0
|
420 |
EScanPunctuationIsDelimiter = 0x40
|
sl@0
|
421 |
};
|
sl@0
|
422 |
|
sl@0
|
423 |
|
sl@0
|
424 |
/** Used in text scanning functions to indicate the end of the document
|
sl@0
|
425 |
has been passed. */
|
sl@0
|
426 |
enum TScanDataEnd
|
sl@0
|
427 |
{
|
sl@0
|
428 |
/** Indicates that a scan has passed the end of text paragraph delimiter. */
|
sl@0
|
429 |
EScanEndOfData = -1
|
sl@0
|
430 |
};
|
sl@0
|
431 |
|
sl@0
|
432 |
class TImportExportParam
|
sl@0
|
433 |
/** Parameters for importing or exporting text using
|
sl@0
|
434 |
CPlainText::ImportTextL() or CPlainText::ExportTextL(). */
|
sl@0
|
435 |
{
|
sl@0
|
436 |
public:
|
sl@0
|
437 |
TImportExportParam():
|
sl@0
|
438 |
iOrganisation(EOrganiseByParagraph),
|
sl@0
|
439 |
iMaxOutputChars(KMaxTInt),
|
sl@0
|
440 |
iMaxInputChars(KMaxTInt),
|
sl@0
|
441 |
iMaxLineLength(KMaxTInt),
|
sl@0
|
442 |
iOutputInternal(FALSE),
|
sl@0
|
443 |
iInputInternal(FALSE),
|
sl@0
|
444 |
iForeignEncoding(0),
|
sl@0
|
445 |
iGuessForeignEncoding(FALSE),
|
sl@0
|
446 |
iFileSession(NULL),
|
sl@0
|
447 |
iReserved(0)
|
sl@0
|
448 |
/** Default constructor. All member data is assigned default values.
|
sl@0
|
449 |
For details, see the member data. */
|
sl@0
|
450 |
{
|
sl@0
|
451 |
}
|
sl@0
|
452 |
|
sl@0
|
453 |
/** Controls how line delimiters are translated. By default,
|
sl@0
|
454 |
EOrganiseByParagraph.
|
sl@0
|
455 |
|
sl@0
|
456 |
@see CPlainText::TTextOrganisation */
|
sl@0
|
457 |
TTextOrganisation iOrganisation;
|
sl@0
|
458 |
/** The maximum number of characters to write to the stream (when
|
sl@0
|
459 |
exporting) or to write to the text object (when importing). By default,
|
sl@0
|
460 |
KMaxTInt. */
|
sl@0
|
461 |
TInt iMaxOutputChars;
|
sl@0
|
462 |
/** The maximum number of characters to read from the stream (when
|
sl@0
|
463 |
importing) or to read from the text object (when exporting). By
|
sl@0
|
464 |
default, KMaxTInt. */
|
sl@0
|
465 |
TInt iMaxInputChars;
|
sl@0
|
466 |
/** The wrap width as a number of characters.
|
sl@0
|
467 |
|
sl@0
|
468 |
Only relevant when exporting by line, (iOrganisation is
|
sl@0
|
469 |
CPlainText::EOrganiseByLine). Not used in CPlainText::ImportTextL().
|
sl@0
|
470 |
By default, KMaxTInt. */
|
sl@0
|
471 |
TInt iMaxLineLength; // maximum line length when exporting text
|
sl@0
|
472 |
/** If ETrue, output is in internal format, so is written according to
|
sl@0
|
473 |
native endianness. Used in CPlainText::ExportTextL(). By default,
|
sl@0
|
474 |
EFalse. */
|
sl@0
|
475 |
TBool iOutputInternal;
|
sl@0
|
476 |
/** If ETrue, input is in internal format, so is read according to
|
sl@0
|
477 |
native endianness. Used in CPlainText::ImportTextL(). By default,
|
sl@0
|
478 |
EFalse. */
|
sl@0
|
479 |
TBool iInputInternal;
|
sl@0
|
480 |
/** The identifier of the foreign character set encoding to be used
|
sl@0
|
481 |
to convert from or to.
|
sl@0
|
482 |
|
sl@0
|
483 |
Not used if iGuessForeignEncoding is true. If conversion to/from
|
sl@0
|
484 |
iForeignEncoding is not available on the phone, the function leaves
|
sl@0
|
485 |
with KErrNotSupported. By default, zero. */
|
sl@0
|
486 |
TUint iForeignEncoding;
|
sl@0
|
487 |
/** If ETrue, an attempt is made to guess the encoding of the foreign
|
sl@0
|
488 |
text being imported before converting it into Unicode. Used in
|
sl@0
|
489 |
CPlainText::ImportTextL(). If EFalse, the value specified in
|
sl@0
|
490 |
iForeignEncoding (if any) is used. If none of the available character
|
sl@0
|
491 |
conversion plug-ins on the phone return a confidence level greater
|
sl@0
|
492 |
than 50%, CPlainText::ImportTextL() leaves with KErrNotSupported.
|
sl@0
|
493 |
By default, false. */
|
sl@0
|
494 |
TBool iGuessForeignEncoding;
|
sl@0
|
495 |
/** If non-null, a connected file server session used to load character
|
sl@0
|
496 |
conversion data. Only relevant if the text needs to be converted to or
|
sl@0
|
497 |
from Unicode. By default, null. */
|
sl@0
|
498 |
RFs* iFileSession;
|
sl@0
|
499 |
TUint iReserved;
|
sl@0
|
500 |
};
|
sl@0
|
501 |
|
sl@0
|
502 |
class TImportExportResult
|
sl@0
|
503 |
/** Results of importing or exporting text using CPlainText::ImportTextL()
|
sl@0
|
504 |
or CPlainText::ExportTextL(). */
|
sl@0
|
505 |
{
|
sl@0
|
506 |
public:
|
sl@0
|
507 |
TImportExportResult():
|
sl@0
|
508 |
iOutputChars(0),
|
sl@0
|
509 |
iInputChars(0),
|
sl@0
|
510 |
iForeignEncoding(0),
|
sl@0
|
511 |
iReserved(0)
|
sl@0
|
512 |
/** Default constructor. All member data is initialised to zero. */
|
sl@0
|
513 |
{
|
sl@0
|
514 |
}
|
sl@0
|
515 |
|
sl@0
|
516 |
/** The number of characters written to the stream (when exporting) or
|
sl@0
|
517 |
written to this text object (when importing). */
|
sl@0
|
518 |
TInt iOutputChars;
|
sl@0
|
519 |
/** The number of characters read from the stream (when importing) or
|
sl@0
|
520 |
read from this text object (when exporting). */
|
sl@0
|
521 |
TInt iInputChars;
|
sl@0
|
522 |
/** The identifier for the character set encoding selected when
|
sl@0
|
523 |
importing text whose encoding is guessed (iGuessForeignEncoding was
|
sl@0
|
524 |
true). */
|
sl@0
|
525 |
TUint iForeignEncoding; // foreign encoding actually used; useful if the encoding was guessed
|
sl@0
|
526 |
TUint iReserved;
|
sl@0
|
527 |
};
|
sl@0
|
528 |
|
sl@0
|
529 |
IMPORT_C static CPlainText* NewL(TDocumentStorage aStorage = ESegmentedStorage,
|
sl@0
|
530 |
TInt aDefaultTextGranularity = EDefaultTextGranularity);
|
sl@0
|
531 |
IMPORT_C static CPlainText* NewL(const CStreamStore& aStore,TStreamId aStreamId,
|
sl@0
|
532 |
MTextFieldFactory* aFieldFactory = NULL,
|
sl@0
|
533 |
TDocumentStorage aStorage = ESegmentedStorage);
|
sl@0
|
534 |
IMPORT_C virtual ~CPlainText();
|
sl@0
|
535 |
|
sl@0
|
536 |
// primary persistence functions
|
sl@0
|
537 |
IMPORT_C virtual void StoreComponentsL(CStreamStore& aStore,CStoreMap& aMap) const;
|
sl@0
|
538 |
IMPORT_C virtual void RestoreComponentsL(const CStreamStore& aStore);
|
sl@0
|
539 |
IMPORT_C virtual void ExternalizeL(RWriteStream& aStream) const;
|
sl@0
|
540 |
IMPORT_C virtual void InternalizeL(RReadStream& aStream);
|
sl@0
|
541 |
|
sl@0
|
542 |
// secondary persistence functions
|
sl@0
|
543 |
IMPORT_C void ExternalizePlainTextL(RWriteStream& aStream) const;
|
sl@0
|
544 |
IMPORT_C void InternalizePlainTextL(RReadStream& aStream);
|
sl@0
|
545 |
IMPORT_C void ExternalizePlainTextNoLengthCountL(RWriteStream& aStream) const; // Deprecated
|
sl@0
|
546 |
IMPORT_C void InternalizePlainTextL(RReadStream& aStream,TInt aLength); // Deprecated
|
sl@0
|
547 |
|
sl@0
|
548 |
// import and export text
|
sl@0
|
549 |
IMPORT_C void ImportTextL(TInt aPos,RReadStream& aInput,TTextOrganisation aTextOrganisation,
|
sl@0
|
550 |
TInt aMaxOutputChars = KMaxTInt,TInt aMaxInputChars = KMaxTInt,
|
sl@0
|
551 |
TInt* aOutputChars = NULL,TInt* aInputChars = NULL);
|
sl@0
|
552 |
IMPORT_C void ExportTextL(TInt aPos,RWriteStream& aOutput,TTextOrganisation aTextOrganisation,
|
sl@0
|
553 |
TInt aMaxOutputChars = KMaxTInt,TInt aMaxInputChars = KMaxTInt,
|
sl@0
|
554 |
TInt aMaxLineLength = KMaxTInt,
|
sl@0
|
555 |
TInt* aOutputChars = NULL,TInt* aInputChars = NULL) const;
|
sl@0
|
556 |
IMPORT_C virtual TInt ImportTextFileL(TInt aPos,const TDes& aFileName,TTextOrganisation aTextOrganisation);
|
sl@0
|
557 |
IMPORT_C virtual void ExportAsTextL(const TDes& aFileName,TTextOrganisation aTextOrganisation,
|
sl@0
|
558 |
TInt aMaxLineLength) const;
|
sl@0
|
559 |
|
sl@0
|
560 |
// import and export text AND optionally translate from or to a non-Unicode encoding
|
sl@0
|
561 |
IMPORT_C void ImportTextL(TInt aPos,RReadStream& aInput,
|
sl@0
|
562 |
const TImportExportParam& aParam,TImportExportResult& aResult);
|
sl@0
|
563 |
IMPORT_C void ExportTextL(TInt aPos,RWriteStream& aOutput,
|
sl@0
|
564 |
const TImportExportParam& aParam,TImportExportResult& aResult) const;
|
sl@0
|
565 |
|
sl@0
|
566 |
// read and write field data
|
sl@0
|
567 |
IMPORT_C void StoreFieldComponentsL(CStreamStore& aStore,CStoreMap& aMap) const;
|
sl@0
|
568 |
IMPORT_C void RestoreFieldComponentsL(const CStreamStore& aStore);
|
sl@0
|
569 |
IMPORT_C void ExternalizeFieldDataL(RWriteStream& aStream) const;
|
sl@0
|
570 |
IMPORT_C void InternalizeFieldDataL(RReadStream& aStream);
|
sl@0
|
571 |
|
sl@0
|
572 |
// modifier functions
|
sl@0
|
573 |
IMPORT_C virtual void Reset();
|
sl@0
|
574 |
IMPORT_C virtual void InsertL(TInt aPos,const TChar& aChar);
|
sl@0
|
575 |
IMPORT_C virtual void InsertL(TInt aPos,const TDesC& aBuf);
|
sl@0
|
576 |
IMPORT_C virtual TBool DeleteL(TInt aPos,TInt aLength);
|
sl@0
|
577 |
|
sl@0
|
578 |
// interrogation functions
|
sl@0
|
579 |
IMPORT_C virtual TPtrC Read(TInt aStartPos) const;
|
sl@0
|
580 |
IMPORT_C virtual TPtrC Read(TInt aStartPos,TInt aLength) const;
|
sl@0
|
581 |
IMPORT_C virtual void Extract(TDes& aBuf,TInt aPos=0) const;
|
sl@0
|
582 |
IMPORT_C virtual void Extract(TDes& aBuf,TInt aPos,TInt aLength) const;
|
sl@0
|
583 |
|
sl@0
|
584 |
// Flags for ExtractSelectively
|
sl@0
|
585 |
enum
|
sl@0
|
586 |
{
|
sl@0
|
587 |
EExtractAll = 0, // extract all characters
|
sl@0
|
588 |
EExtractVisible = 1, // discard control characters and soft hyphens; change par and line separators to spaces
|
sl@0
|
589 |
EExcludeInlineEditedText = 2 // discard the inline text
|
sl@0
|
590 |
};
|
sl@0
|
591 |
IMPORT_C void ExtractSelectively(TDes& aBuf,TInt aPos,TInt aLength,TUint aFlags);
|
sl@0
|
592 |
|
sl@0
|
593 |
// copy and paste
|
sl@0
|
594 |
IMPORT_C virtual void CopyToStoreL(CStreamStore& aStore,CStreamDictionary& aDictionary,TInt aPos,TInt aLength) const;
|
sl@0
|
595 |
IMPORT_C virtual TInt PasteFromStoreL(const CStreamStore& aStore,const CStreamDictionary& aDictionary,TInt aPos);
|
sl@0
|
596 |
|
sl@0
|
597 |
// utility functions
|
sl@0
|
598 |
IMPORT_C void SetPageTable(TPageTable* aPageTable);
|
sl@0
|
599 |
IMPORT_C TInt PageContainingPos(TInt aPos) const;
|
sl@0
|
600 |
IMPORT_C virtual TInt DocumentLength() const;
|
sl@0
|
601 |
IMPORT_C virtual TInt WordCount() const;
|
sl@0
|
602 |
IMPORT_C virtual TInt ParagraphCount() const;
|
sl@0
|
603 |
IMPORT_C virtual TInt ToParagraphStart(TInt& aPos) const;
|
sl@0
|
604 |
IMPORT_C virtual TInt CharPosOfParagraph(TInt& aLength,TInt aParaOffset) const;
|
sl@0
|
605 |
IMPORT_C virtual TInt ParagraphNumberForPos(TInt& aPos) const;
|
sl@0
|
606 |
IMPORT_C virtual void GetWordInfo(TInt aCurrentPos,TInt& aStartPos,TInt& aLength,
|
sl@0
|
607 |
TBool aPictureIsDelimiter,TBool aPunctuationIsDelimiter) const;
|
sl@0
|
608 |
IMPORT_C virtual TInt ScanWords(TInt& aPos,TUint& aScanMask) const;
|
sl@0
|
609 |
IMPORT_C virtual TInt ScanParas(TInt& aPos,TUint& aScanMask) const;
|
sl@0
|
610 |
IMPORT_C virtual TEtextComponentInfo ComponentInfo() const;
|
sl@0
|
611 |
//
|
sl@0
|
612 |
// Field functions
|
sl@0
|
613 |
IMPORT_C void SetFieldFactory(MTextFieldFactory* aFactory);
|
sl@0
|
614 |
IMPORT_C const MTextFieldFactory* FieldFactory() const;
|
sl@0
|
615 |
IMPORT_C CTextField* NewTextFieldL(TUid aFieldType) const;
|
sl@0
|
616 |
IMPORT_C void InsertFieldL(TInt aPos,CTextField* aField,TUid aFieldType);
|
sl@0
|
617 |
IMPORT_C virtual void UpdateFieldL(TInt aPos);
|
sl@0
|
618 |
IMPORT_C void UpdateAllFieldsL();
|
sl@0
|
619 |
IMPORT_C TInt FieldCount() const;
|
sl@0
|
620 |
IMPORT_C const CTextField* TextField(TInt aPos) const;
|
sl@0
|
621 |
IMPORT_C TBool FindFields(TInt aPos) const;
|
sl@0
|
622 |
IMPORT_C TBool FindFields(TFindFieldInfo& aInfo,TInt aPos,TInt aRange=0) const;
|
sl@0
|
623 |
IMPORT_C TBool RemoveField(TInt aPos);
|
sl@0
|
624 |
IMPORT_C TBool ConvertFieldToText(TInt aPos);
|
sl@0
|
625 |
IMPORT_C void ConvertAllFieldsToText();
|
sl@0
|
626 |
|
sl@0
|
627 |
IMPORT_C void ExtendedInterface(TAny*& aInterface, TUid aInterfaceId); // from CEditableText
|
sl@0
|
628 |
|
sl@0
|
629 |
protected:
|
sl@0
|
630 |
IMPORT_C CPlainText();
|
sl@0
|
631 |
IMPORT_C void ConstructL(TDocumentStorage aStorage = ESegmentedStorage,
|
sl@0
|
632 |
TInt aDefaultTextGranularity = EDefaultTextGranularity);
|
sl@0
|
633 |
IMPORT_C void ConstructL(const CStreamStore& aStore,TStreamId aStreamId,MTextFieldFactory* aFieldFactory,
|
sl@0
|
634 |
TDocumentStorage aStorage = ESegmentedStorage);
|
sl@0
|
635 |
IMPORT_C void DoConstructL(TDocumentStorage aStorage,TInt aDefaultTextGranularity,
|
sl@0
|
636 |
MTextFieldFactory* aFieldFactory = NULL);
|
sl@0
|
637 |
void DoExtract(TDes& aBuf,TInt aPos,TInt aLength,TUint aFlags = 0) const;
|
sl@0
|
638 |
IMPORT_C void PtInsertL(TInt aInsertPos,const TDesC& aBuf);
|
sl@0
|
639 |
IMPORT_C void DoPtInsertL(TInt aPos,const TDesC& aBuf);
|
sl@0
|
640 |
IMPORT_C TBool DoPtDelete(TInt aPos,TInt aLength);
|
sl@0
|
641 |
void InsertL(TInt aPos,const CPlainText* aText);
|
sl@0
|
642 |
TBool Delete(TInt aPos,TInt aLength);
|
sl@0
|
643 |
|
sl@0
|
644 |
// streaming
|
sl@0
|
645 |
IMPORT_C void DoExternalizeFieldDataL(RWriteStream& aStream) const;
|
sl@0
|
646 |
IMPORT_C void DoInternalizeFieldDataL(RReadStream& aStream);
|
sl@0
|
647 |
IMPORT_C void DoExternalizePlainTextL(RWriteStream& aStream) const;
|
sl@0
|
648 |
IMPORT_C void DoInternalizePlainTextL(RReadStream& aStream);
|
sl@0
|
649 |
TStreamId DoCopyToStoreL(CStreamStore& aStore,CStreamDictionary& aDictionary,TInt aPos,TInt aLength) const;
|
sl@0
|
650 |
TInt DoPasteFromStoreL(const CStreamStore& aStore,TStreamId aStreamId,TInt aPos);
|
sl@0
|
651 |
void CopyComponentsL(CStreamStore& aStore,CStoreMap& aMap,TInt aPos,TInt aLength) const;
|
sl@0
|
652 |
void PasteComponentsL(const CStreamStore& aStore,TInt aPos);
|
sl@0
|
653 |
void CopyToStreamL(RWriteStream& aStream,TInt aPos,TInt aLength) const;
|
sl@0
|
654 |
|
sl@0
|
655 |
// utility functions
|
sl@0
|
656 |
inline static void ConsumeAdornmentL(RReadStream& aStream);
|
sl@0
|
657 |
inline static TUid UidFromStreamL(RReadStream& aStream);
|
sl@0
|
658 |
protected:
|
sl@0
|
659 |
enum
|
sl@0
|
660 |
{
|
sl@0
|
661 |
EImportBufSize = 512,
|
sl@0
|
662 |
EBiggestCharacterPaste=0x100000
|
sl@0
|
663 |
};
|
sl@0
|
664 |
|
sl@0
|
665 |
enum TUnitOfText
|
sl@0
|
666 |
{
|
sl@0
|
667 |
EUnitIsWord,
|
sl@0
|
668 |
EUnitIsParagraph
|
sl@0
|
669 |
};
|
sl@0
|
670 |
|
sl@0
|
671 |
struct SScanData
|
sl@0
|
672 |
{
|
sl@0
|
673 |
TInt pos; // current character position
|
sl@0
|
674 |
TInt oldPos; // old character position
|
sl@0
|
675 |
TText* buf; // address of data (Unicode-aware)
|
sl@0
|
676 |
TInt currentSegLen; // number of characters left in segment
|
sl@0
|
677 |
TInt totalBufLen; // number of unread characters
|
sl@0
|
678 |
TInt delta; // specifies current scan direction
|
sl@0
|
679 |
TUint32 scanMask; // bitmask containing the scan settings
|
sl@0
|
680 |
enum
|
sl@0
|
681 |
{
|
sl@0
|
682 |
EInsideUnit = 0x10000000,
|
sl@0
|
683 |
EStopEnd = 0x20000000,
|
sl@0
|
684 |
EStopBegin = 0x40000000,
|
sl@0
|
685 |
EIsDelimiter = 0x80000000
|
sl@0
|
686 |
};
|
sl@0
|
687 |
};
|
sl@0
|
688 |
|
sl@0
|
689 |
private:
|
sl@0
|
690 |
CPlainText(const CPlainText& aPlainTextDoc);
|
sl@0
|
691 |
CPlainText& operator=(const CPlainText& aPlainTextDoc);
|
sl@0
|
692 |
TInt PasteFromStreamL(RReadStream& aStream,TInt aPos);
|
sl@0
|
693 |
TInt DoPasteFromStreamL(RReadStream& aStream, TInt aPos);
|
sl@0
|
694 |
void InsertEodL();
|
sl@0
|
695 |
void InitScanControl(TInt& aPos,TUint& aScanMask,TUnitOfText aContext,SScanData& aScanData) const;
|
sl@0
|
696 |
void InitScanData(TInt aPos,SScanData& aScanData) const;
|
sl@0
|
697 |
void KillFieldSet();
|
sl@0
|
698 |
TInt CountUnits(TUnitOfText aContext) const;
|
sl@0
|
699 |
TInt ScanUnit(TInt& aPos,TUnitOfText aContext,SScanData& aScanData) const;
|
sl@0
|
700 |
TBool TestForDelimiter(TUnitOfText aContext,SScanData& aScanData) const;
|
sl@0
|
701 |
TBool GetChar(SScanData& aScanData,TChar& aChar) const;
|
sl@0
|
702 |
void UpdatePageTable(TInt aPos,TInt aLength);
|
sl@0
|
703 |
inline TBool FieldSetPresent() const;
|
sl@0
|
704 |
void CreateFieldSetL(TInt aDocumentLength);
|
sl@0
|
705 |
|
sl@0
|
706 |
IMPORT_C virtual void Reserved_2(); // new
|
sl@0
|
707 |
|
sl@0
|
708 |
void* iReserved_1;
|
sl@0
|
709 |
|
sl@0
|
710 |
protected:
|
sl@0
|
711 |
CBufBase* iByteStore; // handle to document storage class.
|
sl@0
|
712 |
TSwizzle<CTextFieldSet> iFieldSet; // handle to field storage class
|
sl@0
|
713 |
TPageTable* iPageTable; // may be NULL
|
sl@0
|
714 |
MTextFieldFactory* iFieldFactory; // temporary handle to field factory during restoration
|
sl@0
|
715 |
|
sl@0
|
716 |
__DECLARE_TEST;
|
sl@0
|
717 |
};
|
sl@0
|
718 |
|
sl@0
|
719 |
|
sl@0
|
720 |
#include <txtetext.inl>
|
sl@0
|
721 |
|
sl@0
|
722 |
#endif // __TXTETEXT_H__
|