Update contrib.
2 * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
27 The extended character format used internally.
28 As well as the public TCharFormat attributes it stores
29 any attributes that are useful only inside ETEXT.
34 TCharFormatX(): iParserTag(0) { }
35 TCharFormatX(const TCharFormat& aCharFormat): iCharFormat(aCharFormat), iParserTag(0) { }
37 TCharFormat iCharFormat;
42 Attributes not used in the format masks, but used to store system colour indices, etc.
43 This method maintains data compatibility. For example, a paragraph fill colour, including its
44 fourth byte that is used as the system colour index, is selected by a single mask but corresponding
45 to EAttFillColor, but is stored using two attribute flags: one for the three bytes of the RGB colour,
46 and one extra optional one for the system colour index.
49 enum TTextFormatNonMaskableAttribute
51 EAttFillSystemColor = ETextFormatAttributeCount,
52 EAttBulletSystemColor,
53 EAttTopBorderSystemColor,
54 EAttBottomBorderSystemColor,
55 EAttLeftBorderSystemColor,
56 EAttRightBorderSystemColor,
58 EAttFontHighlightSystemColor,
64 EExternalizedAttributeCount
69 Attributes used to mask internal character attributes.
72 enum TCharFormatXAttribute
74 EAttParserTag = EExternalizedAttributeCount,
79 class TCharFormatXMask: public TCharFormatMask
81 A mask that can deal with TCharFormatXAttributes as well as TTextFormatAttributes
86 TCharFormatXMask(): TCharFormatMask() { }
87 TCharFormatXMask(TCharFormatMask aMask): TCharFormatMask(aMask) { }
90 An offset to make extended attribute flags contiguous with ordinary character attributes
91 so that we don't run out of bits if more non-maskable attributes are invented.
95 EAttribOffset = EExternalizedAttributeCount - ETextFormatAttributeCount
98 void SetAttrib(TTextFormatAttribute aAttribute)
99 { TCharFormatMask::SetAttrib(aAttribute); }
100 void ClearAttrib(TTextFormatAttribute aAttribute)
101 { TCharFormatMask::ClearAttrib(aAttribute); }
102 TBool AttribIsSet(TTextFormatAttribute aAttribute) const
103 { return TCharFormatMask::AttribIsSet(aAttribute); }
105 void SetAttrib(TCharFormatXAttribute aAttribute)
106 { TCharFormatMask::SetAttrib((TTextFormatAttribute)(aAttribute - EAttribOffset)); }
107 void ClearAttrib(TCharFormatXAttribute aAttribute)
108 { TCharFormatMask::ClearAttrib((TTextFormatAttribute)(aAttribute - EAttribOffset)); }
109 TBool AttribIsSet(TCharFormatXAttribute aAttribute) const
110 { return TCharFormatMask::AttribIsSet((TTextFormatAttribute)(aAttribute - EAttribOffset)); }
111 void ClearExtendedAttribs() { ClearAttrib(EAttParserTag); }
122 EDebugDeleteZeroLength,
127 // Format layer storage
128 EAttributeLengthLookupNegative,
130 ECannotStoreFormatLayerChain,
131 ECorruptFormatLayerChain,
135 // Picture Restoration
137 EInvalidPictureFactorySettings,
141 ECharPosBeyondDocument,
142 EConstructCalledTwice,
143 ECopyToStreamNegativeLength,
144 EPasteNegativeLength,
145 EDeleteNegativeLength,
147 EExtractBufferTooSmall,
149 EExportLineWrapInvalid,
152 ENullFormatLayerHandle,
153 EApplyParaFormatNegativeLength,
154 EApplyCharFormatNegativeLength,
155 EGetParaFormatNegativeLength,
156 EGetCharFormatNegativeLength,
160 EMarkupAlreadyPresent,
163 ERichTextIndexIntegrityErr,
164 EPhraseIxPresentWithNoParaIx,
166 ESetInsertCharFormatIntegrityErr,
167 EInsertEmbeddedParaErr,
168 EInsertNullPicHdrData,
169 EDeleteFromParagraphInvalidRange,
170 EDeleteParagraphInvalidStartValue,
171 EDeleteParagraphInvalidEndValue,
173 EParaAttribsNotInSharedList,
174 ERichTextNotSetForUsingStyles,
175 EPictureHeaderIndexOutOfRange,
177 ESplitPhraseCalledOnSharedPara,
178 ESplitPhraseCalledOnPicturePhrase,
179 EGetPictureSizeCalledOnNonPicturePhrase,
180 EModifiedPicturePhraseLength,
181 EReleasCharFormatLayerOwnershipCalledOnPicturePhrase,
182 ERichTextStorePictureIntegrityError,
183 ERtIndexInternalizeCalledOnNonEmptySource,
184 ERtExternalizeParaIx,
185 ESharedParaCountStreamOverflow,
186 EEndOfSharedParaListEncountered,
189 ESharedFormatsMapIntegrityError,
190 ESharedFormatsMapOverFlow,
191 EParagraphStyleNegativeLength,
192 EApplyParaStyleNegativeLength,
193 ERemoveSpecificParaFormatNegativeLength,
194 ECopyToClipboardNegativeLength,
196 ENonOverloadedInsertCalledWithPictureCharacter,
197 EAppendLFoundInMemoryPicture,
199 // style clipboarding
200 EStyleClipboardIntegrityError,
203 EStyleIntegrityError,
204 EStyleIndexOutOfRange,
206 // Front end processor inline editing
207 ENotCurrentlyFepInlineEditing,
208 EAlreadyFepInlineEditing,
211 EParserListNotInitialized,
212 EParserListAlreadyExists,
213 EParserListNotActive,
214 EParserCallbackAlreadySet,
216 EParserListTextIndexNotInitialized,
222 GLREF_C void Panic(TETextPanic aPanic);
223 GLREF_C void ReleaseOnCleanup(TAny* aParaAttribs);
224 GLREF_C void ResetOnCleanup(TAny* aParaFormat);
226 inline void ResetOnCleanupL( CParaFormat* aParaFormat)
228 CleanupStack::PushL(TCleanupItem(ResetOnCleanup,aParaFormat));
232 #define DLLEXPORT_C EXPORT_C