os/textandloc/textrendering/texthandling/stext/TXTFMLYR.CPP
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 2003-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
#include <e32std.h>
sl@0
    20
#include <e32base.h>
sl@0
    21
#include "TXTFRMAT.H"
sl@0
    22
#include "TXTFMLYR.H"
sl@0
    23
#include <txtfmstm.h>
sl@0
    24
#include "TXTSTD.H"
sl@0
    25
sl@0
    26
#include "OstTraceDefinitions.h"
sl@0
    27
#ifdef OST_TRACE_COMPILER_IN_USE
sl@0
    28
#include "TXTFMLYRTraces.h"
sl@0
    29
#endif
sl@0
    30
sl@0
    31
#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
    32
#include "TXTFMLYR_INTERNAL.H"
sl@0
    33
#endif
sl@0
    34
sl@0
    35
CFormatLayer::CFormatLayer()
sl@0
    36
	{
sl@0
    37
	}
sl@0
    38
sl@0
    39
sl@0
    40
CFormatLayer::~CFormatLayer()
sl@0
    41
	{
sl@0
    42
	iStore.Reset();
sl@0
    43
	}
sl@0
    44
sl@0
    45
sl@0
    46
DLLEXPORT_C void CFormatLayer::__DbgTestInvariant() const
sl@0
    47
	{
sl@0
    48
	}
sl@0
    49
sl@0
    50
sl@0
    51
 
sl@0
    52
EXPORT_C void CFormatLayer::SetBase(const CFormatLayer* aBaseFormatLayer)
sl@0
    53
/** Sets the format layer which this layer's based-on link points to.
sl@0
    54
sl@0
    55
@param aBaseFormatLayer The format layer which this layer's based-on link 
sl@0
    56
points to. Specify NULL if this is the final layer in the chain (the layer 
sl@0
    57
on which all other layers are based). */
sl@0
    58
	{
sl@0
    59
	iBasedOn = aBaseFormatLayer;
sl@0
    60
	}
sl@0
    61
sl@0
    62
sl@0
    63
 
sl@0
    64
EXPORT_C const CFormatLayer* CFormatLayer::SenseBase() const
sl@0
    65
/** Gets the format layer which this layer's based-on link points to. If NULL, 
sl@0
    66
this layer is the final layer in the chain.
sl@0
    67
sl@0
    68
@return The format layer on which this layer is based. */
sl@0
    69
	{
sl@0
    70
	return iBasedOn;
sl@0
    71
	}
sl@0
    72
sl@0
    73
sl@0
    74
 
sl@0
    75
EXPORT_C TInt CFormatLayer::ChainCount() const
sl@0
    76
/** Gets the number of format layers in the chain, inclusive of itself. Assumes 
sl@0
    77
that the format layer chain has been correctly set up to terminate with a 
sl@0
    78
NULL based-on link.
sl@0
    79
sl@0
    80
@return The number of format layers in the chain, counting from the current 
sl@0
    81
layer. */
sl@0
    82
	{
sl@0
    83
	TInt chainCount=1;
sl@0
    84
	const CFormatLayer* next=iBasedOn;
sl@0
    85
	while (next)
sl@0
    86
		{
sl@0
    87
		++chainCount;
sl@0
    88
		next=next->iBasedOn;
sl@0
    89
		}
sl@0
    90
	return chainCount;
sl@0
    91
	}
sl@0
    92
sl@0
    93
sl@0
    94
sl@0
    95
const TUint8* CFormatLayer::Ptr(TInt& aSize)const
sl@0
    96
/** Return a pointer to the stored bytecode.*/	
sl@0
    97
    {
sl@0
    98
	return iStore.Ptr(aSize);
sl@0
    99
	}
sl@0
   100
sl@0
   101
sl@0
   102
sl@0
   103
EXPORT_C void CFormatLayer::Reset()
sl@0
   104
/** Deletes the contents of the format layer. The based-on link is not affected. */
sl@0
   105
	{
sl@0
   106
	iStore.Reset();
sl@0
   107
	}
sl@0
   108
sl@0
   109
sl@0
   110
sl@0
   111
EXPORT_C void CFormatLayer::InternalizeChainL(RReadStream& aStream,const CFormatLayer* aBase)
sl@0
   112
/** Restores a chain of format layers from a read stream. The layer at the end 
sl@0
   113
of the chain (the one furthest from this layer) is set to be based on the 
sl@0
   114
specified layer aBase, which may be NULL. This layer is set to be at the head 
sl@0
   115
of the restored chain (i.e. no other layers are based on it).
sl@0
   116
sl@0
   117
@param aStream Stream from which the format layer chain should be internalised. 
sl@0
   118
sl@0
   119
@param aBase The format layer at the end of the chain (furthest from this layer). 
sl@0
   120
May be NULL. */
sl@0
   121
	{
sl@0
   122
	TInt chainLength=aStream.ReadInt8L();
sl@0
   123
	if (chainLength<1)
sl@0
   124
		User::Leave(KErrCorrupt);  // Must restore at least one layer (this), else corrupt stream.
sl@0
   125
	TInt descendentCount=chainLength-1;
sl@0
   126
	for (TInt loop=0;loop<descendentCount;loop++)
sl@0
   127
		{// Restore each descendent of [this] layer.
sl@0
   128
		CFormatLayer* layer=RestoreNewL(aStream);
sl@0
   129
		layer->SetBase(aBase);
sl@0
   130
		CleanupStack::PushL(layer);
sl@0
   131
		aBase=layer;
sl@0
   132
		}
sl@0
   133
	aStream>> *this;
sl@0
   134
	SetBase(aBase);
sl@0
   135
	CleanupStack::Pop(descendentCount);
sl@0
   136
	}
sl@0
   137
sl@0
   138
sl@0
   139
sl@0
   140
sl@0
   141
EXPORT_C void CFormatLayer::ExternalizeChainL(RWriteStream& aStream,TInt aExcludeCount)const
sl@0
   142
/** Stores a chain of format layers. By default an entire chain is stored unless 
sl@0
   143
an exclude count is provided. In this case, the length of the chain stored 
sl@0
   144
is the ChainCount() minus the exclude count. The excluded layers are the ones 
sl@0
   145
starting with the layer with the NULL based-on link.
sl@0
   146
sl@0
   147
Note
sl@0
   148
sl@0
   149
The exclude count must be zero or greater but must be less than the total 
sl@0
   150
number of layers in the chain, otherwise a panic occurs.
sl@0
   151
sl@0
   152
@param aStream Stream to which the format layer chain should be externalised. 
sl@0
   153
@param aExcludeCount The number of layers to be excluded. By default, zero. */
sl@0
   154
	{
sl@0
   155
// ASSERT: aExcludeCount is positive.
sl@0
   156
	if (aExcludeCount<0)
sl@0
   157
	    {
sl@0
   158
	    OstTrace0( TRACE_FATAL, CFORMATLAYER_EXTERNALIZECHAINL, "ECannotStoreFormatLayerChain" );
sl@0
   159
	    }
sl@0
   160
	__ASSERT_ALWAYS(aExcludeCount>=0,Panic(ECannotStoreFormatLayerChain));
sl@0
   161
// ASSERT: The number of layers to be excluded is less than the total no. of layers.
sl@0
   162
	if (aExcludeCount>=ChainCount())
sl@0
   163
	    {
sl@0
   164
	    OstTrace0( TRACE_FATAL, DUP1_CFORMATLAYER_EXTERNALIZECHAINL, "ECannotStoreFormatLayerChain" );
sl@0
   165
	    }
sl@0
   166
	__ASSERT_ALWAYS(aExcludeCount<ChainCount(),Panic(ECannotStoreFormatLayerChain));
sl@0
   167
	TInt aCount=ChainCount()-aExcludeCount;
sl@0
   168
	aStream.WriteInt8L(aCount);  // Store the chain length.
sl@0
   169
	ExternalizeLayersRecurseL(aStream,--aCount);
sl@0
   170
	}	
sl@0
   171
	
sl@0
   172
sl@0
   173
void CFormatLayer::ExternalizeLayersRecurseL(RWriteStream& aStream,TInt aDescendantCount)const
sl@0
   174
/** Stores a format layer chain with *aLength* number of layers in a stack-like 
sl@0
   175
fashion. This necessitates navigating to the end of the chain and storing the 
sl@0
   176
layers as we unwind back to the top of the chain.*/
sl@0
   177
//
sl@0
   178
	{
sl@0
   179
	if (aDescendantCount)
sl@0
   180
		{
sl@0
   181
// ASSERT: The format layer chain is consistent.
sl@0
   182
		if (iBasedOn==NULL)
sl@0
   183
		    {
sl@0
   184
		    OstTrace0( TRACE_DUMP, CFORMATLAYER_EXTERNALIZELAYERSRECURSEL, "ECorruptFormatLayerChain" );
sl@0
   185
		    }
sl@0
   186
		__ASSERT_ALWAYS(iBasedOn!=NULL,Panic(ECorruptFormatLayerChain));
sl@0
   187
		iBasedOn->ExternalizeLayersRecurseL(aStream,--aDescendantCount);
sl@0
   188
		}
sl@0
   189
	aStream<< *this;
sl@0
   190
	}
sl@0
   191
	
sl@0
   192
/** Implementations of this function compare another format layer with the
sl@0
   193
current object. For the two layers to be equal, they must have the same 
sl@0
   194
contents and (if the second parameter is ETrue),their based-on links must 
sl@0
   195
point to the same format layer.
sl@0
   196
sl@0
   197
@param aLayer The layer to compare to this format layer.
sl@0
   198
@param aCheckBasedOnLink If ETrue, both layers' based-on links must point to 
sl@0
   199
the same format layer. If EFalse, the based-on links are not used in the 
sl@0
   200
comparison. By default, ETrue.
sl@0
   201
@return  ETrue if the two layers are identical, otherwise EFalse. */
sl@0
   202
TBool CFormatLayer::IsIdentical(const TUint8* aPtr,TInt aSize) const
sl@0
   203
	{
sl@0
   204
	TInt size=0;
sl@0
   205
	const TUint8* ptr=iStore.Ptr(size);
sl@0
   206
	if ((ptr==NULL && aPtr!=NULL) || (ptr!=NULL && aPtr==NULL))
sl@0
   207
		return EFalse;
sl@0
   208
	if (ptr==NULL && aPtr==NULL)
sl@0
   209
		return ETrue;
sl@0
   210
	return (!(TBool)(Mem::Compare(ptr,size,aPtr,aSize)));
sl@0
   211
	}
sl@0
   212
sl@0
   213
/** Tests whether any formatting is stored in the format layer.
sl@0
   214
sl@0
   215
@return ETrue if no formatting is stored in the format layer, otherwise returns 
sl@0
   216
EFalse. */
sl@0
   217
EXPORT_C TBool CFormatLayer::IsEmpty() const
sl@0
   218
	{
sl@0
   219
	TInt size=0;
sl@0
   220
	return iStore.Ptr(size)==NULL;
sl@0
   221
	}
sl@0
   222
sl@0
   223
/** Swaps the contents of this with aLayer.
sl@0
   224
@param aLayer The layer to swap contents with.
sl@0
   225
@internalComponent */
sl@0
   226
void CFormatLayer::Swap(CFormatLayer& aLayer)
sl@0
   227
	{
sl@0
   228
	iStore.Swap(aLayer.iStore);
sl@0
   229
	const CFormatLayer* t = iBasedOn;
sl@0
   230
	iBasedOn = aLayer.iBasedOn;
sl@0
   231
	aLayer.iBasedOn = t;
sl@0
   232
	}
sl@0
   233
sl@0
   234
/** Allocates and constructs an empty CParaFormatLayer. Its based-on link is 
sl@0
   235
NULL.
sl@0
   236
sl@0
   237
Note: Use SetL() to set format attributes in the layer. Use SetBase(), defined 
sl@0
   238
in the base class CFormatLayer, to set the layer's based on link.
sl@0
   239
sl@0
   240
@return Pointer to the new paragraph format layer. */
sl@0
   241
EXPORT_C CParaFormatLayer* CParaFormatLayer::NewL()
sl@0
   242
	{
sl@0
   243
	return new(ELeave) CParaFormatLayer;
sl@0
   244
	}
sl@0
   245
sl@0
   246
sl@0
   247
EXPORT_C CParaFormatLayer* CParaFormatLayer::NewL(RReadStream& aStream)
sl@0
   248
/** Allocates and constructs a CParaFormatLayer, restoring its format attributes 
sl@0
   249
from a stream. The layer's based-on link is set to NULL.
sl@0
   250
sl@0
   251
@param aStream Stream from which the layer is restored. 
sl@0
   252
@return Pointer to the new paragraph format layer. */
sl@0
   253
	{
sl@0
   254
	CParaFormatLayer* self=NewL();
sl@0
   255
	CleanupStack::PushL(self);
sl@0
   256
	self->InternalizeL(aStream);
sl@0
   257
	CleanupStack::Pop();
sl@0
   258
	return self;
sl@0
   259
	}
sl@0
   260
sl@0
   261
sl@0
   262
EXPORT_C CParaFormatLayer* CParaFormatLayer::NewL(const CParaFormat* aFormat,const TParaFormatMask& aMask)
sl@0
   263
/** Allocates and constructs a CParaFormatLayer. The attributes which are set 
sl@0
   264
in the mask are initialised to the values specified in the format container 
sl@0
   265
aParaFormat. The attributes which are not set in the mask are initialised to 
sl@0
   266
the default values for class CParaFormat. The new layer's based-on link is set 
sl@0
   267
to NULL.
sl@0
   268
sl@0
   269
@param aParaFormat Contains the attribute values to assign to the format layer. 
sl@0
   270
@param aMask Mask specifying which attributes should be initialized from 
sl@0
   271
aParaFormat. 
sl@0
   272
@return Pointer to ParaFormatLayer the new paragraph format layer. */
sl@0
   273
	{
sl@0
   274
	CParaFormatLayer* self=NewL();
sl@0
   275
	CleanupStack::PushL(self);
sl@0
   276
	self->SetL(aFormat,aMask);
sl@0
   277
	CleanupStack::Pop();
sl@0
   278
	return self;
sl@0
   279
	}
sl@0
   280
sl@0
   281
sl@0
   282
CParaFormatLayer* CParaFormatLayer::NewL(const CParaFormatLayer* aLayer)
sl@0
   283
/** Copying construction
sl@0
   284
 does not copy the based on link*/
sl@0
   285
	{
sl@0
   286
	CParaFormatLayer* self=NewL();  // based-on is NULL
sl@0
   287
	CleanupStack::PushL(self);
sl@0
   288
	aLayer->CloneLayerL(self);
sl@0
   289
	CleanupStack::Pop();			// self
sl@0
   290
	return self;
sl@0
   291
	}
sl@0
   292
sl@0
   293
CParaFormatLayer* CParaFormatLayer::NewCopyBaseL(const CParaFormatLayer* aLayer)
sl@0
   294
/** Copying construction
sl@0
   295
 copies based-on link*/
sl@0
   296
	{
sl@0
   297
	CParaFormatLayer* self=NewL(aLayer);  // based-on is NULL
sl@0
   298
	self->iBasedOn=aLayer->iBasedOn;
sl@0
   299
	return self;
sl@0
   300
	}
sl@0
   301
sl@0
   302
CParaFormatLayer::CParaFormatLayer()
sl@0
   303
/** Constructor.*/
sl@0
   304
// No ConstructL method since allocation is postponed until first Set.
sl@0
   305
//
sl@0
   306
	{
sl@0
   307
	}
sl@0
   308
sl@0
   309
EXPORT_C void CParaFormatLayer::ExternalizeL(RWriteStream& aStream)const
sl@0
   310
/** Externalises the paragraph format layer but not its based-on link to a 
sl@0
   311
write stream. The presence of this function means that the standard templated 
sl@0
   312
operator<<() (defined in s32strm.h) is available to externalise objects of 
sl@0
   313
this class.
sl@0
   314
sl@0
   315
@param aStream Stream to which the format layer should be externalised. */
sl@0
   316
	{aStream<< iStore;}
sl@0
   317
sl@0
   318
EXPORT_C void CParaFormatLayer::InternalizeL(RReadStream& aStream,const CFormatLayer* aBase)
sl@0
   319
/** Internalises the paragraph format layer but not its based-on link from a 
sl@0
   320
read stream. The presence of this function means that the standard templated 
sl@0
   321
operator>>() (defined in s32strm.h) is available to internalise objects of 
sl@0
   322
this class. The internalised layer is set to be based on the layer specified.
sl@0
   323
sl@0
   324
@param aStream Stream from which the format layer should be internalised. 
sl@0
   325
@param aBase The based-on link to assign to the layer. By default NULL. */
sl@0
   326
	{
sl@0
   327
	aStream>> iStore;
sl@0
   328
	SetBase(aBase);
sl@0
   329
	}
sl@0
   330
sl@0
   331
EXPORT_C void CParaFormatLayer::SetL(const CParaFormat* aDesiredEffectiveFormat,const TParaFormatMask& aMask)
sl@0
   332
/** Sets the layer's format attributes. The attributes which are set in the 
sl@0
   333
mask are set in the layer to the values specified in the format container 
sl@0
   334
aDesiredEffectiveFormat. The attributes which are not set in the mask are not 
sl@0
   335
changed.
sl@0
   336
sl@0
   337
Note: Any tab stops in aDesiredEffectiveFormat are merged with the tab stops in 
sl@0
   338
the current layer.
sl@0
   339
sl@0
   340
@param aDesiredEffectiveFormat Contains the attribute values to assign to 
sl@0
   341
the format layer. 
sl@0
   342
@param aMask Mask specifying which attributes should be set from 
sl@0
   343
aDesiredEffectiveFormat. */
sl@0
   344
	{
sl@0
   345
	if ( !aDesiredEffectiveFormat )
sl@0
   346
		{
sl@0
   347
		return;
sl@0
   348
		}
sl@0
   349
	
sl@0
   350
	const CParaFormat& desiredFormat = *aDesiredEffectiveFormat;
sl@0
   351
	CParaFormat currentEffectiveFormat;
sl@0
   352
	ResetOnCleanupL( &currentEffectiveFormat);
sl@0
   353
	if (iBasedOn)
sl@0
   354
		((CParaFormatLayer*)iBasedOn)->SenseEffectiveL(&currentEffectiveFormat);
sl@0
   355
	iStore.SetParaFormatL(desiredFormat,aMask,currentEffectiveFormat);
sl@0
   356
	CleanupStack::Pop();
sl@0
   357
	}
sl@0
   358
sl@0
   359
EXPORT_C void CParaFormatLayer::SenseEffectiveL(CParaFormat* aParaFormat,CParaFormat::TParaFormatGetMode aMode)const
sl@0
   360
/** Senses the layer's effective format, searching all based-on links. The 
sl@0
   361
resulting aParaFormat is fully populated, except that if aMode is 
sl@0
   362
EFixedAttributes, then only the fixed attributes (not tabs, paragraph borders 
sl@0
   363
or bullets) are written to it.
sl@0
   364
sl@0
   365
Notes:
sl@0
   366
sl@0
   367
The function also "tidies up" the layer's effective paragraph formatting, 
sl@0
   368
so that any zero height bullets, paragraph borders with a NULL line style 
sl@0
   369
or NULL tab stops are removed. 
sl@0
   370
sl@0
   371
The function can only leave if aMode has a value of EAllAttributes.
sl@0
   372
sl@0
   373
@param aParaFormat On return, contains the layer's effective formatting. 
sl@0
   374
Depending on the value of aMode, tabs, borders and bullets may be excluded. 
sl@0
   375
Must not be NULL or a panic occurs. 
sl@0
   376
@param aMode Controls which attributes are written to aParaFormat. If 
sl@0
   377
EAllAttributes, all attributes are written; if EFixedAttributes, tabs, 
sl@0
   378
bullets and borders are not written. */
sl@0
   379
	{
sl@0
   380
	if (aParaFormat==NULL)
sl@0
   381
	    {
sl@0
   382
	    OstTrace0( TRACE_FATAL, CPARAFORMATLAYER_SENSEEFFECTIVEL, "ENullFormatPointer" );
sl@0
   383
	    }
sl@0
   384
	__ASSERT_ALWAYS(aParaFormat!=NULL,Panic(ENullFormatPointer));
sl@0
   385
	aParaFormat->Reset();
sl@0
   386
	TParaFormatMask mask;
sl@0
   387
	FillParaFormatL(aParaFormat,mask,aMode);
sl@0
   388
	CleanupEffectiveFormat(aParaFormat,mask);
sl@0
   389
	}
sl@0
   390
sl@0
   391
EXPORT_C void CParaFormatLayer::SenseL(CParaFormat* aParaFormat,TParaFormatMask& aMask,CParaFormat::TParaFormatGetMode aMode)const
sl@0
   392
/** Senses the formatting which has been applied to the current layer only. No 
sl@0
   393
based-on links are searched. This function does not get the effective formatting, 
sl@0
   394
but the resulting aParaFormat is useable even if not all attributes are flagged 
sl@0
   395
for sensing in aMask because any attribute values not sensed from the current 
sl@0
   396
layer, are set to default values.
sl@0
   397
sl@0
   398
The function can only leave if aMode has a value of EAllAttributes.
sl@0
   399
sl@0
   400
@param aParaFormat On return, contains the formatting which has been applied 
sl@0
   401
to the current layer only. Any attributes not explicitly set in the current 
sl@0
   402
layer are initialised to the default values for a CParaFormat. Attributes 
sl@0
   403
specified in aMask are not sensed from this layer. The values for these 
sl@0
   404
attributes are also initialised to the default settings. Must not be NULL or 
sl@0
   405
a panic occurs. 
sl@0
   406
@param aMask A bitmask. Any attributes which are set in the mask as passed 
sl@0
   407
into the function are not sensed from the current layer. On return, indicates 
sl@0
   408
the attributes which were sensed from this layer. So, normally, when passed 
sl@0
   409
to the function, all attributes in the mask should be unset. 
sl@0
   410
@param aMode Controls which attributes are written to aParaFormat. If 
sl@0
   411
EAllAttributes, all attributes are written; if EFixedAttributes, tabs, bullets 
sl@0
   412
and borders are not written. */
sl@0
   413
	{
sl@0
   414
	if (aParaFormat==NULL)
sl@0
   415
	    {
sl@0
   416
	    OstTrace0( TRACE_FATAL, CPARAFORMATLAYER_SENSEL, "ENullFormatPointer" );
sl@0
   417
	    }
sl@0
   418
	__ASSERT_ALWAYS(aParaFormat!=NULL,Panic(ENullFormatPointer));
sl@0
   419
sl@0
   420
	iStore.SenseParaFormatL(*aParaFormat,aMask,aMode);
sl@0
   421
	}
sl@0
   422
sl@0
   423
sl@0
   424
void CFormatLayer::CloneLayerL(CFormatLayer* aClone)const
sl@0
   425
	{
sl@0
   426
	aClone->iStore.CopyL(iStore);
sl@0
   427
	}
sl@0
   428
sl@0
   429
sl@0
   430
EXPORT_C CFormatLayer* CParaFormatLayer::DoCloneL()const
sl@0
   431
//
sl@0
   432
//
sl@0
   433
	{
sl@0
   434
	return NewL(this);  // use copy construction
sl@0
   435
	}
sl@0
   436
sl@0
   437
sl@0
   438
sl@0
   439
EXPORT_C TBool CParaFormatLayer::IsIdenticalL(const CParaFormat* aParaFormat,const TParaFormatMask& aMask)const
sl@0
   440
/** Compares a format attribute container with the current layer. For the two 
sl@0
   441
objects to be identical, the current layer must contain only the attributes 
sl@0
   442
specified in the argument aMask, and these attributes must have the same values 
sl@0
   443
as those in aParaFormat. None of the current layer's based-on links are searched.
sl@0
   444
sl@0
   445
@param aParaFormat Contains the attribute values used in the comparison. 
sl@0
   446
@param aMask A bitmask specifying which attributes are relevant to the function. 
sl@0
   447
sl@0
   448
@return ETrue if the formatting of the current layer exactly matches that 
sl@0
   449
contained in aParaFormat. Otherwise EFalse. */
sl@0
   450
	{
sl@0
   451
	CParaFormat* thisParaFormat=CParaFormat::NewLC();
sl@0
   452
	TParaFormatMask thisParaFormatMask;
sl@0
   453
	SenseL(thisParaFormat,thisParaFormatMask);
sl@0
   454
	TBool result=EFalse;
sl@0
   455
	if (thisParaFormatMask!=aMask)
sl@0
   456
		result=EFalse;
sl@0
   457
	else if (thisParaFormat->IsEqual(*aParaFormat,aMask))
sl@0
   458
		result=ETrue;
sl@0
   459
	CleanupStack::PopAndDestroy();
sl@0
   460
	return result;
sl@0
   461
	}
sl@0
   462
sl@0
   463
EXPORT_C TBool CParaFormatLayer::IsIdentical(CFormatLayer* aLayer,TBool aCheckBasedOnLink)const
sl@0
   464
/** Compares another paragraph format layer with the current layer. For the two 
sl@0
   465
layers to be equal, they must have the same contents and (if the second 
sl@0
   466
parameter is ETrue), their based-on links must point to the same format layer.
sl@0
   467
sl@0
   468
@param aLayer The paragraph format layer to compare to this format layer. 
sl@0
   469
@param aCheckBasedOnLink If ETrue, both layers' based-on links must point to 
sl@0
   470
the same format layer. If EFalse, the based-on links are not used in the 
sl@0
   471
comparison. By default, ETrue. 
sl@0
   472
@return ETrue if the two layers are identical, otherwise EFalse. */
sl@0
   473
	{
sl@0
   474
	if (aCheckBasedOnLink)
sl@0
   475
		{
sl@0
   476
		if (iBasedOn!=aLayer->SenseBase())
sl@0
   477
			return EFalse;
sl@0
   478
		}
sl@0
   479
	TInt size;
sl@0
   480
	const TUint8* ptr=((CParaFormatLayer*)aLayer)->Ptr(size);		// some design went wrong here!
sl@0
   481
	return CFormatLayer::IsIdentical(ptr,size);
sl@0
   482
	}
sl@0
   483
sl@0
   484
EXPORT_C const TUint8* CParaFormatLayer::Ptr(TInt& aSize)const
sl@0
   485
/** Gets a pointer to the start of the buffer containing the layer's format 
sl@0
   486
attribute values.
sl@0
   487
sl@0
   488
@param aSize On return, set to the size of the buffer. 
sl@0
   489
@return Pointer to the buffer which contains the layer's format attribute 
sl@0
   490
values. */
sl@0
   491
	{return CFormatLayer::Ptr(aSize);}
sl@0
   492
sl@0
   493
EXPORT_C TUid CParaFormatLayer::Type()const
sl@0
   494
/** Returns the paragraph format layer UID. This can be used to distinguish 
sl@0
   495
between an ordinary paragraph format layer and paragraph styles, which have a 
sl@0
   496
different UID.
sl@0
   497
sl@0
   498
@return The UID of a paragraph format layer (KNormalParagraphStyleUid). */
sl@0
   499
	{return KNormalParagraphStyleUid;}
sl@0
   500
sl@0
   501
CFormatLayer* CParaFormatLayer::RestoreNewL(RReadStream& aStream)
sl@0
   502
/** Return a new CParaFormatLayer, having restored it from aStream.
sl@0
   503
 Overrides the base class method, to provide a new format layer of the correct 
sl@0
   504
 type.*/
sl@0
   505
	{return NewL(aStream);}
sl@0
   506
sl@0
   507
void CParaFormatLayer::FillParaFormatL(CParaFormat* aParaFormat,TParaFormatMask& aMask,CParaFormat::TParaFormatGetMode aMode)const
sl@0
   508
/** Fills aParaFormat by dumping the current format layer into it.  
sl@0
   509
Next traverse the 'basedOn' link if it is not NULL, and repeat.*/
sl@0
   510
	{
sl@0
   511
	if ( !aParaFormat )
sl@0
   512
		{
sl@0
   513
		return;
sl@0
   514
		}
sl@0
   515
	
sl@0
   516
	CParaFormat& senseFormat = *aParaFormat;
sl@0
   517
sl@0
   518
	iStore.SenseParaFormatL(senseFormat,aMask,aMode);
sl@0
   519
	if (iBasedOn)
sl@0
   520
		((CParaFormatLayer*)iBasedOn)->FillParaFormatL(aParaFormat,aMask,aMode);
sl@0
   521
	}
sl@0
   522
sl@0
   523
void CParaFormatLayer::CleanupEffectiveFormat(CParaFormat* aParaFormat,TParaFormatMask aMask)const
sl@0
   524
/** Removes anti-tabs, zero height and null bullets, and paragraph borders with
sl@0
   525
 null linestyles, from aParaFormat.  An effective format does not support the
sl@0
   526
 notion of anti-tabs etc.*/
sl@0
   527
	{
sl@0
   528
	if (aMask.AttribIsSet(EAttBullet))
sl@0
   529
		{
sl@0
   530
		if (aParaFormat->iBullet->iStyle == TBullet::ENullStyle || aParaFormat->iBullet->iHeightInTwips <= 0)
sl@0
   531
			{
sl@0
   532
			delete aParaFormat->iBullet;
sl@0
   533
			aParaFormat->iBullet = NULL;
sl@0
   534
			}
sl@0
   535
		}
sl@0
   536
sl@0
   537
	if (aMask.AttribIsSet(EAttTopBorder) ||
sl@0
   538
		aMask.AttribIsSet(EAttBottomBorder) ||
sl@0
   539
		aMask.AttribIsSet(EAttLeftBorder) ||
sl@0
   540
		aMask.AttribIsSet(EAttRightBorder))
sl@0
   541
		CleanupBorders(aParaFormat);
sl@0
   542
sl@0
   543
	if (aMask.AttribIsSet(EAttTabStop))
sl@0
   544
		{
sl@0
   545
		int index = 0;
sl@0
   546
		while (index < aParaFormat->TabCount())
sl@0
   547
			{
sl@0
   548
			TTabStop tab = aParaFormat->TabStop(index);
sl@0
   549
			if (tab.iType == TTabStop::ENullTab)
sl@0
   550
				aParaFormat->RemoveTab(tab.iTwipsPosition);
sl@0
   551
			else
sl@0
   552
				index++;
sl@0
   553
			}
sl@0
   554
		}
sl@0
   555
	}
sl@0
   556
sl@0
   557
sl@0
   558
void CParaFormatLayer::CleanupBorders(CParaFormat* aParaFormat)const
sl@0
   559
/** Destroys the paragraph border if it is of NULL linestyle,
sl@0
   560
 and nulls the pointer to it (aBorder).*/
sl@0
   561
	{
sl@0
   562
	if (aParaFormat->ParaBorder(CParaFormat::EParaBorderTop).iLineStyle==TParaBorder::ENullLineStyle &&
sl@0
   563
		aParaFormat->ParaBorder(CParaFormat::EParaBorderBottom).iLineStyle==TParaBorder::ENullLineStyle &&
sl@0
   564
		aParaFormat->ParaBorder(CParaFormat::EParaBorderLeft).iLineStyle==TParaBorder::ENullLineStyle &&
sl@0
   565
		aParaFormat->ParaBorder(CParaFormat::EParaBorderRight).iLineStyle==TParaBorder::ENullLineStyle)
sl@0
   566
		{
sl@0
   567
		aParaFormat->RemoveAllBorders();
sl@0
   568
		}
sl@0
   569
	}
sl@0
   570
sl@0
   571
sl@0
   572
EXPORT_C CCharFormatLayer* CCharFormatLayer::NewL()
sl@0
   573
/** Allocates and constructs an empty CCharFormatLayer. Its based-on link is 
sl@0
   574
NULL.
sl@0
   575
sl@0
   576
Note: Use SetL() to set format attributes in the layer. Use SetBase(), defined 
sl@0
   577
in the base class CFormatLayer, to set the layers based on link.
sl@0
   578
sl@0
   579
@return Pointer to the new character format layer. */
sl@0
   580
	{return new(ELeave)CCharFormatLayer;}
sl@0
   581
sl@0
   582
sl@0
   583
sl@0
   584
EXPORT_C CCharFormatLayer* CCharFormatLayer::NewL(RReadStream& aStream)
sl@0
   585
/** Allocates and constructs a CCharFormatLayer, restoring its format attributes 
sl@0
   586
from a stream. The layer's based-on link is set to NULL.
sl@0
   587
sl@0
   588
@param aStream Stream from which the layer is restored. 
sl@0
   589
@return Pointer to the new character format layer. */
sl@0
   590
	{
sl@0
   591
	CCharFormatLayer* self=NewL();
sl@0
   592
	CleanupStack::PushL(self);
sl@0
   593
	self->InternalizeL(aStream);
sl@0
   594
	CleanupStack::Pop();
sl@0
   595
	return self;
sl@0
   596
	}
sl@0
   597
sl@0
   598
sl@0
   599
EXPORT_C CCharFormatLayer* CCharFormatLayer::NewL(const TCharFormat& aFormat,const TCharFormatMask& aMask)
sl@0
   600
/** Returns a handle to a new charFormatLayer, after constructing
sl@0
   601
 it and setting it with the specified format and format mask.*/
sl@0
   602
	{
sl@0
   603
	CCharFormatLayer* self=NewL();
sl@0
   604
	CleanupStack::PushL(self);
sl@0
   605
	self->SetL(aFormat,aMask);
sl@0
   606
	CleanupStack::Pop();
sl@0
   607
	return self;
sl@0
   608
	}
sl@0
   609
sl@0
   610
sl@0
   611
CCharFormatLayer* CCharFormatLayer::NewL(const TCharFormatX& aFormat,const TCharFormatXMask& aMask)
sl@0
   612
	{
sl@0
   613
	CCharFormatLayer* self = NewL();
sl@0
   614
	CleanupStack::PushL(self);
sl@0
   615
	self->SetL(aFormat,aMask);
sl@0
   616
	CleanupStack::Pop();
sl@0
   617
	return self;
sl@0
   618
	}
sl@0
   619
sl@0
   620
sl@0
   621
CCharFormatLayer* CCharFormatLayer::NewL(const CCharFormatLayer* aLayer)
sl@0
   622
/** Copying construction
sl@0
   623
 does not copy based-on link.*/
sl@0
   624
	{
sl@0
   625
	CCharFormatLayer* self=NewL();  // based-on is NULL
sl@0
   626
	CleanupStack::PushL(self);
sl@0
   627
	aLayer->CloneLayerL(self);
sl@0
   628
	CleanupStack::Pop();			// self
sl@0
   629
	return self;
sl@0
   630
	}
sl@0
   631
sl@0
   632
CCharFormatLayer* CCharFormatLayer::NewCopyBaseL(const CCharFormatLayer* aLayer)
sl@0
   633
/** Copying construction
sl@0
   634
 copies based-on link*/
sl@0
   635
	{
sl@0
   636
	CCharFormatLayer* self=NewL(aLayer);  // based-on is NULL
sl@0
   637
	self->iBasedOn=aLayer->iBasedOn;
sl@0
   638
	return self;
sl@0
   639
	}
sl@0
   640
sl@0
   641
sl@0
   642
CCharFormatLayer::CCharFormatLayer()
sl@0
   643
	{
sl@0
   644
	}
sl@0
   645
sl@0
   646
EXPORT_C void CCharFormatLayer::ExternalizeL(RWriteStream& aStream)const
sl@0
   647
/** Externalises the character format layer but not its based-on link to a 
sl@0
   648
write stream. The presence of this function means that the standard templated 
sl@0
   649
operator<<() (defined in s32strm.h) is available to externalise objects of 
sl@0
   650
this class.
sl@0
   651
sl@0
   652
@param aStream Stream to which the format layer should be externalised. */
sl@0
   653
	{
sl@0
   654
	aStream << iStore;
sl@0
   655
	}
sl@0
   656
sl@0
   657
EXPORT_C void CCharFormatLayer::InternalizeL(RReadStream& aStream,const CFormatLayer* aBase)
sl@0
   658
/** Internalises the character format layer but not its based-on link from a 
sl@0
   659
read stream. The presence of this function means that the standard templated 
sl@0
   660
operator>>() (defined in s32strm.h) is available to internalise objects of 
sl@0
   661
this class. The internalised layer is set to be based on the layer specified.
sl@0
   662
sl@0
   663
@param aStream Stream from which the format layer should be internalised. 
sl@0
   664
@param aBase The based-on link to assign to the layer. By default NULL. */
sl@0
   665
	{
sl@0
   666
	aStream >> iStore;
sl@0
   667
	SetBase(aBase);
sl@0
   668
	}
sl@0
   669
sl@0
   670
sl@0
   671
EXPORT_C const TUint8* CCharFormatLayer::Ptr(TInt& aSize)const
sl@0
   672
/** Gets a pointer to the start of the buffer containing the layer's format 
sl@0
   673
attribute values.
sl@0
   674
sl@0
   675
@param aSize On return, set to the size of the buffer. 
sl@0
   676
@return Pointer to the buffer which contains the layer's format attribute 
sl@0
   677
values. */
sl@0
   678
	{
sl@0
   679
	return CFormatLayer::Ptr(aSize);
sl@0
   680
	}
sl@0
   681
sl@0
   682
EXPORT_C void CCharFormatLayer::SetL(const TCharFormat& aCharFormat,const TCharFormatMask& aMask)
sl@0
   683
/** Sets the layer's format attributes. The attributes which are set in the 
sl@0
   684
mask are set in the layer to the values specified in the format container 
sl@0
   685
aCharFormat. The attributes which are not set in the mask are not changed.
sl@0
   686
sl@0
   687
@param aCharFormat Contains the attribute values to assign to the format layer. 
sl@0
   688
@param aMask Mask specifying which attributes should be set from aCharFormat. */
sl@0
   689
	{
sl@0
   690
	TCharFormatX format(aCharFormat);
sl@0
   691
	iStore.SetCharFormatL(format,aMask);
sl@0
   692
	}
sl@0
   693
sl@0
   694
void CCharFormatLayer::SetL(const TCharFormatX& aCharFormat,const TCharFormatXMask& aMask)
sl@0
   695
/** Sets the layer's format attributes. The attributes which are set in the 
sl@0
   696
mask are set in the layer to the values specified in the format container 
sl@0
   697
aCharFormat. The attributes which are not set in the mask are not changed.
sl@0
   698
sl@0
   699
@param aCharFormat Contains the attribute values to assign to the format layer. 
sl@0
   700
@param aMask Mask specifying which attributes should be set from aCharFormat. */
sl@0
   701
	{
sl@0
   702
	iStore.SetCharFormatL(aCharFormat,aMask);
sl@0
   703
	}
sl@0
   704
sl@0
   705
EXPORT_C void CCharFormatLayer::SenseEffective(TCharFormat& aCharFormat)const
sl@0
   706
/** Senses the layer's effective format, searching all based-on links. The 
sl@0
   707
resulting aCharFormat is fully populated.
sl@0
   708
sl@0
   709
@param aCharFormat On return, contains the layer's effective formatting. */
sl@0
   710
	{
sl@0
   711
	TCharFormatX format;
sl@0
   712
	TCharFormatXMask mask;
sl@0
   713
	FillCharFormat(format,mask);
sl@0
   714
	aCharFormat = format.iCharFormat;
sl@0
   715
	}
sl@0
   716
sl@0
   717
void CCharFormatLayer::SenseEffective(TCharFormatX& aCharFormat) const
sl@0
   718
/** Senses the layer's effective format, searching all based-on links. The 
sl@0
   719
resulting aCharFormat is fully populated.
sl@0
   720
sl@0
   721
@param aCharFormat On return, contains the layer's effective formatting. */
sl@0
   722
	{
sl@0
   723
	TCharFormatXMask mask;
sl@0
   724
	aCharFormat = TCharFormatX(); // initialise character format; FillCharFormat doesn't do this
sl@0
   725
	FillCharFormat(aCharFormat,mask);
sl@0
   726
	}
sl@0
   727
sl@0
   728
EXPORT_C void CCharFormatLayer::Sense(TCharFormat& aCharFormat,TCharFormatMask& aMask)const
sl@0
   729
/** Senses the formatting which has been applied to the current layer only. No 
sl@0
   730
based-on links are searched. This function does not get the layer's effective 
sl@0
   731
formatting, but the resulting aCharFormat is fully populated, even if not 
sl@0
   732
all attributes are flagged for sensing in aMask because any attribute values 
sl@0
   733
not sensed from the current layer are set to default values.
sl@0
   734
sl@0
   735
@param aCharFormat On return, contains the formatting which has been applied 
sl@0
   736
to the current layer only. Any attributes not explicitly set in the current 
sl@0
   737
layer are set to the default values for a TCharFormat. Any attributes specified 
sl@0
   738
in aMask are not sensed from this layer. The values for these attributes are 
sl@0
   739
also initialised to the default settings. 
sl@0
   740
@param aMask A bitmask. Any attributes which are set in the mask as passed 
sl@0
   741
into the function are not sensed from the current layer. On return, indicates 
sl@0
   742
the attributes which were sensed from this layer. So, normally, when passed 
sl@0
   743
to the function, all attributes in the mask should be unset. */
sl@0
   744
	{
sl@0
   745
	TCharFormatX format(aCharFormat);
sl@0
   746
	TCharFormatXMask mask = aMask;
sl@0
   747
	iStore.SenseCharFormat(format,mask);
sl@0
   748
	aCharFormat = format.iCharFormat;
sl@0
   749
	mask.ClearExtendedAttribs();
sl@0
   750
	aMask = mask;
sl@0
   751
	}
sl@0
   752
sl@0
   753
void CCharFormatLayer::Sense(TCharFormatX& aCharFormat,TCharFormatXMask& aMask) const
sl@0
   754
/** Senses the formatting which has been applied to the current layer only. No 
sl@0
   755
based-on links are searched. This function does not get the layer's effective 
sl@0
   756
formatting, but the resulting aCharFormat is fully populated, even if not 
sl@0
   757
all attributes are flagged for sensing in aMask because any attribute values 
sl@0
   758
not sensed from the current layer are set to default values.
sl@0
   759
sl@0
   760
@param aCharFormat On return, contains the formatting which has been applied 
sl@0
   761
to the current layer only. Any attributes not explicitly set in the current 
sl@0
   762
layer are set to the default values for a TCharFormat. Any attributes specified 
sl@0
   763
in aMask are not sensed from this layer. The values for these attributes are 
sl@0
   764
also initialised to the default settings. 
sl@0
   765
@param aMask A bitmask. Any attributes which are set in the mask as passed 
sl@0
   766
into the function are not sensed from the current layer. On return, indicates 
sl@0
   767
the attributes which were sensed from this layer. So, normally, when passed 
sl@0
   768
to the function, all attributes in the mask should be unset. */
sl@0
   769
	{
sl@0
   770
	iStore.SenseCharFormat(aCharFormat,aMask);
sl@0
   771
	}
sl@0
   772
sl@0
   773
sl@0
   774
EXPORT_C CFormatLayer* CCharFormatLayer::DoCloneL()const
sl@0
   775
	{
sl@0
   776
	return NewL(this);  // use copy construction
sl@0
   777
	}
sl@0
   778
sl@0
   779
sl@0
   780
EXPORT_C TBool CCharFormatLayer::IsIdentical(CFormatLayer* aLayer,TBool aCheckBasedOnLink)const
sl@0
   781
/** Compares another character format layer with the current layer. For the two 
sl@0
   782
layers to be equal, they must have the same contents and (if the second 
sl@0
   783
parameter is ETrue), their based-on links must point to the same format layer.
sl@0
   784
sl@0
   785
@param aLayer The character format layer to compare to this format layer. 
sl@0
   786
@param aCheckBasedOnLink If ETrue, both layers' based-on links must point to 
sl@0
   787
the same format layer. If EFalse, the based-on links are not used in the 
sl@0
   788
comparison. By default, ETrue. 
sl@0
   789
@return ETrue if the two layers are identical, otherwise EFalse. */
sl@0
   790
	{
sl@0
   791
	if (aCheckBasedOnLink)
sl@0
   792
		{
sl@0
   793
		if (iBasedOn!=aLayer->SenseBase())
sl@0
   794
			return EFalse;
sl@0
   795
		}
sl@0
   796
	TInt size;
sl@0
   797
	const TUint8* ptr=((CCharFormatLayer*)aLayer)->Ptr(size);		// some naff design at work here!
sl@0
   798
	return CFormatLayer::IsIdentical(ptr,size);
sl@0
   799
	}
sl@0
   800
sl@0
   801
EXPORT_C TBool CCharFormatLayer::IsIdentical(const TCharFormat& aCharFormat,const TCharFormatMask& aMask)const
sl@0
   802
/** Compares a format attribute container with the current layer. For the two 
sl@0
   803
objects to be identical, the current layer must contain only the attributes 
sl@0
   804
specified in the argument aMask, and these attributes must have the same 
sl@0
   805
values as those in aCharFormat. None of the current layer's based-on links are 
sl@0
   806
searched.
sl@0
   807
sl@0
   808
@param aCharFormat Contains the attribute values used in the comparison. 
sl@0
   809
@param aMask A bitmask specifying which attributes are relevant to the function. 
sl@0
   810
sl@0
   811
@return ETrue if the formatting of the current layer exactly matches that 
sl@0
   812
contained in aCharFormat, otherwise EFalse. */
sl@0
   813
	{
sl@0
   814
	TCharFormat thisCharFormat;
sl@0
   815
	TCharFormatMask thisCharFormatMask;
sl@0
   816
	Sense(thisCharFormat,thisCharFormatMask);
sl@0
   817
	if (thisCharFormatMask!=aMask)
sl@0
   818
		return EFalse;
sl@0
   819
	return thisCharFormat.IsEqual(aCharFormat,aMask);
sl@0
   820
	}
sl@0
   821
sl@0
   822
sl@0
   823
CFormatLayer* CCharFormatLayer::RestoreNewL(RReadStream& aStream)
sl@0
   824
/** Return a new CCharFormatLayer, having restored it from aStream.
sl@0
   825
Overrides the base class method, to provide a new format layer of 
sl@0
   826
the correct type.*/
sl@0
   827
	{return CCharFormatLayer::NewL(aStream);}
sl@0
   828
sl@0
   829
sl@0
   830
void CCharFormatLayer::FillCharFormat(TCharFormatX& aCharFormat,TCharFormatXMask& aMask)const
sl@0
   831
/** Fills aCharFormat by dumping the current format layer into it, then follows 
sl@0
   832
each 'BasedOn' link in turn if it is not null.  It is assumed that all based on 
sl@0
   833
links eventually terminate with nulls.*/
sl@0
   834
	{
sl@0
   835
	iStore.SenseCharFormat(aCharFormat,aMask);
sl@0
   836
	if (iBasedOn)
sl@0
   837
		((CCharFormatLayer*)iBasedOn)->FillCharFormat(aCharFormat,aMask);
sl@0
   838
	}