os/textandloc/textrendering/texthandling/stext/TXTFRMAT.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     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".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description: 
    15 *
    16 */
    17 
    18 
    19 #include <e32std.h>
    20 #include <e32base.h>
    21 
    22 #include <gdi.h>
    23 #include "TXTFRMAT.H"
    24 
    25 #include "TXTSTD.H"
    26 #include "OstTraceDefinitions.h"
    27 #ifdef OST_TRACE_COMPILER_IN_USE
    28 #include "TXTFRMATTraces.h"
    29 #endif
    30 
    31 
    32 
    33 const TInt KParaDefaultLanguage=0;
    34 const TInt KParaDefaultLeftMargin=0;
    35 const TInt KParaDefaultRightMargin=0;
    36 const TInt KParaDefaultIndent=0;
    37 const CParaFormat::TAlignment KParaDefaultHorizAlign=CParaFormat::ELeftAlign;
    38 const CParaFormat::TAlignment KParaDefaultVertAlign=CParaFormat::EUnspecifiedAlign;
    39 const TInt KParaDefaultLineSpacing=200; // 200 twips = 10pt
    40 const CParaFormat::TLineSpacingControl KParaDefaultLineSpacingControl=CParaFormat::ELineSpacingAtLeastInTwips;
    41 const TInt KParaDefaultSpaceBefore=0;
    42 const TInt KParaDefaultSpaceAfter=0;
    43 const TBool KParaDefaultKeepTogether=EFalse;
    44 const TBool KParaDefaultKeepWithNext=EFalse;
    45 const TBool KParaDefaultStartNewPage=EFalse;
    46 const TBool KParaDefaultWidowOrphan=EFalse;
    47 const TBool KParaDefaultWrap=ETrue;
    48 const TInt KParaDefaultBorderMargin=0;
    49 const TInt KParaDefaultTabWidth=360; // 360 twips = 0.25"
    50 const TUint KParFormatBits = (2 << EAttTabStop) - 1;
    51 const TUint KCharFormatBits = (2 << (EAttFontHiddenText - EAttCharLanguage)) - 1;
    52 
    53 	
    54 EXPORT_C TTabStop::TTabStop():
    55 	iTwipsPosition(0),
    56 	iType(ELeftTab)
    57 /** The default C++ constructor constructs a TTabStop. The twips position is 
    58 initialised to zero and the alignment to ELeftTab. */
    59  	{
    60 	}
    61 
    62 EXPORT_C TTabStop::TTabStop(const TTabStop& aTabStop):
    63 	iTwipsPosition(aTabStop.iTwipsPosition),
    64 	iType(aTabStop.iType)
    65 	{
    66 	}
    67 
    68 EXPORT_C TTabStop& TTabStop::operator=(const TTabStop& aTabStop)
    69 /** Assigns the twips position and alignment of aTabStop to the current TTabStop.
    70 
    71 @param aTabStop The tab stop to assign to the current tab stop. 
    72 @return The current tab stop. */
    73 	{
    74 	iTwipsPosition=aTabStop.iTwipsPosition;
    75 	iType=aTabStop.iType;
    76 	return *this;
    77 	}
    78 
    79 EXPORT_C TBool TTabStop::operator==(const TTabStop& aTabStop)const
    80 /** Compares two tab stops for equality. To be equal, they must have the same 
    81 twips position and alignment.
    82 
    83 @param aTabStop The tab stop to compare with the current tab stop. 
    84 @return ETrue if both tab stops have the same twips position and alignment. 
    85 EFalse if not. */
    86 	{
    87 	if (iTwipsPosition!=aTabStop.iTwipsPosition)
    88 		return EFalse;
    89 	if (iType!=aTabStop.iType)
    90 		return EFalse;
    91 	return ETrue;
    92 	}
    93 
    94 EXPORT_C TParaBorder::TParaBorder():
    95 	iLineStyle(ENullLineStyle),
    96 	iThickness(0),
    97 	iColor(TLogicalRgb::ESystemForegroundColor),
    98 	iAutoColor(ETrue)
    99 /** The default C++ constructor constructs a TParaBorder, initializing its line 
   100 style to ENullLineStyle, its line thickness to zero, its colour to KRgbBlack 
   101 and iAutocolor to ETrue. */
   102 	{
   103 	}
   104 
   105 EXPORT_C TBool TParaBorder::operator==(const TParaBorder& aParaBorder)const
   106 /** Compares two paragraph border sides for equality. For two paragraph border 
   107 sides to be equal, all data members must be equal.
   108 
   109 @param aBorder The paragraph border to compare with the current border.
   110 @return ETrue if the two paragraph border sides are equal, EFalse if not. */
   111 	{
   112 	if (iLineStyle!=aParaBorder.iLineStyle)
   113 		return EFalse;
   114 	if (iThickness!=aParaBorder.iThickness)
   115 		return EFalse;
   116 	if (iColor!=aParaBorder.iColor)
   117 		return EFalse;
   118 	if (iAutoColor!=aParaBorder.iAutoColor)
   119 		return EFalse;
   120 	return ETrue;
   121 	}
   122 
   123 EXPORT_C TBullet::TBullet():
   124 	iCharacterCode(0x2022),
   125 	iHeightInTwips(0),
   126 	iHangingIndent(TRUE),
   127 	iColor(TLogicalRgb::ESystemForegroundColor),
   128 	iStyle(EBulletStyle),
   129 	iStartNumber(1),
   130 	iAlignment(ELeftAlign)
   131 /** The default C++ constructor constructs a TBullet, initializing the 
   132 character code to 0x2022, the height to zero, the colour to the system's 
   133 default foreground colour and the hanging indent to ETrue. The typeface 
   134 is not initialised. */
   135 	{
   136 	}
   137 
   138 EXPORT_C TBool TBullet::operator==(const TBullet& aBullet)const
   139 /** Compares two bullet points for equality. For two bullet points to be equal, 
   140 all data members must be equal.
   141 
   142 @param aBullet The bullet point to compare. 
   143 @return ETrue if the two bullet points are equal, EFalse if not. */
   144 	{
   145 	return iCharacterCode == aBullet.iCharacterCode &&
   146 		   iHeightInTwips == aBullet.iHeightInTwips &&
   147 		   iHangingIndent == aBullet.iHangingIndent &&
   148 		   iColor == aBullet.iColor &&
   149 		   iStyle == aBullet.iStyle &&
   150 		   iStartNumber == aBullet.iStartNumber &&
   151 		   iAlignment == aBullet.iAlignment &&
   152 		   iTypeface == aBullet.iTypeface;
   153 	}
   154 
   155 EXPORT_C CParaFormat* CParaFormat::NewL()
   156 /** Allocates and constructs a CParaFormat object. All attributes are 
   157 initialised with default values.
   158 
   159 @return The new CParaFormat object. */
   160 	{
   161 	return new(ELeave) CParaFormat;
   162 	}
   163 
   164 EXPORT_C CParaFormat* CParaFormat::NewLC()
   165 /** Allocates and constructs a CParaFormat object. All attributes are 
   166 initialised with default values. Leaves the object on the cleanup stack.
   167 
   168 @return The new CParaFormat object. */
   169 	{
   170 	CParaFormat* self=new(ELeave) CParaFormat;
   171 	CleanupStack::PushL(self);
   172 	return self;
   173 	}
   174 
   175 EXPORT_C CParaFormat* CParaFormat::NewL(const CParaFormat& aFormat)
   176 /** Allocates and constructs a new CParaFormat. All attributes are initialised 
   177 to the values contained in the aFormat argument.
   178 
   179 @param aFormat Paragraph format container whose values are used to initialise 
   180 the new CParaFormat. 
   181 @return The new CParaFormat object. */
   182 	{
   183 	CParaFormat* self = new(ELeave) CParaFormat(aFormat);
   184 	CleanupStack::PushL(self);
   185 	self->CopyL(aFormat);
   186 	CleanupStack::Pop();
   187 	return self;
   188 	}
   189 
   190 EXPORT_C CParaFormat::CParaFormat():
   191 	iTabList(NULL),
   192 	iParaBorderArray(NULL),
   193 	iFillColor(TLogicalRgb::ESystemBackgroundColor),
   194 	iLanguage(KParaDefaultLanguage),
   195 	iLeftMarginInTwips(KParaDefaultLeftMargin),
   196 	iRightMarginInTwips(KParaDefaultRightMargin),
   197 	iIndentInTwips(KParaDefaultIndent),
   198 	iHorizontalAlignment(KParaDefaultHorizAlign),
   199 	iVerticalAlignment(KParaDefaultVertAlign),
   200 	iLineSpacingInTwips(KParaDefaultLineSpacing),
   201 	iLineSpacingControl(KParaDefaultLineSpacingControl),
   202 	iSpaceBeforeInTwips(KParaDefaultSpaceBefore),
   203 	iSpaceAfterInTwips(KParaDefaultSpaceAfter),
   204 	iKeepTogether(KParaDefaultKeepTogether),
   205 	iKeepWithNext(KParaDefaultKeepWithNext),
   206 	iStartNewPage(KParaDefaultStartNewPage),
   207 	iWidowOrphan(KParaDefaultWidowOrphan),
   208 	iWrap(KParaDefaultWrap),
   209 	iBorderMarginInTwips(KParaDefaultBorderMargin),
   210 	iBullet(NULL),
   211 	iDefaultTabWidthInTwips(KParaDefaultTabWidth)
   212 /** The default C++ constructor constructs a new CParaFormat initialising all 
   213 attributes to the default settings.
   214 
   215 Note: This function allows a CParaFormat object to be created on the stack. This 
   216 should only be done if it is known in advance that the object will not be 
   217 used to store tab stops, bullets or borders. */
   218 	{
   219 	}
   220 
   221 
   222 CParaFormat::CParaFormat(const CParaFormat& aFormat):
   223 	iFillColor(aFormat.iFillColor),
   224 	iLanguage(aFormat.iLanguage),
   225 	iLeftMarginInTwips(aFormat.iLeftMarginInTwips),
   226 	iRightMarginInTwips(aFormat.iRightMarginInTwips),
   227 	iIndentInTwips(aFormat.iIndentInTwips),
   228 	iHorizontalAlignment(aFormat.iHorizontalAlignment),
   229 	iVerticalAlignment(aFormat.iVerticalAlignment),
   230 	iLineSpacingInTwips(aFormat.iLineSpacingInTwips),
   231 	iLineSpacingControl(aFormat.iLineSpacingControl),
   232 	iSpaceBeforeInTwips(aFormat.iSpaceBeforeInTwips),
   233 	iSpaceAfterInTwips(aFormat.iSpaceAfterInTwips),
   234 	iKeepTogether(aFormat.iKeepTogether),
   235 	iKeepWithNext(aFormat.iKeepWithNext),
   236 	iStartNewPage(aFormat.iStartNewPage),
   237 	iWidowOrphan(aFormat.iWidowOrphan),
   238 	iWrap(aFormat.iWrap),
   239 	iBorderMarginInTwips(aFormat.iBorderMarginInTwips),
   240 	iDefaultTabWidthInTwips(aFormat.iDefaultTabWidthInTwips)
   241 	{
   242 	}
   243 
   244 void CParaFormat::CreateTabListL()
   245 	{
   246 	if (!iTabList)
   247 		iTabList = new(ELeave) CArrayFixFlat<TTabStop>(ETabStoreGranularity);
   248 	}
   249  
   250 EXPORT_C CParaFormat::~CParaFormat()
   251 /** The destructor frees all resources owned by the paragraph format container 
   252 (tabs, borders and bullets), prior to its destruction. 
   253 
   254 Note that Strip() also sets the resource pointers to NULL. This is important 
   255 in case CParaFormat is on the stack and gets deleted twice: once by the cleanup 
   256 stack and once by exceptions being unwound. */
   257 	{
   258 	Strip();
   259 	}
   260 
   261 EXPORT_C void CParaFormat::CopyL(const CParaFormat& aFormat)
   262 /** Copies all attribute values from another paragraph format container.
   263 
   264 @param aFormat Contains the attribute values to copy. */
   265 	{
   266 	TParaFormatMask mask;
   267 	mask.SetAll();
   268 	CopyL(aFormat,mask);
   269 	}
   270 
   271 EXPORT_C void CParaFormat::CopyL(const CParaFormat& aFormat,const TParaFormatMask& aMask)
   272 /** Copies selected attribute values from another paragraph format container. 
   273 Only the attributes which are set in the mask are copied.
   274 
   275 @param aFormat Contains the attribute values to copy. 
   276 @param aMask Bitmask specifying the attributes to copy. */
   277 	{
   278 	if (aMask.AttribIsSet(EAttParaLanguage))
   279 		iLanguage=aFormat.iLanguage;
   280 	if (aMask.AttribIsSet(EAttFillColor))
   281 		iFillColor=aFormat.iFillColor;
   282 	if (aMask.AttribIsSet(EAttLeftMargin))
   283 		iLeftMarginInTwips=aFormat.iLeftMarginInTwips;
   284 	if (aMask.AttribIsSet(EAttRightMargin))
   285 		iRightMarginInTwips=aFormat.iRightMarginInTwips;
   286 	if (aMask.AttribIsSet(EAttIndent))
   287 		iIndentInTwips=aFormat.iIndentInTwips;
   288 	if (aMask.AttribIsSet(EAttAlignment))
   289 		iHorizontalAlignment=aFormat.iHorizontalAlignment;
   290 	if (aMask.AttribIsSet(EAttVerticalAlignment))
   291 		iVerticalAlignment=aFormat.iVerticalAlignment;
   292 	if (aMask.AttribIsSet(EAttLineSpacing))
   293 		iLineSpacingInTwips=aFormat.iLineSpacingInTwips;
   294 	if (aMask.AttribIsSet(EAttLineSpacingControl))
   295 		iLineSpacingControl=aFormat.iLineSpacingControl;
   296 	if (aMask.AttribIsSet(EAttSpaceBefore))
   297 		iSpaceBeforeInTwips=aFormat.iSpaceBeforeInTwips;
   298 	if (aMask.AttribIsSet(EAttSpaceAfter))
   299 		iSpaceAfterInTwips=aFormat.iSpaceAfterInTwips;
   300 	if (aMask.AttribIsSet(EAttKeepTogether))
   301 		iKeepTogether=aFormat.iKeepTogether;
   302 	if (aMask.AttribIsSet(EAttKeepWithNext))
   303 		iKeepWithNext=aFormat.iKeepWithNext;
   304 	if (aMask.AttribIsSet(EAttStartNewPage))
   305 		iStartNewPage=aFormat.iStartNewPage;
   306 	if (aMask.AttribIsSet(EAttWidowOrphan))
   307 		iWidowOrphan=aFormat.iWidowOrphan;
   308 	if (aMask.AttribIsSet(EAttWrap))
   309 		iWrap=aFormat.iWrap;
   310 
   311 	// Copy borders; create a border array only if necessary.
   312 	if (iParaBorderArray || aFormat.iParaBorderArray)
   313 		{
   314 		if (!iParaBorderArray)
   315 			iParaBorderArray = new(ELeave) TParaBorderArray;
   316 		if (aMask.AttribIsSet(EAttTopBorder))
   317 			iParaBorderArray->iBorder[EParaBorderTop] = aFormat.ParaBorder(EParaBorderTop);
   318 		if (aMask.AttribIsSet(EAttBottomBorder))
   319 			iParaBorderArray->iBorder[EParaBorderBottom] = aFormat.ParaBorder(EParaBorderBottom);
   320 		if (aMask.AttribIsSet(EAttLeftBorder))
   321 			iParaBorderArray->iBorder[EParaBorderLeft] = aFormat.ParaBorder(EParaBorderLeft);
   322 		if (aMask.AttribIsSet(EAttRightBorder))
   323 			iParaBorderArray->iBorder[EParaBorderRight] = aFormat.ParaBorder(EParaBorderRight);
   324 		TParaBorder default_border;
   325 		TBool borders_are_default = TRUE;
   326 		for (int i = 0; i < 4; i++)
   327 			if (iParaBorderArray->iBorder[i] != default_border)
   328 				{
   329 				borders_are_default = FALSE;
   330 				break;
   331 				}
   332 		if (borders_are_default)
   333 			RemoveAllBorders();
   334 		}
   335 
   336 	if (iBullet || aFormat.iBullet)
   337 		{
   338 		if (aMask.AttribIsSet(EAttBullet))
   339 			{
   340 			if (aFormat.iBullet && aFormat.iBullet->iStyle != TBullet::ENullStyle)
   341 				{
   342 				if (!iBullet)
   343 					iBullet = new(ELeave) TBullet;
   344 				*iBullet = *aFormat.iBullet;
   345 				}
   346 			else
   347 				{
   348 				delete iBullet;
   349 				iBullet = NULL;
   350 				}
   351 			}
   352 		}
   353 
   354 	if (aMask.AttribIsSet(EAttDefaultTabWidth))
   355 		iDefaultTabWidthInTwips = aFormat.iDefaultTabWidthInTwips;
   356 
   357 	if (iTabList || aFormat.iTabList)
   358 		{
   359 		if (aMask.AttribIsSet(EAttTabStop))
   360 			{
   361 			RemoveAllTabs();
   362 			if (aFormat.iTabList && aFormat.iTabList->Count())
   363 				{
   364 				CreateTabListL();
   365 				iTabList->InsertL(0,&(aFormat.iTabList->At(0)),aFormat.iTabList->Count());
   366 				}
   367 			}
   368 		}
   369 	}
   370 
   371 EXPORT_C TBool CParaFormat::IsEqual(const CParaFormat& aFormat,const TParaFormatMask& aMask) const
   372 /** Compares selected attribute values for equality. Only the attributes 
   373 specified in the mask are involved in the comparison.
   374 
   375 @param aFormat Contains the attribute values to compare. 
   376 @param aMask Bitmask specifying the attributes to compare. 
   377 @return ETrue if the two format containers have the same values for the
   378 attributes specified in the mask, EFalse if not. */
   379 	{
   380 	if (aMask.AttribIsSet(EAttParaLanguage))
   381 		{
   382 		if (iLanguage!=aFormat.iLanguage)
   383 			return EFalse;
   384 		}
   385 	if (aMask.AttribIsSet(EAttFillColor))
   386 		{
   387 		if (iFillColor!=aFormat.iFillColor)
   388 			return EFalse;
   389 		}
   390 	if (aMask.AttribIsSet(EAttLeftMargin))
   391 		{
   392 		if (iLeftMarginInTwips!=aFormat.iLeftMarginInTwips)
   393 			return EFalse;
   394 		}
   395 	if (aMask.AttribIsSet(EAttRightMargin))
   396 		{
   397 		if (iRightMarginInTwips!=aFormat.iRightMarginInTwips)
   398 			return EFalse;
   399 		}
   400 	if (aMask.AttribIsSet(EAttIndent))
   401 		{
   402 		if (iIndentInTwips!=aFormat.iIndentInTwips)	
   403 			return EFalse;
   404 		}
   405 	if (aMask.AttribIsSet(EAttAlignment))
   406 		{
   407 		if (iHorizontalAlignment!=aFormat.iHorizontalAlignment)
   408 			return EFalse;
   409 		}
   410 	if (aMask.AttribIsSet(EAttVerticalAlignment))
   411 		{
   412 		if (iVerticalAlignment!=aFormat.iVerticalAlignment)
   413 			return EFalse;
   414 		}
   415 	if (aMask.AttribIsSet(EAttLineSpacing))
   416 		{
   417 		if (iLineSpacingInTwips!=aFormat.iLineSpacingInTwips)
   418 			return EFalse;
   419 		}
   420 	if (aMask.AttribIsSet(EAttLineSpacingControl))
   421 		{
   422 		if (iLineSpacingControl!=aFormat.iLineSpacingControl)
   423 			return EFalse;
   424 		}
   425 	if (aMask.AttribIsSet(EAttSpaceBefore))
   426 		{
   427 		if (iSpaceBeforeInTwips!=aFormat.iSpaceBeforeInTwips)
   428 			return EFalse;
   429 		}
   430 	if (aMask.AttribIsSet(EAttSpaceAfter))
   431 		{
   432 		if (iSpaceAfterInTwips!=aFormat.iSpaceAfterInTwips)
   433 			return EFalse;
   434 		}
   435 	if (aMask.AttribIsSet(EAttKeepTogether))
   436 		{
   437 		if (iKeepTogether!=aFormat.iKeepTogether)
   438 			return EFalse;
   439 		}
   440 	if (aMask.AttribIsSet(EAttKeepWithNext))
   441 		{
   442 		if (iKeepWithNext!=aFormat.iKeepWithNext)
   443 			return EFalse;
   444 		}
   445 	if (aMask.AttribIsSet(EAttStartNewPage))
   446 		{
   447 		if (iStartNewPage!=aFormat.iStartNewPage)
   448 			return EFalse;
   449 		}
   450 	if (aMask.AttribIsSet(EAttWidowOrphan))
   451 		{
   452 		if (iWidowOrphan!=aFormat.iWidowOrphan)
   453 			return EFalse;
   454 		}
   455 	if (aMask.AttribIsSet(EAttWrap))
   456 		{
   457 		if (iWrap!=aFormat.iWrap)
   458 			return EFalse;
   459 		}
   460 	if (aMask.AttribIsSet(EAttBorderMargin))
   461 		{
   462 		if (iBorderMarginInTwips!=aFormat.iBorderMarginInTwips)
   463 			return EFalse;
   464 		}
   465 	if (aMask.AttribIsSet(EAttTopBorder))
   466 		{
   467 		if (iParaBorderArray)
   468 			{
   469 			if (ParaBorder(EParaBorderTop)!=aFormat.ParaBorder(EParaBorderTop))
   470 				return EFalse;
   471 			}
   472 		else
   473 			{
   474 			if (aFormat.ParaBorder(EParaBorderTop).iLineStyle!=TParaBorder::ENullLineStyle)
   475 				return EFalse;
   476 			}
   477 		}
   478 	if (aMask.AttribIsSet(EAttBottomBorder))
   479 		{
   480 		if (iParaBorderArray)
   481 			{
   482 			if (ParaBorder(EParaBorderBottom)!=aFormat.ParaBorder(EParaBorderBottom))
   483 				return EFalse;
   484 			}
   485 		else
   486 			{
   487 			if (aFormat.ParaBorder(EParaBorderBottom).iLineStyle!=TParaBorder::ENullLineStyle)
   488 				return EFalse;
   489 			}
   490 		}
   491 	if (aMask.AttribIsSet(EAttLeftBorder))
   492 		{
   493 		if (iParaBorderArray)
   494 			{
   495 			if (ParaBorder(EParaBorderLeft)!=aFormat.ParaBorder(EParaBorderLeft))
   496 				return EFalse;
   497 			}
   498 		else
   499 			{
   500 			if (aFormat.ParaBorder(EParaBorderLeft).iLineStyle!=TParaBorder::ENullLineStyle)
   501 				return EFalse;
   502 			}
   503 		}
   504 	if (aMask.AttribIsSet(EAttRightBorder))
   505 		{
   506 		if (iParaBorderArray)
   507 			{
   508 			if (ParaBorder(EParaBorderRight)!=aFormat.ParaBorder(EParaBorderRight))
   509 				return EFalse;
   510 			}
   511 		else
   512 			{
   513 			if (aFormat.ParaBorder(EParaBorderRight).iLineStyle!=TParaBorder::ENullLineStyle)
   514 				return EFalse;
   515 			}
   516 		}
   517 	if (aMask.AttribIsSet(EAttBullet))
   518 		{
   519 		if (iBullet)
   520 			{
   521 			if (!aFormat.iBullet)
   522 				return EFalse;
   523 			if (*iBullet!=*aFormat.iBullet)
   524 				return EFalse;
   525 			}
   526 		else
   527 			{
   528 			if (aFormat.iBullet)
   529 				return EFalse;
   530 			}
   531 		}
   532 	if (aMask.AttribIsSet(EAttDefaultTabWidth))
   533 		{
   534 		if (iDefaultTabWidthInTwips!=aFormat.iDefaultTabWidthInTwips)
   535 			return EFalse;
   536 		}
   537 	if (aMask.AttribIsSet(EAttTabStop))
   538 		{
   539 		if (TabCount()>0)
   540 			{// Check the tablists are the same.
   541 			if (TabCount()!=aFormat.TabCount())
   542 				return EFalse;
   543 			TInt tabCount=TabCount();
   544 			for (TInt index=0;index<tabCount;index++)
   545 				{// Check each stored tab is the same
   546 				if (TabStop(index)!=aFormat.TabStop(index))
   547 					return EFalse;
   548 				}
   549 			}
   550 		else if (aFormat.TabCount()>0)
   551 			return EFalse;
   552 		}
   553 	return ETrue;
   554 	}
   555 
   556 EXPORT_C TBool CParaFormat::IsEqual(const CParaFormat& aFormat) const
   557 /** Compares all attribute values for equality.
   558 
   559 @param aFormat Contains the attribute values to compare. 
   560 @return ETrue if the two format containers have the same values for all 
   561 attributes, EFalse if not. */
   562 	{
   563 	TParaFormatMask mask;
   564 	mask.SetAll();
   565 	return IsEqual(aFormat,mask);
   566 	}
   567  
   568 EXPORT_C void CParaFormat::Strip()
   569 /** Deletes all paragraph borders, bullets and tab stops. No other 
   570 attributes are affected. */
   571 	{
   572 	RemoveAllTabs();
   573 	RemoveAllBorders();
   574 	delete iBullet;
   575 	iBullet = NULL;
   576 	}
   577 
   578 EXPORT_C void CParaFormat::Reset()
   579 /** Resets all paragraph format attributes to their default values. All tab 
   580 stops, paragraph borders and bullet points which have been allocated are 
   581 deleted and set to NULL. */
   582 	{
   583 	ResetNonDestructive();
   584 	Strip();
   585 	}
   586 	
   587 EXPORT_C void CParaFormat::ResetNonDestructive()
   588 /** Resets all paragraph format attributes to their default values, but any 
   589 allocated tab stops, bullet points and paragraph borders are preserved. */
   590 	{
   591 	iLanguage=KParaDefaultLanguage;
   592 	iFillColor=TLogicalRgb::ESystemBackgroundColor;
   593 	iLeftMarginInTwips=KParaDefaultLeftMargin;
   594 	iRightMarginInTwips=KParaDefaultRightMargin;
   595 	iIndentInTwips=KParaDefaultIndent;
   596 	iHorizontalAlignment=KParaDefaultHorizAlign;
   597 	iVerticalAlignment=KParaDefaultVertAlign;
   598 	iLineSpacingInTwips=KParaDefaultLineSpacing;
   599 	iLineSpacingControl=KParaDefaultLineSpacingControl;
   600 	iSpaceBeforeInTwips=KParaDefaultSpaceBefore;
   601 	iSpaceAfterInTwips=KParaDefaultSpaceAfter;
   602 	iKeepTogether=KParaDefaultKeepTogether;
   603 	iKeepWithNext=KParaDefaultKeepWithNext;
   604 	iStartNewPage=KParaDefaultStartNewPage;
   605 	iWidowOrphan=KParaDefaultWidowOrphan;
   606 	iWrap=KParaDefaultWrap;
   607 	iBorderMarginInTwips=KParaDefaultBorderMargin;
   608 	iDefaultTabWidthInTwips=KParaDefaultTabWidth;
   609 	}
   610 
   611 EXPORT_C void CParaFormat::StoreTabL(const TTabStop& aTabStop)
   612 /** Adds a tab stop to the list of tab stops, maintaining the ordering of the 
   613 list, (ascending order of twips position). Multiple tabs with the same twips 
   614 position are not allowed, so that if aTabStop shares the same twips position 
   615 as an existing tab stop, regardless of its alignment, the existing tab stop is 
   616 replaced by aTabStop.
   617 
   618 @param aTabStop The tab stop to be stored. */
   619 	{
   620 	CreateTabListL();
   621 	TKeyArrayFix tabKey(_FOFF(TTabStop,iTwipsPosition),ECmpTUint32);
   622 	TInt tabNumber;
   623 	CArrayFixFlat<TTabStop>& tabs=*iTabList;
   624 	if (tabs.FindIsq(aTabStop,tabKey,tabNumber)==0)
   625 		tabs[tabNumber]=aTabStop;		// found one at this position
   626 	else
   627 		tabs.InsertL(tabNumber,aTabStop);	// add the new one
   628 	}
   629 
   630 EXPORT_C void CParaFormat::RemoveTab(TInt aTabPosition)
   631 /** Deletes a tab stop identified by its twips position. If the specified 
   632 tab stop does not exist, the function has no effect.
   633 	
   634 @param aTabTwipsPosition The twips position of the tab stop to remove. */
   635 
   636 	{
   637 	TInt tabNumber=LocateTab(aTabPosition);  // will return KTabNotFound if no tab list present
   638 	if (tabNumber!=KTabNotFound)
   639 		{
   640 		iTabList->Delete(tabNumber);
   641 		iTabList->Compress();
   642 		}
   643 	}
   644 
   645 EXPORT_C const TTabStop CParaFormat::TabStop(TInt aTabIndex) const
   646 /** Gets the tab stop located at the specified index within the tab list 
   647 (counting from zero). Tab stops are ordered in ascending order of twips 
   648 position. If the object has no tab list, then a default tab stop is returned.
   649 
   650 @param aTabIndex The offset of the tab stop in the tab list. Must be less 
   651 than the total number of tab stops, or a panic occurs. To find the total number 
   652 of tab stops, use TabCount(). 
   653 @return The tab stop located at the specified index. */
   654 	{
   655 	if (aTabIndex>=TabCount())
   656 	    {
   657 	    OstTrace0( TRACE_FATAL, CPARAFORMAT_TABSTOP, "ETabNotFound" );
   658 	    }
   659 	__ASSERT_ALWAYS(aTabIndex<TabCount(),Panic(ETabNotFound));
   660 	
   661 	return (iTabList)
   662 		? TTabStop((*iTabList)[aTabIndex])
   663 		: TTabStop();
   664 	}
   665 
   666 EXPORT_C TInt CParaFormat::LocateTab(TInt aTabPosition) const
   667 /** Locates the tab stop specified by its twips position, and returns its
   668 offset in the tab list.
   669 
   670 @param aTabPosition The twips position of the tab stop.
   671 @return The tab stop's index within the tab list (counting from zero). 
   672 KTabNotFound indicates that  no tab stop has the specified twips 
   673 position, or that no tab list has been allocated. */
   674 	{
   675 	if (!iTabList)
   676 		return KTabNotFound;
   677 	TKeyArrayFix tabKey(_FOFF(TTabStop,iTwipsPosition),ECmpTUint32);
   678 	TInt tabNumber=0;
   679 	TTabStop tab;
   680 	tab.iTwipsPosition=aTabPosition;
   681 	TInt error=iTabList->FindIsq(tab,tabKey,tabNumber);
   682 	return error ?KTabNotFound :tabNumber;
   683 	}
   684 
   685 EXPORT_C void CParaFormat::SetParaBorderL(TParaBorderSide aSide,const TParaBorder& aBorder)
   686 /** Sets one side of the object's paragraph border. If a border on the specified 
   687 side already exists, it is replaced.
   688 
   689 Note: Setting a single side of the object's paragraph border incurs the overhead 
   690 of allocating storage for the three other sides, which are assigned default 
   691 values.
   692 
   693 @param aSide The side for the paragraph border. 
   694 @param aBorder Specification for the paragraph border. */
   695 	{
   696 	TParaBorderArray* borders=iParaBorderArray;
   697 	if (!borders)
   698 		iParaBorderArray=borders=new(ELeave) TParaBorderArray;
   699 	borders->iBorder[aSide]=aBorder;
   700 	}
   701 
   702 EXPORT_C const TParaBorder CParaFormat::ParaBorder(TParaBorderSide aSide)const
   703 /** Gets the paragraph border on the side specified. If no paragraph border 
   704 array has been allocated, returns a default paragraph border.
   705 
   706 @param aSide The side for the paragraph border. 
   707 @return The paragraph border on the specified side. */
   708 	{
   709 	if (iParaBorderArray)
   710 		return iParaBorderArray->iBorder[aSide];
   711 	return TParaBorder();
   712 	}
   713 
   714 EXPORT_C void CParaFormat::RemoveAllBorders()
   715 /** Deletes all paragraph borders. */
   716 	{
   717 	delete iParaBorderArray;
   718 	iParaBorderArray = NULL;
   719 	}
   720 
   721 EXPORT_C TBool CParaFormat::AllBordersEqual(const CParaFormat& aFormat)const
   722 /** Tests whether all paragraph borders in the specified paragraph format 
   723 container are identical to the paragraph borders of this paragraph format 
   724 container.
   725 
   726 @param aFormat Contains the set of paragraph borders to compare. 
   727 @return ETrue if both objects have exactly the same set of paragraph borders. 
   728 EFalse if not. */
   729 	{
   730 	if (aFormat.ParaBorder(EParaBorderTop)!=ParaBorder(EParaBorderTop))
   731 		return EFalse;
   732 	if (aFormat.ParaBorder(EParaBorderBottom)!=ParaBorder(EParaBorderBottom))
   733 		return EFalse;
   734 	if (aFormat.ParaBorder(EParaBorderLeft)!=ParaBorder(EParaBorderLeft))
   735 		return EFalse;
   736 	if (aFormat.ParaBorder(EParaBorderRight)!=ParaBorder(EParaBorderRight))
   737 		return EFalse;
   738 	return ETrue;
   739 	}
   740  
   741 EXPORT_C TBool CParaFormat::IsBorderEqual(TParaBorderSide aSide,const CParaFormat& aFormat)const
   742 /** Tests whether the paragraph border located on the specified side is the same 
   743 as the border on the corresponding side in this object. For two borders to 
   744 be equal, they must both either be set or unset, and if set, they must have 
   745 the same characteristics.
   746 
   747 @param aSide Indicates which side should be compared. 
   748 @param aFormat Contains the paragraph border to compare. 
   749 @return ETrue if the border sides are identical. EFalse if not. */
   750 	{
   751 	return aFormat.ParaBorder(aSide)==ParaBorder(aSide);
   752 	}
   753 
   754  EXPORT_C void TParaFormatMask::SetAll()
   755 /** Sets all attribute flags in the paragraph format mask. */
   756 	{
   757 	iGuard = KMaxTUint;
   758 	}
   759  
   760 EXPORT_C void TParaFormatMask::ClearAll()
   761 /** Clears all attribute flags in the paragraph format mask. */
   762 	{
   763 	iGuard=0;
   764 	}
   765 
   766 EXPORT_C  TBool TParaFormatMask::operator==(const TParaFormatMask& aMask)const
   767 /** Compares two paragraph format masks for equality.
   768 
   769 @param aMask The mask to compare. 
   770 @return ETrue if all flags are the same in both masks. EFalse if any differ. */
   771 	{
   772 	return (iGuard & KParFormatBits) == (aMask.iGuard & KParFormatBits);
   773 	}
   774 
   775 EXPORT_C TFontPresentation::TFontPresentation():
   776 	iTextColor(TLogicalRgb::ESystemForegroundColor),
   777 	iHighlightColor(TLogicalRgb::ESystemForegroundColor),
   778 	iHighlightStyle(EFontHighlightNone),
   779 	iStrikethrough(EStrikethroughOff),
   780 	iUnderline(EUnderlineOff),
   781 	iHiddenText(EFalse),
   782 	iPictureAlignment(EAlignBaseLine)
   783 /** The default C++ constructor constructs a TFontPresentation object, 
   784 initializing all member data to default values. For details of these values, 
   785 see the table below. */
   786 	{
   787 	}
   788 
   789 EXPORT_C TBool TFontPresentation::IsEqual(const TFontPresentation& aFontPresentation,const TCharFormatMask& aMask) const
   790 /** Compares selected attribute values for equality. Only the attributes 
   791 specified in the mask are involved in the comparison.
   792 
   793 @param aFontPresentation Contains the attribute values to compare. 
   794 @param aMask Bitmask specifying the attributes involved in the comparison. 
   795 @return ETrue if the two objects have the same values for the attributes 
   796 specified in the mask, EFalse if not. */
   797 	{
   798 	// Compare two font presentations, comparing only the attributes selected by the mask.
   799 	if (aMask.AttribIsSet(EAttColor))
   800 		{
   801 		if (iTextColor!=aFontPresentation.iTextColor)
   802 			return EFalse;
   803 		}
   804 	if (aMask.AttribIsSet(EAttFontHighlightColor))
   805 		{
   806 		if (iHighlightColor!=aFontPresentation.iHighlightColor)
   807 			return EFalse;
   808 		}
   809 	if (aMask.AttribIsSet(EAttFontHighlightStyle))
   810 		{
   811 		if (iHighlightStyle!=aFontPresentation.iHighlightStyle)
   812 			return EFalse;
   813 		}
   814 	if (aMask.AttribIsSet(EAttFontStrikethrough))
   815 		{
   816 		if (iStrikethrough!=aFontPresentation.iStrikethrough)
   817 			return EFalse;
   818 		}
   819 	if (aMask.AttribIsSet(EAttFontUnderline))
   820 		{
   821 		if (iUnderline!=aFontPresentation.iUnderline)
   822 			return EFalse;
   823 		}
   824 	if (aMask.AttribIsSet(EAttFontHiddenText))
   825 		{
   826 		if (iHiddenText!=aFontPresentation.iHiddenText)
   827 			return EFalse;
   828 		}
   829 	if (aMask.AttribIsSet(EAttFontPictureAlignment))
   830 		{
   831 		if (iPictureAlignment!=aFontPresentation.iPictureAlignment)
   832 			return EFalse;
   833 		}
   834 	return ETrue;
   835 	}
   836 
   837 EXPORT_C TCharFormat::TCharFormat():
   838 	iLanguage(0)
   839 /** Allocates and constructs a TCharFormat object. The font-independent 
   840 attributes are initialised with default values. The language is initialised 
   841 to zero. The font (iFontSpec) is set to be proportional and serif and to have 
   842 a height of 200 twips. The typeface name is not initialised. */
   843 	{
   844 	iFontSpec.iTypeface.SetAttributes(TTypeface::EProportional | TTypeface::ESerif);
   845 	iFontSpec.iHeight = 200;
   846 	}
   847 
   848 EXPORT_C TCharFormat::TCharFormat(const TDesC &aTypefaceName,TInt aHeight):
   849 	iLanguage(0),
   850 	iFontSpec(aTypefaceName,aHeight)
   851 /** The C++ constructor is used to construct the TCharFormat object with a font 
   852 (typeface name and font height). The font-independent attributes are initialised 
   853 to default values; for details, see class TFontPresentation. The language 
   854 is initialised to zero.
   855 
   856 @param aTypefaceName Specifies the typeface name. 
   857 @param aHeight Specifies the font height in twips. */
   858 	{
   859 	}
   860 
   861 EXPORT_C TBool TCharFormat::IsEqual(const TCharFormat& aFormat,const TCharFormatMask& aMask) const
   862 /** Compares selected attribute values for equality. Only the attributes 
   863 specified in the mask are involved in the comparison.
   864 
   865 @param aFormat Contains the attribute values to compare. 
   866 @param aMask Bitmask specifying the attributes to compare. 
   867 @return ETrue if the two format containers have the same values for the 
   868 attributes specified in the mask, EFalse if not. */
   869 	{
   870 	if (aMask.AttribIsSet(EAttCharLanguage))
   871 		{
   872 		if (iLanguage!=aFormat.iLanguage)
   873 			return EFalse;
   874 		}
   875 	if (!iFontPresentation.IsEqual(aFormat.iFontPresentation,aMask))
   876 		return EFalse;
   877 	if (aMask.AttribIsSet(EAttFontHeight))
   878 		{
   879 		if (iFontSpec.iHeight!=aFormat.iFontSpec.iHeight)
   880 			return EFalse;
   881 		}
   882 	if (aMask.AttribIsSet(EAttFontTypeface))
   883 		{
   884 		if (!(iFontSpec.iTypeface==aFormat.iFontSpec.iTypeface))
   885 			return EFalse;
   886 		}
   887 	if (aMask.AttribIsSet(EAttFontPosture))
   888 		{
   889 		if (iFontSpec.iFontStyle.Posture()!=aFormat.iFontSpec.iFontStyle.Posture())
   890 			return EFalse;
   891 		}
   892 	if (aMask.AttribIsSet(EAttFontStrokeWeight))
   893 		{
   894 		if (iFontSpec.iFontStyle.StrokeWeight()!=aFormat.iFontSpec.iFontStyle.StrokeWeight())
   895 			return EFalse;
   896 		}
   897 	if (aMask.AttribIsSet(EAttFontPrintPos))
   898 		{
   899 		if (iFontSpec.iFontStyle.PrintPosition()!=aFormat.iFontSpec.iFontStyle.PrintPosition())
   900 			return EFalse;
   901 		}
   902 	return ETrue;
   903 	}
   904 
   905 
   906 EXPORT_C TBool TCharFormat::IsEqual(const TCharFormat& aFormat) const
   907 /** Compares all attribute values for equality.
   908 
   909 @param aFormat Contains the attribute values to compare. 
   910 @return ETrue if the two format containers have the same values for all 
   911 attributes, EFalse if not. */
   912 	{
   913 	TCharFormatMask mask;
   914 	mask.SetAll();
   915 	return IsEqual(aFormat,mask);
   916 	}
   917 
   918 EXPORT_C void TCharFormatMask::SetAll()
   919 /** Sets all attribute flags in the character format mask. */
   920 	{
   921 	iGuard = KMaxTUint;
   922 	}
   923 
   924 EXPORT_C void TCharFormatMask::ClearAll()
   925 /** Clears all attribute flags in the character format mask. */
   926 	{
   927 	iGuard = 0;
   928 	}
   929 
   930 EXPORT_C  TBool TCharFormatMask::operator==(const TCharFormatMask& aMask)const
   931 /** Compares two character format masks for equality.
   932 
   933 @param aMask The mask to compare. 
   934 @return ETrue if all flags are the same in both masks. EFalse if any differ. */
   935 	{
   936 	return (iGuard & KCharFormatBits) == (aMask.iGuard & KCharFormatBits);
   937 	}