1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/textandloc/textrendering/texthandling/stext/TXTFMLYR.CPP Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,838 @@
1.4 +/*
1.5 +* Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* under the terms of "Eclipse Public License v1.0"
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description:
1.18 +*
1.19 +*/
1.20 +
1.21 +
1.22 +#include <e32std.h>
1.23 +#include <e32base.h>
1.24 +#include "TXTFRMAT.H"
1.25 +#include "TXTFMLYR.H"
1.26 +#include <txtfmstm.h>
1.27 +#include "TXTSTD.H"
1.28 +
1.29 +#include "OstTraceDefinitions.h"
1.30 +#ifdef OST_TRACE_COMPILER_IN_USE
1.31 +#include "TXTFMLYRTraces.h"
1.32 +#endif
1.33 +
1.34 +#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
1.35 +#include "TXTFMLYR_INTERNAL.H"
1.36 +#endif
1.37 +
1.38 +CFormatLayer::CFormatLayer()
1.39 + {
1.40 + }
1.41 +
1.42 +
1.43 +CFormatLayer::~CFormatLayer()
1.44 + {
1.45 + iStore.Reset();
1.46 + }
1.47 +
1.48 +
1.49 +DLLEXPORT_C void CFormatLayer::__DbgTestInvariant() const
1.50 + {
1.51 + }
1.52 +
1.53 +
1.54 +
1.55 +EXPORT_C void CFormatLayer::SetBase(const CFormatLayer* aBaseFormatLayer)
1.56 +/** Sets the format layer which this layer's based-on link points to.
1.57 +
1.58 +@param aBaseFormatLayer The format layer which this layer's based-on link
1.59 +points to. Specify NULL if this is the final layer in the chain (the layer
1.60 +on which all other layers are based). */
1.61 + {
1.62 + iBasedOn = aBaseFormatLayer;
1.63 + }
1.64 +
1.65 +
1.66 +
1.67 +EXPORT_C const CFormatLayer* CFormatLayer::SenseBase() const
1.68 +/** Gets the format layer which this layer's based-on link points to. If NULL,
1.69 +this layer is the final layer in the chain.
1.70 +
1.71 +@return The format layer on which this layer is based. */
1.72 + {
1.73 + return iBasedOn;
1.74 + }
1.75 +
1.76 +
1.77 +
1.78 +EXPORT_C TInt CFormatLayer::ChainCount() const
1.79 +/** Gets the number of format layers in the chain, inclusive of itself. Assumes
1.80 +that the format layer chain has been correctly set up to terminate with a
1.81 +NULL based-on link.
1.82 +
1.83 +@return The number of format layers in the chain, counting from the current
1.84 +layer. */
1.85 + {
1.86 + TInt chainCount=1;
1.87 + const CFormatLayer* next=iBasedOn;
1.88 + while (next)
1.89 + {
1.90 + ++chainCount;
1.91 + next=next->iBasedOn;
1.92 + }
1.93 + return chainCount;
1.94 + }
1.95 +
1.96 +
1.97 +
1.98 +const TUint8* CFormatLayer::Ptr(TInt& aSize)const
1.99 +/** Return a pointer to the stored bytecode.*/
1.100 + {
1.101 + return iStore.Ptr(aSize);
1.102 + }
1.103 +
1.104 +
1.105 +
1.106 +EXPORT_C void CFormatLayer::Reset()
1.107 +/** Deletes the contents of the format layer. The based-on link is not affected. */
1.108 + {
1.109 + iStore.Reset();
1.110 + }
1.111 +
1.112 +
1.113 +
1.114 +EXPORT_C void CFormatLayer::InternalizeChainL(RReadStream& aStream,const CFormatLayer* aBase)
1.115 +/** Restores a chain of format layers from a read stream. The layer at the end
1.116 +of the chain (the one furthest from this layer) is set to be based on the
1.117 +specified layer aBase, which may be NULL. This layer is set to be at the head
1.118 +of the restored chain (i.e. no other layers are based on it).
1.119 +
1.120 +@param aStream Stream from which the format layer chain should be internalised.
1.121 +
1.122 +@param aBase The format layer at the end of the chain (furthest from this layer).
1.123 +May be NULL. */
1.124 + {
1.125 + TInt chainLength=aStream.ReadInt8L();
1.126 + if (chainLength<1)
1.127 + User::Leave(KErrCorrupt); // Must restore at least one layer (this), else corrupt stream.
1.128 + TInt descendentCount=chainLength-1;
1.129 + for (TInt loop=0;loop<descendentCount;loop++)
1.130 + {// Restore each descendent of [this] layer.
1.131 + CFormatLayer* layer=RestoreNewL(aStream);
1.132 + layer->SetBase(aBase);
1.133 + CleanupStack::PushL(layer);
1.134 + aBase=layer;
1.135 + }
1.136 + aStream>> *this;
1.137 + SetBase(aBase);
1.138 + CleanupStack::Pop(descendentCount);
1.139 + }
1.140 +
1.141 +
1.142 +
1.143 +
1.144 +EXPORT_C void CFormatLayer::ExternalizeChainL(RWriteStream& aStream,TInt aExcludeCount)const
1.145 +/** Stores a chain of format layers. By default an entire chain is stored unless
1.146 +an exclude count is provided. In this case, the length of the chain stored
1.147 +is the ChainCount() minus the exclude count. The excluded layers are the ones
1.148 +starting with the layer with the NULL based-on link.
1.149 +
1.150 +Note
1.151 +
1.152 +The exclude count must be zero or greater but must be less than the total
1.153 +number of layers in the chain, otherwise a panic occurs.
1.154 +
1.155 +@param aStream Stream to which the format layer chain should be externalised.
1.156 +@param aExcludeCount The number of layers to be excluded. By default, zero. */
1.157 + {
1.158 +// ASSERT: aExcludeCount is positive.
1.159 + if (aExcludeCount<0)
1.160 + {
1.161 + OstTrace0( TRACE_FATAL, CFORMATLAYER_EXTERNALIZECHAINL, "ECannotStoreFormatLayerChain" );
1.162 + }
1.163 + __ASSERT_ALWAYS(aExcludeCount>=0,Panic(ECannotStoreFormatLayerChain));
1.164 +// ASSERT: The number of layers to be excluded is less than the total no. of layers.
1.165 + if (aExcludeCount>=ChainCount())
1.166 + {
1.167 + OstTrace0( TRACE_FATAL, DUP1_CFORMATLAYER_EXTERNALIZECHAINL, "ECannotStoreFormatLayerChain" );
1.168 + }
1.169 + __ASSERT_ALWAYS(aExcludeCount<ChainCount(),Panic(ECannotStoreFormatLayerChain));
1.170 + TInt aCount=ChainCount()-aExcludeCount;
1.171 + aStream.WriteInt8L(aCount); // Store the chain length.
1.172 + ExternalizeLayersRecurseL(aStream,--aCount);
1.173 + }
1.174 +
1.175 +
1.176 +void CFormatLayer::ExternalizeLayersRecurseL(RWriteStream& aStream,TInt aDescendantCount)const
1.177 +/** Stores a format layer chain with *aLength* number of layers in a stack-like
1.178 +fashion. This necessitates navigating to the end of the chain and storing the
1.179 +layers as we unwind back to the top of the chain.*/
1.180 +//
1.181 + {
1.182 + if (aDescendantCount)
1.183 + {
1.184 +// ASSERT: The format layer chain is consistent.
1.185 + if (iBasedOn==NULL)
1.186 + {
1.187 + OstTrace0( TRACE_DUMP, CFORMATLAYER_EXTERNALIZELAYERSRECURSEL, "ECorruptFormatLayerChain" );
1.188 + }
1.189 + __ASSERT_ALWAYS(iBasedOn!=NULL,Panic(ECorruptFormatLayerChain));
1.190 + iBasedOn->ExternalizeLayersRecurseL(aStream,--aDescendantCount);
1.191 + }
1.192 + aStream<< *this;
1.193 + }
1.194 +
1.195 +/** Implementations of this function compare another format layer with the
1.196 +current object. For the two layers to be equal, they must have the same
1.197 +contents and (if the second parameter is ETrue),their based-on links must
1.198 +point to the same format layer.
1.199 +
1.200 +@param aLayer The layer to compare to this format layer.
1.201 +@param aCheckBasedOnLink If ETrue, both layers' based-on links must point to
1.202 +the same format layer. If EFalse, the based-on links are not used in the
1.203 +comparison. By default, ETrue.
1.204 +@return ETrue if the two layers are identical, otherwise EFalse. */
1.205 +TBool CFormatLayer::IsIdentical(const TUint8* aPtr,TInt aSize) const
1.206 + {
1.207 + TInt size=0;
1.208 + const TUint8* ptr=iStore.Ptr(size);
1.209 + if ((ptr==NULL && aPtr!=NULL) || (ptr!=NULL && aPtr==NULL))
1.210 + return EFalse;
1.211 + if (ptr==NULL && aPtr==NULL)
1.212 + return ETrue;
1.213 + return (!(TBool)(Mem::Compare(ptr,size,aPtr,aSize)));
1.214 + }
1.215 +
1.216 +/** Tests whether any formatting is stored in the format layer.
1.217 +
1.218 +@return ETrue if no formatting is stored in the format layer, otherwise returns
1.219 +EFalse. */
1.220 +EXPORT_C TBool CFormatLayer::IsEmpty() const
1.221 + {
1.222 + TInt size=0;
1.223 + return iStore.Ptr(size)==NULL;
1.224 + }
1.225 +
1.226 +/** Swaps the contents of this with aLayer.
1.227 +@param aLayer The layer to swap contents with.
1.228 +@internalComponent */
1.229 +void CFormatLayer::Swap(CFormatLayer& aLayer)
1.230 + {
1.231 + iStore.Swap(aLayer.iStore);
1.232 + const CFormatLayer* t = iBasedOn;
1.233 + iBasedOn = aLayer.iBasedOn;
1.234 + aLayer.iBasedOn = t;
1.235 + }
1.236 +
1.237 +/** Allocates and constructs an empty CParaFormatLayer. Its based-on link is
1.238 +NULL.
1.239 +
1.240 +Note: Use SetL() to set format attributes in the layer. Use SetBase(), defined
1.241 +in the base class CFormatLayer, to set the layer's based on link.
1.242 +
1.243 +@return Pointer to the new paragraph format layer. */
1.244 +EXPORT_C CParaFormatLayer* CParaFormatLayer::NewL()
1.245 + {
1.246 + return new(ELeave) CParaFormatLayer;
1.247 + }
1.248 +
1.249 +
1.250 +EXPORT_C CParaFormatLayer* CParaFormatLayer::NewL(RReadStream& aStream)
1.251 +/** Allocates and constructs a CParaFormatLayer, restoring its format attributes
1.252 +from a stream. The layer's based-on link is set to NULL.
1.253 +
1.254 +@param aStream Stream from which the layer is restored.
1.255 +@return Pointer to the new paragraph format layer. */
1.256 + {
1.257 + CParaFormatLayer* self=NewL();
1.258 + CleanupStack::PushL(self);
1.259 + self->InternalizeL(aStream);
1.260 + CleanupStack::Pop();
1.261 + return self;
1.262 + }
1.263 +
1.264 +
1.265 +EXPORT_C CParaFormatLayer* CParaFormatLayer::NewL(const CParaFormat* aFormat,const TParaFormatMask& aMask)
1.266 +/** Allocates and constructs a CParaFormatLayer. The attributes which are set
1.267 +in the mask are initialised to the values specified in the format container
1.268 +aParaFormat. The attributes which are not set in the mask are initialised to
1.269 +the default values for class CParaFormat. The new layer's based-on link is set
1.270 +to NULL.
1.271 +
1.272 +@param aParaFormat Contains the attribute values to assign to the format layer.
1.273 +@param aMask Mask specifying which attributes should be initialized from
1.274 +aParaFormat.
1.275 +@return Pointer to ParaFormatLayer the new paragraph format layer. */
1.276 + {
1.277 + CParaFormatLayer* self=NewL();
1.278 + CleanupStack::PushL(self);
1.279 + self->SetL(aFormat,aMask);
1.280 + CleanupStack::Pop();
1.281 + return self;
1.282 + }
1.283 +
1.284 +
1.285 +CParaFormatLayer* CParaFormatLayer::NewL(const CParaFormatLayer* aLayer)
1.286 +/** Copying construction
1.287 + does not copy the based on link*/
1.288 + {
1.289 + CParaFormatLayer* self=NewL(); // based-on is NULL
1.290 + CleanupStack::PushL(self);
1.291 + aLayer->CloneLayerL(self);
1.292 + CleanupStack::Pop(); // self
1.293 + return self;
1.294 + }
1.295 +
1.296 +CParaFormatLayer* CParaFormatLayer::NewCopyBaseL(const CParaFormatLayer* aLayer)
1.297 +/** Copying construction
1.298 + copies based-on link*/
1.299 + {
1.300 + CParaFormatLayer* self=NewL(aLayer); // based-on is NULL
1.301 + self->iBasedOn=aLayer->iBasedOn;
1.302 + return self;
1.303 + }
1.304 +
1.305 +CParaFormatLayer::CParaFormatLayer()
1.306 +/** Constructor.*/
1.307 +// No ConstructL method since allocation is postponed until first Set.
1.308 +//
1.309 + {
1.310 + }
1.311 +
1.312 +EXPORT_C void CParaFormatLayer::ExternalizeL(RWriteStream& aStream)const
1.313 +/** Externalises the paragraph format layer but not its based-on link to a
1.314 +write stream. The presence of this function means that the standard templated
1.315 +operator<<() (defined in s32strm.h) is available to externalise objects of
1.316 +this class.
1.317 +
1.318 +@param aStream Stream to which the format layer should be externalised. */
1.319 + {aStream<< iStore;}
1.320 +
1.321 +EXPORT_C void CParaFormatLayer::InternalizeL(RReadStream& aStream,const CFormatLayer* aBase)
1.322 +/** Internalises the paragraph format layer but not its based-on link from a
1.323 +read stream. The presence of this function means that the standard templated
1.324 +operator>>() (defined in s32strm.h) is available to internalise objects of
1.325 +this class. The internalised layer is set to be based on the layer specified.
1.326 +
1.327 +@param aStream Stream from which the format layer should be internalised.
1.328 +@param aBase The based-on link to assign to the layer. By default NULL. */
1.329 + {
1.330 + aStream>> iStore;
1.331 + SetBase(aBase);
1.332 + }
1.333 +
1.334 +EXPORT_C void CParaFormatLayer::SetL(const CParaFormat* aDesiredEffectiveFormat,const TParaFormatMask& aMask)
1.335 +/** Sets the layer's format attributes. The attributes which are set in the
1.336 +mask are set in the layer to the values specified in the format container
1.337 +aDesiredEffectiveFormat. The attributes which are not set in the mask are not
1.338 +changed.
1.339 +
1.340 +Note: Any tab stops in aDesiredEffectiveFormat are merged with the tab stops in
1.341 +the current layer.
1.342 +
1.343 +@param aDesiredEffectiveFormat Contains the attribute values to assign to
1.344 +the format layer.
1.345 +@param aMask Mask specifying which attributes should be set from
1.346 +aDesiredEffectiveFormat. */
1.347 + {
1.348 + if ( !aDesiredEffectiveFormat )
1.349 + {
1.350 + return;
1.351 + }
1.352 +
1.353 + const CParaFormat& desiredFormat = *aDesiredEffectiveFormat;
1.354 + CParaFormat currentEffectiveFormat;
1.355 + ResetOnCleanupL( ¤tEffectiveFormat);
1.356 + if (iBasedOn)
1.357 + ((CParaFormatLayer*)iBasedOn)->SenseEffectiveL(¤tEffectiveFormat);
1.358 + iStore.SetParaFormatL(desiredFormat,aMask,currentEffectiveFormat);
1.359 + CleanupStack::Pop();
1.360 + }
1.361 +
1.362 +EXPORT_C void CParaFormatLayer::SenseEffectiveL(CParaFormat* aParaFormat,CParaFormat::TParaFormatGetMode aMode)const
1.363 +/** Senses the layer's effective format, searching all based-on links. The
1.364 +resulting aParaFormat is fully populated, except that if aMode is
1.365 +EFixedAttributes, then only the fixed attributes (not tabs, paragraph borders
1.366 +or bullets) are written to it.
1.367 +
1.368 +Notes:
1.369 +
1.370 +The function also "tidies up" the layer's effective paragraph formatting,
1.371 +so that any zero height bullets, paragraph borders with a NULL line style
1.372 +or NULL tab stops are removed.
1.373 +
1.374 +The function can only leave if aMode has a value of EAllAttributes.
1.375 +
1.376 +@param aParaFormat On return, contains the layer's effective formatting.
1.377 +Depending on the value of aMode, tabs, borders and bullets may be excluded.
1.378 +Must not be NULL or a panic occurs.
1.379 +@param aMode Controls which attributes are written to aParaFormat. If
1.380 +EAllAttributes, all attributes are written; if EFixedAttributes, tabs,
1.381 +bullets and borders are not written. */
1.382 + {
1.383 + if (aParaFormat==NULL)
1.384 + {
1.385 + OstTrace0( TRACE_FATAL, CPARAFORMATLAYER_SENSEEFFECTIVEL, "ENullFormatPointer" );
1.386 + }
1.387 + __ASSERT_ALWAYS(aParaFormat!=NULL,Panic(ENullFormatPointer));
1.388 + aParaFormat->Reset();
1.389 + TParaFormatMask mask;
1.390 + FillParaFormatL(aParaFormat,mask,aMode);
1.391 + CleanupEffectiveFormat(aParaFormat,mask);
1.392 + }
1.393 +
1.394 +EXPORT_C void CParaFormatLayer::SenseL(CParaFormat* aParaFormat,TParaFormatMask& aMask,CParaFormat::TParaFormatGetMode aMode)const
1.395 +/** Senses the formatting which has been applied to the current layer only. No
1.396 +based-on links are searched. This function does not get the effective formatting,
1.397 +but the resulting aParaFormat is useable even if not all attributes are flagged
1.398 +for sensing in aMask because any attribute values not sensed from the current
1.399 +layer, are set to default values.
1.400 +
1.401 +The function can only leave if aMode has a value of EAllAttributes.
1.402 +
1.403 +@param aParaFormat On return, contains the formatting which has been applied
1.404 +to the current layer only. Any attributes not explicitly set in the current
1.405 +layer are initialised to the default values for a CParaFormat. Attributes
1.406 +specified in aMask are not sensed from this layer. The values for these
1.407 +attributes are also initialised to the default settings. Must not be NULL or
1.408 +a panic occurs.
1.409 +@param aMask A bitmask. Any attributes which are set in the mask as passed
1.410 +into the function are not sensed from the current layer. On return, indicates
1.411 +the attributes which were sensed from this layer. So, normally, when passed
1.412 +to the function, all attributes in the mask should be unset.
1.413 +@param aMode Controls which attributes are written to aParaFormat. If
1.414 +EAllAttributes, all attributes are written; if EFixedAttributes, tabs, bullets
1.415 +and borders are not written. */
1.416 + {
1.417 + if (aParaFormat==NULL)
1.418 + {
1.419 + OstTrace0( TRACE_FATAL, CPARAFORMATLAYER_SENSEL, "ENullFormatPointer" );
1.420 + }
1.421 + __ASSERT_ALWAYS(aParaFormat!=NULL,Panic(ENullFormatPointer));
1.422 +
1.423 + iStore.SenseParaFormatL(*aParaFormat,aMask,aMode);
1.424 + }
1.425 +
1.426 +
1.427 +void CFormatLayer::CloneLayerL(CFormatLayer* aClone)const
1.428 + {
1.429 + aClone->iStore.CopyL(iStore);
1.430 + }
1.431 +
1.432 +
1.433 +EXPORT_C CFormatLayer* CParaFormatLayer::DoCloneL()const
1.434 +//
1.435 +//
1.436 + {
1.437 + return NewL(this); // use copy construction
1.438 + }
1.439 +
1.440 +
1.441 +
1.442 +EXPORT_C TBool CParaFormatLayer::IsIdenticalL(const CParaFormat* aParaFormat,const TParaFormatMask& aMask)const
1.443 +/** Compares a format attribute container with the current layer. For the two
1.444 +objects to be identical, the current layer must contain only the attributes
1.445 +specified in the argument aMask, and these attributes must have the same values
1.446 +as those in aParaFormat. None of the current layer's based-on links are searched.
1.447 +
1.448 +@param aParaFormat Contains the attribute values used in the comparison.
1.449 +@param aMask A bitmask specifying which attributes are relevant to the function.
1.450 +
1.451 +@return ETrue if the formatting of the current layer exactly matches that
1.452 +contained in aParaFormat. Otherwise EFalse. */
1.453 + {
1.454 + CParaFormat* thisParaFormat=CParaFormat::NewLC();
1.455 + TParaFormatMask thisParaFormatMask;
1.456 + SenseL(thisParaFormat,thisParaFormatMask);
1.457 + TBool result=EFalse;
1.458 + if (thisParaFormatMask!=aMask)
1.459 + result=EFalse;
1.460 + else if (thisParaFormat->IsEqual(*aParaFormat,aMask))
1.461 + result=ETrue;
1.462 + CleanupStack::PopAndDestroy();
1.463 + return result;
1.464 + }
1.465 +
1.466 +EXPORT_C TBool CParaFormatLayer::IsIdentical(CFormatLayer* aLayer,TBool aCheckBasedOnLink)const
1.467 +/** Compares another paragraph format layer with the current layer. For the two
1.468 +layers to be equal, they must have the same contents and (if the second
1.469 +parameter is ETrue), their based-on links must point to the same format layer.
1.470 +
1.471 +@param aLayer The paragraph format layer to compare to this format layer.
1.472 +@param aCheckBasedOnLink If ETrue, both layers' based-on links must point to
1.473 +the same format layer. If EFalse, the based-on links are not used in the
1.474 +comparison. By default, ETrue.
1.475 +@return ETrue if the two layers are identical, otherwise EFalse. */
1.476 + {
1.477 + if (aCheckBasedOnLink)
1.478 + {
1.479 + if (iBasedOn!=aLayer->SenseBase())
1.480 + return EFalse;
1.481 + }
1.482 + TInt size;
1.483 + const TUint8* ptr=((CParaFormatLayer*)aLayer)->Ptr(size); // some design went wrong here!
1.484 + return CFormatLayer::IsIdentical(ptr,size);
1.485 + }
1.486 +
1.487 +EXPORT_C const TUint8* CParaFormatLayer::Ptr(TInt& aSize)const
1.488 +/** Gets a pointer to the start of the buffer containing the layer's format
1.489 +attribute values.
1.490 +
1.491 +@param aSize On return, set to the size of the buffer.
1.492 +@return Pointer to the buffer which contains the layer's format attribute
1.493 +values. */
1.494 + {return CFormatLayer::Ptr(aSize);}
1.495 +
1.496 +EXPORT_C TUid CParaFormatLayer::Type()const
1.497 +/** Returns the paragraph format layer UID. This can be used to distinguish
1.498 +between an ordinary paragraph format layer and paragraph styles, which have a
1.499 +different UID.
1.500 +
1.501 +@return The UID of a paragraph format layer (KNormalParagraphStyleUid). */
1.502 + {return KNormalParagraphStyleUid;}
1.503 +
1.504 +CFormatLayer* CParaFormatLayer::RestoreNewL(RReadStream& aStream)
1.505 +/** Return a new CParaFormatLayer, having restored it from aStream.
1.506 + Overrides the base class method, to provide a new format layer of the correct
1.507 + type.*/
1.508 + {return NewL(aStream);}
1.509 +
1.510 +void CParaFormatLayer::FillParaFormatL(CParaFormat* aParaFormat,TParaFormatMask& aMask,CParaFormat::TParaFormatGetMode aMode)const
1.511 +/** Fills aParaFormat by dumping the current format layer into it.
1.512 +Next traverse the 'basedOn' link if it is not NULL, and repeat.*/
1.513 + {
1.514 + if ( !aParaFormat )
1.515 + {
1.516 + return;
1.517 + }
1.518 +
1.519 + CParaFormat& senseFormat = *aParaFormat;
1.520 +
1.521 + iStore.SenseParaFormatL(senseFormat,aMask,aMode);
1.522 + if (iBasedOn)
1.523 + ((CParaFormatLayer*)iBasedOn)->FillParaFormatL(aParaFormat,aMask,aMode);
1.524 + }
1.525 +
1.526 +void CParaFormatLayer::CleanupEffectiveFormat(CParaFormat* aParaFormat,TParaFormatMask aMask)const
1.527 +/** Removes anti-tabs, zero height and null bullets, and paragraph borders with
1.528 + null linestyles, from aParaFormat. An effective format does not support the
1.529 + notion of anti-tabs etc.*/
1.530 + {
1.531 + if (aMask.AttribIsSet(EAttBullet))
1.532 + {
1.533 + if (aParaFormat->iBullet->iStyle == TBullet::ENullStyle || aParaFormat->iBullet->iHeightInTwips <= 0)
1.534 + {
1.535 + delete aParaFormat->iBullet;
1.536 + aParaFormat->iBullet = NULL;
1.537 + }
1.538 + }
1.539 +
1.540 + if (aMask.AttribIsSet(EAttTopBorder) ||
1.541 + aMask.AttribIsSet(EAttBottomBorder) ||
1.542 + aMask.AttribIsSet(EAttLeftBorder) ||
1.543 + aMask.AttribIsSet(EAttRightBorder))
1.544 + CleanupBorders(aParaFormat);
1.545 +
1.546 + if (aMask.AttribIsSet(EAttTabStop))
1.547 + {
1.548 + int index = 0;
1.549 + while (index < aParaFormat->TabCount())
1.550 + {
1.551 + TTabStop tab = aParaFormat->TabStop(index);
1.552 + if (tab.iType == TTabStop::ENullTab)
1.553 + aParaFormat->RemoveTab(tab.iTwipsPosition);
1.554 + else
1.555 + index++;
1.556 + }
1.557 + }
1.558 + }
1.559 +
1.560 +
1.561 +void CParaFormatLayer::CleanupBorders(CParaFormat* aParaFormat)const
1.562 +/** Destroys the paragraph border if it is of NULL linestyle,
1.563 + and nulls the pointer to it (aBorder).*/
1.564 + {
1.565 + if (aParaFormat->ParaBorder(CParaFormat::EParaBorderTop).iLineStyle==TParaBorder::ENullLineStyle &&
1.566 + aParaFormat->ParaBorder(CParaFormat::EParaBorderBottom).iLineStyle==TParaBorder::ENullLineStyle &&
1.567 + aParaFormat->ParaBorder(CParaFormat::EParaBorderLeft).iLineStyle==TParaBorder::ENullLineStyle &&
1.568 + aParaFormat->ParaBorder(CParaFormat::EParaBorderRight).iLineStyle==TParaBorder::ENullLineStyle)
1.569 + {
1.570 + aParaFormat->RemoveAllBorders();
1.571 + }
1.572 + }
1.573 +
1.574 +
1.575 +EXPORT_C CCharFormatLayer* CCharFormatLayer::NewL()
1.576 +/** Allocates and constructs an empty CCharFormatLayer. Its based-on link is
1.577 +NULL.
1.578 +
1.579 +Note: Use SetL() to set format attributes in the layer. Use SetBase(), defined
1.580 +in the base class CFormatLayer, to set the layers based on link.
1.581 +
1.582 +@return Pointer to the new character format layer. */
1.583 + {return new(ELeave)CCharFormatLayer;}
1.584 +
1.585 +
1.586 +
1.587 +EXPORT_C CCharFormatLayer* CCharFormatLayer::NewL(RReadStream& aStream)
1.588 +/** Allocates and constructs a CCharFormatLayer, restoring its format attributes
1.589 +from a stream. The layer's based-on link is set to NULL.
1.590 +
1.591 +@param aStream Stream from which the layer is restored.
1.592 +@return Pointer to the new character format layer. */
1.593 + {
1.594 + CCharFormatLayer* self=NewL();
1.595 + CleanupStack::PushL(self);
1.596 + self->InternalizeL(aStream);
1.597 + CleanupStack::Pop();
1.598 + return self;
1.599 + }
1.600 +
1.601 +
1.602 +EXPORT_C CCharFormatLayer* CCharFormatLayer::NewL(const TCharFormat& aFormat,const TCharFormatMask& aMask)
1.603 +/** Returns a handle to a new charFormatLayer, after constructing
1.604 + it and setting it with the specified format and format mask.*/
1.605 + {
1.606 + CCharFormatLayer* self=NewL();
1.607 + CleanupStack::PushL(self);
1.608 + self->SetL(aFormat,aMask);
1.609 + CleanupStack::Pop();
1.610 + return self;
1.611 + }
1.612 +
1.613 +
1.614 +CCharFormatLayer* CCharFormatLayer::NewL(const TCharFormatX& aFormat,const TCharFormatXMask& aMask)
1.615 + {
1.616 + CCharFormatLayer* self = NewL();
1.617 + CleanupStack::PushL(self);
1.618 + self->SetL(aFormat,aMask);
1.619 + CleanupStack::Pop();
1.620 + return self;
1.621 + }
1.622 +
1.623 +
1.624 +CCharFormatLayer* CCharFormatLayer::NewL(const CCharFormatLayer* aLayer)
1.625 +/** Copying construction
1.626 + does not copy based-on link.*/
1.627 + {
1.628 + CCharFormatLayer* self=NewL(); // based-on is NULL
1.629 + CleanupStack::PushL(self);
1.630 + aLayer->CloneLayerL(self);
1.631 + CleanupStack::Pop(); // self
1.632 + return self;
1.633 + }
1.634 +
1.635 +CCharFormatLayer* CCharFormatLayer::NewCopyBaseL(const CCharFormatLayer* aLayer)
1.636 +/** Copying construction
1.637 + copies based-on link*/
1.638 + {
1.639 + CCharFormatLayer* self=NewL(aLayer); // based-on is NULL
1.640 + self->iBasedOn=aLayer->iBasedOn;
1.641 + return self;
1.642 + }
1.643 +
1.644 +
1.645 +CCharFormatLayer::CCharFormatLayer()
1.646 + {
1.647 + }
1.648 +
1.649 +EXPORT_C void CCharFormatLayer::ExternalizeL(RWriteStream& aStream)const
1.650 +/** Externalises the character format layer but not its based-on link to a
1.651 +write stream. The presence of this function means that the standard templated
1.652 +operator<<() (defined in s32strm.h) is available to externalise objects of
1.653 +this class.
1.654 +
1.655 +@param aStream Stream to which the format layer should be externalised. */
1.656 + {
1.657 + aStream << iStore;
1.658 + }
1.659 +
1.660 +EXPORT_C void CCharFormatLayer::InternalizeL(RReadStream& aStream,const CFormatLayer* aBase)
1.661 +/** Internalises the character format layer but not its based-on link from a
1.662 +read stream. The presence of this function means that the standard templated
1.663 +operator>>() (defined in s32strm.h) is available to internalise objects of
1.664 +this class. The internalised layer is set to be based on the layer specified.
1.665 +
1.666 +@param aStream Stream from which the format layer should be internalised.
1.667 +@param aBase The based-on link to assign to the layer. By default NULL. */
1.668 + {
1.669 + aStream >> iStore;
1.670 + SetBase(aBase);
1.671 + }
1.672 +
1.673 +
1.674 +EXPORT_C const TUint8* CCharFormatLayer::Ptr(TInt& aSize)const
1.675 +/** Gets a pointer to the start of the buffer containing the layer's format
1.676 +attribute values.
1.677 +
1.678 +@param aSize On return, set to the size of the buffer.
1.679 +@return Pointer to the buffer which contains the layer's format attribute
1.680 +values. */
1.681 + {
1.682 + return CFormatLayer::Ptr(aSize);
1.683 + }
1.684 +
1.685 +EXPORT_C void CCharFormatLayer::SetL(const TCharFormat& aCharFormat,const TCharFormatMask& aMask)
1.686 +/** Sets the layer's format attributes. The attributes which are set in the
1.687 +mask are set in the layer to the values specified in the format container
1.688 +aCharFormat. The attributes which are not set in the mask are not changed.
1.689 +
1.690 +@param aCharFormat Contains the attribute values to assign to the format layer.
1.691 +@param aMask Mask specifying which attributes should be set from aCharFormat. */
1.692 + {
1.693 + TCharFormatX format(aCharFormat);
1.694 + iStore.SetCharFormatL(format,aMask);
1.695 + }
1.696 +
1.697 +void CCharFormatLayer::SetL(const TCharFormatX& aCharFormat,const TCharFormatXMask& aMask)
1.698 +/** Sets the layer's format attributes. The attributes which are set in the
1.699 +mask are set in the layer to the values specified in the format container
1.700 +aCharFormat. The attributes which are not set in the mask are not changed.
1.701 +
1.702 +@param aCharFormat Contains the attribute values to assign to the format layer.
1.703 +@param aMask Mask specifying which attributes should be set from aCharFormat. */
1.704 + {
1.705 + iStore.SetCharFormatL(aCharFormat,aMask);
1.706 + }
1.707 +
1.708 +EXPORT_C void CCharFormatLayer::SenseEffective(TCharFormat& aCharFormat)const
1.709 +/** Senses the layer's effective format, searching all based-on links. The
1.710 +resulting aCharFormat is fully populated.
1.711 +
1.712 +@param aCharFormat On return, contains the layer's effective formatting. */
1.713 + {
1.714 + TCharFormatX format;
1.715 + TCharFormatXMask mask;
1.716 + FillCharFormat(format,mask);
1.717 + aCharFormat = format.iCharFormat;
1.718 + }
1.719 +
1.720 +void CCharFormatLayer::SenseEffective(TCharFormatX& aCharFormat) const
1.721 +/** Senses the layer's effective format, searching all based-on links. The
1.722 +resulting aCharFormat is fully populated.
1.723 +
1.724 +@param aCharFormat On return, contains the layer's effective formatting. */
1.725 + {
1.726 + TCharFormatXMask mask;
1.727 + aCharFormat = TCharFormatX(); // initialise character format; FillCharFormat doesn't do this
1.728 + FillCharFormat(aCharFormat,mask);
1.729 + }
1.730 +
1.731 +EXPORT_C void CCharFormatLayer::Sense(TCharFormat& aCharFormat,TCharFormatMask& aMask)const
1.732 +/** Senses the formatting which has been applied to the current layer only. No
1.733 +based-on links are searched. This function does not get the layer's effective
1.734 +formatting, but the resulting aCharFormat is fully populated, even if not
1.735 +all attributes are flagged for sensing in aMask because any attribute values
1.736 +not sensed from the current layer are set to default values.
1.737 +
1.738 +@param aCharFormat On return, contains the formatting which has been applied
1.739 +to the current layer only. Any attributes not explicitly set in the current
1.740 +layer are set to the default values for a TCharFormat. Any attributes specified
1.741 +in aMask are not sensed from this layer. The values for these attributes are
1.742 +also initialised to the default settings.
1.743 +@param aMask A bitmask. Any attributes which are set in the mask as passed
1.744 +into the function are not sensed from the current layer. On return, indicates
1.745 +the attributes which were sensed from this layer. So, normally, when passed
1.746 +to the function, all attributes in the mask should be unset. */
1.747 + {
1.748 + TCharFormatX format(aCharFormat);
1.749 + TCharFormatXMask mask = aMask;
1.750 + iStore.SenseCharFormat(format,mask);
1.751 + aCharFormat = format.iCharFormat;
1.752 + mask.ClearExtendedAttribs();
1.753 + aMask = mask;
1.754 + }
1.755 +
1.756 +void CCharFormatLayer::Sense(TCharFormatX& aCharFormat,TCharFormatXMask& aMask) const
1.757 +/** Senses the formatting which has been applied to the current layer only. No
1.758 +based-on links are searched. This function does not get the layer's effective
1.759 +formatting, but the resulting aCharFormat is fully populated, even if not
1.760 +all attributes are flagged for sensing in aMask because any attribute values
1.761 +not sensed from the current layer are set to default values.
1.762 +
1.763 +@param aCharFormat On return, contains the formatting which has been applied
1.764 +to the current layer only. Any attributes not explicitly set in the current
1.765 +layer are set to the default values for a TCharFormat. Any attributes specified
1.766 +in aMask are not sensed from this layer. The values for these attributes are
1.767 +also initialised to the default settings.
1.768 +@param aMask A bitmask. Any attributes which are set in the mask as passed
1.769 +into the function are not sensed from the current layer. On return, indicates
1.770 +the attributes which were sensed from this layer. So, normally, when passed
1.771 +to the function, all attributes in the mask should be unset. */
1.772 + {
1.773 + iStore.SenseCharFormat(aCharFormat,aMask);
1.774 + }
1.775 +
1.776 +
1.777 +EXPORT_C CFormatLayer* CCharFormatLayer::DoCloneL()const
1.778 + {
1.779 + return NewL(this); // use copy construction
1.780 + }
1.781 +
1.782 +
1.783 +EXPORT_C TBool CCharFormatLayer::IsIdentical(CFormatLayer* aLayer,TBool aCheckBasedOnLink)const
1.784 +/** Compares another character format layer with the current layer. For the two
1.785 +layers to be equal, they must have the same contents and (if the second
1.786 +parameter is ETrue), their based-on links must point to the same format layer.
1.787 +
1.788 +@param aLayer The character format layer to compare to this format layer.
1.789 +@param aCheckBasedOnLink If ETrue, both layers' based-on links must point to
1.790 +the same format layer. If EFalse, the based-on links are not used in the
1.791 +comparison. By default, ETrue.
1.792 +@return ETrue if the two layers are identical, otherwise EFalse. */
1.793 + {
1.794 + if (aCheckBasedOnLink)
1.795 + {
1.796 + if (iBasedOn!=aLayer->SenseBase())
1.797 + return EFalse;
1.798 + }
1.799 + TInt size;
1.800 + const TUint8* ptr=((CCharFormatLayer*)aLayer)->Ptr(size); // some naff design at work here!
1.801 + return CFormatLayer::IsIdentical(ptr,size);
1.802 + }
1.803 +
1.804 +EXPORT_C TBool CCharFormatLayer::IsIdentical(const TCharFormat& aCharFormat,const TCharFormatMask& aMask)const
1.805 +/** Compares a format attribute container with the current layer. For the two
1.806 +objects to be identical, the current layer must contain only the attributes
1.807 +specified in the argument aMask, and these attributes must have the same
1.808 +values as those in aCharFormat. None of the current layer's based-on links are
1.809 +searched.
1.810 +
1.811 +@param aCharFormat Contains the attribute values used in the comparison.
1.812 +@param aMask A bitmask specifying which attributes are relevant to the function.
1.813 +
1.814 +@return ETrue if the formatting of the current layer exactly matches that
1.815 +contained in aCharFormat, otherwise EFalse. */
1.816 + {
1.817 + TCharFormat thisCharFormat;
1.818 + TCharFormatMask thisCharFormatMask;
1.819 + Sense(thisCharFormat,thisCharFormatMask);
1.820 + if (thisCharFormatMask!=aMask)
1.821 + return EFalse;
1.822 + return thisCharFormat.IsEqual(aCharFormat,aMask);
1.823 + }
1.824 +
1.825 +
1.826 +CFormatLayer* CCharFormatLayer::RestoreNewL(RReadStream& aStream)
1.827 +/** Return a new CCharFormatLayer, having restored it from aStream.
1.828 +Overrides the base class method, to provide a new format layer of
1.829 +the correct type.*/
1.830 + {return CCharFormatLayer::NewL(aStream);}
1.831 +
1.832 +
1.833 +void CCharFormatLayer::FillCharFormat(TCharFormatX& aCharFormat,TCharFormatXMask& aMask)const
1.834 +/** Fills aCharFormat by dumping the current format layer into it, then follows
1.835 +each 'BasedOn' link in turn if it is not null. It is assumed that all based on
1.836 +links eventually terminate with nulls.*/
1.837 + {
1.838 + iStore.SenseCharFormat(aCharFormat,aMask);
1.839 + if (iBasedOn)
1.840 + ((CCharFormatLayer*)iBasedOn)->FillCharFormat(aCharFormat,aMask);
1.841 + }