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 __TXTSTD_H__
|
sl@0
|
20 |
#define __TXTSTD_H__
|
sl@0
|
21 |
|
sl@0
|
22 |
#include <e32std.h>
|
sl@0
|
23 |
#include <txtfrmat.h>
|
sl@0
|
24 |
|
sl@0
|
25 |
class TCharFormatX
|
sl@0
|
26 |
/**
|
sl@0
|
27 |
The extended character format used internally.
|
sl@0
|
28 |
As well as the public TCharFormat attributes it stores
|
sl@0
|
29 |
any attributes that are useful only inside ETEXT.
|
sl@0
|
30 |
@internalComponent
|
sl@0
|
31 |
*/
|
sl@0
|
32 |
{
|
sl@0
|
33 |
public:
|
sl@0
|
34 |
TCharFormatX(): iParserTag(0) { }
|
sl@0
|
35 |
TCharFormatX(const TCharFormat& aCharFormat): iCharFormat(aCharFormat), iParserTag(0) { }
|
sl@0
|
36 |
|
sl@0
|
37 |
TCharFormat iCharFormat;
|
sl@0
|
38 |
TUint iParserTag;
|
sl@0
|
39 |
};
|
sl@0
|
40 |
|
sl@0
|
41 |
/**
|
sl@0
|
42 |
Attributes not used in the format masks, but used to store system colour indices, etc.
|
sl@0
|
43 |
This method maintains data compatibility. For example, a paragraph fill colour, including its
|
sl@0
|
44 |
fourth byte that is used as the system colour index, is selected by a single mask but corresponding
|
sl@0
|
45 |
to EAttFillColor, but is stored using two attribute flags: one for the three bytes of the RGB colour,
|
sl@0
|
46 |
and one extra optional one for the system colour index.
|
sl@0
|
47 |
@internalComponent
|
sl@0
|
48 |
*/
|
sl@0
|
49 |
enum TTextFormatNonMaskableAttribute
|
sl@0
|
50 |
{
|
sl@0
|
51 |
EAttFillSystemColor = ETextFormatAttributeCount,
|
sl@0
|
52 |
EAttBulletSystemColor,
|
sl@0
|
53 |
EAttTopBorderSystemColor,
|
sl@0
|
54 |
EAttBottomBorderSystemColor,
|
sl@0
|
55 |
EAttLeftBorderSystemColor,
|
sl@0
|
56 |
EAttRightBorderSystemColor,
|
sl@0
|
57 |
EAttTextSystemColor,
|
sl@0
|
58 |
EAttFontHighlightSystemColor,
|
sl@0
|
59 |
EAttParaLanguageX,
|
sl@0
|
60 |
EAttCharLanguageX,
|
sl@0
|
61 |
EAttBulletX,
|
sl@0
|
62 |
EAttBitmapType,
|
sl@0
|
63 |
|
sl@0
|
64 |
EExternalizedAttributeCount
|
sl@0
|
65 |
};
|
sl@0
|
66 |
|
sl@0
|
67 |
|
sl@0
|
68 |
/**
|
sl@0
|
69 |
Attributes used to mask internal character attributes.
|
sl@0
|
70 |
@internalComponent
|
sl@0
|
71 |
*/
|
sl@0
|
72 |
enum TCharFormatXAttribute
|
sl@0
|
73 |
{
|
sl@0
|
74 |
EAttParserTag = EExternalizedAttributeCount,
|
sl@0
|
75 |
|
sl@0
|
76 |
EAttributeCount
|
sl@0
|
77 |
};
|
sl@0
|
78 |
|
sl@0
|
79 |
class TCharFormatXMask: public TCharFormatMask
|
sl@0
|
80 |
/**
|
sl@0
|
81 |
A mask that can deal with TCharFormatXAttributes as well as TTextFormatAttributes
|
sl@0
|
82 |
@internalComponent
|
sl@0
|
83 |
*/
|
sl@0
|
84 |
{
|
sl@0
|
85 |
public:
|
sl@0
|
86 |
TCharFormatXMask(): TCharFormatMask() { }
|
sl@0
|
87 |
TCharFormatXMask(TCharFormatMask aMask): TCharFormatMask(aMask) { }
|
sl@0
|
88 |
|
sl@0
|
89 |
/*
|
sl@0
|
90 |
An offset to make extended attribute flags contiguous with ordinary character attributes
|
sl@0
|
91 |
so that we don't run out of bits if more non-maskable attributes are invented.
|
sl@0
|
92 |
*/
|
sl@0
|
93 |
enum
|
sl@0
|
94 |
{
|
sl@0
|
95 |
EAttribOffset = EExternalizedAttributeCount - ETextFormatAttributeCount
|
sl@0
|
96 |
};
|
sl@0
|
97 |
|
sl@0
|
98 |
void SetAttrib(TTextFormatAttribute aAttribute)
|
sl@0
|
99 |
{ TCharFormatMask::SetAttrib(aAttribute); }
|
sl@0
|
100 |
void ClearAttrib(TTextFormatAttribute aAttribute)
|
sl@0
|
101 |
{ TCharFormatMask::ClearAttrib(aAttribute); }
|
sl@0
|
102 |
TBool AttribIsSet(TTextFormatAttribute aAttribute) const
|
sl@0
|
103 |
{ return TCharFormatMask::AttribIsSet(aAttribute); }
|
sl@0
|
104 |
|
sl@0
|
105 |
void SetAttrib(TCharFormatXAttribute aAttribute)
|
sl@0
|
106 |
{ TCharFormatMask::SetAttrib((TTextFormatAttribute)(aAttribute - EAttribOffset)); }
|
sl@0
|
107 |
void ClearAttrib(TCharFormatXAttribute aAttribute)
|
sl@0
|
108 |
{ TCharFormatMask::ClearAttrib((TTextFormatAttribute)(aAttribute - EAttribOffset)); }
|
sl@0
|
109 |
TBool AttribIsSet(TCharFormatXAttribute aAttribute) const
|
sl@0
|
110 |
{ return TCharFormatMask::AttribIsSet((TTextFormatAttribute)(aAttribute - EAttribOffset)); }
|
sl@0
|
111 |
void ClearExtendedAttribs() { ClearAttrib(EAttParserTag); }
|
sl@0
|
112 |
};
|
sl@0
|
113 |
|
sl@0
|
114 |
|
sl@0
|
115 |
/**
|
sl@0
|
116 |
@internalComponent
|
sl@0
|
117 |
*/
|
sl@0
|
118 |
enum TETextPanic
|
sl@0
|
119 |
{
|
sl@0
|
120 |
// General
|
sl@0
|
121 |
EDebug,
|
sl@0
|
122 |
EDebugDeleteZeroLength,
|
sl@0
|
123 |
|
sl@0
|
124 |
// Format attributes
|
sl@0
|
125 |
ETabNotFound,
|
sl@0
|
126 |
|
sl@0
|
127 |
// Format layer storage
|
sl@0
|
128 |
EAttributeLengthLookupNegative,
|
sl@0
|
129 |
EStoreTabError,
|
sl@0
|
130 |
ECannotStoreFormatLayerChain,
|
sl@0
|
131 |
ECorruptFormatLayerChain,
|
sl@0
|
132 |
ECorruptFormatLayer,
|
sl@0
|
133 |
ENullFormatPointer,
|
sl@0
|
134 |
|
sl@0
|
135 |
// Picture Restoration
|
sl@0
|
136 |
ENullStore,
|
sl@0
|
137 |
EInvalidPictureFactorySettings,
|
sl@0
|
138 |
ENullStoreResolver,
|
sl@0
|
139 |
|
sl@0
|
140 |
// Plain text
|
sl@0
|
141 |
ECharPosBeyondDocument,
|
sl@0
|
142 |
EConstructCalledTwice,
|
sl@0
|
143 |
ECopyToStreamNegativeLength,
|
sl@0
|
144 |
EPasteNegativeLength,
|
sl@0
|
145 |
EDeleteNegativeLength,
|
sl@0
|
146 |
ECorruptTextStore,
|
sl@0
|
147 |
EExtractBufferTooSmall,
|
sl@0
|
148 |
ENoTextField,
|
sl@0
|
149 |
EExportLineWrapInvalid,
|
sl@0
|
150 |
|
sl@0
|
151 |
// Global text
|
sl@0
|
152 |
ENullFormatLayerHandle,
|
sl@0
|
153 |
EApplyParaFormatNegativeLength,
|
sl@0
|
154 |
EApplyCharFormatNegativeLength,
|
sl@0
|
155 |
EGetParaFormatNegativeLength,
|
sl@0
|
156 |
EGetCharFormatNegativeLength,
|
sl@0
|
157 |
|
sl@0
|
158 |
// Rich text
|
sl@0
|
159 |
ENullRichTextInsert,
|
sl@0
|
160 |
EMarkupAlreadyPresent,
|
sl@0
|
161 |
|
sl@0
|
162 |
// Rich text index
|
sl@0
|
163 |
ERichTextIndexIntegrityErr,
|
sl@0
|
164 |
EPhraseIxPresentWithNoParaIx,
|
sl@0
|
165 |
ERichTextIndexReset,
|
sl@0
|
166 |
ESetInsertCharFormatIntegrityErr,
|
sl@0
|
167 |
EInsertEmbeddedParaErr,
|
sl@0
|
168 |
EInsertNullPicHdrData,
|
sl@0
|
169 |
EDeleteFromParagraphInvalidRange,
|
sl@0
|
170 |
EDeleteParagraphInvalidStartValue,
|
sl@0
|
171 |
EDeleteParagraphInvalidEndValue,
|
sl@0
|
172 |
EReclaimShareError,
|
sl@0
|
173 |
EParaAttribsNotInSharedList,
|
sl@0
|
174 |
ERichTextNotSetForUsingStyles,
|
sl@0
|
175 |
EPictureHeaderIndexOutOfRange,
|
sl@0
|
176 |
ELostPictureHeader,
|
sl@0
|
177 |
ESplitPhraseCalledOnSharedPara,
|
sl@0
|
178 |
ESplitPhraseCalledOnPicturePhrase,
|
sl@0
|
179 |
EGetPictureSizeCalledOnNonPicturePhrase,
|
sl@0
|
180 |
EModifiedPicturePhraseLength,
|
sl@0
|
181 |
EReleasCharFormatLayerOwnershipCalledOnPicturePhrase,
|
sl@0
|
182 |
ERichTextStorePictureIntegrityError,
|
sl@0
|
183 |
ERtIndexInternalizeCalledOnNonEmptySource,
|
sl@0
|
184 |
ERtExternalizeParaIx,
|
sl@0
|
185 |
ESharedParaCountStreamOverflow,
|
sl@0
|
186 |
EEndOfSharedParaListEncountered,
|
sl@0
|
187 |
EPasteParaIxError,
|
sl@0
|
188 |
EPastePhraseIxErr,
|
sl@0
|
189 |
ESharedFormatsMapIntegrityError,
|
sl@0
|
190 |
ESharedFormatsMapOverFlow,
|
sl@0
|
191 |
EParagraphStyleNegativeLength,
|
sl@0
|
192 |
EApplyParaStyleNegativeLength,
|
sl@0
|
193 |
ERemoveSpecificParaFormatNegativeLength,
|
sl@0
|
194 |
ECopyToClipboardNegativeLength,
|
sl@0
|
195 |
EClipboardIntegrity,
|
sl@0
|
196 |
ENonOverloadedInsertCalledWithPictureCharacter,
|
sl@0
|
197 |
EAppendLFoundInMemoryPicture,
|
sl@0
|
198 |
|
sl@0
|
199 |
// style clipboarding
|
sl@0
|
200 |
EStyleClipboardIntegrityError,
|
sl@0
|
201 |
|
sl@0
|
202 |
// Paragraph styles
|
sl@0
|
203 |
EStyleIntegrityError,
|
sl@0
|
204 |
EStyleIndexOutOfRange,
|
sl@0
|
205 |
|
sl@0
|
206 |
// Front end processor inline editing
|
sl@0
|
207 |
ENotCurrentlyFepInlineEditing,
|
sl@0
|
208 |
EAlreadyFepInlineEditing,
|
sl@0
|
209 |
|
sl@0
|
210 |
// Parser system
|
sl@0
|
211 |
EParserListNotInitialized,
|
sl@0
|
212 |
EParserListAlreadyExists,
|
sl@0
|
213 |
EParserListNotActive,
|
sl@0
|
214 |
EParserCallbackAlreadySet,
|
sl@0
|
215 |
EParserTagNotFound,
|
sl@0
|
216 |
EParserListTextIndexNotInitialized,
|
sl@0
|
217 |
};
|
sl@0
|
218 |
|
sl@0
|
219 |
/**
|
sl@0
|
220 |
@internalComponent
|
sl@0
|
221 |
*/
|
sl@0
|
222 |
GLREF_C void Panic(TETextPanic aPanic);
|
sl@0
|
223 |
GLREF_C void ReleaseOnCleanup(TAny* aParaAttribs);
|
sl@0
|
224 |
GLREF_C void ResetOnCleanup(TAny* aParaFormat);
|
sl@0
|
225 |
|
sl@0
|
226 |
inline void ResetOnCleanupL( CParaFormat* aParaFormat)
|
sl@0
|
227 |
{
|
sl@0
|
228 |
CleanupStack::PushL(TCleanupItem(ResetOnCleanup,aParaFormat));
|
sl@0
|
229 |
}
|
sl@0
|
230 |
|
sl@0
|
231 |
#if defined(__DLL__)
|
sl@0
|
232 |
#define DLLEXPORT_C EXPORT_C
|
sl@0
|
233 |
#else
|
sl@0
|
234 |
#define DLLEXPORT_C
|
sl@0
|
235 |
#endif
|
sl@0
|
236 |
|
sl@0
|
237 |
#endif
|