First public contribution.
2 * Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
26 #include "OstTraceDefinitions.h"
27 #ifdef OST_TRACE_COMPILER_IN_USE
28 #include "TXTFRMATTraces.h"
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;
54 EXPORT_C TTabStop::TTabStop():
57 /** The default C++ constructor constructs a TTabStop. The twips position is
58 initialised to zero and the alignment to ELeftTab. */
62 EXPORT_C TTabStop::TTabStop(const TTabStop& aTabStop):
63 iTwipsPosition(aTabStop.iTwipsPosition),
68 EXPORT_C TTabStop& TTabStop::operator=(const TTabStop& aTabStop)
69 /** Assigns the twips position and alignment of aTabStop to the current TTabStop.
71 @param aTabStop The tab stop to assign to the current tab stop.
72 @return The current tab stop. */
74 iTwipsPosition=aTabStop.iTwipsPosition;
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.
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.
87 if (iTwipsPosition!=aTabStop.iTwipsPosition)
89 if (iType!=aTabStop.iType)
94 EXPORT_C TParaBorder::TParaBorder():
95 iLineStyle(ENullLineStyle),
97 iColor(TLogicalRgb::ESystemForegroundColor),
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. */
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.
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. */
112 if (iLineStyle!=aParaBorder.iLineStyle)
114 if (iThickness!=aParaBorder.iThickness)
116 if (iColor!=aParaBorder.iColor)
118 if (iAutoColor!=aParaBorder.iAutoColor)
123 EXPORT_C TBullet::TBullet():
124 iCharacterCode(0x2022),
126 iHangingIndent(TRUE),
127 iColor(TLogicalRgb::ESystemForegroundColor),
128 iStyle(EBulletStyle),
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. */
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.
142 @param aBullet The bullet point to compare.
143 @return ETrue if the two bullet points are equal, EFalse if not. */
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;
155 EXPORT_C CParaFormat* CParaFormat::NewL()
156 /** Allocates and constructs a CParaFormat object. All attributes are
157 initialised with default values.
159 @return The new CParaFormat object. */
161 return new(ELeave) CParaFormat;
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.
168 @return The new CParaFormat object. */
170 CParaFormat* self=new(ELeave) CParaFormat;
171 CleanupStack::PushL(self);
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.
179 @param aFormat Paragraph format container whose values are used to initialise
181 @return The new CParaFormat object. */
183 CParaFormat* self = new(ELeave) CParaFormat(aFormat);
184 CleanupStack::PushL(self);
185 self->CopyL(aFormat);
190 EXPORT_C CParaFormat::CParaFormat():
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),
211 iDefaultTabWidthInTwips(KParaDefaultTabWidth)
212 /** The default C++ constructor constructs a new CParaFormat initialising all
213 attributes to the default settings.
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. */
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)
244 void CParaFormat::CreateTabListL()
247 iTabList = new(ELeave) CArrayFixFlat<TTabStop>(ETabStoreGranularity);
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.
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. */
261 EXPORT_C void CParaFormat::CopyL(const CParaFormat& aFormat)
262 /** Copies all attribute values from another paragraph format container.
264 @param aFormat Contains the attribute values to copy. */
266 TParaFormatMask mask;
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.
275 @param aFormat Contains the attribute values to copy.
276 @param aMask Bitmask specifying the attributes to copy. */
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))
311 // Copy borders; create a border array only if necessary.
312 if (iParaBorderArray || aFormat.iParaBorderArray)
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)
329 borders_are_default = FALSE;
332 if (borders_are_default)
336 if (iBullet || aFormat.iBullet)
338 if (aMask.AttribIsSet(EAttBullet))
340 if (aFormat.iBullet && aFormat.iBullet->iStyle != TBullet::ENullStyle)
343 iBullet = new(ELeave) TBullet;
344 *iBullet = *aFormat.iBullet;
354 if (aMask.AttribIsSet(EAttDefaultTabWidth))
355 iDefaultTabWidthInTwips = aFormat.iDefaultTabWidthInTwips;
357 if (iTabList || aFormat.iTabList)
359 if (aMask.AttribIsSet(EAttTabStop))
362 if (aFormat.iTabList && aFormat.iTabList->Count())
365 iTabList->InsertL(0,&(aFormat.iTabList->At(0)),aFormat.iTabList->Count());
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.
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. */
380 if (aMask.AttribIsSet(EAttParaLanguage))
382 if (iLanguage!=aFormat.iLanguage)
385 if (aMask.AttribIsSet(EAttFillColor))
387 if (iFillColor!=aFormat.iFillColor)
390 if (aMask.AttribIsSet(EAttLeftMargin))
392 if (iLeftMarginInTwips!=aFormat.iLeftMarginInTwips)
395 if (aMask.AttribIsSet(EAttRightMargin))
397 if (iRightMarginInTwips!=aFormat.iRightMarginInTwips)
400 if (aMask.AttribIsSet(EAttIndent))
402 if (iIndentInTwips!=aFormat.iIndentInTwips)
405 if (aMask.AttribIsSet(EAttAlignment))
407 if (iHorizontalAlignment!=aFormat.iHorizontalAlignment)
410 if (aMask.AttribIsSet(EAttVerticalAlignment))
412 if (iVerticalAlignment!=aFormat.iVerticalAlignment)
415 if (aMask.AttribIsSet(EAttLineSpacing))
417 if (iLineSpacingInTwips!=aFormat.iLineSpacingInTwips)
420 if (aMask.AttribIsSet(EAttLineSpacingControl))
422 if (iLineSpacingControl!=aFormat.iLineSpacingControl)
425 if (aMask.AttribIsSet(EAttSpaceBefore))
427 if (iSpaceBeforeInTwips!=aFormat.iSpaceBeforeInTwips)
430 if (aMask.AttribIsSet(EAttSpaceAfter))
432 if (iSpaceAfterInTwips!=aFormat.iSpaceAfterInTwips)
435 if (aMask.AttribIsSet(EAttKeepTogether))
437 if (iKeepTogether!=aFormat.iKeepTogether)
440 if (aMask.AttribIsSet(EAttKeepWithNext))
442 if (iKeepWithNext!=aFormat.iKeepWithNext)
445 if (aMask.AttribIsSet(EAttStartNewPage))
447 if (iStartNewPage!=aFormat.iStartNewPage)
450 if (aMask.AttribIsSet(EAttWidowOrphan))
452 if (iWidowOrphan!=aFormat.iWidowOrphan)
455 if (aMask.AttribIsSet(EAttWrap))
457 if (iWrap!=aFormat.iWrap)
460 if (aMask.AttribIsSet(EAttBorderMargin))
462 if (iBorderMarginInTwips!=aFormat.iBorderMarginInTwips)
465 if (aMask.AttribIsSet(EAttTopBorder))
467 if (iParaBorderArray)
469 if (ParaBorder(EParaBorderTop)!=aFormat.ParaBorder(EParaBorderTop))
474 if (aFormat.ParaBorder(EParaBorderTop).iLineStyle!=TParaBorder::ENullLineStyle)
478 if (aMask.AttribIsSet(EAttBottomBorder))
480 if (iParaBorderArray)
482 if (ParaBorder(EParaBorderBottom)!=aFormat.ParaBorder(EParaBorderBottom))
487 if (aFormat.ParaBorder(EParaBorderBottom).iLineStyle!=TParaBorder::ENullLineStyle)
491 if (aMask.AttribIsSet(EAttLeftBorder))
493 if (iParaBorderArray)
495 if (ParaBorder(EParaBorderLeft)!=aFormat.ParaBorder(EParaBorderLeft))
500 if (aFormat.ParaBorder(EParaBorderLeft).iLineStyle!=TParaBorder::ENullLineStyle)
504 if (aMask.AttribIsSet(EAttRightBorder))
506 if (iParaBorderArray)
508 if (ParaBorder(EParaBorderRight)!=aFormat.ParaBorder(EParaBorderRight))
513 if (aFormat.ParaBorder(EParaBorderRight).iLineStyle!=TParaBorder::ENullLineStyle)
517 if (aMask.AttribIsSet(EAttBullet))
521 if (!aFormat.iBullet)
523 if (*iBullet!=*aFormat.iBullet)
532 if (aMask.AttribIsSet(EAttDefaultTabWidth))
534 if (iDefaultTabWidthInTwips!=aFormat.iDefaultTabWidthInTwips)
537 if (aMask.AttribIsSet(EAttTabStop))
540 {// Check the tablists are the same.
541 if (TabCount()!=aFormat.TabCount())
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))
550 else if (aFormat.TabCount()>0)
556 EXPORT_C TBool CParaFormat::IsEqual(const CParaFormat& aFormat) const
557 /** Compares all attribute values for equality.
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. */
563 TParaFormatMask mask;
565 return IsEqual(aFormat,mask);
568 EXPORT_C void CParaFormat::Strip()
569 /** Deletes all paragraph borders, bullets and tab stops. No other
570 attributes are affected. */
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. */
583 ResetNonDestructive();
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. */
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;
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.
618 @param aTabStop The tab stop to be stored. */
621 TKeyArrayFix tabKey(_FOFF(TTabStop,iTwipsPosition),ECmpTUint32);
623 CArrayFixFlat<TTabStop>& tabs=*iTabList;
624 if (tabs.FindIsq(aTabStop,tabKey,tabNumber)==0)
625 tabs[tabNumber]=aTabStop; // found one at this position
627 tabs.InsertL(tabNumber,aTabStop); // add the new one
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.
634 @param aTabTwipsPosition The twips position of the tab stop to remove. */
637 TInt tabNumber=LocateTab(aTabPosition); // will return KTabNotFound if no tab list present
638 if (tabNumber!=KTabNotFound)
640 iTabList->Delete(tabNumber);
641 iTabList->Compress();
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.
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. */
655 if (aTabIndex>=TabCount())
657 OstTrace0( TRACE_FATAL, CPARAFORMAT_TABSTOP, "ETabNotFound" );
659 __ASSERT_ALWAYS(aTabIndex<TabCount(),Panic(ETabNotFound));
662 ? TTabStop((*iTabList)[aTabIndex])
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.
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. */
677 TKeyArrayFix tabKey(_FOFF(TTabStop,iTwipsPosition),ECmpTUint32);
680 tab.iTwipsPosition=aTabPosition;
681 TInt error=iTabList->FindIsq(tab,tabKey,tabNumber);
682 return error ?KTabNotFound :tabNumber;
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.
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
693 @param aSide The side for the paragraph border.
694 @param aBorder Specification for the paragraph border. */
696 TParaBorderArray* borders=iParaBorderArray;
698 iParaBorderArray=borders=new(ELeave) TParaBorderArray;
699 borders->iBorder[aSide]=aBorder;
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.
706 @param aSide The side for the paragraph border.
707 @return The paragraph border on the specified side. */
709 if (iParaBorderArray)
710 return iParaBorderArray->iBorder[aSide];
711 return TParaBorder();
714 EXPORT_C void CParaFormat::RemoveAllBorders()
715 /** Deletes all paragraph borders. */
717 delete iParaBorderArray;
718 iParaBorderArray = NULL;
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
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.
730 if (aFormat.ParaBorder(EParaBorderTop)!=ParaBorder(EParaBorderTop))
732 if (aFormat.ParaBorder(EParaBorderBottom)!=ParaBorder(EParaBorderBottom))
734 if (aFormat.ParaBorder(EParaBorderLeft)!=ParaBorder(EParaBorderLeft))
736 if (aFormat.ParaBorder(EParaBorderRight)!=ParaBorder(EParaBorderRight))
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.
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. */
751 return aFormat.ParaBorder(aSide)==ParaBorder(aSide);
754 EXPORT_C void TParaFormatMask::SetAll()
755 /** Sets all attribute flags in the paragraph format mask. */
760 EXPORT_C void TParaFormatMask::ClearAll()
761 /** Clears all attribute flags in the paragraph format mask. */
766 EXPORT_C TBool TParaFormatMask::operator==(const TParaFormatMask& aMask)const
767 /** Compares two paragraph format masks for equality.
769 @param aMask The mask to compare.
770 @return ETrue if all flags are the same in both masks. EFalse if any differ. */
772 return (iGuard & KParFormatBits) == (aMask.iGuard & KParFormatBits);
775 EXPORT_C TFontPresentation::TFontPresentation():
776 iTextColor(TLogicalRgb::ESystemForegroundColor),
777 iHighlightColor(TLogicalRgb::ESystemForegroundColor),
778 iHighlightStyle(EFontHighlightNone),
779 iStrikethrough(EStrikethroughOff),
780 iUnderline(EUnderlineOff),
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. */
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.
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. */
798 // Compare two font presentations, comparing only the attributes selected by the mask.
799 if (aMask.AttribIsSet(EAttColor))
801 if (iTextColor!=aFontPresentation.iTextColor)
804 if (aMask.AttribIsSet(EAttFontHighlightColor))
806 if (iHighlightColor!=aFontPresentation.iHighlightColor)
809 if (aMask.AttribIsSet(EAttFontHighlightStyle))
811 if (iHighlightStyle!=aFontPresentation.iHighlightStyle)
814 if (aMask.AttribIsSet(EAttFontStrikethrough))
816 if (iStrikethrough!=aFontPresentation.iStrikethrough)
819 if (aMask.AttribIsSet(EAttFontUnderline))
821 if (iUnderline!=aFontPresentation.iUnderline)
824 if (aMask.AttribIsSet(EAttFontHiddenText))
826 if (iHiddenText!=aFontPresentation.iHiddenText)
829 if (aMask.AttribIsSet(EAttFontPictureAlignment))
831 if (iPictureAlignment!=aFontPresentation.iPictureAlignment)
837 EXPORT_C TCharFormat::TCharFormat():
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. */
844 iFontSpec.iTypeface.SetAttributes(TTypeface::EProportional | TTypeface::ESerif);
845 iFontSpec.iHeight = 200;
848 EXPORT_C TCharFormat::TCharFormat(const TDesC &aTypefaceName,TInt aHeight):
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.
856 @param aTypefaceName Specifies the typeface name.
857 @param aHeight Specifies the font height in twips. */
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.
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. */
870 if (aMask.AttribIsSet(EAttCharLanguage))
872 if (iLanguage!=aFormat.iLanguage)
875 if (!iFontPresentation.IsEqual(aFormat.iFontPresentation,aMask))
877 if (aMask.AttribIsSet(EAttFontHeight))
879 if (iFontSpec.iHeight!=aFormat.iFontSpec.iHeight)
882 if (aMask.AttribIsSet(EAttFontTypeface))
884 if (!(iFontSpec.iTypeface==aFormat.iFontSpec.iTypeface))
887 if (aMask.AttribIsSet(EAttFontPosture))
889 if (iFontSpec.iFontStyle.Posture()!=aFormat.iFontSpec.iFontStyle.Posture())
892 if (aMask.AttribIsSet(EAttFontStrokeWeight))
894 if (iFontSpec.iFontStyle.StrokeWeight()!=aFormat.iFontSpec.iFontStyle.StrokeWeight())
897 if (aMask.AttribIsSet(EAttFontPrintPos))
899 if (iFontSpec.iFontStyle.PrintPosition()!=aFormat.iFontSpec.iFontStyle.PrintPosition())
906 EXPORT_C TBool TCharFormat::IsEqual(const TCharFormat& aFormat) const
907 /** Compares all attribute values for equality.
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. */
913 TCharFormatMask mask;
915 return IsEqual(aFormat,mask);
918 EXPORT_C void TCharFormatMask::SetAll()
919 /** Sets all attribute flags in the character format mask. */
924 EXPORT_C void TCharFormatMask::ClearAll()
925 /** Clears all attribute flags in the character format mask. */
930 EXPORT_C TBool TCharFormatMask::operator==(const TCharFormatMask& aMask)const
931 /** Compares two character format masks for equality.
933 @param aMask The mask to compare.
934 @return ETrue if all flags are the same in both masks. EFalse if any differ. */
936 return (iGuard & KCharFormatBits) == (aMask.iGuard & KCharFormatBits);