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 __TXTFMLYR_H__
|
sl@0
|
20 |
#define __TXTFMLYR_H__
|
sl@0
|
21 |
|
sl@0
|
22 |
#include <e32std.h>
|
sl@0
|
23 |
#include <e32base.h>
|
sl@0
|
24 |
#include <txtfmstm.h>
|
sl@0
|
25 |
#include <txtfrmat.h>
|
sl@0
|
26 |
|
sl@0
|
27 |
// forward declarations
|
sl@0
|
28 |
class CFormatStream;
|
sl@0
|
29 |
class RReadStream;
|
sl@0
|
30 |
class RWriteStream;
|
sl@0
|
31 |
class TCharFormatX;
|
sl@0
|
32 |
|
sl@0
|
33 |
#ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
|
sl@0
|
34 |
#include <txtfmlyr_internal.h>
|
sl@0
|
35 |
#endif
|
sl@0
|
36 |
|
sl@0
|
37 |
/**
|
sl@0
|
38 |
Abstract base class for the paragraph and character format layers.
|
sl@0
|
39 |
|
sl@0
|
40 |
A format layer is a set of character or paragraph format attributes which
|
sl@0
|
41 |
may own a pointer to another format layer. This pointer is called a based-on
|
sl@0
|
42 |
link. The effective formatting of a text object may be built up from a chain
|
sl@0
|
43 |
of format layers - the final layer in the chain has a NULL based-on link.
|
sl@0
|
44 |
In case of conflict, attribute values set in upper layers (layers furthest
|
sl@0
|
45 |
from the layer with the NULL based-on link) override those set in lower layers.
|
sl@0
|
46 |
In rich text, additional formatting may be applied on top of these format
|
sl@0
|
47 |
layers.
|
sl@0
|
48 |
|
sl@0
|
49 |
The system of based-on links is implemented by the CFormatLayer class. It
|
sl@0
|
50 |
also implements persistence for chains of format layers.
|
sl@0
|
51 |
|
sl@0
|
52 |
When setting or sensing the attributes of a CParaFormatLayer or CCharFormatLayer,
|
sl@0
|
53 |
a format mask and container are specified as parameters. The container has
|
sl@0
|
54 |
data members for every format attribute, which may be set independently. When
|
sl@0
|
55 |
setting the layer, the mask indicates the attributes which will be taken from
|
sl@0
|
56 |
the container. Any attributes not specified in the mask will be taken from
|
sl@0
|
57 |
the system-provided default values.
|
sl@0
|
58 |
|
sl@0
|
59 |
When sensing a layer, on return, the mask indicates which attributes have
|
sl@0
|
60 |
been explicitly set in the layer, (i.e. not taken from the default values).
|
sl@0
|
61 |
In addition, a layer's effective format may be sensed. In this case, no
|
sl@0
|
62 |
mask is used because the format container will, on return, contain a value
|
sl@0
|
63 |
for every attribute.
|
sl@0
|
64 |
@publishedAll
|
sl@0
|
65 |
@released
|
sl@0
|
66 |
*/
|
sl@0
|
67 |
class CFormatLayer : public CBase
|
sl@0
|
68 |
{
|
sl@0
|
69 |
public:
|
sl@0
|
70 |
//
|
sl@0
|
71 |
// Based-on link utilities
|
sl@0
|
72 |
IMPORT_C void Reset(); // Remove all contents of this layer in a leave safe manner.
|
sl@0
|
73 |
IMPORT_C void SetBase(const CFormatLayer* aBaseFormatLayer); // Set this layer to be based on the specified layer.
|
sl@0
|
74 |
IMPORT_C const CFormatLayer* SenseBase()const;
|
sl@0
|
75 |
IMPORT_C TInt ChainCount()const; // Returns the number of format layers in the chain, inclusive of itself.
|
sl@0
|
76 |
//
|
sl@0
|
77 |
// Persistence
|
sl@0
|
78 |
|
sl@0
|
79 |
|
sl@0
|
80 |
/** Implementations of this function internalise the format layer but not its based-on
|
sl@0
|
81 |
link from a read stream. The presence of this function means that the standard
|
sl@0
|
82 |
templated operator>>() (defined in s32strm.h) is available to internalise
|
sl@0
|
83 |
objects of the derived class. The internalised layer is set to be based on
|
sl@0
|
84 |
the layer specified.
|
sl@0
|
85 |
|
sl@0
|
86 |
@param aStream Stream from which the format layer should be internalised.
|
sl@0
|
87 |
@param aBase The based-on link to assign to the layer. By default, NULL. */
|
sl@0
|
88 |
virtual void InternalizeL(RReadStream& aStream,const CFormatLayer* aBase=NULL)=0;
|
sl@0
|
89 |
|
sl@0
|
90 |
|
sl@0
|
91 |
/** Implementations of this function externalise the format layer but not its based-on
|
sl@0
|
92 |
link to a write stream. The presence of this function means that the standard
|
sl@0
|
93 |
templatedoperator<<() (defined in s32strm.h) is available to externalise objects
|
sl@0
|
94 |
of the derived class.
|
sl@0
|
95 |
|
sl@0
|
96 |
@param aStream Stream to which the format layer should be externalised. */
|
sl@0
|
97 |
virtual void ExternalizeL(RWriteStream& aStream)const=0;
|
sl@0
|
98 |
//
|
sl@0
|
99 |
// Restore a format chain where the end of the chain is based on aBase (where aBase may be null).
|
sl@0
|
100 |
IMPORT_C void InternalizeChainL(RReadStream& aStream,const CFormatLayer* aBase=NULL);
|
sl@0
|
101 |
// Stores a format layer chain of length length-aExcludeCount (or by default the whole chain).
|
sl@0
|
102 |
IMPORT_C void ExternalizeChainL(RWriteStream& aStream,TInt aExcludeCount=0)const;
|
sl@0
|
103 |
/** Implementations of this function compare another format layer with the current
|
sl@0
|
104 |
object. For the two layers to be equal, they must have the same contents and
|
sl@0
|
105 |
(if the second parameter is ETrue), their based-on links must point to the
|
sl@0
|
106 |
same format layer.
|
sl@0
|
107 |
|
sl@0
|
108 |
@param aLayer The layer to compare to this format layer.
|
sl@0
|
109 |
@param aCheckBasedOnLink If ETrue, both layers' based-on links must point to
|
sl@0
|
110 |
the same format layer. If EFalse, the based-on links are not used in the comparison.
|
sl@0
|
111 |
By default, ETrue.
|
sl@0
|
112 |
@return ETrue if the two layers are identical, otherwise EFalse. */
|
sl@0
|
113 |
virtual TBool IsIdentical(CFormatLayer* aLayer,TBool aCheckBasedOnLink=ETrue)const=0;
|
sl@0
|
114 |
IMPORT_C TBool IsEmpty()const;
|
sl@0
|
115 |
void Swap(CFormatLayer& aLayer);
|
sl@0
|
116 |
private:
|
sl@0
|
117 |
CFormatLayer(const CFormatLayer& aFormatLayer);
|
sl@0
|
118 |
CFormatLayer& operator=(const CFormatLayer& aFormatLayer);
|
sl@0
|
119 |
virtual CFormatLayer* DoCloneL()const=0;
|
sl@0
|
120 |
protected:
|
sl@0
|
121 |
CFormatLayer();
|
sl@0
|
122 |
~CFormatLayer();
|
sl@0
|
123 |
virtual CFormatLayer* RestoreNewL(RReadStream& aStream)=0;
|
sl@0
|
124 |
void ExternalizeLayersRecurseL(RWriteStream& aStream,TInt aDescendantCount)const;
|
sl@0
|
125 |
TBool IsIdentical(const TUint8* aPtr,TInt aSize)const;
|
sl@0
|
126 |
const TUint8* Ptr(TInt& aSize)const;
|
sl@0
|
127 |
void CloneLayerL(CFormatLayer* aClone)const;
|
sl@0
|
128 |
protected:
|
sl@0
|
129 |
RFormatStream iStore;
|
sl@0
|
130 |
const CFormatLayer* iBasedOn; // If non-null used to inherit format attributes from the lower layer.
|
sl@0
|
131 |
__DECLARE_TEST;
|
sl@0
|
132 |
};
|
sl@0
|
133 |
|
sl@0
|
134 |
|
sl@0
|
135 |
/**
|
sl@0
|
136 |
A paragraph format layer.
|
sl@0
|
137 |
|
sl@0
|
138 |
Has a pointer (stored in its base class CFormatLayer) to another paragraph
|
sl@0
|
139 |
format layer which may be NULL. This pointer is referred to as the based-on
|
sl@0
|
140 |
link. A paragraph format layer is owned by an instance of the CGlobalText
|
sl@0
|
141 |
class and stores the object's global paragraph formatting. Implements persistence
|
sl@0
|
142 |
and allows attributes to be set and sensed.
|
sl@0
|
143 |
@publishedAll
|
sl@0
|
144 |
@released
|
sl@0
|
145 |
*/
|
sl@0
|
146 |
class CParaFormatLayer : public CFormatLayer
|
sl@0
|
147 |
{
|
sl@0
|
148 |
public:
|
sl@0
|
149 |
IMPORT_C static CParaFormatLayer* NewL();
|
sl@0
|
150 |
IMPORT_C static CParaFormatLayer* NewL(const CParaFormat* aParaFormat,const TParaFormatMask& aMask);
|
sl@0
|
151 |
IMPORT_C static CParaFormatLayer* NewL(RReadStream& aStream);
|
sl@0
|
152 |
static CParaFormatLayer* NewL(const CParaFormatLayer* aLayer);
|
sl@0
|
153 |
static CParaFormatLayer* NewCopyBaseL(const CParaFormatLayer* aLayer);
|
sl@0
|
154 |
// Create a new instance, restoring it from the specified stream.
|
sl@0
|
155 |
// The based on link is NULL. Restores only one layer.
|
sl@0
|
156 |
//
|
sl@0
|
157 |
// Persistence
|
sl@0
|
158 |
IMPORT_C virtual void InternalizeL(RReadStream& aStream,const CFormatLayer* aBase=NULL);
|
sl@0
|
159 |
IMPORT_C virtual void ExternalizeL(RWriteStream& aStream)const;
|
sl@0
|
160 |
//
|
sl@0
|
161 |
// Core methods
|
sl@0
|
162 |
IMPORT_C void SetL(const CParaFormat* aDesiredEffectiveFormat,const TParaFormatMask& aMask);
|
sl@0
|
163 |
IMPORT_C void SenseEffectiveL(CParaFormat* aParaFormat,CParaFormat::TParaFormatGetMode aMode=CParaFormat::EAllAttributes)const;
|
sl@0
|
164 |
IMPORT_C void SenseL(CParaFormat* aParaFormat,TParaFormatMask& aMask,CParaFormat::TParaFormatGetMode aMode=CParaFormat::EAllAttributes)const;
|
sl@0
|
165 |
//
|
sl@0
|
166 |
// Utilities
|
sl@0
|
167 |
inline CParaFormatLayer* CloneL()const;
|
sl@0
|
168 |
IMPORT_C TBool IsIdenticalL(const CParaFormat* aParaFormat,const TParaFormatMask& aMask)const;
|
sl@0
|
169 |
IMPORT_C virtual TBool IsIdentical(CFormatLayer* aLayer,TBool aCheckBasedOnLink=ETrue)const;
|
sl@0
|
170 |
IMPORT_C virtual TUid Type()const;
|
sl@0
|
171 |
IMPORT_C const TUint8* Ptr(TInt& aSize)const;
|
sl@0
|
172 |
private:
|
sl@0
|
173 |
//
|
sl@0
|
174 |
// No implementation provided
|
sl@0
|
175 |
CParaFormatLayer(const CParaFormatLayer& aParaFormatLayer);
|
sl@0
|
176 |
CParaFormatLayer& operator=(const CParaFormatLayer& aParaFormatLayer);
|
sl@0
|
177 |
IMPORT_C virtual CFormatLayer* DoCloneL()const;
|
sl@0
|
178 |
void FillParaFormatL(CParaFormat* aParaFormat,TParaFormatMask& aMask,CParaFormat::TParaFormatGetMode aMode)const;
|
sl@0
|
179 |
void CleanupEffectiveFormat(CParaFormat* aParaFormat,TParaFormatMask aMask)const;
|
sl@0
|
180 |
void CleanupBorders(CParaFormat* aParaFormat)const;
|
sl@0
|
181 |
protected:
|
sl@0
|
182 |
CParaFormatLayer();
|
sl@0
|
183 |
virtual CFormatLayer* RestoreNewL(RReadStream& aStream);
|
sl@0
|
184 |
};
|
sl@0
|
185 |
|
sl@0
|
186 |
/**
|
sl@0
|
187 |
Character format layer.
|
sl@0
|
188 |
|
sl@0
|
189 |
Uses a pointer (stored in its base class CFormatLayer) to another character
|
sl@0
|
190 |
format layer which may be NULL. This pointer is referred to as the based-on
|
sl@0
|
191 |
link. A character format layer is owned by an instance of the CGlobalText
|
sl@0
|
192 |
class and stores the object's global character formatting. Implements persistence
|
sl@0
|
193 |
and allows attributes to be set and sensed.
|
sl@0
|
194 |
@publishedAll
|
sl@0
|
195 |
@released
|
sl@0
|
196 |
*/
|
sl@0
|
197 |
class CCharFormatLayer : public CFormatLayer
|
sl@0
|
198 |
{
|
sl@0
|
199 |
public:
|
sl@0
|
200 |
IMPORT_C static CCharFormatLayer* NewL();
|
sl@0
|
201 |
IMPORT_C static CCharFormatLayer* NewL(const TCharFormat& aFormat,const TCharFormatMask& aMask);
|
sl@0
|
202 |
IMPORT_C static CCharFormatLayer* NewL(RReadStream& aStream);
|
sl@0
|
203 |
IMPORT_C virtual void InternalizeL(RReadStream& aStream,const CFormatLayer* aBase=NULL);
|
sl@0
|
204 |
IMPORT_C virtual void ExternalizeL(RWriteStream& aStream)const;
|
sl@0
|
205 |
IMPORT_C void SetL(const TCharFormat& aCharFormat,const TCharFormatMask& aMask);
|
sl@0
|
206 |
IMPORT_C void SenseEffective(TCharFormat& aCharFormat)const;
|
sl@0
|
207 |
IMPORT_C void Sense(TCharFormat& aCharFormat,TCharFormatMask& aMask)const;
|
sl@0
|
208 |
inline CCharFormatLayer* CloneL()const;
|
sl@0
|
209 |
IMPORT_C virtual TBool IsIdentical(CFormatLayer* aLayer,TBool aCheckBasedOnLink=ETrue)const;
|
sl@0
|
210 |
IMPORT_C TBool IsIdentical(const TCharFormat& aCharFormat,const TCharFormatMask& aMask)const;
|
sl@0
|
211 |
IMPORT_C const TUint8* Ptr(TInt& aSize)const;
|
sl@0
|
212 |
|
sl@0
|
213 |
// non-exported public functions
|
sl@0
|
214 |
static CCharFormatLayer* NewL(const CCharFormatLayer* aLayer);
|
sl@0
|
215 |
static CCharFormatLayer* NewCopyBaseL(const CCharFormatLayer* aLayer);
|
sl@0
|
216 |
static CCharFormatLayer* NewL(const TCharFormatX& aFormat,const TCharFormatXMask& aMask);
|
sl@0
|
217 |
void SetL(const TCharFormatX& aCharFormat,const TCharFormatXMask& aMask);
|
sl@0
|
218 |
void SenseEffective(TCharFormatX& aCharFormat)const;
|
sl@0
|
219 |
void Sense(TCharFormatX& aCharFormat,TCharFormatXMask& aMask) const;
|
sl@0
|
220 |
|
sl@0
|
221 |
private:
|
sl@0
|
222 |
CCharFormatLayer();
|
sl@0
|
223 |
virtual CFormatLayer* RestoreNewL(RReadStream& aStream);
|
sl@0
|
224 |
virtual void FillCharFormat(TCharFormatX& aCharFormat,TCharFormatXMask& aMask)const;
|
sl@0
|
225 |
IMPORT_C virtual CFormatLayer* DoCloneL()const;
|
sl@0
|
226 |
};
|
sl@0
|
227 |
|
sl@0
|
228 |
|
sl@0
|
229 |
#include <txtfmlyr.inl>
|
sl@0
|
230 |
|
sl@0
|
231 |
|
sl@0
|
232 |
#endif
|