Update contrib.
1 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #include "Graphics/WSGRAPHICMSGBUF.H"
17 #include "DrawSection.h"
18 #include "CommandBuffer.h"
19 #include "BitmapCache.h"
20 #include "FontsCache.h"
22 const TInt KBufferSize = 1024;
24 EXPORT_C CCommandBuffer* CCommandBuffer::NewL()
26 CCommandBuffer* buffer = new (ELeave) CCommandBuffer;
27 CleanupStack::PushL(buffer);
29 CleanupStack::Pop(buffer);
33 CCommandBuffer::CCommandBuffer()
37 EXPORT_C CCommandBuffer::~CCommandBuffer()
39 iDrawSections.ResetAndDestroy();
40 iDrawSections.Close();
41 iBufReadStream.Close();
42 iClippingRegion.Close();
50 void CCommandBuffer::ConstructL()
52 iBitmapCache = new (ELeave) CBitmapCache;
53 iRecordSegBuf = CBufSeg::NewL(KBufferSize);
54 iFontCache = new (ELeave) CFontsCache;
58 Resets the entire commandbuffer.
60 void CCommandBuffer::Reset()
63 iRecordSegBuf->Reset();
66 iOrigin = TPoint(0,0);
67 iClippingRegion.Clear();
68 iDrawSections.ResetAndDestroy();
72 Externalizes commandbuffer sections into a format which makes it possible to send over IPC.
73 If ETrue is sent as a parameter to this method, the entire commandbuffer will be externalized,
74 otherwise only sections which has not been externalized before will be externalized. Note that if only
75 not externalized sections is asked for, the flag will be reset on that section so next call
76 to ExternalizeLC will not externalize that section.
78 @param aMsgBuf A buffer used to externalize the commandbuffer to.
79 @param aEntireBuffer If ETrue, the entire commandbuffer will be externalized, otherwise only sections which has not been externalized before.
81 void CCommandBuffer::ExternalizeL(RWsGraphicMsgBuf& aMsgBuf, TBool aEntireBuffer)
83 // Add drawsections to aMsgBuf
84 const TInt sectionCount = iDrawSections.Count();
85 for(TInt j = 0; j < sectionCount; j++)
87 CDrawSection* section = iDrawSections[j];
88 if(aEntireBuffer || !section->HasBeenExternalized())
90 section->ExternalizeL(aMsgBuf);
91 section->SetHasBeenExternalized(ETrue);
97 Internalizes the entire commandbuffer from buffer containing information about all drawsections and drawcommands.
99 @param aBuf A buffer containing information about all drawsections and drawcommands.
101 EXPORT_C void CCommandBuffer::InternalizeL(const TDesC8& aBuf)
103 // Reset the commandbuffer
104 iRecordSegBuf->Reset();
105 InternalizeAppendL(aBuf);
109 Internalizes and appends from a buffer containing information about some drawsections and drawcommands.
111 @param aBuf A buffer containing information about some drawsections and drawcommands.
113 EXPORT_C void CCommandBuffer::InternalizeAppendL(const TDesC8& aBuf)
115 // Reset the commandbuffer
116 TWsGraphicMsgBufParser parser(aBuf);
119 const TInt count = parser.Count();
120 for(TInt i = 0; i < count; i++)
122 CDrawSection* drawSection = CDrawSection::NewL();;
123 CleanupStack::PushL(drawSection);
124 User::LeaveIfError(drawSection->LoadL(parser, i));
125 iDrawSections.AppendL(drawSection);
126 CleanupStack::Pop(drawSection);
129 // Tidy the iDrawSection array so completely blocked sections will be removed
134 @return the current active clipping region of the commandbuffer.
136 EXPORT_C const TRegion& CCommandBuffer::ClippingRegion() const
138 return *iActiveMasterClippingRegion;
142 Prepares to record new drawcommands for a drawsection.
143 This method is called from CRemoteGc::Activate().
145 void CCommandBuffer::Prepare(const TRect& aDrawRect)
147 iDrawSectionRect = aDrawRect;
150 iRecordSegBuf->Delete(0, iRecordSegBuf->Size()); // Reset record buffer
152 TRAP(iError, iRecordSegBuf = CBufSeg::NewL(KBufferSize));
156 Finishes the recording of drawcommands for a drawsection.
157 This method is called from CRemoteGc::Deactivate().
159 @param aDrawRect The drawrect of the recorded drawcommands.
160 @param aBoundingRect The boundingrect of the recorded drawcommands.
162 TInt CCommandBuffer::Finish(const TRect& aDrawRect, const TRect& aBoundingRect, TBool aHasBitmapCommand)
164 // If some error occured during the recording of this section, dont add the section
167 CDrawSection* drawSection = NULL;
168 TRAP(iError, drawSection = CDrawSection::NewL(aDrawRect, aBoundingRect, aHasBitmapCommand))
172 // If boundingRect is empty clear the drawcommands added
173 if(aBoundingRect.IsEmpty())
174 iRecordSegBuf->Delete(0, iRecordSegBuf->Size());
176 iRecordSegBuf->Compress();
177 drawSection->SetBuffer(iRecordSegBuf); //Takes ownership of the memory allocated by iRecordSegBuf
178 iRecordSegBuf = NULL;
179 if(CheckForDuplicate(*drawSection))
182 return KErrAlreadyExists;
185 iError = iDrawSections.Append(drawSection);
191 if(iDrawSections.Count() == 0 || AllSectionsExternalized())
200 Remove drawsections that is completely blocked by another drawsection.
202 void CCommandBuffer::Tidy()
206 for(TInt i = 0; i < (count = iDrawSections.Count()); i++)
208 TRect rect1 = iDrawSections[i]->DrawRect();
210 region.AddRect(rect1);
211 for(TInt j = i + 1; j < count; j++)
213 TRect rect2 = iDrawSections[j]->DrawRect();
214 region.SubRect(rect2);
219 delete iDrawSections[i];
220 iDrawSections.Remove(i--);
227 @return ETrue if all sections in the commandbuffer have been externalized, otherwise EFalse.
229 TBool CCommandBuffer::AllSectionsExternalized() const
231 const TInt count = iDrawSections.Count();
232 for(TInt i = 0; i < count; i++)
234 if(!iDrawSections[i]->HasBeenExternalized())
241 Checks if there exists any duplicate of aDrawSection already in the iDrawSection array.
243 @param aDrawSection The drawsection to look for a duplicate of.
244 @return ETrue if a duplicate was found, otherwise EFalse.
246 TBool CCommandBuffer::CheckForDuplicate(const CDrawSection& aDrawSection) const
248 const TInt count = iDrawSections.Count();
249 for(TInt i = 0; i < count; i++)
251 if(!iDrawSections[i]->IsIdentical(aDrawSection))
254 // Check if there is some drawsection that overlaps the section we found identical,
255 // if that is the case it is not a duplicate
256 for(TInt j = i + 1; j < count; j++)
258 TRect compareRect = iDrawSections[j]->DrawRect();
259 if(aDrawSection.DrawRect().Intersects(compareRect))
260 return EFalse; //Found a drawrect that overlapped, no duplicate exists then
271 Updates the clippingregion for a specific drawsection.
273 @param aDrawSectionIndex The index in iDrawSections of the drawsection to update the clippingregion for.
274 @param aBitmapContext The bitmapcontext to set the new clippingregion on.
276 void CCommandBuffer::UpdateClippingRegion(TInt aDrawSectionIndex)
278 __ASSERT_DEBUG(aDrawSectionIndex < iDrawSections.Count(), User::Invariant());
280 iDrawSectionClippingRegion.Clear();
281 if (iMasterClippingRegion)
283 iDrawSectionClippingRegion.Copy(*iMasterClippingRegion);
287 TRect rect = iMasterClippingRect;
288 rect.Move(iMasterOrigin);
289 iDrawSectionClippingRegion.AddRect(rect);
292 const TInt count = iDrawSections.Count();
293 for(TInt i = aDrawSectionIndex + 1; i < count; ++i)
295 TRect rect = iDrawSections[i]->DrawRect();
296 rect.Move(iMasterOrigin);
297 iDrawSectionClippingRegion.SubRect(rect);
300 if (iDrawSectionClippingRegion.CheckError())
301 iActiveMasterClippingRegion = iMasterClippingRegion;
303 iActiveMasterClippingRegion = &iDrawSectionClippingRegion;
307 Writes data of a specific length to the recordbuffer.
309 @param aPtr The data to write.
310 @param aLength The length of the data to write.
312 void CCommandBuffer::Write(const TUint8* aPtr, TUint aLength)
317 TRAP(iError, iRecordSegBuf->InsertL(iRecordSegBuf->Size(), aPtr, aLength))
323 Writes text to the recordbuffer.
325 @param aText The text to write to the recordbuffer.
327 void CCommandBuffer::WriteText(const TDesC8 &aText)
332 // Append the total size of the text
333 Write<TInt>(aText.Size());
337 TRAP(iError, DoWriteTextL(aText));
341 Writes text to the recordbuffer.
343 @param aText The text to write to the recordbuffer.
345 void CCommandBuffer::WriteText(const TDesC16 &aText)
350 // Append the total size of the text
351 Write<TInt>(aText.Size());
355 TPtrC8 textPtr(reinterpret_cast<const TUint8*>(aText.Ptr()),aText.Size());
356 TRAP(iError, DoWriteTextL(textPtr));
360 Writes text to the recordbuffer.
362 @param aText The text to write to the recordbuffer.
364 void CCommandBuffer::DoWriteTextL(const TDesC8 &aText)
366 iRecordSegBuf->InsertL(iRecordSegBuf->Size(), aText, aText.Size());
370 Reads data with a specific length from iBufReadStream.
372 @param aPtr The read data is written to this paramenter.
373 @param aLength The length of the data to be read.
375 void CCommandBuffer::ReadL(TUint8* aPtr, TUint aLength)
377 iBufReadStream.ReadL(aPtr, aLength);
381 Reads text from iBufReadStream.
383 @param aText The read text is put into this 8-bit buffer.
385 void CCommandBuffer::ReadTextLC(TPtrC8& aText)
387 DoReadTextLC(aText,EFalse);
391 Reads text from iBufReadStream.
393 @param aText The read text is put into this 16-bit buffer.
395 void CCommandBuffer::ReadTextLC(TPtrC16& aText)
398 DoReadTextLC(text8,ETrue);
399 aText.Set(reinterpret_cast<const TUint16*>(text8.Ptr()),text8.Size()/2);
403 Reads text from iBufReadStream; used by ReadTextLC
407 void CCommandBuffer::DoReadTextLC(TPtrC8& aText,TBool a16Bit)
412 ReadL<TInt>(textSize); // Read the length of the text
415 User::Leave(KErrArgument);
418 // attempt to do it inline
419 const TInt pos = iBufReadStream.Source()->TellL(MStreamBuf::ERead).Offset();
420 if(!a16Bit || !(pos & 1)) // check 16bit-aligned
422 const TPtrC8 remaining = iBufRead->Ptr(pos);
423 if(remaining.Size() >= textSize) // can do inline!
425 CleanupStack::PushL((TAny*)NULL); // have to push something
426 iBufReadStream.Source()->SeekL(MStreamBuf::ERead,textSize);
427 aText.Set(remaining.Ptr(),textSize);
432 // have to copy into a continuous segment
433 HBufC8* buf = HBufC8::NewLC(textSize);
434 TPtr8 textPtr8(buf->Des());
435 iBufReadStream.ReadL(textPtr8,textSize);
440 Compares the commands in one buffer to those in another
441 @param aBuffer The buffer to compare to
442 @return ETrue if they are an exact match, EFalse otherwise
444 EXPORT_C TBool CCommandBuffer::IsIdentical(const CCommandBuffer & aBuffer) const
446 for(TInt i = 0; i < iDrawSections.Count(); ++i)
448 if (!iDrawSections[i]->IsIdentical(*aBuffer.iDrawSections[i]))
455 Draws drawcommands that are within a specific rect to a specific position.
456 This function is deprecated use the other overload
458 @param aPosition Draws the drawcommands to this position.
459 @param aDrawRect Draws only drawcommands that are within this rect.
460 @param aBitmapContext The bitmapcontext to draw to.
464 EXPORT_C TInt CCommandBuffer::Play(const TPoint& aPosition, const TRect& aDrawRect, const MWsGraphicResolver& aWsGraphicResolver, CBitmapContext& aContext)
466 iMasterOrigin = aPosition;
467 iOrigin = TPoint(0,0); // Need to save this to be able to make Reset not affect Origin beacuse that is how CWsGc works.
468 aContext.SetOrigin(iMasterOrigin);
469 iMasterClippingRect = aDrawRect;
470 iMasterClippingRegion=0;
472 TRAPD(errMess, DoPlayL(aWsGraphicResolver, aContext));
477 Draws drawcommands that are within a specific rect to a specific position.
479 @param aMasterOrigin The origin relative to which all draw commands will be drawn
480 @param aMasterClippingRegion The region to which all draw commands are clipped
481 @param aMasterClippingRect The rectangle to which all draw commands are clipped
482 @param aWsGraphicResolver Any DrawWsGraphic commands will use this to draw themselves
483 @param aContext The bitmap context to draw to
486 EXPORT_C TInt CCommandBuffer::Play(const TPoint& aMasterOrigin, const TRegion * aMasterClippingRegion, const TRect& aMasterClippingRect, const MWsGraphicResolver& aWsGraphicResolver, CBitmapContext& aContext)
488 iMasterOrigin = aMasterOrigin;
489 iMasterClippingRegion = aMasterClippingRegion;
490 iMasterClippingRect = aMasterClippingRect;
494 TRAPD(errMess, DoPlayL(aWsGraphicResolver, aContext));
501 EXPORT_C TInt CCommandBuffer::Play(const TPoint& /*aOffset*/, const TRegion* /*aClippingRegion*/, const TRect& /*aSourceRect*/, const MWsGraphicResolver& /*aWsGraphicResolver*/, MWsGraphicsContext& /*aGraphicsContext*/) //Stub implementation to maintain compatibility with NGA Window Server
504 return KErrNotSupported;
510 EXPORT_C TInt CCommandBuffer::Play(const TPoint& /*aOffset*/, const TRegion* /*aClippingRegion*/, const TRect& /*aSourceRect*/, RWsSession& /*aWsSession*/, CWindowGc& /*aWindowGc*/) //Stub implementation to maintain compatibility with NGA Window Server
513 return KErrNotSupported;
517 Draws drawcommands that are within a specific rect.
519 @param aDrawRect Draws only drawcommands that are within this rect.
520 @param aBitmapContext The bitmapcontext to draw to.
522 void CCommandBuffer::DoPlayL(const MWsGraphicResolver& aWsGraphicResolver, CBitmapContext& aBitmapContext)
524 const TInt sections = iDrawSections.Count();
526 User::Leave(KErrEof);
528 iBitmapCache->BeginUpdate();
529 iFontCache->BeginUpdate();
530 for(TInt i = 0; i < sections; i++)
532 UpdateClippingRegion(i);
533 DrawSectionL(*iDrawSections[i], aWsGraphicResolver, aBitmapContext);
535 iFontCache->EndUpdate();
536 iBitmapCache->EndUpdate();
540 Draws a specific drawsection.
542 @param aDrawSection The drawsection to be drawn.
543 @param aBitmapContext The bitmapcontext to draw to.
545 void CCommandBuffer::DrawSectionL(const CDrawSection& aDrawSection, const MWsGraphicResolver& aWsGraphicResolver, CBitmapContext& aBitmapContext)
547 iDrawSectionRect = aDrawSection.DrawRect();
548 Reset(aBitmapContext);
550 iBufRead = aDrawSection.Buffer();
551 iBufReadStream.Open(*iBufRead, 0);
556 TRAPD(err, ReadL<TDrawCode>(drawCode));
565 Clear(aBitmapContext);
567 case ECommandClearRect:
568 ClearRectL(aBitmapContext);
570 case ECommandCopyRect:
571 CopyRectL(aBitmapContext);
573 case ECommandBitBlt1:
574 BitBlt1L(aBitmapContext);
576 case ECommandBitBlt2:
577 BitBlt2L(aBitmapContext);
579 case ECommandBitBltMasked:
580 BitBltMaskedL(aBitmapContext);
582 case ECommandSetFaded:
583 SetFadedL(aBitmapContext);
585 case ECommandSetFadingParameters:
586 SetFadingParametersL(aBitmapContext);
588 case ECommandAlphaBlendBitmaps:
589 AlphaBlendBitmapsL(aBitmapContext);
591 case ECommandSetOrigin:
592 SetOriginL(aBitmapContext);
594 case ECommandSetDrawMode:
595 SetDrawModeL(aBitmapContext);
597 case ECommandSetClippingRect:
598 SetClippingRectL(aBitmapContext);
600 case ECommandCancelClippingRect:
601 CancelClippingRect(aBitmapContext);
604 Reset(aBitmapContext);
606 case ECommandUseFont:
607 UseFontL(aBitmapContext);
609 case ECommandDiscardFont:
610 DiscardFont(aBitmapContext);
612 case ECommandSetUnderlineStyle:
613 SetUnderlineStyleL(aBitmapContext);
615 case ECommandSetStrikethroughStyle:
616 SetStrikethroughStyleL(aBitmapContext);
618 case ECommandSetWordJustification:
619 SetWordJustificationL(aBitmapContext);
621 case ECommandSetCharJustification:
622 SetCharJustificationL(aBitmapContext);
624 case ECommandSetPenColor:
625 SetPenColorL(aBitmapContext);
627 case ECommandSetPenStyle:
628 SetPenStyleL(aBitmapContext);
630 case ECommandSetPenSize:
631 SetPenSizeL(aBitmapContext);
633 case ECommandSetBrushColor:
634 SetBrushColorL(aBitmapContext);
636 case ECommandSetBrushStyle:
637 SetBrushStyleL(aBitmapContext);
639 case ECommandSetBrushOrigin:
640 SetBrushOriginL(aBitmapContext);
642 case ECommandUseBrushPattern:
643 UseBrushPatternL(aBitmapContext);
645 case ECommandDiscardBrushPattern:
646 DiscardBrushPattern(aBitmapContext);
649 MoveToL(aBitmapContext);
652 MoveByL(aBitmapContext);
655 PlotL(aBitmapContext);
657 case ECommandDrawArc:
658 DrawArcL(aBitmapContext);
660 case ECommandDrawLine:
661 DrawLineL(aBitmapContext);
663 case ECommandDrawLineTo:
664 DrawLineToL(aBitmapContext);
666 case ECommandDrawLineBy:
667 DrawLineByL(aBitmapContext);
669 case ECommandDrawPolyLine:
670 DrawPolyLineL(aBitmapContext);
672 case ECommandDrawPie:
673 DrawPieL(aBitmapContext);
675 case ECommandDrawEllipse:
676 DrawEllipseL(aBitmapContext);
678 case ECommandDrawRect:
679 DrawRectL(aBitmapContext);
681 case ECommandDrawPolygon:
682 DrawPolygonL(aBitmapContext);
684 case ECommandDrawRoundRect:
685 DrawRoundRectL(aBitmapContext);
687 case ECommandDrawBitmap1:
688 DrawBitmap1L(aBitmapContext);
690 case ECommandDrawBitmap2:
691 DrawBitmap2L(aBitmapContext);
693 case ECommandDrawBitmap3:
694 DrawBitmap3L(aBitmapContext);
696 case ECommandDrawBitmapMasked:
697 DrawBitmapMaskedL(aBitmapContext);
699 case ECommandDrawText1:
700 DrawText1L(aBitmapContext);
702 case ECommandDrawText2:
703 DrawText2L(aBitmapContext);
705 case ECommandDrawText3:
706 DrawText3L(aBitmapContext);
708 case ECommandMapColors:
709 MapColorsL(aBitmapContext);
711 case ECommandSetClippingRegion:
712 SetClippingRegionL(aBitmapContext);
714 case ECommandCancelClippingRegion:
715 CancelClippingRegion(aBitmapContext);
717 case ECommandDrawTextVertical1:
718 DrawTextVertical1L(aBitmapContext);
720 case ECommandDrawTextVertical2:
721 DrawTextVertical2L(aBitmapContext);
723 case ECommandDrawWsGraphic1:
724 DrawWsGraphic1L(aWsGraphicResolver);
726 case ECommandDrawWsGraphic2:
727 DrawWsGraphic2L(aWsGraphicResolver);
729 case ECommandSetShadowColor:
730 SetShadowColorL(aBitmapContext);
733 User::LeaveIfError(KErrNotFound);
739 void CCommandBuffer::Clear(CBitmapContext& aBitmapContext) const
741 aBitmapContext.Clear();
744 void CCommandBuffer::ClearRectL(CBitmapContext& aBitmapContext)
749 aBitmapContext.Clear(rect);
752 void CCommandBuffer::CopyRectL(CBitmapContext& aBitmapContext)
757 ReadL<TPoint>(point);
760 aBitmapContext.CopyRect(point, rect);
763 void CCommandBuffer::BitBlt1L(CBitmapContext& aBitmapContext)
768 ReadL<TPoint>(point);
771 if(!iBitmapCache->UseL(handle))
772 aBitmapContext.BitBlt(point, iBitmapCache->Resolve(handle));
775 void CCommandBuffer::BitBlt2L(CBitmapContext& aBitmapContext)
781 ReadL<TPoint>(point);
783 ReadL<TRect>(sourceRect);
785 if(!iBitmapCache->UseL(handle))
786 aBitmapContext.BitBlt(point, iBitmapCache->Resolve(handle), sourceRect);
789 void CCommandBuffer::BitBltMaskedL(CBitmapContext& aBitmapContext)
797 ReadL<TPoint>(point);
798 ReadL<TInt>(bitmapHandle);
799 ReadL<TRect>(sourceRect);
800 ReadL<TInt>(maskHandle);
801 ReadL<TBool>(invertedMask);
803 if(!iBitmapCache->UseL(bitmapHandle) && !iBitmapCache->UseL(maskHandle))
804 aBitmapContext.BitBltMasked(point, iBitmapCache->Resolve(bitmapHandle), sourceRect, iBitmapCache->Resolve(maskHandle), invertedMask);
807 void CCommandBuffer::SetFadedL(CBitmapContext& aBitmapContext)
812 aBitmapContext.SetFaded(faded);
815 void CCommandBuffer::SetFadingParametersL(CBitmapContext& aBitmapContext)
820 ReadL<TUint8>(blackMap);
821 ReadL<TUint8>(whiteMap);
822 aBitmapContext.SetFadingParameters(blackMap, whiteMap);
825 void CCommandBuffer::AlphaBlendBitmapsL(CBitmapContext& aBitmapContext)
833 ReadL<TPoint>(destPoint);
834 ReadL<TInt>(srcHandle);
835 ReadL<TRect>(sourceRect);
836 ReadL<TInt>(alphaHandle);
837 ReadL<TPoint>(alphaPoint);
839 if(!iBitmapCache->UseL(srcHandle) && !iBitmapCache->UseL(alphaHandle))
840 aBitmapContext.AlphaBlendBitmaps(destPoint, iBitmapCache->Resolve(srcHandle), sourceRect, iBitmapCache->Resolve(alphaHandle), alphaPoint);
843 void CCommandBuffer::SetOriginL(CBitmapContext& aBitmapContext)
845 ReadL<TPoint>(iOrigin);
846 aBitmapContext.SetOrigin(iMasterOrigin + iOrigin);
850 void CCommandBuffer::SetDrawModeL(CBitmapContext& aBitmapContext)
852 CGraphicsContext::TDrawMode drawMode;
853 ReadL<CGraphicsContext::TDrawMode>(drawMode);
854 aBitmapContext.SetDrawMode(drawMode);
857 void CCommandBuffer::SetClippingRectL(CBitmapContext& aBitmapContext)
861 rect.Intersection(iMasterClippingRect);
862 rect.Intersection(iDrawSectionRect);
863 aBitmapContext.SetClippingRect(rect);
866 void CCommandBuffer::CancelClippingRect(CBitmapContext& aBitmapContext)
868 TRect rect = iMasterClippingRect;
869 rect.Intersection(iDrawSectionRect);
870 aBitmapContext.SetClippingRect(rect);
874 void CCommandBuffer::Reset(CBitmapContext& aBitmapContext)
876 aBitmapContext.Reset();
878 const TBool isFbsBitGc= aBitmapContext.IsFbsBitGc();
881 TRgb brushColor = KRgbWhite;
882 brushColor.SetAlpha(0); //make transparent
883 aBitmapContext.SetBrushColor(brushColor);
886 aBitmapContext.SetOrigin(iMasterOrigin);
887 if(iActiveMasterClippingRegion)
888 aBitmapContext.SetClippingRegion(*iActiveMasterClippingRegion);
889 CancelClippingRect(aBitmapContext);
890 iOrigin = TPoint(0,0);
891 iClippingRegion.Clear();
892 iParsedClippingRegionIsSet = EFalse;
895 void CCommandBuffer::UseFontL(CBitmapContext& aBitmapContext)
898 ReadL<TInt>(fontHandle);
899 if(iFontCache->UseL(fontHandle)) return;
900 aBitmapContext.UseFont(iFontCache->Resolve(fontHandle));
903 void CCommandBuffer::DiscardFont(CBitmapContext& aBitmapContext) const
905 aBitmapContext.DiscardFont();
908 void CCommandBuffer::SetUnderlineStyleL(CBitmapContext& aBitmapContext)
910 TFontUnderline underlineStyle;
911 ReadL<TFontUnderline>(underlineStyle);
912 aBitmapContext.SetUnderlineStyle(underlineStyle);
915 void CCommandBuffer::SetStrikethroughStyleL(CBitmapContext& aBitmapContext)
917 TFontStrikethrough strikethroughStyle;
918 ReadL<TFontStrikethrough>(strikethroughStyle);
919 aBitmapContext.SetStrikethroughStyle(strikethroughStyle);
922 void CCommandBuffer::SetWordJustificationL(CBitmapContext& aBitmapContext)
927 ReadL<TInt>(excessWidth);
928 ReadL<TInt>(numGaps);
929 aBitmapContext.SetWordJustification(excessWidth, numGaps);
932 void CCommandBuffer::SetCharJustificationL(CBitmapContext& aBitmapContext)
937 ReadL<TInt>(excessWidth);
938 ReadL<TInt>(numChars);
939 aBitmapContext.SetCharJustification(excessWidth, numChars);
942 void CCommandBuffer::SetPenColorL(CBitmapContext& aBitmapContext)
947 aBitmapContext.SetPenColor(color);
950 void CCommandBuffer::SetPenStyleL(CBitmapContext& aBitmapContext)
952 CGraphicsContext::TPenStyle penStyle;
953 ReadL<CGraphicsContext::TPenStyle>(penStyle);
955 aBitmapContext.SetPenStyle(penStyle);
958 void CCommandBuffer::SetPenSizeL(CBitmapContext& aBitmapContext)
963 aBitmapContext.SetPenSize(size);
966 void CCommandBuffer::SetBrushColorL(CBitmapContext& aBitmapContext)
971 aBitmapContext.SetBrushColor(color);
974 void CCommandBuffer::SetBrushStyleL(CBitmapContext& aBitmapContext)
976 CGraphicsContext::TBrushStyle brushStyle;
977 ReadL<CGraphicsContext::TBrushStyle>(brushStyle);
979 aBitmapContext.SetBrushStyle(brushStyle);
982 void CCommandBuffer::SetBrushOriginL(CBitmapContext& aBitmapContext)
985 ReadL<TPoint>(point);
987 aBitmapContext.SetBrushOrigin(point);
990 void CCommandBuffer::UseBrushPatternL(CBitmapContext& aBitmapContext)
993 ReadL<TInt>(deviceHandle);
995 if(iBitmapCache->UseL(deviceHandle)) return;
996 aBitmapContext.UseBrushPattern(iBitmapCache->Resolve(deviceHandle));
999 void CCommandBuffer::DiscardBrushPattern(CBitmapContext& aBitmapContext) const
1001 aBitmapContext.DiscardBrushPattern();
1004 void CCommandBuffer::MoveToL(CBitmapContext& aBitmapContext)
1007 ReadL<TPoint>(point);
1009 aBitmapContext.MoveTo(point);
1012 void CCommandBuffer::MoveByL(CBitmapContext& aBitmapContext)
1015 ReadL<TPoint>(point);
1017 aBitmapContext.MoveBy(point);
1020 void CCommandBuffer::PlotL(CBitmapContext& aBitmapContext)
1023 ReadL<TPoint>(point);
1025 aBitmapContext.Plot(point);
1028 void CCommandBuffer::DrawArcL(CBitmapContext& aBitmapContext)
1034 ReadL<TPoint>(start);
1037 aBitmapContext.DrawArc(rect, start, end);
1040 void CCommandBuffer::DrawLineL(CBitmapContext& aBitmapContext)
1044 ReadL<TPoint>(point1);
1045 ReadL<TPoint>(point2);
1047 aBitmapContext.DrawLine(point1, point2);
1050 void CCommandBuffer::DrawLineToL(CBitmapContext& aBitmapContext)
1053 ReadL<TPoint>(point);
1055 aBitmapContext.DrawLineTo(point);
1058 void CCommandBuffer::DrawLineByL(CBitmapContext& aBitmapContext)
1061 ReadL<TPoint>(point);
1063 aBitmapContext.DrawLineBy(point);
1066 void CCommandBuffer::DrawPolyLineL(CBitmapContext& aBitmapContext)
1069 ReadL<TInt>(nrOfPoints);
1071 CArrayFix<TPoint>* pointList = new (ELeave) CArrayFixFlat<TPoint>(5);
1072 CleanupStack::PushL(pointList);
1073 for(TInt i = 0; i < nrOfPoints; i++)
1076 ReadL<TPoint>(point);
1077 pointList->AppendL(point);
1080 aBitmapContext.DrawPolyLine(pointList);
1081 CleanupStack::PopAndDestroy(pointList);
1084 void CCommandBuffer::DrawPieL(CBitmapContext& aBitmapContext)
1090 ReadL<TPoint>(start);
1093 aBitmapContext.DrawPie(rect, start, end);
1096 void CCommandBuffer::DrawEllipseL(CBitmapContext& aBitmapContext)
1101 aBitmapContext.DrawEllipse(rect);
1104 void CCommandBuffer::DrawRectL(CBitmapContext& aBitmapContext)
1109 aBitmapContext.DrawRect(rect);
1112 void CCommandBuffer::DrawRoundRectL(CBitmapContext& aBitmapContext)
1117 ReadL<TSize>(ellipse);
1119 aBitmapContext.DrawRoundRect(rect, ellipse);
1122 void CCommandBuffer::DrawPolygonL(CBitmapContext& aBitmapContext)
1125 ReadL<TInt>(nrOfPoints);
1127 CArrayFix<TPoint>* pointList = new (ELeave) CArrayFixFlat<TPoint>(5);
1128 CleanupStack::PushL(pointList);
1129 for(TInt i = 0; i < nrOfPoints; i++)
1132 ReadL<TPoint>(point);
1133 pointList->AppendL(point);
1136 CGraphicsContext::TFillRule fillRule;
1137 ReadL<CGraphicsContext::TFillRule>(fillRule);
1138 aBitmapContext.DrawPolygon(pointList, fillRule);
1139 CleanupStack::PopAndDestroy(pointList);
1142 void CCommandBuffer::DrawBitmap1L(CBitmapContext& aBitmapContext)
1147 ReadL<TPoint>(topLeft);
1148 ReadL<TInt>(bitmapHandle);
1150 if(!iBitmapCache->UseL(bitmapHandle))
1151 aBitmapContext.DrawBitmap(topLeft, iBitmapCache->Resolve(bitmapHandle));
1154 void CCommandBuffer::DrawBitmap2L(CBitmapContext& aBitmapContext)
1159 ReadL<TRect>(destRect);
1160 ReadL<TInt>(bitmapHandle);
1162 if(!iBitmapCache->UseL(bitmapHandle))
1163 aBitmapContext.DrawBitmap(destRect, iBitmapCache->Resolve(bitmapHandle));
1166 void CCommandBuffer::DrawBitmap3L(CBitmapContext& aBitmapContext)
1172 ReadL<TRect>(destRect);
1173 ReadL<TInt>(bitmapHandle);
1174 ReadL<TRect>(sourceRect);
1176 if(!iBitmapCache->UseL(bitmapHandle))
1177 aBitmapContext.DrawBitmap(destRect, iBitmapCache->Resolve(bitmapHandle), sourceRect);
1180 void CCommandBuffer::DrawBitmapMaskedL(CBitmapContext& aBitmapContext)
1188 ReadL<TRect>(destRect);
1189 ReadL<TInt>(bitmapHandle);
1190 ReadL<TRect>(sourceRect);
1191 ReadL<TInt>(maskHandle);
1192 ReadL<TBool>(invertedMask);
1194 if(!iBitmapCache->UseL(bitmapHandle) && !iBitmapCache->UseL(maskHandle))
1195 aBitmapContext.DrawBitmapMasked(destRect, iBitmapCache->Resolve(bitmapHandle), sourceRect, iBitmapCache->Resolve(maskHandle), invertedMask);
1198 void CCommandBuffer::DrawText1L(CBitmapContext& aBitmapContext)
1205 ReadL<TPoint>(point);
1207 aBitmapContext.DrawText(text, point);
1208 CleanupStack::PopAndDestroy(); // ReadTextLC
1211 void CCommandBuffer::DrawText2L(CBitmapContext& aBitmapContext)
1214 TInt baselineOffset;
1215 CGraphicsContext::TTextAlign horiz;
1222 ReadL<TInt>(baselineOffset);
1223 ReadL<CGraphicsContext::TTextAlign>(horiz);
1224 ReadL<TInt>(leftMargin);
1226 aBitmapContext.DrawText(text, box, baselineOffset, horiz, leftMargin);
1227 CleanupStack::PopAndDestroy(); // ReadTextLC
1230 void CCommandBuffer::DrawText3L(CBitmapContext& aBitmapContext)
1233 CGraphicsContext::TDrawTextParam param;
1238 ReadL<TPoint>(point);
1239 ReadL<CGraphicsContext::TDrawTextParam>(param);
1241 aBitmapContext.DrawText(text, point, param);
1242 CleanupStack::PopAndDestroy(); //ReadTextLC
1245 void CCommandBuffer::MapColorsL(CBitmapContext& aBitmapContext)
1250 ReadL<TInt>(nrOfPairs);
1252 TRgb* colorList = new (ELeave) TRgb [nrOfPairs*2]; // Every pair has two colors
1253 CleanupArrayDeletePushL(colorList);
1254 for(TInt i = 0; i < nrOfPairs; i++)
1258 colorList[i] = color;
1261 colorList[i+1] = color;
1265 ReadL<TBool>(mapForwards);
1267 aBitmapContext.MapColors(rect, colorList, nrOfPairs, mapForwards);
1268 CleanupStack::PopAndDestroy(colorList);
1271 void CCommandBuffer::SetClippingRegionL(CBitmapContext& aBitmapContext)
1274 ReadL<TInt>(nrOfRects);
1277 iClippingRegion.Clear();
1278 for(TInt i = 0; i < nrOfRects; i++)
1281 // rect.Move(iMasterOrigin);
1282 iClippingRegion.AddRect(rect);
1285 iParsedClippingRegionIsSet = ETrue;
1286 if(iActiveMasterClippingRegion)
1287 iClippingRegion.Intersect(*iActiveMasterClippingRegion);
1289 aBitmapContext.SetClippingRegion(iClippingRegion);
1292 void CCommandBuffer::CancelClippingRegion(CBitmapContext& aBitmapContext)
1294 iClippingRegion.Clear();
1295 iParsedClippingRegionIsSet = EFalse;
1296 if(iActiveMasterClippingRegion)
1297 aBitmapContext.SetClippingRegion(*iActiveMasterClippingRegion);
1299 aBitmapContext.CancelClippingRegion();
1302 void CCommandBuffer::DrawTextVertical1L(CBitmapContext& aBitmapContext)
1310 ReadL<TPoint>(point);
1313 aBitmapContext.DrawTextVertical(text, point, up);
1314 CleanupStack::PopAndDestroy(); // ReadTextLC
1317 void CCommandBuffer::DrawTextVertical2L(CBitmapContext& aBitmapContext)
1320 TInt baselineOffset;
1322 CGraphicsContext::TTextAlign vertical;
1329 ReadL<TInt>(baselineOffset);
1331 ReadL<CGraphicsContext::TTextAlign>(vertical);
1332 ReadL<TInt>(margin);
1334 aBitmapContext.DrawTextVertical(text, box, baselineOffset, up, vertical, margin);
1335 CleanupStack::PopAndDestroy(); //ReadTextLC
1338 void CCommandBuffer::DrawWsGraphic1L(const MWsGraphicResolver& aWsGraphicResolver)
1345 ReadL<TBool>(isUid);
1348 aWsGraphicResolver.DrawWsGraphic(id,isUid,rect,KNullDesC8());
1351 void CCommandBuffer::DrawWsGraphic2L(const MWsGraphicResolver& aWsGraphicResolver)
1358 ReadL<TBool>(isUid);
1363 aWsGraphicResolver.DrawWsGraphic(id,isUid,rect,text8);
1364 CleanupStack::PopAndDestroy(); //ReadTextLC
1367 void CCommandBuffer::SetShadowColorL(CBitmapContext& aBitmapContext)
1370 ReadL<TRgb>(shadowColor);
1372 aBitmapContext.SetShadowColor(shadowColor);