First public contribution.
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.
15 * PRIVATE HEADER FILE CONTAINING IMPLEMENTATION SPECIFIC CLASSES
20 #ifndef __TXTFMSTM_H__
21 #define __TXTFMSTM_H__
26 // forward declarations
30 class TCharFormatXMask;
33 stores format attributes as bytecode, this class is intended for internal use only.
40 void CopyL(const RFormatStream& aSource);
41 void ExternalizeL(RWriteStream& aStream) const;
42 void InternalizeL(RReadStream& aStream);
44 const TUint8* Ptr(TInt& aSize) const;
45 void SetParaFormatL(const CParaFormat& aDesiredFormat,const TParaFormatMask& aDesiredMask,const CParaFormat& aCurrentFormat);
46 void SenseParaFormatL(CParaFormat& aParaFormat,TParaFormatMask& aMask,CParaFormat::TParaFormatGetMode aMode)const;
47 void SetCharFormatL(const TCharFormatX& aCharFormat,const TCharFormatXMask& aMask);
48 void SenseCharFormat(TCharFormatX& aCharFormat,TCharFormatXMask& aMask)const;
49 void Swap(RFormatStream& aStream);
52 void AllocL(TInt aSize);
53 TInt Length(TUint8*& aPtr,TTextFormatAttribute aType)const;
54 TInt DoCalcSizeParaFormat(const CParaFormat& aDesiredFormat,TParaFormatMask aMask,const CParaFormat& aCurrentFormat);
55 void DoSetParaFormat(const CParaFormat& aDesiredFormat,TParaFormatMask aMask,const CParaFormat& aCurrentFormat);
56 void RemoveRedundantCharFormat(TCharFormatMask& aMask,const TCharFormatX& aFormat,const TCharFormatX& aEffectiveFormat);
57 TInt DoCalcSizeCharFormat(const TCharFormatX& aCharFormat,const TCharFormatXMask& aMask);
58 void DoStoreCharFormat(const TCharFormatX& aCharFormat,TCharFormatXMask aMask);
59 TUint8* StoreBullet(TUint8* aPtr,const TBullet& aSource);
60 TUint8* StoreBorder(TUint8* aPtr,TTextFormatAttribute aType,const TParaBorder& aSource);
61 TUint8* StoreTab(TUint8* aPtr,const TTabStop& aSource);
62 TInt StoreTabs(TUint8*& aPtr,const CParaFormat& aDesiredFormat,const CParaFormat& aCurrentFormat,TBool aStoreData);
63 TInt MergeTabLists(TUint8*& aPtr,const CParaFormat& aDesiredFormat,TInt aDesiredTabCount,
64 const CParaFormat& aCurrentFormat,TInt aCurrentTabCount,TBool aStoreData);
65 void StoreAllTabs(TUint8*& aPtr,const CParaFormat& aSource);
66 TUint8* Store(TUint8* aPtr,const TLogicalRgb& aRgb);
67 TUint8* Store(TUint8* aPtr,const TTypeface& aTypeface);
68 TUint8* ReadValue(TUint8* aPtr,TLogicalRgb& aRgb)const;
69 TUint8* ReadValue(TUint8* aPtr,TTypeface& aTypeface)const;
70 TUint8* ReadValue(TUint8* aPtr,TParaBorder& aBorder)const;
71 TUint8* ReadValue(TUint8* aPtr,TBullet& aBullet)const;
72 TUint8* ReadTabL(TUint8* aPtr,CParaFormat& aTarget)const;
74 TUint8* iBase; // start of stored bytecode
75 TUint8* iEnd; // end of stored bytecode
79 void TestInvariantL() const;
80 TBool DoInvariantCheck() const;