Update contrib.
2 * Copyright (c) 1997-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.
27 #include "OstTraceDefinitions.h"
28 #ifdef OST_TRACE_COMPILER_IN_USE
29 #include "TXTFMSTMTraces.h"
33 const TInt KMaxFormatStreamLength=0x400; // 1024 bytes
35 // Standard attributes
36 const TUint KFontProportional=0x01;
37 const TUint KFontSerif=0x02;
38 const TUint KFontSymbol=0x04;
40 const TUint KTypefaceFlags=sizeof(TUint8);
41 const TInt KTypeSize=sizeof(TUint8);
42 const TInt KColor=sizeof(TUint8)+sizeof(TUint8)+sizeof(TUint8);
43 const TInt KFontHeight=sizeof(TInt32);
44 const TInt KParaBorderThickness=sizeof(TInt32);
45 const TInt KTabPosition=sizeof(TUint32);
46 const TInt KTabType=sizeof(TUint8);
48 // Paragraph format attributes
49 const TInt KVariableLengthAttribute=0;
50 const TInt KParaLanguage=sizeof(TUint8);
51 const TInt KParaFillColor=KColor;
52 const TInt KParaLeftMargin=sizeof(TInt32);
53 const TInt KParaRightMargin=sizeof(TInt32);
54 const TInt KParaIndent=sizeof(TInt32);
55 const TInt KParaAlignment=sizeof(TUint8);
56 const TInt KParaVerticalAlignment=sizeof(TUint8);
57 const TInt KParaLineSpacing=sizeof(TInt32);
58 const TInt KParaLineSpacingControl=sizeof(TUint8);
59 const TInt KParaSpaceBefore=sizeof(TInt32);
60 const TInt KParaSpaceAfter=sizeof(TInt32);
61 const TInt KParaKeepTogether=sizeof(TUint8);
62 const TInt KParaKeepWithNext=sizeof(TUint8);
63 const TInt KParaStartNewPage=sizeof(TUint8);
64 const TInt KParaWidowOrphan=sizeof(TUint8);
65 const TInt KParaWrap=sizeof(TUint8);
66 const TInt KParaBorderMargin=sizeof(TInt32);
67 const TInt KParaTopBorder=sizeof(TUint8)+KParaBorderThickness+KColor+sizeof(TUint8);//linestyle/thickness/color/autocolor
68 const TInt KParaBottomBorder=KParaTopBorder;
69 const TInt KParaLeftBorder=KParaTopBorder;
70 const TInt KParaRightBorder=KParaTopBorder;
71 const TInt KParaBullet=KVariableLengthAttribute;
72 const TInt KParaDefaultTabWidth=sizeof(TUint32);
73 const TInt KParaTabStop=KTabPosition+KTabType;
74 const TInt KParaFillSystemColor=sizeof(TUint8);
75 const TInt KParaBulletSystemColor=sizeof(TUint8);
76 const TInt KParaTopBorderSystemColor=sizeof(TUint8);
77 const TInt KParaBottomBorderSystemColor=sizeof(TUint8);
78 const TInt KParaLeftBorderSystemColor=sizeof(TUint8);
79 const TInt KParaRightBorderSystemColor=sizeof(TUint8);
80 const TInt KParaLanguageX=sizeof(TInt32);
81 const TInt KParaBulletX=sizeof(TInt32) + 2;
82 const TInt KBitmapType=sizeof(TUint8);
84 // Character format attributes
85 const TInt KCharLanguage=sizeof(TUint8);
86 const TInt KCharColor=KColor;
87 const TInt KCharHighlightColor=KColor;
88 const TInt KCharHighlightStyle=sizeof(TUint8);
89 const TInt KCharStrikethrough=sizeof(TUint8);
90 const TInt KCharUnderline=sizeof(TUint8);
91 const TInt KCharStrokeWeight=sizeof(TUint8);
92 const TInt KCharPosture=sizeof(TUint8);
93 const TInt KCharPrintPos=sizeof(TUint8);
94 const TInt KCharFontHeight=KFontHeight;
95 const TInt KCharTypeface=KVariableLengthAttribute;
96 const TInt KCharHiddenText=sizeof(TUint8);
97 const TInt KCharPictureAlignment=sizeof(TUint8);
98 const TInt KCharTextSystemColor=sizeof(TUint8);
99 const TInt KCharFontHighlightSystemColor=sizeof(TUint8);
100 const TInt KCharLanguageX=sizeof(TInt32);
101 const TInt KCharParserTag=sizeof(TUint32);
104 Lookup table indexed by TTextFormatAttribute enumerated constants.
105 Specifies the length in bytes of the format attributes.
107 static const TInt8 TheAttributeLength[EAttributeCount] =
109 // Paragraph attribute value lengths.
116 KParaVerticalAlignment,
118 KParaLineSpacingControl,
132 KParaDefaultTabWidth,
135 // Character attribute value lengths.
148 KCharPictureAlignment,
150 // Lengths of extended attributes.
151 KParaFillSystemColor,
152 KParaBulletSystemColor,
153 KParaTopBorderSystemColor,
154 KParaBottomBorderSystemColor,
155 KParaLeftBorderSystemColor,
156 KParaRightBorderSystemColor,
157 KCharTextSystemColor,
158 KCharFontHighlightSystemColor,
164 // Lengths of internal attributes
169 DLLEXPORT_C void RFormatStream::__DbgTestInvariant()const
170 // Provides class invariants.
171 // This class invariant checks the integrity of a completed format stream.
172 // As such, this invariant is only called by those methods that act upon a completed
173 // format stream; that is, not the set methods, since the format stream will not be complete until
174 // this call has completed.
178 __ASSERT_DEBUG(DoInvariantCheck(),User::Invariant());
182 void RFormatStream::TestInvariantL()const
183 // Provides class invariants.
184 // This class invariant checks the integrity of a completed format stream.
185 // As such, this invariant is only called by those methods that act upon a completed
186 // format stream; that is, not the set methods, since the format stream will not be complete until
187 // this call has completed.
190 if (!DoInvariantCheck())
191 User::Leave(KErrCorrupt);
194 TBool RFormatStream::DoInvariantCheck() const
195 // Provides class invariants.
196 // This class invariant checks the integrity of a completed format stream.
197 // As such, this invariant is only called by those methods that act upon a completed
198 // format stream; that is, not the set methods, since the format stream will not be complete until
199 // this call has completed.
205 {// Assert: stream is self consistent
206 // Walks through the stream (aBuffer), checking that it is in a consistent state.
207 // (1) All entries in the buffer conform to a TYPE-VALUE structure, checking that
208 // types do not occur in contiguous bytes. ie there is a value.
209 // (2) Checks that all encountered types are valid types.
210 // (3) Checks that the buffer has not changed size as a result of this check
211 // (4) Checks that all attributes in the stream occur only once. Done by taking a register
212 // as each attribute is read from the stream. (The exception to this rule are Tab identifiers
213 // which, if present, will typically occur several times in the stream).
215 enum {ENotPresent,EPresent};
216 TInt8 attributeRegister[EAttributeCount];
217 for (TInt offset=0;offset<EAttributeCount;offset++)
218 {// Mark attributeRegister as all absent
219 attributeRegister[offset]=(TInt8)ENotPresent; // clear all items in the register
221 TUint8* tempStreamLoc=iBase;
222 TUint8* streamLoc=iBase;
223 TUint8* endOfStreamLoc=iEnd;
225 while (streamLoc<endOfStreamLoc)
229 // Assert: data read is a valid format attribute type.
230 if (!(data<((TUint8)EAttributeCount))) return EFalse;
231 if (data!=EAttTabStop)
232 {// Tab Identifiers can occur multiple times in a stream!!
233 // Assert: attribute type does not already exist in attributeRegister.
234 if (!(attributeRegister[data]!=(TInt8)EPresent)) return EFalse;
236 attributeRegister[data]=(TInt8)EPresent;
237 tempStreamLoc=streamLoc+Length(streamLoc,(TTextFormatAttribute)data);
238 if (!(tempStreamLoc>=streamLoc)) return EFalse;
239 streamLoc=tempStreamLoc;
241 // Assert: everything is still the same size.
242 if (!(streamLoc==endOfStreamLoc)) return EFalse;
247 static inline TUint32 Read32(const TUint8* aPtr)
249 TUint32 val = aPtr[0];
251 val |= aPtr[2] << 16;
252 val |= aPtr[3] << 24;
257 static inline void Write32(TUint8*& aPtr,TUint32 aVal)
259 *aPtr++ = TUint8(aVal);
260 *aPtr++ = TUint8(aVal >> 8);
261 *aPtr++ = TUint8(aVal >> 16);
262 *aPtr++ = TUint8(aVal >> 24);
266 RFormatStream::RFormatStream():
273 // Allocate the buffer
274 void RFormatStream::AllocL(TInt aSize)
276 TUint8* pT = reinterpret_cast<TUint8*>(User::ReAllocL(iBase, aSize));
283 void RFormatStream::Reset()
295 void RFormatStream::CopyL(const RFormatStream& aSource)
297 TInt size = aSource.iEnd - aSource.iBase;
300 OstTrace0( TRACE_DUMP, RFORMATSTREAM_COPYL, "EDebug" );
302 __ASSERT_DEBUG(size >= 0,Panic(EDebug));
308 Mem::Copy(iBase,aSource.iBase,size);
314 Write the bytecode to a stream. Don't write internal attributes; these are not part of the stored format,
315 but are used for transitory marking of text by URL parsers, etc.
317 void RFormatStream::ExternalizeL(RWriteStream& aStream) const
321 const TUint8* base=iBase;
324 const TUint8* end = base;
325 while (end < iEnd && *end < EExternalizedAttributeCount)
327 int bytes = TheAttributeLength[*end++];
332 int length = end - base;
333 aStream.WriteInt32L(length);
334 aStream.WriteL(base,length);
337 aStream.WriteInt32L(0);
341 void RFormatStream::InternalizeL(RReadStream& aStream)
342 // Load the buffer from the specified stream
347 TInt length=aStream.ReadInt32L();
349 if (length<0 || length>KMaxFormatStreamLength)
350 User::Leave(KErrCorrupt);
357 aStream.ReadL(iBase,length);
364 // Return a pointer to the stored bytecode and put its length in bytes in aLength.
365 const TUint8* RFormatStream::Ptr(TInt& aLength) const
369 if (!((iBase==NULL && aLength==0) || (iBase!=NULL && aLength>0)))
371 OstTrace0( TRACE_DUMP, RFORMATSTREAM_PTR, "ECorruptFormatLayer" );
373 __ASSERT_DEBUG((iBase==NULL && aLength==0) || (iBase!=NULL && aLength>0),Panic(ECorruptFormatLayer));
378 // Save the attributes of aCharFormat specified by the corresponding mask aMask.
379 void RFormatStream::SetCharFormatL(const TCharFormatX& aCharFormatX,const TCharFormatXMask& aMask)
381 TInt size=DoCalcSizeCharFormat(aCharFormatX,aMask);
386 AllocL(size); // delete the current contents, after allocing a temporary
387 DoStoreCharFormat(aCharFormatX,aMask);
394 void RFormatStream::SetParaFormatL(const CParaFormat& aDesiredFormat,const TParaFormatMask& aDesiredMask,
395 const CParaFormat& aCurrentFormat)
396 // Sets the format layer with the specified paragraph format attributes.
397 // If a leave occurs at any stage, then revert back to original state, and
398 // propagate the leave.
401 TInt size=DoCalcSizeParaFormat(aDesiredFormat,aDesiredMask,aCurrentFormat);
406 AllocL(size); // delete the current contents, after allocing a temporary
407 DoSetParaFormat(aDesiredFormat,aDesiredMask,aCurrentFormat);
413 // Write an auxiliary attribute for a system colour byte. Update aPtr.
414 static void WriteSystemColor(TUint8*& aPtr,TTextFormatNonMaskableAttribute aAttrib,const TLogicalRgb& aColor)
416 TUint8 index = (TUint8)aColor.SystemColorIndex();
419 *aPtr++ = TUint8(aAttrib);
425 // Read a system colour byte into a logical colour. Don't change aPtr.
426 static void ReadSystemColor(const TUint8* aPtr,TLogicalRgb& aColor)
429 aColor.SetSystemColorIndex(index);
433 // Write paragraph attributes specified by aDesiredMask from aDesiredFormat to the stream.
434 void RFormatStream::DoSetParaFormat(const CParaFormat& aDesiredFormat,
435 TParaFormatMask aMask,
436 const CParaFormat& aCurrentFormat)
439 if (aMask.AttribIsSet(EAttFillColor))
441 *ptr++=TUint8(EAttFillColor);
442 ptr=Store(ptr,aDesiredFormat.iFillColor);
444 if (aMask.AttribIsSet(EAttLeftMargin))
446 *ptr++=TUint8(EAttLeftMargin);
447 Write32(ptr,aDesiredFormat.iLeftMarginInTwips);
449 if (aMask.AttribIsSet(EAttRightMargin))
451 *ptr++=TUint8(EAttRightMargin);
452 Write32(ptr,aDesiredFormat.iRightMarginInTwips);
454 if (aMask.AttribIsSet(EAttIndent))
456 *ptr++=TUint8(EAttIndent);
457 Write32(ptr,aDesiredFormat.iIndentInTwips);
459 if (aMask.AttribIsSet(EAttAlignment))
461 *ptr++=TUint8(EAttAlignment);
462 *ptr++=TUint8(aDesiredFormat.iHorizontalAlignment);
464 if (aMask.AttribIsSet(EAttVerticalAlignment))
466 *ptr++=TUint8(EAttVerticalAlignment);
467 *ptr++=TUint8(aDesiredFormat.iVerticalAlignment);
469 if (aMask.AttribIsSet(EAttLineSpacing))
471 *ptr++=TUint8(EAttLineSpacing);
472 Write32(ptr,aDesiredFormat.iLineSpacingInTwips);
474 if (aMask.AttribIsSet(EAttLineSpacingControl))
476 *ptr++=TUint8(EAttLineSpacingControl);
477 *ptr++=TUint8(aDesiredFormat.iLineSpacingControl);
479 if (aMask.AttribIsSet(EAttSpaceBefore))
481 *ptr++=TUint8(EAttSpaceBefore);
482 Write32(ptr,aDesiredFormat.iSpaceBeforeInTwips);
484 if (aMask.AttribIsSet(EAttSpaceAfter))
486 *ptr++=TUint8(EAttSpaceAfter);
487 Write32(ptr,aDesiredFormat.iSpaceAfterInTwips);
489 if (aMask.AttribIsSet(EAttKeepTogether))
491 *ptr++=TUint8(EAttKeepTogether);
492 *ptr++=TUint8(aDesiredFormat.iKeepTogether!=EFalse);
494 if (aMask.AttribIsSet(EAttKeepWithNext))
496 *ptr++=TUint8(EAttKeepWithNext);
497 *ptr++=TUint8(aDesiredFormat.iKeepWithNext!=EFalse);
499 if (aMask.AttribIsSet(EAttStartNewPage))
501 *ptr++=TUint8(EAttStartNewPage);
502 *ptr++=TUint8(aDesiredFormat.iStartNewPage!=EFalse);
504 if (aMask.AttribIsSet(EAttWidowOrphan))
506 *ptr++=TUint8(EAttWidowOrphan);
507 *ptr++=TUint8(aDesiredFormat.iWidowOrphan!=EFalse);
509 if (aMask.AttribIsSet(EAttWrap))
511 *ptr++=TUint8(EAttWrap);
512 *ptr++=TUint8(aDesiredFormat.iWrap!=EFalse);
514 if (aMask.AttribIsSet(EAttBorderMargin))
516 *ptr++=TUint8(EAttBorderMargin);
517 Write32(ptr,aDesiredFormat.iBorderMarginInTwips);
519 if ( aDesiredFormat.BordersPresent() || aCurrentFormat.BordersPresent() )
521 if (aMask.AttribIsSet(EAttTopBorder))
522 ptr=StoreBorder(ptr,EAttTopBorder,aDesiredFormat.ParaBorder(CParaFormat::EParaBorderTop));
523 if (aMask.AttribIsSet(EAttBottomBorder))
524 ptr=StoreBorder(ptr,EAttBottomBorder,aDesiredFormat.ParaBorder(CParaFormat::EParaBorderBottom));
525 if (aMask.AttribIsSet(EAttLeftBorder))
526 ptr=StoreBorder(ptr,EAttLeftBorder,aDesiredFormat.ParaBorder(CParaFormat::EParaBorderLeft));
527 if (aMask.AttribIsSet(EAttRightBorder))
528 ptr=StoreBorder(ptr,EAttRightBorder,aDesiredFormat.ParaBorder(CParaFormat::EParaBorderRight));
530 if (aMask.AttribIsSet(EAttDefaultTabWidth))
532 *ptr++=TUint8(EAttDefaultTabWidth);
533 Write32(ptr,aDesiredFormat.iDefaultTabWidthInTwips);
535 if (aMask.AttribIsSet(EAttTabStop))
537 TUint8* tptr=ptr; // prevent stacking of ptr;
538 StoreTabs(tptr,aDesiredFormat,aCurrentFormat,ETrue);
541 if (aMask.AttribIsSet(EAttBullet))
543 if (aDesiredFormat.iBullet || aCurrentFormat.iBullet)
545 if (aDesiredFormat.iBullet)
546 ptr = StoreBullet(ptr,*aDesiredFormat.iBullet);
547 else if (aCurrentFormat.iBullet)
548 ptr = StoreBullet(ptr,TBullet());
551 if (!(aDesiredFormat.iLanguage & ~0xFF) && aMask.AttribIsSet(EAttParaLanguage))
553 *ptr++=TUint8(EAttParaLanguage);
554 *ptr++=TUint8(aDesiredFormat.iLanguage);
558 Write the auxiliary attributes for system colours, language codes greater than 255, etc.
559 These must go at the end of the stream because they will not be recognised by earlier versions
560 of ETEXT and will prevent any further attributes from being read.
562 if (aMask.AttribIsSet(EAttFillColor))
563 WriteSystemColor(ptr,EAttFillSystemColor,aDesiredFormat.iFillColor);
564 if (aMask.AttribIsSet(EAttBullet))
566 if (aDesiredFormat.iBullet)
567 WriteSystemColor(ptr,EAttBulletSystemColor,aDesiredFormat.iBullet->iColor);
568 else if (aCurrentFormat.iBullet)
569 WriteSystemColor(ptr,EAttBulletSystemColor,TBullet().iColor);
571 if (aDesiredFormat.BordersPresent())
573 if (aMask.AttribIsSet(EAttTopBorder))
574 WriteSystemColor(ptr,EAttTopBorderSystemColor,aDesiredFormat.ParaBorder(CParaFormat::EParaBorderTop).iColor);
575 if (aMask.AttribIsSet(EAttBottomBorder))
576 WriteSystemColor(ptr,EAttBottomBorderSystemColor,aDesiredFormat.ParaBorder(CParaFormat::EParaBorderBottom).iColor);
577 if (aMask.AttribIsSet(EAttLeftBorder))
578 WriteSystemColor(ptr,EAttLeftBorderSystemColor,aDesiredFormat.ParaBorder(CParaFormat::EParaBorderLeft).iColor);
579 if (aMask.AttribIsSet(EAttRightBorder))
580 WriteSystemColor(ptr,EAttRightBorderSystemColor,aDesiredFormat.ParaBorder(CParaFormat::EParaBorderRight).iColor);
582 if ((aDesiredFormat.iLanguage & ~0xFF) && aMask.AttribIsSet(EAttParaLanguage))
584 *ptr++ = TUint8(EAttParaLanguageX);
585 Write32(ptr,aDesiredFormat.iLanguage);
587 if (aMask.AttribIsSet(EAttBullet))
589 if (aDesiredFormat.iBullet || aCurrentFormat.iBullet)
592 const TBullet* b = aDesiredFormat.iBullet;
595 *ptr++ = TUint8(EAttBulletX);
596 *ptr++ = TUint8(b->iStyle);
597 Write32(ptr,b->iStartNumber);
598 *ptr++ = TUint8(b->iAlignment);
604 TInt RFormatStream::DoCalcSizeParaFormat(const CParaFormat& aDesiredFormat,TParaFormatMask aMask,
605 const CParaFormat& aCurrentFormat)
606 // determine the amount of memory required to store the
607 // specified attriubutes from the specified paragraph format.
611 if (aMask.AttribIsSet(EAttFillColor))
613 size+=(KTypeSize+KParaFillColor);
614 if (aDesiredFormat.iFillColor.SystemColorIndex())
615 size += KTypeSize + KParaFillSystemColor;
617 if (aMask.AttribIsSet(EAttLeftMargin))
618 size+=(KTypeSize+KParaLeftMargin);
619 if (aMask.AttribIsSet(EAttRightMargin))
620 size+=(KTypeSize+KParaRightMargin);
621 if (aMask.AttribIsSet(EAttIndent))
622 size+=(KTypeSize+KParaIndent);
623 if (aMask.AttribIsSet(EAttAlignment))
624 size+=(KTypeSize+KParaAlignment);
625 if (aMask.AttribIsSet(EAttVerticalAlignment))
626 size+=(KTypeSize+KParaVerticalAlignment);
627 if (aMask.AttribIsSet(EAttLineSpacing))
628 size+=(KTypeSize+KParaLineSpacing);
629 if (aMask.AttribIsSet(EAttLineSpacingControl))
630 size+=(KTypeSize+KParaLineSpacingControl);
631 if (aMask.AttribIsSet(EAttSpaceBefore))
632 size+=(KTypeSize+KParaSpaceBefore);
633 if (aMask.AttribIsSet(EAttSpaceAfter))
634 size+=(KTypeSize+KParaSpaceAfter);
635 if (aMask.AttribIsSet(EAttKeepTogether))
636 size+=(KTypeSize+KParaKeepTogether);
637 if (aMask.AttribIsSet(EAttKeepWithNext))
638 size+=(KTypeSize+KParaKeepWithNext);
639 if (aMask.AttribIsSet(EAttStartNewPage))
640 size+=(KTypeSize+KParaStartNewPage);
641 if (aMask.AttribIsSet(EAttWidowOrphan))
642 size+=(KTypeSize+KParaWidowOrphan);
643 if (aMask.AttribIsSet(EAttWrap))
644 size+=(KTypeSize+KParaWrap);
645 if (aMask.AttribIsSet(EAttBorderMargin))
646 size+=(KTypeSize+KParaBorderMargin);
647 if ( aDesiredFormat.BordersPresent() || aCurrentFormat.BordersPresent() )
649 if (aMask.AttribIsSet(EAttTopBorder))
652 sizeof(TUint8)+ // line style
653 sizeof(TInt32)+ // line thickness
655 sizeof(TUint8)); // auto color flag
656 if (aDesiredFormat.ParaBorder(CParaFormat::EParaBorderTop).iColor.SystemColorIndex())
657 size += KTypeSize + KParaTopBorderSystemColor;
659 if (aMask.AttribIsSet(EAttBottomBorder))
662 sizeof(TUint8)+ // line style
663 sizeof(TInt32)+ // line thickness
665 sizeof(TUint8)); // auto color flag
666 if (aDesiredFormat.ParaBorder(CParaFormat::EParaBorderBottom).iColor.SystemColorIndex())
667 size += KTypeSize + KParaBottomBorderSystemColor;
669 if (aMask.AttribIsSet(EAttLeftBorder))
672 sizeof(TUint8)+ // line style
673 sizeof(TInt32)+ // line thickness
675 sizeof(TUint8)); // auto color flag
676 if (aDesiredFormat.ParaBorder(CParaFormat::EParaBorderLeft).iColor.SystemColorIndex())
677 size += KTypeSize + KParaLeftBorderSystemColor;
679 if (aMask.AttribIsSet(EAttRightBorder))
682 sizeof(TUint8)+ // line style
683 sizeof(TInt32)+ // line thickness
685 sizeof(TUint8)); // auto color flag
686 if (aDesiredFormat.ParaBorder(CParaFormat::EParaBorderRight).iColor.SystemColorIndex())
687 size += KTypeSize + KParaBulletSystemColor;
690 if (aMask.AttribIsSet(EAttDefaultTabWidth))
691 size+=(KTypeSize+KParaDefaultTabWidth);
692 if (aMask.AttribIsSet(EAttTabStop))
695 size+=StoreTabs(ptr,aDesiredFormat,aCurrentFormat,EFalse);
697 if (aMask.AttribIsSet(EAttBullet))
699 if (aDesiredFormat.iBullet || aCurrentFormat.iBullet)
702 sizeof(TUint8) + // length of following data
703 sizeof(TText) + // iCharacterCode
704 KFontHeight + // iHeightInTwips
705 sizeof(TUint8) + // iHanging indent
706 KCharColor + // iColor
707 sizeof(TUint8) + // typeface name size
708 KTypefaceFlags; // typeface flags
710 if (aDesiredFormat.iBullet)
711 size += aDesiredFormat.iBullet->iTypeface.iName.Size(); // font name
713 if ((aDesiredFormat.iBullet && aDesiredFormat.iBullet->iColor.SystemColorIndex()) ||
714 (aCurrentFormat.iBullet))
715 size += KTypeSize + KParaBulletSystemColor;
717 size += KTypeSize + KParaBulletX;
720 if (aMask.AttribIsSet(EAttParaLanguage))
722 if (aDesiredFormat.iLanguage & ~0xFF)
723 size += KTypeSize + KParaLanguageX;
725 size += KTypeSize + KParaLanguage;
731 // Store the specified values in this (allocated) format stream.
732 void RFormatStream::DoStoreCharFormat(const TCharFormatX& aCharFormat,TCharFormatXMask aMask)
735 const TCharFormat format = aCharFormat.iCharFormat;
737 if (aMask.AttribIsSet(EAttColor))
739 *ptr++=TUint8(EAttColor);
740 ptr=Store(ptr,format.iFontPresentation.iTextColor);
742 if (aMask.AttribIsSet(EAttFontHighlightColor))
744 *ptr++=TUint8(EAttFontHighlightColor);
745 ptr=Store(ptr,format.iFontPresentation.iHighlightColor);
747 if (aMask.AttribIsSet(EAttFontHighlightStyle))
749 *ptr++=TUint8(EAttFontHighlightStyle);
750 *ptr++=(TUint8)format.iFontPresentation.iHighlightStyle;
752 if (aMask.AttribIsSet(EAttFontStrikethrough))
754 *ptr++=TUint8(EAttFontStrikethrough);
755 *ptr++=(TUint8)format.iFontPresentation.iStrikethrough;
757 if (aMask.AttribIsSet(EAttFontUnderline))
759 *ptr++=TUint8(EAttFontUnderline);
760 *ptr++=(TUint8)format.iFontPresentation.iUnderline;
762 if (aMask.AttribIsSet(EAttFontHeight))
764 *ptr++=TUint8(EAttFontHeight);
765 Write32(ptr,format.iFontSpec.iHeight);
767 if (aMask.AttribIsSet(EAttFontPosture))
769 *ptr++=TUint8(EAttFontPosture);
770 *ptr++=TUint8(format.iFontSpec.iFontStyle.Posture());
772 if (aMask.AttribIsSet(EAttFontStrokeWeight))
774 *ptr++=TUint8(EAttFontStrokeWeight);
775 *ptr++=TUint8(format.iFontSpec.iFontStyle.StrokeWeight());
777 if (aMask.AttribIsSet(EAttFontPrintPos))
779 *ptr++=TUint8(EAttFontPrintPos);
780 *ptr++=TUint8(format.iFontSpec.iFontStyle.PrintPosition());
782 if (aMask.AttribIsSet(EAttFontTypeface))
784 *ptr++=TUint8(EAttFontTypeface);
785 ptr=Store(ptr,format.iFontSpec.iTypeface);
786 *ptr++=TUint8(EAttBitmapType);
787 *ptr++=TUint8(format.iFontSpec.iFontStyle.BitmapType());
789 if (!(format.iLanguage & ~0xFF) && aMask.AttribIsSet(EAttCharLanguage))
791 *ptr++=TUint8(EAttCharLanguage);
792 *ptr++=TUint8(format.iLanguage);
794 if (aMask.AttribIsSet(EAttFontHiddenText))
796 *ptr++=TUint8(EAttFontHiddenText);
797 *ptr++=TUint8(format.iFontPresentation.iHiddenText!=EFalse);
799 if (aMask.AttribIsSet(EAttFontPictureAlignment))
801 *ptr++=TUint8(EAttFontPictureAlignment);
802 *ptr++=TUint8(format.iFontPresentation.iPictureAlignment);
805 // Auxiliary attributes for system colours, etc.
806 if (aMask.AttribIsSet(EAttColor))
807 WriteSystemColor(ptr,EAttTextSystemColor,format.iFontPresentation.iTextColor);
808 if (aMask.AttribIsSet(EAttFontHighlightColor))
809 WriteSystemColor(ptr,EAttFontHighlightSystemColor,format.iFontPresentation.iHighlightColor);
810 if ((format.iLanguage & ~0xFF) && aMask.AttribIsSet(EAttCharLanguage))
812 *ptr++ = TUint8(EAttCharLanguageX);
813 Write32(ptr,format.iLanguage);
816 // Internal character attributes:
817 if (aMask.AttribIsSet(EAttParserTag))
819 *ptr++ = TUint8(EAttParserTag);
820 Write32(ptr,aCharFormat.iParserTag);
825 TInt RFormatStream::DoCalcSizeCharFormat(const TCharFormatX& aCharFormatX,const TCharFormatXMask& aMask)
828 const TCharFormat format = aCharFormatX.iCharFormat;
830 if (aMask.AttribIsSet(EAttColor))
832 size+=(KTypeSize+KCharColor);
833 if (format.iFontPresentation.iTextColor.SystemColorIndex())
834 size += KTypeSize + KCharTextSystemColor;
836 if (aMask.AttribIsSet(EAttFontHighlightColor))
838 size+=(KTypeSize+KCharHighlightColor);
839 if (format.iFontPresentation.iHighlightColor.SystemColorIndex())
840 size += KTypeSize + KCharFontHighlightSystemColor;
842 if (aMask.AttribIsSet(EAttFontHighlightStyle))
843 size+=(KTypeSize+KCharHighlightStyle);
844 if (aMask.AttribIsSet(EAttFontStrikethrough))
845 size+=(KTypeSize+KCharStrikethrough);
846 if (aMask.AttribIsSet(EAttFontUnderline))
847 size+=(KTypeSize+KCharUnderline);
848 if (aMask.AttribIsSet(EAttFontHeight))
849 size+=(KTypeSize+KCharFontHeight);
850 if (aMask.AttribIsSet(EAttFontPosture))
851 size+=(KTypeSize+KCharPosture);
852 if (aMask.AttribIsSet(EAttFontStrokeWeight))
853 size+=(KTypeSize+KCharStrokeWeight);
854 if (aMask.AttribIsSet(EAttFontPrintPos))
855 size+=(KTypeSize+KCharPrintPos);
856 if (aMask.AttribIsSet(EAttFontTypeface))
858 TUint8 length=(TUint8)format.iFontSpec.iTypeface.iName.Size();
859 size+=(KTypeSize+sizeof(TUint8)+length+sizeof(TUint8)); // size in bytes
860 size+=(KTypeSize+KBitmapType);
862 if (aMask.AttribIsSet(EAttCharLanguage))
864 if (format.iLanguage & ~0xFF)
865 size += KTypeSize + KCharLanguageX;
867 size += KTypeSize + KCharLanguage;
869 if (aMask.AttribIsSet(EAttFontHiddenText))
870 size+=(KTypeSize+KCharHiddenText);
871 if (aMask.AttribIsSet(EAttFontPictureAlignment))
872 size+=(KTypeSize+KCharPictureAlignment);
874 // Internal character attributes
875 if (aMask.AttribIsSet(EAttParserTag))
876 size += KTypeSize + KCharParserTag;
881 void RFormatStream::RemoveRedundantCharFormat(TCharFormatMask& aMask,
882 const TCharFormatX& aFormat,const TCharFormatX& aEffectiveFormat)
884 TCharFormatXMask mask = aMask;
885 const TCharFormat format = aFormat.iCharFormat;
886 const TCharFormat effective_format = aEffectiveFormat.iCharFormat;
888 if (mask.AttribIsSet(EAttColor))
890 if (format.iFontPresentation.iTextColor==effective_format.iFontPresentation.iTextColor)
891 mask.ClearAttrib(EAttColor);
893 if (mask.AttribIsSet(EAttFontHighlightColor))
895 if (format.iFontPresentation.iHighlightColor==effective_format.iFontPresentation.iHighlightColor)
896 mask.ClearAttrib(EAttFontHighlightColor);
898 if (mask.AttribIsSet(EAttFontHighlightStyle))
900 if (format.iFontPresentation.iHighlightStyle==effective_format.iFontPresentation.iHighlightStyle)
901 mask.ClearAttrib(EAttFontHighlightStyle);
903 if (mask.AttribIsSet(EAttFontStrikethrough))
905 if (format.iFontPresentation.iStrikethrough==effective_format.iFontPresentation.iStrikethrough)
906 mask.ClearAttrib(EAttFontStrikethrough);
908 if (mask.AttribIsSet(EAttFontUnderline))
910 if (format.iFontPresentation.iUnderline==effective_format.iFontPresentation.iUnderline)
911 mask.ClearAttrib(EAttFontUnderline);
913 if (mask.AttribIsSet(EAttFontHeight))
915 if (format.iFontSpec.iHeight==effective_format.iFontSpec.iHeight)
916 mask.ClearAttrib(EAttFontHeight);
918 if (mask.AttribIsSet(EAttFontPosture))
920 if (format.iFontSpec.iFontStyle.Posture()==effective_format.iFontSpec.iFontStyle.Posture())
921 mask.ClearAttrib(EAttFontPosture);
923 if (mask.AttribIsSet(EAttFontStrokeWeight))
925 if (format.iFontSpec.iFontStyle.StrokeWeight()==effective_format.iFontSpec.iFontStyle.StrokeWeight())
926 mask.ClearAttrib(EAttFontStrokeWeight);
928 if (mask.AttribIsSet(EAttFontPrintPos))
930 if (format.iFontSpec.iFontStyle.PrintPosition()==effective_format.iFontSpec.iFontStyle.PrintPosition())
931 mask.ClearAttrib(EAttFontPrintPos);
933 if (mask.AttribIsSet(EAttFontTypeface))
935 if (format.iFontSpec.iTypeface==effective_format.iFontSpec.iTypeface)
936 mask.ClearAttrib(EAttFontTypeface);
938 if (mask.AttribIsSet(EAttCharLanguage))
940 if (format.iLanguage==effective_format.iLanguage)
941 mask.ClearAttrib(EAttCharLanguage);
943 if (mask.AttribIsSet(EAttFontHiddenText))
945 if (format.iFontPresentation.iHiddenText==effective_format.iFontPresentation.iHiddenText)
946 mask.ClearAttrib(EAttFontHiddenText);
948 if (mask.AttribIsSet(EAttFontPictureAlignment))
950 if (format.iFontPresentation.iPictureAlignment==effective_format.iFontPresentation.iPictureAlignment)
951 mask.ClearAttrib(EAttFontPictureAlignment);
953 if (mask.AttribIsSet(EAttParserTag))
955 if (aFormat.iParserTag == aEffectiveFormat.iParserTag)
956 mask.ClearAttrib(EAttParserTag);
962 void RFormatStream::SenseParaFormatL(CParaFormat& aParaFormat,TParaFormatMask& aMask,CParaFormat::TParaFormatGetMode aMode)const
963 // Dumps contents of the stream into aParaFormat. The attributes written to aParaFormat
964 // are determined by the mode, aMode.
965 // If the mode is EAllAttributes, then all attributes are written,
966 // if the mode is EFixedAttributes, then only the fixed atttibutes are written,
967 // ie, not tabs,borders,bullet (which are variable).
968 // For each format attribute found in the stream:
969 // write it into a ParaFormat if the corresponding flag in aMask is not set,
970 // and set this flag showing the attribute has been written into aParaFormat.
972 // If aMode is EAllAttributes this function may leave through out-of-memory allocating paragraph borders,
974 // If aMode is EFixedAttributes, this function is guaranteed not to leave.
982 TParaFormatMask old_mask = aMask;
983 TParaFormatMask new_mask = aMask;
985 TParaBorder* b = NULL;
994 if (!old_mask.AttribIsSet(EAttFillColor))
996 new_mask.SetAttrib(EAttFillColor);
997 ptr=ReadValue(ptr,aParaFormat.iFillColor);
1000 ptr+=KParaFillColor;
1002 case EAttLeftMargin:
1003 if (!old_mask.AttribIsSet(EAttLeftMargin))
1005 new_mask.SetAttrib(EAttLeftMargin);
1006 aParaFormat.iLeftMarginInTwips = Read32(ptr);
1008 ptr+=KParaLeftMargin;
1010 case EAttRightMargin:
1011 if (!old_mask.AttribIsSet(EAttRightMargin))
1013 new_mask.SetAttrib(EAttRightMargin);
1014 aParaFormat.iRightMarginInTwips = Read32(ptr);
1016 ptr+=KParaRightMargin;
1019 if (!old_mask.AttribIsSet(EAttIndent))
1021 new_mask.SetAttrib(EAttIndent);
1022 aParaFormat.iIndentInTwips = Read32(ptr);
1027 if (!old_mask.AttribIsSet(EAttAlignment))
1029 new_mask.SetAttrib(EAttAlignment);
1030 aParaFormat.iHorizontalAlignment=CParaFormat::TAlignment(*ptr);
1032 ptr+=KParaAlignment;
1034 case EAttVerticalAlignment:
1035 if (!old_mask.AttribIsSet(EAttVerticalAlignment))
1037 new_mask.SetAttrib(EAttVerticalAlignment);
1038 aParaFormat.iVerticalAlignment=CParaFormat::TAlignment(*ptr);
1040 ptr+=KParaVerticalAlignment;
1042 case EAttLineSpacing:
1043 if (!old_mask.AttribIsSet(EAttLineSpacing))
1045 new_mask.SetAttrib(EAttLineSpacing);
1046 aParaFormat.iLineSpacingInTwips = Read32(ptr);
1048 ptr+=KParaLineSpacing;
1050 case EAttLineSpacingControl:
1051 if (!old_mask.AttribIsSet(EAttLineSpacingControl))
1053 new_mask.SetAttrib(EAttLineSpacingControl);
1054 aParaFormat.iLineSpacingControl=(CParaFormat::TLineSpacingControl)*ptr;
1056 ptr+=KParaLineSpacingControl;
1058 case EAttSpaceBefore:
1059 if (!old_mask.AttribIsSet(EAttSpaceBefore))
1061 new_mask.SetAttrib(EAttSpaceBefore);
1062 aParaFormat.iSpaceBeforeInTwips = Read32(ptr);
1064 ptr+=KParaSpaceBefore;
1066 case EAttSpaceAfter:
1067 if (!old_mask.AttribIsSet(EAttSpaceAfter))
1069 new_mask.SetAttrib(EAttSpaceAfter);
1070 aParaFormat.iSpaceAfterInTwips = Read32(ptr);
1072 ptr+=KParaSpaceAfter;
1074 case EAttKeepTogether:
1075 if (!old_mask.AttribIsSet(EAttKeepTogether))
1077 new_mask.SetAttrib(EAttKeepTogether);
1078 aParaFormat.iKeepTogether=TBool(*ptr);
1080 ptr+=KParaKeepTogether;
1082 case EAttKeepWithNext:
1083 if (!old_mask.AttribIsSet(EAttKeepWithNext))
1085 new_mask.SetAttrib(EAttKeepWithNext);
1086 aParaFormat.iKeepWithNext=(TBool)*ptr;
1088 ptr+=KParaKeepWithNext;
1090 case EAttStartNewPage:
1091 if (!old_mask.AttribIsSet(EAttStartNewPage))
1093 new_mask.SetAttrib(EAttStartNewPage);
1094 aParaFormat.iStartNewPage=TBool(*ptr);
1096 ptr+=KParaStartNewPage;
1098 case EAttWidowOrphan:
1099 if (!old_mask.AttribIsSet(EAttWidowOrphan))
1101 new_mask.SetAttrib(EAttWidowOrphan);
1102 aParaFormat.iWidowOrphan=TBool(*ptr);
1104 ptr+=KParaWidowOrphan;
1107 if (!old_mask.AttribIsSet(EAttWrap))
1109 new_mask.SetAttrib(EAttWrap);
1110 aParaFormat.iWrap=TBool(*ptr);
1114 case EAttBorderMargin:
1115 if (!old_mask.AttribIsSet(EAttBorderMargin))
1117 new_mask.SetAttrib(EAttBorderMargin);
1118 aParaFormat.iBorderMarginInTwips = Read32(ptr);
1120 ptr+=KParaBorderMargin;
1123 if (aMode==CParaFormat::EFixedAttributes || old_mask.AttribIsSet(EAttTopBorder) )
1125 ptr+=KParaTopBorder;
1130 ptr=ReadValue(ptr,border);
1131 aParaFormat.SetParaBorderL(CParaFormat::EParaBorderTop,border);
1132 new_mask.SetAttrib(EAttTopBorder);
1135 case EAttBottomBorder:
1136 if (aMode==CParaFormat::EFixedAttributes || old_mask.AttribIsSet(EAttBottomBorder))
1138 ptr+=KParaBottomBorder;
1143 ptr=ReadValue(ptr,border);
1144 aParaFormat.SetParaBorderL(CParaFormat::EParaBorderBottom,border);
1145 new_mask.SetAttrib(EAttBottomBorder);
1148 case EAttLeftBorder:
1149 if (aMode==CParaFormat::EFixedAttributes || old_mask.AttribIsSet(EAttLeftBorder))
1151 ptr+=KParaLeftBorder;
1156 ptr=ReadValue(ptr,border);
1157 aParaFormat.SetParaBorderL(CParaFormat::EParaBorderLeft,border);
1158 new_mask.SetAttrib(EAttLeftBorder);
1161 case EAttRightBorder:
1162 if (aMode==CParaFormat::EFixedAttributes || old_mask.AttribIsSet(EAttRightBorder))
1164 ptr+=KParaRightBorder;
1169 ptr=ReadValue(ptr,border);
1170 aParaFormat.SetParaBorderL(CParaFormat::EParaBorderRight,border);
1171 new_mask.SetAttrib(EAttRightBorder);
1174 case EAttDefaultTabWidth:
1175 if (!old_mask.AttribIsSet(EAttDefaultTabWidth))
1177 new_mask.SetAttrib(EAttDefaultTabWidth);
1178 aParaFormat.iDefaultTabWidthInTwips = Read32(ptr);
1180 ptr+=KParaDefaultTabWidth;
1184 if (aMode==CParaFormat::EFixedAttributes || old_mask.AttribIsSet(EAttTabStop))
1185 ptr += KParaTabStop;
1188 ptr=ReadTabL(ptr,aParaFormat);
1189 new_mask.SetAttrib(EAttTabStop);
1195 if (aMode==CParaFormat::EFixedAttributes || old_mask.AttribIsSet(EAttBullet))
1197 ptr+=*ptr+1; // variable length attribute
1201 TBullet* bullet=aParaFormat.iBullet;
1203 aParaFormat.iBullet=bullet=new(ELeave) TBullet;
1204 ptr=ReadValue(ptr,*bullet);
1205 new_mask.SetAttrib(EAttBullet);
1206 //coverity[memory_leak]
1210 case EAttParaLanguage:
1211 if (!old_mask.AttribIsSet(EAttParaLanguage))
1213 new_mask.SetAttrib(EAttParaLanguage);
1214 aParaFormat.iLanguage=TInt32(*ptr);
1219 // Auxiliary attributes for system colours, etc.
1220 case EAttFillSystemColor:
1221 if (!old_mask.AttribIsSet(EAttFillColor))
1222 ReadSystemColor(ptr,aParaFormat.iFillColor);
1225 case EAttBulletSystemColor:
1226 if (aMode != CParaFormat::EFixedAttributes && !old_mask.AttribIsSet(EAttBullet) &&
1227 aParaFormat.iBullet)
1228 ReadSystemColor(ptr,aParaFormat.iBullet->iColor);
1231 case EAttTopBorderSystemColor:
1232 if (aMode != CParaFormat::EFixedAttributes && !old_mask.AttribIsSet(EAttTopBorder))
1234 b = aParaFormat.ParaBorderPtr(CParaFormat::EParaBorderTop);
1236 ReadSystemColor(ptr,b->iColor);
1240 case EAttBottomBorderSystemColor:
1241 if (aMode != CParaFormat::EFixedAttributes && !old_mask.AttribIsSet(EAttBottomBorder))
1243 b = aParaFormat.ParaBorderPtr(CParaFormat::EParaBorderBottom);
1245 ReadSystemColor(ptr,b->iColor);
1249 case EAttLeftBorderSystemColor:
1250 if (aMode != CParaFormat::EFixedAttributes && !old_mask.AttribIsSet(EAttLeftBorder))
1252 b = aParaFormat.ParaBorderPtr(CParaFormat::EParaBorderLeft);
1254 ReadSystemColor(ptr,b->iColor);
1258 case EAttRightBorderSystemColor:
1259 if (aMode != CParaFormat::EFixedAttributes && !old_mask.AttribIsSet(EAttRightBorder))
1261 b = aParaFormat.ParaBorderPtr(CParaFormat::EParaBorderRight);
1263 ReadSystemColor(ptr,b->iColor);
1267 case EAttParaLanguageX:
1268 if (!old_mask.AttribIsSet(EAttParaLanguage))
1270 new_mask.SetAttrib(EAttParaLanguage);
1271 aParaFormat.iLanguage = Read32(ptr);
1273 ptr += KParaLanguageX;
1276 if (aMode == CParaFormat::EFixedAttributes || old_mask.AttribIsSet(EAttBullet) ||
1277 !aParaFormat.iBullet)
1278 ptr += KParaBulletX;
1281 aParaFormat.iBullet->iStyle = (TBullet::TStyle)(*ptr++);
1282 aParaFormat.iBullet->iStartNumber = Read32(ptr);
1283 ptr += sizeof(TInt32);
1284 aParaFormat.iBullet->iAlignment = (TBullet::TAlignment)(*ptr++);
1288 default: // have maybe read an attribute defined by a later version; stop here
1297 Extract format attributes selected by cleared bits in aMask.
1298 Put them into aCharFormatX if the corresponding bit in aMask is NOT set, and set the bit.
1300 void RFormatStream::SenseCharFormat(TCharFormatX& aCharFormat,TCharFormatXMask& aMask) const
1304 TUint8* ptr = iBase;
1307 TCharFormatXMask old_mask = aMask;
1308 TCharFormatXMask new_mask = aMask;
1310 TCharFormat& format = aCharFormat.iCharFormat;
1319 if (!old_mask.AttribIsSet(EAttColor))
1321 new_mask.SetAttrib(EAttColor);
1322 ptr=ReadValue(ptr,format.iFontPresentation.iTextColor);
1327 case EAttFontHighlightColor:
1328 if (!old_mask.AttribIsSet(EAttFontHighlightColor))
1330 new_mask.SetAttrib(EAttFontHighlightColor);
1331 ptr=ReadValue(ptr,format.iFontPresentation.iHighlightColor);
1334 ptr+=KCharHighlightColor;
1336 case EAttFontHighlightStyle:
1337 if (!old_mask.AttribIsSet(EAttFontHighlightStyle))
1339 new_mask.SetAttrib(EAttFontHighlightStyle);
1340 format.iFontPresentation.iHighlightStyle=(TFontPresentation::TFontHighlightStyle)*ptr;
1342 ptr+=KCharHighlightStyle;
1344 case EAttFontStrikethrough:
1345 if (!old_mask.AttribIsSet(EAttFontStrikethrough))
1347 new_mask.SetAttrib(EAttFontStrikethrough);
1348 format.iFontPresentation.iStrikethrough=(TFontStrikethrough)*ptr;
1350 ptr+=KCharStrikethrough;
1352 case EAttFontUnderline:
1353 if (!old_mask.AttribIsSet(EAttFontUnderline))
1355 new_mask.SetAttrib(EAttFontUnderline);
1356 format.iFontPresentation.iUnderline=(TFontUnderline)*ptr;
1358 ptr+=KCharUnderline;
1360 case EAttFontHeight:
1361 if (!old_mask.AttribIsSet(EAttFontHeight))
1363 new_mask.SetAttrib(EAttFontHeight);
1364 format.iFontSpec.iHeight = Read32(ptr);
1366 ptr+=KCharFontHeight;
1368 case EAttFontPosture:
1369 if (!old_mask.AttribIsSet(EAttFontPosture))
1371 new_mask.SetAttrib(EAttFontPosture);
1372 format.iFontSpec.iFontStyle.SetPosture((TFontPosture)*ptr);
1376 case EAttFontStrokeWeight:
1377 if (!old_mask.AttribIsSet(EAttFontStrokeWeight))
1379 new_mask.SetAttrib(EAttFontStrokeWeight);
1380 format.iFontSpec.iFontStyle.SetStrokeWeight((TFontStrokeWeight)*ptr);
1382 ptr+=KCharStrokeWeight;
1384 case EAttFontPrintPos:
1385 if (!old_mask.AttribIsSet(EAttFontPrintPos))
1387 new_mask.SetAttrib(EAttFontPrintPos);
1388 format.iFontSpec.iFontStyle.SetPrintPosition((TFontPrintPosition)*ptr);
1392 case EAttFontTypeface:
1393 if (!old_mask.AttribIsSet(EAttFontTypeface))
1395 new_mask.SetAttrib(EAttFontTypeface);
1396 ptr=ReadValue(ptr,format.iFontSpec.iTypeface); // updates ptr
1399 ptr+=*ptr+1; // variable length attribute
1401 case EAttBitmapType:
1402 if (!old_mask.AttribIsSet(EAttFontTypeface))
1404 format.iFontSpec.iFontStyle.SetBitmapType(static_cast <TGlyphBitmapType> (*ptr));
1408 case EAttCharLanguage:
1409 if (!old_mask.AttribIsSet(EAttCharLanguage))
1411 new_mask.SetAttrib(EAttCharLanguage);
1412 format.iLanguage=*ptr;
1416 case EAttFontHiddenText:
1417 if (!old_mask.AttribIsSet(EAttFontHiddenText))
1419 new_mask.SetAttrib(EAttFontHiddenText);
1420 format.iFontPresentation.iHiddenText=(TBool)*ptr;
1422 ptr+=KCharHiddenText;
1424 case EAttFontPictureAlignment:
1425 if (!old_mask.AttribIsSet(EAttFontPictureAlignment))
1427 new_mask.SetAttrib(EAttFontPictureAlignment);
1428 format.iFontPresentation.iPictureAlignment=(TFontPresentation::TAlignment)*ptr;
1430 ptr+=KCharPictureAlignment;
1433 // Auxiliary attributes for system colours, etc.
1434 case EAttTextSystemColor:
1435 if (!old_mask.AttribIsSet(EAttColor))
1436 ReadSystemColor(ptr,format.iFontPresentation.iTextColor);
1440 case EAttFontHighlightSystemColor:
1441 if (!old_mask.AttribIsSet(EAttFontHighlightColor))
1442 ReadSystemColor(ptr,format.iFontPresentation.iHighlightColor);
1446 case EAttCharLanguageX:
1447 if (!old_mask.AttribIsSet(EAttCharLanguage))
1449 new_mask.SetAttrib(EAttCharLanguage);
1450 format.iLanguage = Read32(ptr);
1452 ptr += KCharLanguageX;
1455 // Internal character attributes:
1457 if (!old_mask.AttribIsSet(EAttParserTag))
1459 new_mask.SetAttrib(EAttParserTag);
1460 aCharFormat.iParserTag = Read32(ptr);
1462 ptr += KCharParserTag;
1465 default: // have maybe read an attribute defined by a later version; stop here
1473 /** Swaps the contents of this stream with aStream.
1474 @param aStream Object to swap contents with. */
1475 void RFormatStream::Swap(RFormatStream& aStream)
1478 iBase = aStream.iBase;
1481 iEnd = aStream.iEnd;
1485 TInt RFormatStream::StoreTabs(TUint8*& aPtr,const CParaFormat& aDesiredFormat,const CParaFormat& aCurrentFormat,TBool aStoreData)
1486 // Merges the tabs from the desired paraFormat with those from the current effective paraFormat, resolving differences
1487 // as described below, and store the resultant tablist in this layer.
1488 // If aStoreData is false, then return the number of bytes necessary to store all required tabs
1491 TInt requiredTabCount=0;
1492 TInt desiredTabCount=aDesiredFormat.TabCount();
1493 TInt currentTabCount=aCurrentFormat.TabCount();
1494 if (desiredTabCount==0 && currentTabCount==0)
1495 {// Nothing needs to be stored.
1496 return requiredTabCount;
1498 if (desiredTabCount>0 && currentTabCount>0)
1499 {// The 2 tab lists need merging.
1500 requiredTabCount=MergeTabLists(aPtr,aDesiredFormat,desiredTabCount,aCurrentFormat,currentTabCount,aStoreData);
1502 else if (desiredTabCount>0 && currentTabCount==0)
1503 {// There are no previous tabs to merge so just store all the desired ones.
1505 StoreAllTabs(aPtr,aDesiredFormat);
1507 requiredTabCount+=desiredTabCount;
1509 else if (desiredTabCount==0 && currentTabCount>0)
1510 {// We want to delete (NULL) all existing tabs.
1513 for (TInt index=0;index<currentTabCount;index++)
1515 TTabStop tab=aCurrentFormat.TabStop(index);
1516 tab.iType=TTabStop::ENullTab;
1520 else requiredTabCount+=currentTabCount;
1522 return requiredTabCount*(KTypeSize+KParaTabStop);
1526 TInt RFormatStream::MergeTabLists(TUint8*& aPtr,const CParaFormat& aDesiredFormat,TInt aDesiredTabCount,
1527 const CParaFormat& aCurrentFormat,TInt aCurrentTabCount,TBool aStoreData)
1528 // Compares the desired tablist (from a dialog interaction) with that of the current tablist.
1529 // The resulting tab stop is stored if aStoreData is TRUE.
1530 // There may be 2 tabs for any for any given tabstops.
1531 // The possible results of the comparison are:
1532 // (1) Tab is in desired but not current --> Store the desired tab.
1533 // (2) Tab is in current but not desired --> Null the current and store.
1534 // (3) Tab is in both current and desired -->
1535 // (i) if tab type is the same then store nothing -- rely on the base one being inherited.
1536 // (ii)if tab type is not same then store the current -- overriding whatevers in the base.
1539 TInt requiredTabCount=0;
1540 TInt offsetInDesired,offsetInCurrent;
1541 offsetInDesired=offsetInCurrent=0;
1542 TTabStop desiredTab,currentTab;
1543 while ((offsetInDesired!=aDesiredTabCount) && (offsetInCurrent!=aCurrentTabCount))
1544 {// Do this until we exhaust one of the tab lists.
1545 desiredTab=aDesiredFormat.TabStop(offsetInDesired);
1546 currentTab=aCurrentFormat.TabStop(offsetInCurrent);
1547 if (desiredTab.iTwipsPosition<currentTab.iTwipsPosition)
1550 aPtr=StoreTab(aPtr,desiredTab); // Store desiredTab.
1553 offsetInDesired++; // Move to the next tab in the desired tablist.
1556 if (desiredTab.iTwipsPosition>currentTab.iTwipsPosition)
1560 currentTab.iType=TTabStop::ENullTab; // Null the current current tab.
1561 aPtr=StoreTab(aPtr,currentTab); // Store NULL'd currentTab
1565 offsetInCurrent++; // Move to the next tab in the current tablist.
1568 if (desiredTab.iTwipsPosition==currentTab.iTwipsPosition)
1570 if (desiredTab.iType!=currentTab.iType)
1571 {// Store desired type to override the one from the lower layer.
1573 aPtr=StoreTab(aPtr,desiredTab);
1576 }// Otherwise rely on the one in the base - store nothing but increment.
1582 TInt currentLeftToDo=aCurrentTabCount-offsetInCurrent;
1583 TInt desiredLeftToDo=aDesiredTabCount-offsetInDesired;
1584 // Spot which list is exhausted and process the rest of the remainder appropriately.
1585 if (currentLeftToDo)
1586 {// Store null'd remainder of current tab list.
1587 for (;offsetInCurrent<aCurrentTabCount;offsetInCurrent++)
1591 currentTab=aCurrentFormat.TabStop(offsetInCurrent);
1592 currentTab.iType=TTabStop::ENullTab; // Null the current current tab.
1593 aPtr=StoreTab(aPtr,currentTab); // Store NULL'd currentTab
1599 if (desiredLeftToDo)
1600 {// Store remainder of desired tab list.
1601 for (;offsetInDesired<aDesiredTabCount;offsetInDesired++)
1604 aPtr=StoreTab(aPtr,aDesiredFormat.TabStop(offsetInDesired));
1609 // ASSERT: The tabList offsets are as we would expect in a normal (correct) completion.
1610 if (offsetInDesired!=aDesiredTabCount)
1612 OstTrace0( TRACE_FATAL, RFORMATSTREAM_MERGETABLISTS, "EStoreTabError" );
1614 __ASSERT_ALWAYS(offsetInDesired==aDesiredTabCount,Panic(EStoreTabError));
1615 if (offsetInCurrent!=aCurrentTabCount)
1617 OstTrace0( TRACE_FATAL, DUP1_RFORMATSTREAM_MERGETABLISTS, "EStoreTabError" );
1619 __ASSERT_ALWAYS(offsetInCurrent==aCurrentTabCount,Panic(EStoreTabError));
1620 return requiredTabCount;
1624 // Writes all tabs from aSource.
1625 void RFormatStream::StoreAllTabs(TUint8*& aPtr,const CParaFormat& aSource)
1627 int tabs = aSource.TabCount();
1628 for (TInt index = 0;index < tabs; index++)
1629 aPtr = StoreTab(aPtr,TTabStop(aSource.TabStop(index)));
1633 TUint8* RFormatStream::StoreBullet(TUint8* aPtr,const TBullet& aBullet)
1635 // Write the attribute code and leave a gap for the length.
1636 *aPtr++ = TUint8(EAttBullet);
1637 TUint8* length_ptr = aPtr++;
1639 // Store the font height.
1640 Write32(aPtr,aBullet.iHeightInTwips);
1642 // Store the bullet character code.
1643 aPtr[0] = (TUint8)(aBullet.iCharacterCode);
1644 aPtr[1] = (TUint8)(aBullet.iCharacterCode >> 8);
1645 aPtr += sizeof(TText);
1647 // Store the hanging indent
1648 *aPtr++ = TUint8(aBullet.iHangingIndent != FALSE);
1650 // Store the colour.
1651 aPtr = Store(aPtr,aBullet.iColor);
1653 // Store the typeface
1654 aPtr = Store(aPtr,aBullet.iTypeface);
1656 // Store the number of data bytes stored.
1657 *length_ptr = (TUint8)(aPtr - length_ptr - 1);
1663 TUint8* RFormatStream::StoreBorder(TUint8* aPtr,TTextFormatAttribute aType,const TParaBorder& aSource)
1664 // Stores paragraph border attributes.
1665 // Writes the line style, thickness,autoColor flag
1666 // and Color, from aSource to the end of the format stream.
1667 // aType is converted from an enum to a TUint8 as it is stored in the format stream.
1670 *aPtr++=TUint8(aType);
1671 // border line style
1672 *aPtr++=TUint8(aSource.iLineStyle);
1673 // border line thickness
1674 Write32(aPtr,aSource.iThickness);
1676 aPtr=Store(aPtr,aSource.iColor);
1678 *aPtr++=TUint8(aSource.iAutoColor!=EFalse);
1683 TUint8* RFormatStream::StoreTab(TUint8* aPtr,const TTabStop& aSource)
1684 // Stores a tabstop compound attribute at the end of the stream.
1685 // Writes the tabstop twips position and the tab type, from aSource, to the end of the format stream.
1686 // aType is converted from an enum to a TUint8 as it is stored in the format stream.
1687 // The tab type is compressed from a TTabType enum to a TUint8.
1688 // Uses InsertL, which may cause expansion of the stream storage, and thus may fail.
1691 *aPtr++=TUint8(EAttTabStop);
1692 // Store tab poisition.
1693 Write32(aPtr,aSource.iTwipsPosition);
1694 // Compress the tab type.
1695 *aPtr++=TUint8(aSource.iType);
1700 TUint8* RFormatStream::Store(TUint8* aPtr,const TLogicalRgb& aRgb)
1701 // Store color value
1704 *aPtr++=TUint8(aRgb.Red());
1705 *aPtr++=TUint8(aRgb.Green());
1706 *aPtr++=TUint8(aRgb.Blue());
1711 TUint8* RFormatStream::Store(TUint8* aPtr,const TTypeface& aTypeface)
1712 // Stores typeface name and flags.
1716 // Store typeface name size
1717 TUint8 length=TUint8(aTypeface.iName.Size());
1718 length+=KTypefaceFlags;
1719 *aPtr++=length; // byte count.
1721 // Store typeface name
1722 aPtr=Mem::Copy(aPtr,aTypeface.iName.Ptr(),length-KTypefaceFlags);
1724 // Store typeface flags
1726 if (aTypeface.IsProportional())
1727 flags|=KFontProportional;
1728 if (aTypeface.IsSerif())
1730 if (aTypeface.IsSymbol())
1733 aPtr+=KTypefaceFlags;
1738 TUint8* RFormatStream::ReadValue(TUint8* aPtr,TLogicalRgb& aRgb)const
1739 // Reads a color value from storage.
1742 aRgb.SetRed(*aPtr++);
1743 aRgb.SetGreen(*aPtr++);
1744 aRgb.SetBlue(*aPtr++);
1745 aRgb.SetSystemColorIndex(0);
1750 TUint8* RFormatStream::ReadValue(TUint8* aPtr,TParaBorder& aBorder)const
1751 // Reads a paragraph border from storage.
1755 aBorder.iLineStyle=TParaBorder::TLineStyle(*aPtr++);
1757 aBorder.iThickness = Read32(aPtr);
1758 aPtr+=sizeof(TInt32);
1760 aPtr=ReadValue(aPtr,aBorder.iColor); // returns aPtr
1762 aBorder.iAutoColor=TBool(*aPtr++);
1767 TUint8* RFormatStream::ReadValue(TUint8* aPtr,TBullet& aBullet)const
1768 // Read the bullet compound attribute.
1771 // Read the length of this bullet attribute
1772 aPtr++; // length not used in this context, skip it
1773 // Read bullet twips height into target
1774 aBullet.iHeightInTwips = Read32(aPtr);
1775 aPtr+=sizeof(TInt32);
1776 // Read bullet character code into target.
1777 aBullet.iCharacterCode = (TText)aPtr[0] | ((TText)aPtr[1] << 8);
1778 aPtr+=sizeof(TText);
1779 // Read hanging indent.
1780 aBullet.iHangingIndent=TBool(*aPtr++);
1782 aPtr=ReadValue(aPtr,aBullet.iColor); // returns aPtr
1784 return ReadValue(aPtr,aBullet.iTypeface); // returns aPtr
1788 TUint8* RFormatStream::ReadValue(TUint8* aPtr,TTypeface& aTypeface)const
1789 // Read a typeface name from storage and associated flags.
1793 // Read typeface name size
1794 TInt length=*aPtr++;
1796 // Read typeface name
1797 TInt typefaceLength=length-KTypefaceFlags;
1799 if ((typefaceLength%2)!=0)
1801 OstTrace0( TRACE_DUMP, RFORMATSTREAM_READVALUE, "ECorruptFormatLayer" );
1803 __ASSERT_DEBUG((typefaceLength%2)==0,Panic(ECorruptFormatLayer)); // must be an even number
1805 TPtr name=aTypeface.iName.Des();
1806 Mem::Copy(CONST_CAST(TText*,name.Ptr()),aPtr,typefaceLength);
1808 name.SetLength(typefaceLength);
1810 aPtr+=length-KTypefaceFlags;
1812 // Read typeface name flags
1815 if (flags & KFontProportional)
1816 attrib|=TTypeface::EProportional;
1817 if (flags & KFontSerif)
1818 attrib|=TTypeface::ESerif;
1819 if (flags & KFontSymbol)
1820 attrib|=TTypeface::ESymbol;
1821 aTypeface.SetAttributes(attrib); // reset the attributes
1822 return aPtr+KTypefaceFlags;
1826 TUint8* RFormatStream::ReadTabL(TUint8* aPtr,CParaFormat& aTarget)const
1827 // Read the tab stop data from the stream, located at aPos, into
1828 // a temporary TTabStop, and use this to fill in aTarget.
1829 // Does not read the tab if one already exists at the same twips position.
1830 // (Implementation of tab inheritance policy).
1831 // aPos is updated manually, rather than using Length(), since this is
1832 // a compound attribute.
1836 // Read tab position
1837 tab.iTwipsPosition = Read32(aPtr);
1838 aPtr+=sizeof(TInt32);
1840 tab.iType=TTabStop::TTabType(*aPtr++);
1841 // Set this tab in the paragraph format
1842 TInt ret=aTarget.LocateTab(tab.iTwipsPosition); // is this necessary
1843 if (ret==KTabNotFound)
1844 aTarget.StoreTabL(tab);
1849 TInt RFormatStream::Length(TUint8*& aPtr,TTextFormatAttribute aType) const
1850 // Returns the length of a Type's value
1851 // A length of zero in the lookup table, indicates a variable
1852 // length value. In this case, the length is stored in the byte
1853 // following the type, which is read and returned.
1854 // aPtr is incremented by the appropriate amount following a read.
1857 TInt length=TheAttributeLength[aType];
1861 OstTrace0( TRACE_DUMP, RFORMATSTREAM_LENGTH, "EAttributeLengthLookupNegative" );
1863 __ASSERT_DEBUG(length>=0,Panic(EAttributeLengthLookupNegative));