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"
21 #include "DrawableCache.h"
22 #include <graphics/wsgraphicscontext.h>
23 #include <graphics/wsdrawablesourceprovider.h>
24 #include <graphics/wsdrawresource.h>
25 #include "../SERVER/bitgditomwsgraphicscontextmappings.h"
27 const TInt KBufferSize = 1024;
29 EXPORT_C CCommandBuffer* CCommandBuffer::NewL()
31 CCommandBuffer* buffer = new (ELeave) CCommandBuffer;
32 CleanupStack::PushL(buffer);
34 CleanupStack::Pop(buffer);
38 CCommandBuffer::CCommandBuffer()
42 EXPORT_C CCommandBuffer::~CCommandBuffer()
44 iDrawSections.ResetAndDestroy();
45 iDrawSections.Close();
46 iBufReadStream.Close();
47 iClippingRegion.Close();
48 iIntersectedRegion.Close();
54 void CCommandBuffer::ConstructL()
56 iBitmapCache = new (ELeave) CBitmapCache;
57 iRecordSegBuf = CBufSeg::NewL(KBufferSize);
58 iFontCache = new (ELeave) CFontsCache;
62 Resets the entire commandbuffer.
64 void CCommandBuffer::Reset()
67 iRecordSegBuf->Reset();
70 iOrigin = TPoint(0,0);
71 iClippingRegion.Clear();
72 iDrawSections.ResetAndDestroy();
76 Externalizes commandbuffer sections into a format which makes it possible to send over IPC.
77 If ETrue is sent as a parameter to this method, the entire commandbuffer will be externalized,
78 otherwise only sections which has not been externalized before will be externalized. Note that if only
79 not externalized sections is asked for, the flag will be reset on that section so next call
80 to ExternalizeLC will not externalize that section.
82 @param aMsgBuf A buffer used to externalize the commandbuffer to.
83 @param aEntireBuffer If ETrue, the entire commandbuffer will be externalized, otherwise only sections which has not been externalized before.
85 void CCommandBuffer::ExternalizeL(RWsGraphicMsgBuf& aMsgBuf, TBool aEntireBuffer)
87 // Add drawsections to aMsgBuf
88 const TInt sectionCount = iDrawSections.Count();
89 for(TInt j = 0; j < sectionCount; j++)
91 CDrawSection* section = iDrawSections[j];
92 if(aEntireBuffer || !section->HasBeenExternalized())
94 section->ExternalizeL(aMsgBuf);
95 section->SetHasBeenExternalized(ETrue);
101 Internalizes the entire commandbuffer from buffer containing information about all drawsections and drawcommands.
103 @param aBuf A buffer containing information about all drawsections and drawcommands.
105 EXPORT_C void CCommandBuffer::InternalizeL(const TDesC8& aBuf)
107 // Reset the commandbuffer
108 iRecordSegBuf->Reset();
109 InternalizeAppendL(aBuf);
113 Internalizes and appends from a buffer containing information about some drawsections and drawcommands.
115 @param aBuf A buffer containing information about some drawsections and drawcommands.
117 EXPORT_C void CCommandBuffer::InternalizeAppendL(const TDesC8& aBuf)
119 // Reset the commandbuffer
120 TWsGraphicMsgBufParser parser(aBuf);
123 const TInt count = parser.Count();
124 for(TInt i = 0; i < count; i++)
126 CDrawSection* drawSection = CDrawSection::NewL();;
127 CleanupStack::PushL(drawSection);
128 User::LeaveIfError(drawSection->LoadL(parser, i));
129 iDrawSections.AppendL(drawSection);
130 CleanupStack::Pop(drawSection);
133 // Tidy the iDrawSection array so completely blocked sections will be removed
138 @return the current active clipping region of the commandbuffer.
140 EXPORT_C const TRegion& CCommandBuffer::ClippingRegion() const
142 return *iActiveMasterClippingRegion;
146 Prepares to record new drawcommands for a drawsection.
147 This method is called from CRemoteGc::Activate().
149 void CCommandBuffer::Prepare(const TRect& aDrawRect)
151 iDrawSectionRect = aDrawRect;
154 iRecordSegBuf->Delete(0, iRecordSegBuf->Size()); // Reset record buffer
156 TRAP(iError, iRecordSegBuf = CBufSeg::NewL(KBufferSize));
160 Finishes the recording of drawcommands for a drawsection.
161 This method is called from CRemoteGc::Deactivate().
163 @param aDrawRect The drawrect of the recorded drawcommands.
164 @param aBoundingRect The boundingrect of the recorded drawcommands.
166 TInt CCommandBuffer::Finish(const TRect& aDrawRect, const TRect& aBoundingRect, TBool aHasBitmapCommand)
168 // If some error occured during the recording of this section, dont add the section
171 CDrawSection* drawSection = NULL;
172 TRAP(iError, drawSection = CDrawSection::NewL(aDrawRect, aBoundingRect, aHasBitmapCommand))
176 // If boundingRect is empty clear the drawcommands added
177 if(aBoundingRect.IsEmpty())
178 iRecordSegBuf->Delete(0, iRecordSegBuf->Size());
180 iRecordSegBuf->Compress();
181 drawSection->SetBuffer(iRecordSegBuf); //Takes ownership of the memory allocated by iRecordSegBuf
182 iRecordSegBuf = NULL;
183 if(CheckForDuplicate(*drawSection))
186 return KErrAlreadyExists;
189 iError = iDrawSections.Append(drawSection);
195 if(iDrawSections.Count() == 0 || AllSectionsExternalized())
204 Remove drawsections that is completely blocked by another drawsection.
206 void CCommandBuffer::Tidy()
210 for(TInt i = 0; i < (count = iDrawSections.Count()); i++)
212 TRect rect1 = iDrawSections[i]->DrawRect();
214 region.AddRect(rect1);
215 for(TInt j = i + 1; j < count; j++)
217 TRect rect2 = iDrawSections[j]->DrawRect();
218 region.SubRect(rect2);
223 delete iDrawSections[i];
224 iDrawSections.Remove(i--);
228 // coverity[extend_simple_error]
232 @return ETrue if all sections in the commandbuffer have been externalized, otherwise EFalse.
234 TBool CCommandBuffer::AllSectionsExternalized() const
236 const TInt count = iDrawSections.Count();
237 for(TInt i = 0; i < count; i++)
239 if(!iDrawSections[i]->HasBeenExternalized())
246 Checks if there exists any duplicate of aDrawSection already in the iDrawSection array.
248 @param aDrawSection The drawsection to look for a duplicate of.
249 @return ETrue if a duplicate was found, otherwise EFalse.
251 TBool CCommandBuffer::CheckForDuplicate(const CDrawSection& aDrawSection) const
253 const TInt count = iDrawSections.Count();
254 for(TInt i = 0; i < count; i++)
256 if(!iDrawSections[i]->IsIdentical(aDrawSection))
259 // Check if there is some drawsection that overlaps the section we found identical,
260 // if that is the case it is not a duplicate
261 for(TInt j = i + 1; j < count; j++)
263 TRect compareRect = iDrawSections[j]->DrawRect();
264 if(aDrawSection.DrawRect().Intersects(compareRect))
265 return EFalse; //Found a drawrect that overlapped, no duplicate exists then
276 Updates the clippingregion for a specific drawsection.
278 @param aDrawSectionIndex The index in iDrawSections of the drawsection to update the clippingregion for.
280 void CCommandBuffer::UpdateClippingRegion(TInt aDrawSectionIndex)
282 __ASSERT_DEBUG(aDrawSectionIndex < iDrawSections.Count(), User::Invariant());
284 iDrawSectionClippingRegion.Clear();
285 if (iMasterClippingRegion)
287 iDrawSectionClippingRegion.Copy(*iMasterClippingRegion);
291 TRect rect = iMasterClippingRect;
292 rect.Move(iMasterOrigin);
293 iDrawSectionClippingRegion.AddRect(rect);
296 const TInt count = iDrawSections.Count();
297 for(TInt i = aDrawSectionIndex + 1; i < count; ++i)
299 TRect rect = iDrawSections[i]->DrawRect();
300 rect.Move(iMasterOrigin);
301 iDrawSectionClippingRegion.SubRect(rect);
304 if (iDrawSectionClippingRegion.CheckError())
305 iActiveMasterClippingRegion = iMasterClippingRegion;
307 iActiveMasterClippingRegion = &iDrawSectionClippingRegion;
311 Writes data of a specific length to the recordbuffer.
313 @param aPtr The data to write.
314 @param aLength The length of the data to write.
316 void CCommandBuffer::Write(const TUint8* aPtr, TUint aLength)
321 TRAP(iError, iRecordSegBuf->InsertL(iRecordSegBuf->Size(), aPtr, aLength))
327 Writes text to the recordbuffer.
329 @param aText The text to write to the recordbuffer.
331 void CCommandBuffer::WriteText(const TDesC8 &aText)
336 // Append the total size of the text
337 Write<TInt>(aText.Size());
341 TRAP(iError, DoWriteTextL(aText));
345 Writes text to the recordbuffer.
347 @param aText The text to write to the recordbuffer.
349 void CCommandBuffer::WriteText(const TDesC16 &aText)
354 // Append the total size of the text
355 Write<TInt>(aText.Size());
359 TPtrC8 textPtr(reinterpret_cast<const TUint8*>(aText.Ptr()),aText.Size());
360 TRAP(iError, DoWriteTextL(textPtr));
364 Writes text to the recordbuffer.
366 @param aText The text to write to the recordbuffer.
368 void CCommandBuffer::DoWriteTextL(const TDesC8 &aText)
370 iRecordSegBuf->InsertL(iRecordSegBuf->Size(), aText, aText.Size());
374 Reads data with a specific length from iBufReadStream.
376 @param aPtr The read data is written to this paramenter.
377 @param aLength The length of the data to be read.
379 void CCommandBuffer::ReadL(TUint8* aPtr, TUint aLength)
381 iBufReadStream.ReadL(aPtr, aLength);
385 Reads text from iBufReadStream.
387 @param aText The read text is put into this 8-bit buffer.
389 void CCommandBuffer::ReadTextLC(TPtrC8& aText)
391 DoReadTextLC(aText,EFalse);
395 Reads text from iBufReadStream.
397 @param aText The read text is put into this 16-bit buffer.
399 void CCommandBuffer::ReadTextLC(TPtrC16& aText)
402 DoReadTextLC(text8,ETrue);
403 aText.Set(reinterpret_cast<const TUint16*>(text8.Ptr()),text8.Size()/2);
407 Reads text from iBufReadStream; used by ReadTextLC
411 void CCommandBuffer::DoReadTextLC(TPtrC8& aText,TBool a16Bit)
416 ReadL<TInt>(textSize); // Read the length of the text
419 User::Leave(KErrArgument);
422 // attempt to do it inline
423 const TInt pos = iBufReadStream.Source()->TellL(MStreamBuf::ERead).Offset();
424 if(!a16Bit || !(pos & 1)) // check 16bit-aligned
426 const TPtrC8 remaining = iBufRead->Ptr(pos);
427 if(remaining.Size() >= textSize) // can do inline!
429 CleanupStack::PushL((TAny*)NULL); // have to push something
430 iBufReadStream.Source()->SeekL(MStreamBuf::ERead,textSize);
431 aText.Set(remaining.Ptr(),textSize);
436 // have to copy into a continuous segment
437 HBufC8* buf = HBufC8::NewLC(textSize);
438 TPtr8 textPtr8(buf->Des());
439 iBufReadStream.ReadL(textPtr8,textSize);
444 Compares the commands in one buffer to those in another
445 @param aBuffer The buffer to compare to
446 @return ETrue if they are an exact match, EFalse otherwise
448 EXPORT_C TBool CCommandBuffer::IsIdentical(const CCommandBuffer & aBuffer) const
450 for(TInt i = 0; i < iDrawSections.Count(); ++i)
452 if (!iDrawSections[i]->IsIdentical(*aBuffer.iDrawSections[i]))
461 EXPORT_C TInt CCommandBuffer::Play(const TPoint& /*aPosition*/, const TRect& /*aDrawRect*/, const MWsGraphicResolver& /*aWsGraphicResolver*/, CBitmapContext& /*aContext*/) //Stub implementation to maintain compatibility with classic wserv
464 return KErrNotSupported;
470 EXPORT_C TInt CCommandBuffer::Play(const TPoint& /*aMasterOrigin*/, const TRegion* /*aMasterClippingRegion*/, const TRect& /*aMasterClippingRect*/, const MWsGraphicResolver& /*aWsGraphicResolver*/, CBitmapContext& /*aBitmapContext*/) //Stub implementation to maintain compatibility with WSERV2
473 return KErrNotSupported;
477 Draws draw commands that are within a specific rect to a graphics context with a specific offset.
479 @post The draw commands have been executed on the provided graphics context
481 @param aOffset The offset applied on all drawing operations.
482 @param aClippingRegion The region to which all draw commands are clipped
483 @param aSourceRect Draws only draw commands that are within this rect relative to the original coordinate system, i.e. before Position is applied
484 @param aWsGraphicResolver The resolver to be used for DrawGraphic() calls.
485 @param aGraphicsContext The graphics context to draw to.
488 EXPORT_C TInt CCommandBuffer::Play(const TPoint& aOffset, const TRegion* aClippingRegion, const TRect& aSourceRect, const MWsGraphicResolver& aWsGraphicResolver, MWsGraphicsContext& aGraphicsContext)
490 iMasterOrigin = aOffset;
491 iMasterClippingRegion = aClippingRegion;
492 iMasterClippingRect = aSourceRect;
494 Reset(aGraphicsContext);
496 iDrawableCache = new(ELeave) CRenderStageDrawableCache(aGraphicsContext.ObjectInterface<MWsDrawableSourceProvider>());
497 DoPlayL(aWsGraphicResolver, aGraphicsContext);
499 delete iDrawableCache;
500 iDrawableCache = NULL;
505 Draws draw commands that are within a specific rect to a graphics context with a specific offset.
507 @post The draw commands have been executed on the provided graphics context
509 @param aOffset The offset applied on all drawing operations.
510 @param aClippingRegion The region to which all draw commands are clipped
511 @param aSourceRect Draws only draw commands that are within this rect relative to the original coordinate system, i.e. before Position is applied
512 @param aWsSession The session used to create the graphics context (WindowsGc)
513 @param aWindowGc The graphics context to draw to.
516 EXPORT_C TInt CCommandBuffer::Play(const TPoint& aOffset, const TRegion* aClippingRegion, const TRect& aSourceRect, RWsSession& aWsSession, CWindowGc& aWindowGc)
518 iMasterOrigin = aOffset;
519 iMasterClippingRegion = aClippingRegion;
520 iMasterClippingRect = aSourceRect;
524 //Create a null version of MWsGraphicResolver which will never be used in this instance of the call to Play
525 MWsGraphicResolver* graphicResolver = NULL;
528 iDrawableCache = new(ELeave) CWindowDrawableCache(aWsSession);
529 DoPlayL(*graphicResolver, aWindowGc);
531 delete iDrawableCache;
532 iDrawableCache = NULL;
537 Draws drawcommands that are within a specific rect.
539 @param aWsGraphicResolver Any DrawWsGraphic commands will use this to draw themselves
540 @param aGraphicsContext The graphics context to draw to.
542 template<typename ContextType> void CCommandBuffer::DoPlayL(const MWsGraphicResolver& aWsGraphicResolver, ContextType& aGraphicsContext)
544 const TInt sections = iDrawSections.Count();
546 User::Leave(KErrEof);
548 iBitmapCache->BeginUpdate();
549 iFontCache->BeginUpdate();
550 for(TInt i = 0; i < sections; i++)
552 UpdateClippingRegion(i);
553 DrawSectionL(*iDrawSections[i], aWsGraphicResolver, aGraphicsContext);
555 iFontCache->EndUpdate();
556 iBitmapCache->EndUpdate();
560 Draws a specific drawsection.
562 @param aDrawSection The drawsection to be drawn.
563 @param aWsGraphicResolver Any DrawWsGraphic commands will use this to draw themselves
564 @param aGraphicsContext The graphics context to draw to.
566 template<typename ContextType> void CCommandBuffer::DrawSectionL(const CDrawSection& aDrawSection, const MWsGraphicResolver& aWsGraphicResolver, ContextType& aGraphicsContext)
568 iDrawSectionRect = aDrawSection.DrawRect();
569 Reset(aGraphicsContext);
571 iBufRead = aDrawSection.Buffer();
572 iBufReadStream.Open(*iBufRead, 0);
577 TRAPD(err, ReadL<TDrawCode>(drawCode));
586 Clear(aGraphicsContext);
588 case ECommandClearRect:
589 ClearRectL(aGraphicsContext);
591 case ECommandCopyRect:
592 CopyRectL(aGraphicsContext);
594 case ECommandBitBlt1:
595 BitBlt1L(aGraphicsContext);
597 case ECommandBitBlt2:
598 BitBlt2L(aGraphicsContext);
600 case ECommandBitBltMasked:
601 BitBltMaskedL(aGraphicsContext);
603 case ECommandSetFaded:
604 User::Leave(KErrNotSupported); //this op code is deprecated, should never be generated
606 case ECommandSetFadingParameters:
607 User::Leave(KErrNotSupported); //this op code is deprecated, should never be generated
609 case ECommandAlphaBlendBitmaps:
610 AlphaBlendBitmapsL(aGraphicsContext);
612 case ECommandSetOrigin:
613 SetOriginL(aGraphicsContext);
615 case ECommandSetDrawMode:
616 SetDrawModeL(aGraphicsContext);
618 case ECommandSetClippingRect:
619 SetClippingRectL(aGraphicsContext);
621 case ECommandCancelClippingRect:
622 CancelClippingRect(aGraphicsContext);
625 Reset(aGraphicsContext);
627 case ECommandUseFont:
628 UseFontL(aGraphicsContext);
630 case ECommandDiscardFont:
631 DiscardFont(aGraphicsContext);
633 case ECommandSetUnderlineStyle:
634 SetUnderlineStyleL(aGraphicsContext);
636 case ECommandSetStrikethroughStyle:
637 SetStrikethroughStyleL(aGraphicsContext);
639 case ECommandSetWordJustification:
640 SetWordJustificationL(aGraphicsContext);
642 case ECommandSetCharJustification:
643 SetCharJustificationL(aGraphicsContext);
645 case ECommandSetPenColor:
646 SetPenColorL(aGraphicsContext);
648 case ECommandSetPenStyle:
649 SetPenStyleL(aGraphicsContext);
651 case ECommandSetPenSize:
652 SetPenSizeL(aGraphicsContext);
654 case ECommandSetBrushColor:
655 SetBrushColorL(aGraphicsContext);
657 case ECommandSetBrushStyle:
658 SetBrushStyleL(aGraphicsContext);
660 case ECommandSetBrushOrigin:
661 SetBrushOriginL(aGraphicsContext);
663 case ECommandUseBrushPattern:
664 UseBrushPatternL(aGraphicsContext);
666 case ECommandDiscardBrushPattern:
667 DiscardBrushPattern(aGraphicsContext);
670 MoveToL(aGraphicsContext);
673 MoveByL(aGraphicsContext);
676 PlotL(aGraphicsContext);
678 case ECommandDrawArc:
679 DrawArcL(aGraphicsContext);
681 case ECommandDrawLine:
682 DrawLineL(aGraphicsContext);
684 case ECommandDrawLineTo:
685 DrawLineToL(aGraphicsContext);
687 case ECommandDrawLineBy:
688 DrawLineByL(aGraphicsContext);
690 case ECommandDrawPolyLine:
691 DrawPolyLineL(aGraphicsContext);
693 case ECommandDrawPie:
694 DrawPieL(aGraphicsContext);
696 case ECommandDrawEllipse:
697 DrawEllipseL(aGraphicsContext);
699 case ECommandDrawRect:
700 DrawRectL(aGraphicsContext);
702 case ECommandDrawPolygon:
703 DrawPolygonL(aGraphicsContext);
705 case ECommandDrawRoundRect:
706 DrawRoundRectL(aGraphicsContext);
708 case ECommandDrawBitmap1:
709 DrawBitmap1L(aGraphicsContext);
711 case ECommandDrawBitmap2:
712 DrawBitmap2L(aGraphicsContext);
714 case ECommandDrawBitmap3:
715 DrawBitmap3L(aGraphicsContext);
717 case ECommandDrawBitmapMasked:
718 DrawBitmapMaskedL(aGraphicsContext);
720 case ECommandDrawText1:
721 DrawText1L(aGraphicsContext);
723 case ECommandDrawText2:
724 DrawText2L(aGraphicsContext);
726 case ECommandDrawText3:
727 DrawText3L(aGraphicsContext);
729 case ECommandDrawText4:
730 DrawText4L(aGraphicsContext);
732 case ECommandDrawText5:
733 DrawText5L(aGraphicsContext);
735 case ECommandMapColors:
736 User::Leave(KErrNotSupported); //this op code is deprecated, should never be generated
738 case ECommandSetClippingRegion:
739 SetClippingRegionL(aGraphicsContext);
741 case ECommandCancelClippingRegion:
742 CancelClippingRegion(aGraphicsContext);
744 case ECommandDrawTextVertical1:
745 DrawTextVertical1L(aGraphicsContext);
747 case ECommandDrawTextVertical2:
748 DrawTextVertical2L(aGraphicsContext);
750 case ECommandDrawTextVertical3:
751 DrawTextVertical3L(aGraphicsContext);
753 case ECommandDrawTextVertical4:
754 DrawTextVertical4L(aGraphicsContext);
756 case ECommandDrawWsGraphic1:
757 DrawWsGraphic1L(aWsGraphicResolver);
759 case ECommandDrawWsGraphic2:
760 DrawWsGraphic2L(aWsGraphicResolver);
762 case ECommandSetShadowColor:
763 SetShadowColorL(aGraphicsContext);
765 case ECommandDrawResourceToPos:
766 DrawResourceToPosL(aGraphicsContext);
768 case ECommandDrawResourceToRect:
769 DrawResourceToRectL(aGraphicsContext);
771 case ECommandDrawResourceFromRectToRect:
772 DrawResourceFromRectToRectL(aGraphicsContext);
774 case ECommandDrawResourceWithData:
775 DrawResourceWithDataL(aGraphicsContext);
778 User::LeaveIfError(KErrNotFound);
784 template<typename ContextType> void CCommandBuffer::Clear(ContextType& aGraphicsContext) const
786 aGraphicsContext.Clear();
789 template<typename ContextType> void CCommandBuffer::ClearRectL(ContextType& aGraphicsContext)
794 aGraphicsContext.Clear(rect);
797 template<typename ContextType> void CCommandBuffer::CopyRectL(ContextType& aGraphicsContext)
802 ReadL<TPoint>(point);
805 aGraphicsContext.CopyRect(point, rect);
808 template<typename ContextType> void CCommandBuffer::BitBlt1L(ContextType& aGraphicsContext)
813 ReadL<TPoint>(point);
816 if(!iBitmapCache->UseL(handle))
817 DoBitBlt1L(aGraphicsContext, point, handle);
820 void CCommandBuffer::DoBitBlt1L(CWindowGc& aWindowGc, TPoint aPoint, TInt aHandle)
822 aWindowGc.BitBlt(aPoint, iBitmapCache->Resolve(aHandle));
825 void CCommandBuffer::DoBitBlt1L(MWsGraphicsContext& aGraphicsContext, TPoint aPoint, TInt aHandle)
827 aGraphicsContext.BitBlt(aPoint, *iBitmapCache->Resolve(aHandle));
830 template<typename ContextType> void CCommandBuffer::BitBlt2L(ContextType& aGraphicsContext)
836 ReadL<TPoint>(point);
838 ReadL<TRect>(sourceRect);
840 if(!iBitmapCache->UseL(handle))
841 DoBitBlt2L(aGraphicsContext, point, handle, sourceRect);
844 void CCommandBuffer::DoBitBlt2L(CWindowGc& aWindowGc, TPoint aPoint, TInt aHandle, TRect aSourceRect)
846 aWindowGc.BitBlt(aPoint, iBitmapCache->Resolve(aHandle), aSourceRect);
849 void CCommandBuffer::DoBitBlt2L(MWsGraphicsContext& aGraphicsContext, TPoint aPoint, TInt aHandle, TRect aSourceRect)
851 aGraphicsContext.BitBlt(aPoint, *iBitmapCache->Resolve(aHandle), aSourceRect);
854 template<typename ContextType> void CCommandBuffer::BitBltMaskedL(ContextType& aGraphicsContext)
862 ReadL<TPoint>(point);
863 ReadL<TInt>(bitmapHandle);
864 ReadL<TRect>(sourceRect);
865 ReadL<TInt>(maskHandle);
866 ReadL<TBool>(invertedMask);
868 if(!iBitmapCache->UseL(bitmapHandle) && !iBitmapCache->UseL(maskHandle))
869 DoBitBltMaskedL(aGraphicsContext, point, bitmapHandle, sourceRect, maskHandle, invertedMask);
872 void CCommandBuffer::DoBitBltMaskedL(CWindowGc& aWindowGc, TPoint aPoint, TInt aBitmapHandle, TRect aSourceRect, TInt aMaskHandle, TBool aInvertMask)
874 aWindowGc.BitBltMasked(aPoint, iBitmapCache->Resolve(aBitmapHandle), aSourceRect, iBitmapCache->Resolve(aMaskHandle), aInvertMask);
877 void CCommandBuffer::DoBitBltMaskedL(MWsGraphicsContext& aGraphicsContext, TPoint aPoint, TInt aBitmapHandle, TRect aSourceRect, TInt aMaskHandle, TBool aInvertMask)
879 aGraphicsContext.BitBltMasked(aPoint, *iBitmapCache->Resolve(aBitmapHandle), aSourceRect, *iBitmapCache->Resolve(aMaskHandle), aInvertMask);
882 template<typename ContextType> void CCommandBuffer::AlphaBlendBitmapsL(ContextType& aGraphicsContext)
890 ReadL<TPoint>(destPoint);
891 ReadL<TInt>(srcHandle);
892 ReadL<TRect>(sourceRect);
893 ReadL<TInt>(alphaHandle);
894 ReadL<TPoint>(alphaPoint);
896 if(!iBitmapCache->UseL(srcHandle) && !iBitmapCache->UseL(alphaHandle))
897 DoAlphaBlendBitmapsL(aGraphicsContext, destPoint, srcHandle, sourceRect, alphaHandle, alphaPoint);
900 void CCommandBuffer::DoAlphaBlendBitmapsL(CWindowGc& aWindowGc, TPoint aDestPoint, TInt aSrcHandle, TRect aSourceRect, TInt aAlphaHandle, TPoint aAlphaPoint)
902 aWindowGc.AlphaBlendBitmaps(aDestPoint, iBitmapCache->Resolve(aSrcHandle), aSourceRect, iBitmapCache->Resolve(aAlphaHandle), aAlphaPoint);
905 void CCommandBuffer::DoAlphaBlendBitmapsL(MWsGraphicsContext& aGraphicsContext, TPoint aDestPoint, TInt aSrcHandle, TRect aSourceRect, TInt aAlphaHandle, TPoint aAlphaPoint)
907 aGraphicsContext.BitBltMasked(aDestPoint, *iBitmapCache->Resolve(aSrcHandle), aSourceRect, *iBitmapCache->Resolve(aAlphaHandle), aAlphaPoint);
910 template<typename ContextType> void CCommandBuffer::SetOriginL(ContextType& aGraphicsContext)
912 ReadL<TPoint>(iOrigin);
913 aGraphicsContext.SetOrigin(iMasterOrigin + iOrigin);
916 template<typename ContextType> void CCommandBuffer::SetDrawModeL(ContextType& aGraphicsContext)
918 CGraphicsContext::TDrawMode drawMode;
919 ReadL<CGraphicsContext::TDrawMode>(drawMode);
921 DoSetDrawModeL(aGraphicsContext, drawMode);
924 void CCommandBuffer::DoSetDrawModeL(CWindowGc& aWindowGc, CGraphicsContext::TDrawMode aDrawMode)
926 aWindowGc.SetDrawMode(aDrawMode);
929 void CCommandBuffer::DoSetDrawModeL(MWsGraphicsContext& aGraphicsContext, CGraphicsContext::TDrawMode aDrawMode)
931 aGraphicsContext.SetDrawMode(BitGdiToMWsGraphicsContextMappings::LossyConvert(aDrawMode));
934 template<typename ContextType> void CCommandBuffer::SetClippingRectL(ContextType& aGraphicsContext)
936 ReadL<TRect>(iClippingRect);
937 iClippingRect.Intersection(iMasterClippingRect);
938 iClippingRect.Intersection(iDrawSectionRect);
940 //Replacement for SetClippingRect functionality which MWsGraphicsContext does not support
941 iIntersectedRegion.Clear();
942 if(iActiveMasterClippingRegion->Count() > 0)
943 iIntersectedRegion.Copy(*iActiveMasterClippingRegion);
944 iIntersectedRegion.ClipRect(iClippingRect);
945 aGraphicsContext.SetClippingRegion(iIntersectedRegion);
948 template<typename ContextType> void CCommandBuffer::CancelClippingRect(ContextType& aGraphicsContext)
950 iClippingRect = iMasterClippingRect;
951 iClippingRect.Intersection(iDrawSectionRect);
953 //Replacement for SetClippingRect functionality which MWsGraphicsContext does not support
954 iIntersectedRegion.Clear();
955 if(iActiveMasterClippingRegion && iActiveMasterClippingRegion->Count() > 0)
956 iIntersectedRegion.Copy(*iActiveMasterClippingRegion);
957 iIntersectedRegion.ClipRect(iClippingRect);
958 aGraphicsContext.SetClippingRegion(iIntersectedRegion);
961 void CCommandBuffer::Reset(CWindowGc& aWindowGc)
965 aWindowGc.SetOrigin(iMasterOrigin);
966 if(iActiveMasterClippingRegion)
967 aWindowGc.SetClippingRegion(*iActiveMasterClippingRegion);
968 CancelClippingRect(aWindowGc);
969 iOrigin = TPoint(0,0);
970 iClippingRegion.Clear();
971 iParsedClippingRegionIsSet = EFalse;
974 void CCommandBuffer::Reset(MWsGraphicsContext& aGraphicsContext)
976 aGraphicsContext.Reset();
978 TRgb brushColor = KRgbWhite;
979 brushColor.SetAlpha(0); //make transparent
980 aGraphicsContext.SetBrushColor(brushColor);
982 aGraphicsContext.SetOrigin(iMasterOrigin);
983 if(iActiveMasterClippingRegion)
984 aGraphicsContext.SetClippingRegion(*iActiveMasterClippingRegion);
985 CancelClippingRect(aGraphicsContext);
986 iOrigin = TPoint(0,0);
987 iClippingRegion.Clear();
988 iParsedClippingRegionIsSet = EFalse;
991 template<typename ContextType> void CCommandBuffer::UseFontL(ContextType& aGraphicsContext)
994 ReadL<TInt>(fontHandle);
995 if(iFontCache->UseL(fontHandle)) return;
997 DoUseFontL(aGraphicsContext, fontHandle);
1000 void CCommandBuffer::DoUseFontL(CWindowGc& aWindowGc, TInt aFontHandle)
1002 aWindowGc.UseFont(iFontCache->Resolve(aFontHandle));
1005 void CCommandBuffer::DoUseFontL(MWsGraphicsContext& aGraphicsContext, TInt aFontHandle)
1007 aGraphicsContext.SetFont(iFontCache->Resolve(aFontHandle));
1010 void CCommandBuffer::DiscardFont(CWindowGc& aWindowGc) const
1012 aWindowGc.DiscardFont();
1015 void CCommandBuffer::DiscardFont(MWsGraphicsContext& aGraphicsContext) const
1017 aGraphicsContext.ResetFont();
1020 template<typename ContextType> void CCommandBuffer::SetUnderlineStyleL(ContextType& aGraphicsContext)
1022 TFontUnderline underlineStyle;
1023 ReadL<TFontUnderline>(underlineStyle);
1025 DoSetUnderlineStyleL(aGraphicsContext, underlineStyle);
1028 void CCommandBuffer::DoSetUnderlineStyleL(CWindowGc& aWindowGc, TFontUnderline aUnderlineStyle)
1030 aWindowGc.SetUnderlineStyle(aUnderlineStyle);
1033 void CCommandBuffer::DoSetUnderlineStyleL(MWsGraphicsContext& aGraphicsContext, TFontUnderline aUnderlineStyle)
1035 aGraphicsContext.SetUnderlineStyle(BitGdiToMWsGraphicsContextMappings::Convert(aUnderlineStyle));
1038 template<typename ContextType> void CCommandBuffer::SetStrikethroughStyleL(ContextType& aGraphicsContext)
1040 TFontStrikethrough strikethroughStyle;
1041 ReadL<TFontStrikethrough>(strikethroughStyle);
1043 DoSetStrikethroughStyleL(aGraphicsContext, strikethroughStyle);
1046 void CCommandBuffer::DoSetStrikethroughStyleL(CWindowGc& aWindowGc, TFontStrikethrough aStrikethroughStyle)
1048 aWindowGc.SetStrikethroughStyle(aStrikethroughStyle);
1051 void CCommandBuffer::DoSetStrikethroughStyleL(MWsGraphicsContext& aGraphicsContext, TFontStrikethrough aStrikethroughStyle)
1053 aGraphicsContext.SetStrikethroughStyle(BitGdiToMWsGraphicsContextMappings::Convert(aStrikethroughStyle));
1056 template<typename ContextType> void CCommandBuffer::SetWordJustificationL(ContextType& aGraphicsContext)
1061 ReadL<TInt>(excessWidth);
1062 ReadL<TInt>(numGaps);
1063 aGraphicsContext.SetWordJustification(excessWidth, numGaps);
1066 template<typename ContextType> void CCommandBuffer::SetCharJustificationL(ContextType& aGraphicsContext)
1071 ReadL<TInt>(excessWidth);
1072 ReadL<TInt>(numChars);
1073 aGraphicsContext.SetCharJustification(excessWidth, numChars);
1076 template<typename ContextType> void CCommandBuffer::SetPenColorL(ContextType& aGraphicsContext)
1081 aGraphicsContext.SetPenColor(color);
1084 template<typename ContextType> void CCommandBuffer::SetPenStyleL(ContextType& aGraphicsContext)
1086 CGraphicsContext::TPenStyle penStyle;
1087 ReadL<CGraphicsContext::TPenStyle>(penStyle);
1089 DoSetPenStyleL(aGraphicsContext, penStyle);
1092 void CCommandBuffer::DoSetPenStyleL(CWindowGc& aWindowGc, CGraphicsContext::TPenStyle aPenStyle)
1094 aWindowGc.SetPenStyle(aPenStyle);
1097 void CCommandBuffer::DoSetPenStyleL(MWsGraphicsContext& aGraphicsContext, CGraphicsContext::TPenStyle aPenStyle)
1099 aGraphicsContext.SetPenStyle(BitGdiToMWsGraphicsContextMappings::Convert(aPenStyle));
1102 template<typename ContextType> void CCommandBuffer::SetPenSizeL(ContextType& aGraphicsContext)
1107 DoSetPenSizeL(aGraphicsContext, size);
1110 void CCommandBuffer::DoSetPenSizeL(CWindowGc& aWindowGc, TSize aSize)
1112 aWindowGc.SetPenSize(aSize);
1115 void CCommandBuffer::DoSetPenSizeL(MWsGraphicsContext& aGraphicsContext, TSize aSize)
1117 aGraphicsContext.SetPenSize(aSize);
1120 template<typename ContextType> void CCommandBuffer::SetBrushColorL(ContextType& aGraphicsContext)
1125 aGraphicsContext.SetBrushColor(color);
1128 template<typename ContextType> void CCommandBuffer::SetBrushStyleL(ContextType& aGraphicsContext)
1130 CGraphicsContext::TBrushStyle brushStyle;
1131 ReadL<CGraphicsContext::TBrushStyle>(brushStyle);
1133 DoSetBrushStyleL(aGraphicsContext, brushStyle);
1136 void CCommandBuffer::DoSetBrushStyleL(CWindowGc& aWindowGc, CGraphicsContext::TBrushStyle aBrushStyle)
1138 aWindowGc.SetBrushStyle(aBrushStyle);
1141 void CCommandBuffer::DoSetBrushStyleL(MWsGraphicsContext& aGraphicsContext, CGraphicsContext::TBrushStyle aBrushStyle)
1143 aGraphicsContext.SetBrushStyle(BitGdiToMWsGraphicsContextMappings::Convert(aBrushStyle));
1146 template<typename ContextType> void CCommandBuffer::SetBrushOriginL(ContextType& aGraphicsContext)
1149 ReadL<TPoint>(point);
1151 aGraphicsContext.SetBrushOrigin(point);
1154 template<typename ContextType> void CCommandBuffer::UseBrushPatternL(ContextType& aGraphicsContext)
1157 ReadL<TInt>(deviceHandle);
1159 if(iBitmapCache->UseL(deviceHandle)) return;
1160 DoUseBrushPatternL(aGraphicsContext, deviceHandle);
1163 void CCommandBuffer::DoUseBrushPatternL(CWindowGc& aWindowGc, TInt aDeviceHandle)
1165 aWindowGc.UseBrushPattern(iBitmapCache->Resolve(aDeviceHandle));
1168 void CCommandBuffer::DoUseBrushPatternL(MWsGraphicsContext& aGraphicsContext, TInt aDeviceHandle)
1170 aGraphicsContext.SetBrushPattern(*iBitmapCache->Resolve(aDeviceHandle));
1173 void CCommandBuffer::DiscardBrushPattern(CWindowGc& aWindowGc) const
1175 aWindowGc.DiscardBrushPattern();
1178 void CCommandBuffer::DiscardBrushPattern(MWsGraphicsContext& aGraphicsContext) const
1180 aGraphicsContext.ResetBrushPattern();
1183 template<typename ContextType> void CCommandBuffer::MoveToL(ContextType& aGraphicsContext)
1186 ReadL<TPoint>(point);
1188 aGraphicsContext.MoveTo(point);
1191 template<typename ContextType> void CCommandBuffer::MoveByL(ContextType& aGraphicsContext)
1194 ReadL<TPoint>(point);
1196 aGraphicsContext.MoveBy(point);
1199 template<typename ContextType> void CCommandBuffer::PlotL(ContextType& aGraphicsContext)
1202 ReadL<TPoint>(point);
1204 aGraphicsContext.Plot(point);
1207 template<typename ContextType> void CCommandBuffer::DrawArcL(ContextType& aGraphicsContext)
1213 ReadL<TPoint>(start);
1216 aGraphicsContext.DrawArc(rect, start, end);
1219 template<typename ContextType> void CCommandBuffer::DrawLineL(ContextType& aGraphicsContext)
1223 ReadL<TPoint>(point1);
1224 ReadL<TPoint>(point2);
1226 aGraphicsContext.DrawLine(point1, point2);
1229 template<typename ContextType> void CCommandBuffer::DrawLineToL(ContextType& aGraphicsContext)
1232 ReadL<TPoint>(point);
1234 aGraphicsContext.DrawLineTo(point);
1237 template<typename ContextType> void CCommandBuffer::DrawLineByL(ContextType& aGraphicsContext)
1240 ReadL<TPoint>(point);
1242 aGraphicsContext.DrawLineBy(point);
1245 void CCommandBuffer::DrawPolyLineL(CWindowGc& aWindowGc)
1248 ReadL<TInt>(nrOfPoints);
1250 CArrayFix<TPoint>* pointList = new (ELeave) CArrayFixFlat<TPoint>(5);
1251 CleanupStack::PushL(pointList);
1252 for(TInt i = 0; i < nrOfPoints; i++)
1255 ReadL<TPoint>(point);
1256 pointList->AppendL(point);
1259 aWindowGc.DrawPolyLine(pointList);
1260 CleanupStack::PopAndDestroy(pointList);
1263 void CCommandBuffer::DrawPolyLineL(MWsGraphicsContext& aGraphicsContext)
1266 ReadL<TInt>(nrOfPoints);
1268 TPoint *points=(TPoint *)(nrOfPoints+1);
1269 TArrayWrapper<TPoint> pointList(points, nrOfPoints);
1271 aGraphicsContext.DrawPolyLine(pointList);
1274 template<typename ContextType> void CCommandBuffer::DrawPieL(ContextType& aGraphicsContext)
1280 ReadL<TPoint>(start);
1283 aGraphicsContext.DrawPie(rect, start, end);
1286 template<typename ContextType> void CCommandBuffer::DrawEllipseL(ContextType& aGraphicsContext)
1291 aGraphicsContext.DrawEllipse(rect);
1294 template<typename ContextType> void CCommandBuffer::DrawRectL(ContextType& aGraphicsContext)
1299 aGraphicsContext.DrawRect(rect);
1302 template<typename ContextType> void CCommandBuffer::DrawRoundRectL(ContextType& aGraphicsContext)
1307 ReadL<TSize>(ellipse);
1309 aGraphicsContext.DrawRoundRect(rect, ellipse);
1312 void CCommandBuffer::DrawPolygonL(CWindowGc& aWindowGc)
1315 ReadL<TInt>(nrOfPoints);
1317 CArrayFix<TPoint>* pointList = new (ELeave) CArrayFixFlat<TPoint>(5);
1318 CleanupStack::PushL(pointList);
1319 for(TInt i = 0; i < nrOfPoints; i++)
1322 ReadL<TPoint>(point);
1323 pointList->AppendL(point);
1326 CGraphicsContext::TFillRule fillRule;
1327 ReadL<CGraphicsContext::TFillRule>(fillRule);
1328 aWindowGc.DrawPolygon(pointList, fillRule);
1329 CleanupStack::PopAndDestroy(pointList);
1332 void CCommandBuffer::DrawPolygonL(MWsGraphicsContext& aGraphicsContext)
1335 ReadL<TInt>(nrOfPoints);
1337 TPoint *points=(TPoint *)(nrOfPoints+1);
1338 TArrayWrapper<TPoint> pointList(points, nrOfPoints);
1340 CGraphicsContext::TFillRule fillRule;
1341 ReadL<CGraphicsContext::TFillRule>(fillRule);
1342 aGraphicsContext.DrawPolygon(pointList, BitGdiToMWsGraphicsContextMappings::Convert(fillRule));
1345 void CCommandBuffer::DrawBitmap1L(CWindowGc& aWindowGc)
1350 ReadL<TPoint>(topLeft);
1351 ReadL<TInt>(bitmapHandle);
1353 if(!iBitmapCache->UseL(bitmapHandle))
1354 aWindowGc.DrawBitmap(topLeft, iBitmapCache->Resolve(bitmapHandle));
1357 void CCommandBuffer::DrawBitmap1L(MWsGraphicsContext& /*aGraphicsContext*/)
1359 User::Leave(KErrNotSupported); //this op code is deprecated, should never be generated
1362 template<typename ContextType> void CCommandBuffer::DrawBitmap2L(ContextType& aGraphicsContext)
1367 ReadL<TRect>(destRect);
1368 ReadL<TInt>(bitmapHandle);
1370 if(!iBitmapCache->UseL(bitmapHandle))
1371 DoDrawBitmap2L(aGraphicsContext, destRect, bitmapHandle);
1374 void CCommandBuffer::DoDrawBitmap2L(CWindowGc& aWindowGc, TRect aDestRect, TInt aBitmapHandle)
1376 aWindowGc.DrawBitmap(aDestRect, iBitmapCache->Resolve(aBitmapHandle));
1379 void CCommandBuffer::DoDrawBitmap2L(MWsGraphicsContext& aGraphicsContext, TRect aDestRect, TInt aBitmapHandle)
1381 aGraphicsContext.DrawBitmap(aDestRect, *iBitmapCache->Resolve(aBitmapHandle));
1384 template<typename ContextType> void CCommandBuffer::DrawBitmap3L(ContextType& aGraphicsContext)
1390 ReadL<TRect>(destRect);
1391 ReadL<TInt>(bitmapHandle);
1392 ReadL<TRect>(sourceRect);
1394 if(!iBitmapCache->UseL(bitmapHandle))
1395 DoDrawBitmap3L(aGraphicsContext, destRect, bitmapHandle, sourceRect);
1398 void CCommandBuffer::DoDrawBitmap3L(CWindowGc& aWindowGc, TRect aDestRect, TInt aBitmapHandle, TRect aSourceRect)
1400 aWindowGc.DrawBitmap(aDestRect, iBitmapCache->Resolve(aBitmapHandle), aSourceRect);
1403 void CCommandBuffer::DoDrawBitmap3L(MWsGraphicsContext& aGraphicsContext, TRect aDestRect, TInt aBitmapHandle, TRect aSourceRect)
1405 aGraphicsContext.DrawBitmap(aDestRect, *iBitmapCache->Resolve(aBitmapHandle), aSourceRect);
1408 template<typename ContextType> void CCommandBuffer::DrawBitmapMaskedL(ContextType& aGraphicsContext)
1416 ReadL<TRect>(destRect);
1417 ReadL<TInt>(bitmapHandle);
1418 ReadL<TRect>(sourceRect);
1419 ReadL<TInt>(maskHandle);
1420 ReadL<TBool>(invertedMask);
1422 if(!iBitmapCache->UseL(bitmapHandle) && !iBitmapCache->UseL(maskHandle))
1423 DoDrawBitmapMaskedL(aGraphicsContext, destRect, bitmapHandle, sourceRect, maskHandle, invertedMask);
1426 void CCommandBuffer::DoDrawBitmapMaskedL(CWindowGc& aWindowGc, TRect aDestRect, TInt aBitmapHandle, TRect aSourceRect, TInt aMaskHandle, TBool aInvertedMask)
1428 aWindowGc.DrawBitmapMasked(aDestRect, iBitmapCache->Resolve(aBitmapHandle), aSourceRect, iBitmapCache->Resolve(aMaskHandle), aInvertedMask);
1431 void CCommandBuffer::DoDrawBitmapMaskedL(MWsGraphicsContext& aGraphicsContext, TRect aDestRect, TInt aBitmapHandle, TRect aSourceRect, TInt aMaskHandle, TBool aInvertedMask)
1433 aGraphicsContext.DrawBitmapMasked(aDestRect, *iBitmapCache->Resolve(aBitmapHandle), aSourceRect, *iBitmapCache->Resolve(aMaskHandle), aInvertedMask);
1436 template<typename ContextType> void CCommandBuffer::DrawText1L(ContextType& aGraphicsContext)
1442 ReadL<TPoint>(point);
1444 DoDrawText1L(aGraphicsContext, text, point);
1445 CleanupStack::PopAndDestroy(); // ReadTextLC
1448 void CCommandBuffer::DoDrawText1L(CWindowGc& aWindowGc, TPtrC16 aText, TPoint aPoint)
1450 aWindowGc.DrawText(aText, aPoint);
1453 void CCommandBuffer::DoDrawText1L(MWsGraphicsContext& aGraphicsContext, TPtrC16 aText, TPoint aPoint)
1455 aGraphicsContext.DrawText(aText, /*TTextParameters*/ NULL, aPoint);
1458 template<typename ContextType> void CCommandBuffer::DrawText2L(ContextType& aGraphicsContext)
1462 TInt baselineOffset;
1463 CGraphicsContext::TTextAlign horiz;
1468 ReadL<TInt>(baselineOffset);
1469 ReadL<CGraphicsContext::TTextAlign>(horiz);
1470 ReadL<TInt>(leftMargin);
1472 DoDrawText2L(aGraphicsContext, text, box, baselineOffset, horiz, leftMargin);
1473 CleanupStack::PopAndDestroy(); // ReadTextLC
1476 void CCommandBuffer::DoDrawText2L(CWindowGc& aWindowGc, TPtrC16 aText, TRect aBox, TInt aBaselineOffset, CGraphicsContext::TTextAlign aHoriz, TInt aLeftMargin)
1478 aWindowGc.DrawText(aText, aBox, aBaselineOffset, aHoriz, aLeftMargin);
1481 void CCommandBuffer::DoDrawText2L(MWsGraphicsContext& aGraphicsContext, TPtrC16 aText, TRect aBox, TInt aBaselineOffset, CGraphicsContext::TTextAlign aHoriz, TInt aLeftMargin)
1483 aGraphicsContext.DrawText(aText, /*TTextParameters*/ NULL, aBox, aBaselineOffset, BitGdiToMWsGraphicsContextMappings::Convert(aHoriz), aLeftMargin);
1486 template<typename ContextType> void CCommandBuffer::DrawText3L(ContextType& aGraphicsContext)
1490 CGraphicsContext::TDrawTextParam param;
1493 ReadL<TPoint>(point);
1494 //This is now ignored in the implmentation in CGraphicsContext and hence will ignore it here.
1495 ReadL<CGraphicsContext::TDrawTextParam>(param);
1497 DoDrawText3L(aGraphicsContext, text, point);
1498 CleanupStack::PopAndDestroy(); //ReadTextLC
1501 void CCommandBuffer::DoDrawText3L(CWindowGc& aWindowGc, TPtrC16 aText, TPoint aPoint)
1503 aWindowGc.DrawText(aText, aPoint);
1506 void CCommandBuffer::DoDrawText3L(MWsGraphicsContext& aGraphicsContext, TPtrC16 aText, TPoint aPoint)
1508 aGraphicsContext.DrawText(aText, /*TTextParameters*/ NULL, aPoint);
1511 template<typename ContextType> void CCommandBuffer::DrawText4L(ContextType& aGraphicsContext)
1514 CGraphicsContext::TTextParameters param;
1518 ReadL<CGraphicsContext::TTextParameters>(param);
1519 ReadL<TPoint>(point);
1521 DoDrawText4L(aGraphicsContext, text, param, point);
1522 CleanupStack::PopAndDestroy(); // ReadTextLC
1525 void CCommandBuffer::DoDrawText4L(CWindowGc& aWindowGc, TPtrC16 aText, CGraphicsContext::TTextParameters aParam, TPoint aPoint)
1527 aWindowGc.DrawText(aText, &aParam, aPoint);
1530 void CCommandBuffer::DoDrawText4L(MWsGraphicsContext& aGraphicsContext, TPtrC16 aText, CGraphicsContext::TTextParameters aParam, TPoint aPoint)
1532 aGraphicsContext.DrawText(aText, BitGdiToMWsGraphicsContextMappings::Convert(&aParam), aPoint);
1535 template<typename ContextType> void CCommandBuffer::DrawText5L(ContextType& aGraphicsContext)
1538 CGraphicsContext::TTextParameters param;
1540 TInt baselineOffset;
1541 CGraphicsContext::TTextAlign horiz;
1545 ReadL<CGraphicsContext::TTextParameters>(param);
1547 ReadL<TInt>(baselineOffset);
1548 ReadL<CGraphicsContext::TTextAlign>(horiz);
1549 ReadL<TInt>(leftMargin);
1551 DoDrawText5L(aGraphicsContext, text, param, box, baselineOffset, horiz, leftMargin);
1552 CleanupStack::PopAndDestroy(); // ReadTextLC
1555 void CCommandBuffer::DoDrawText5L(CWindowGc& aWindowGc, TPtrC16 aText, CGraphicsContext::TTextParameters aParam, TRect aBox, TInt aBaselineOffset, CGraphicsContext::TTextAlign aHoriz, TInt aLeftMargin)
1557 aWindowGc.DrawText(aText, &aParam, aBox, aBaselineOffset, aHoriz, aLeftMargin);
1560 void CCommandBuffer::DoDrawText5L(MWsGraphicsContext& aGraphicsContext, TPtrC16 aText, CGraphicsContext::TTextParameters aParam, TRect aBox, TInt aBaselineOffset, CGraphicsContext::TTextAlign aHoriz, TInt aLeftMargin)
1562 aGraphicsContext.DrawText(aText, BitGdiToMWsGraphicsContextMappings::Convert(&aParam), aBox, aBaselineOffset, BitGdiToMWsGraphicsContextMappings::Convert(aHoriz), aLeftMargin);
1565 template<typename ContextType> void CCommandBuffer::SetClippingRegionL(ContextType& aGraphicsContext)
1568 ReadL<TInt>(nrOfRects);
1571 iClippingRegion.Clear();
1572 for(TInt i = 0; i < nrOfRects; i++)
1575 // rect.Move(iMasterOrigin);
1576 iClippingRegion.AddRect(rect);
1579 iParsedClippingRegionIsSet = ETrue;
1580 if(iActiveMasterClippingRegion)
1581 iClippingRegion.Intersect(*iActiveMasterClippingRegion);
1583 if(!iClippingRect.IsEmpty())
1585 iClippingRegion.ClipRect(iClippingRect);
1588 aGraphicsContext.SetClippingRegion(iClippingRegion);
1591 template<typename ContextType> void CCommandBuffer::CancelClippingRegion(ContextType& aGraphicsContext)
1593 iClippingRegion.Clear();
1594 iParsedClippingRegionIsSet = EFalse;
1595 if(iActiveMasterClippingRegion)
1596 aGraphicsContext.SetClippingRegion(*iActiveMasterClippingRegion);
1598 DoCancelClippingRegion(aGraphicsContext);
1601 void CCommandBuffer::DoCancelClippingRegion(CWindowGc& aWindowGc)
1603 aWindowGc.CancelClippingRegion();
1606 void CCommandBuffer::DoCancelClippingRegion(MWsGraphicsContext& aGraphicsContext)
1608 aGraphicsContext.ResetClippingRegion();
1611 template<typename ContextType> void CCommandBuffer::DrawTextVertical1L(ContextType& aGraphicsContext)
1618 ReadL<TPoint>(point);
1621 DoDrawTextVertical1L(aGraphicsContext, text, point, up);
1622 CleanupStack::PopAndDestroy(); // ReadTextLC
1625 void CCommandBuffer::DoDrawTextVertical1L(CWindowGc& aWindowGc, TPtrC16 aText, TPoint aPoint, TBool aUp)
1627 aWindowGc.DrawTextVertical(aText, aPoint, aUp);
1630 void CCommandBuffer::DoDrawTextVertical1L(MWsGraphicsContext& aGraphicsContext, TPtrC16 aText, TPoint aPoint, TBool aUp)
1632 aGraphicsContext.DrawTextVertical(aText, /*TTextParameters*/ NULL, aPoint, aUp);
1635 template<typename ContextType> void CCommandBuffer::DrawTextVertical2L(ContextType& aGraphicsContext)
1639 TInt baselineOffset;
1641 CGraphicsContext::TTextAlign vertical;
1646 ReadL<TInt>(baselineOffset);
1648 ReadL<CGraphicsContext::TTextAlign>(vertical);
1649 ReadL<TInt>(margin);
1651 DoDrawTextVertical2L(aGraphicsContext, text, box, baselineOffset, up, vertical, margin);
1652 CleanupStack::PopAndDestroy(); //ReadTextLC
1655 void CCommandBuffer::DoDrawTextVertical2L(CWindowGc& aWindowGc, TPtrC16 aText, TRect aBox, TInt aBaselineOffset, TBool aUp, CGraphicsContext::TTextAlign aVertical, TInt aMargin)
1657 aWindowGc.DrawTextVertical(aText, aBox, aBaselineOffset, aUp, aVertical, aMargin);
1660 void CCommandBuffer::DoDrawTextVertical2L(MWsGraphicsContext& aGraphicsContext, TPtrC16 aText, TRect aBox, TInt aBaselineOffset, TBool aUp, CGraphicsContext::TTextAlign aVertical, TInt aMargin)
1662 aGraphicsContext.DrawTextVertical(aText, /*TTextParameters*/ NULL, aBox, aBaselineOffset, aUp, BitGdiToMWsGraphicsContextMappings::Convert(aVertical), aMargin);
1665 template<typename ContextType> void CCommandBuffer::DrawTextVertical3L(ContextType& aGraphicsContext)
1668 CGraphicsContext::TTextParameters param;
1673 ReadL<CGraphicsContext::TTextParameters>(param);
1674 ReadL<TPoint>(point);
1677 DoDrawTextVertical3L(aGraphicsContext, text, param, point, up);
1678 CleanupStack::PopAndDestroy(); // ReadTextLC
1681 void CCommandBuffer::DoDrawTextVertical3L(CWindowGc& aWindowGc, TPtrC16 aText, CGraphicsContext::TTextParameters aParam, TPoint aPoint, TBool aUp)
1683 aWindowGc.DrawTextVertical(aText, &aParam, aPoint, aUp);
1686 void CCommandBuffer::DoDrawTextVertical3L(MWsGraphicsContext& aGraphicsContext, TPtrC16 aText, CGraphicsContext::TTextParameters aParam, TPoint aPoint, TBool aUp)
1688 aGraphicsContext.DrawTextVertical(aText, BitGdiToMWsGraphicsContextMappings::Convert(&aParam), aPoint, aUp);
1691 template<typename ContextType> void CCommandBuffer::DrawTextVertical4L(ContextType& aGraphicsContext)
1694 CGraphicsContext::TTextParameters param;
1696 TInt baselineOffset;
1698 CGraphicsContext::TTextAlign vertical;
1702 ReadL<CGraphicsContext::TTextParameters>(param);
1704 ReadL<TInt>(baselineOffset);
1706 ReadL<CGraphicsContext::TTextAlign>(vertical);
1707 ReadL<TInt>(margin);
1709 DoDrawTextVertical4L(aGraphicsContext, text, param, box, baselineOffset, up, vertical, margin);
1710 CleanupStack::PopAndDestroy(); //ReadTextLC
1713 void CCommandBuffer::DoDrawTextVertical4L(CWindowGc& aWindowGc, TPtrC16 aText, CGraphicsContext::TTextParameters aParam, TRect aBox, TInt aBaselineOffset, TBool aUp, CGraphicsContext::TTextAlign aVertical, TInt aMargin)
1715 aWindowGc.DrawTextVertical(aText, &aParam, aBox, aBaselineOffset, aUp, aVertical, aMargin);
1718 void CCommandBuffer::DoDrawTextVertical4L(MWsGraphicsContext& aGraphicsContext, TPtrC16 aText, CGraphicsContext::TTextParameters aParam, TRect aBox, TInt aBaselineOffset, TBool aUp, CGraphicsContext::TTextAlign aVertical, TInt aMargin)
1720 aGraphicsContext.DrawTextVertical(aText, BitGdiToMWsGraphicsContextMappings::Convert(&aParam), aBox, aBaselineOffset, aUp, BitGdiToMWsGraphicsContextMappings::Convert(aVertical), aMargin);
1723 void CCommandBuffer::DrawWsGraphic1L(const MWsGraphicResolver& aWsGraphicResolver)
1730 ReadL<TBool>(isUid);
1733 aWsGraphicResolver.DrawWsGraphic(id,isUid,rect,KNullDesC8());
1736 void CCommandBuffer::DrawWsGraphic2L(const MWsGraphicResolver& aWsGraphicResolver)
1743 ReadL<TBool>(isUid);
1748 aWsGraphicResolver.DrawWsGraphic(id,isUid,rect,text8);
1749 CleanupStack::PopAndDestroy(); //ReadTextLC
1752 template<typename ContextType> void CCommandBuffer::SetShadowColorL(ContextType& aGraphicsContext)
1755 ReadL<TRgb>(shadowColor);
1757 DoSetShadowColorL(aGraphicsContext, shadowColor);
1760 void CCommandBuffer::DoSetShadowColorL(CWindowGc& aWindowGc, TRgb aShadowColor)
1762 aWindowGc.SetShadowColor(aShadowColor);
1765 void CCommandBuffer::DoSetShadowColorL(MWsGraphicsContext& aGraphicsContext, TRgb aShadowColor)
1767 aGraphicsContext.SetTextShadowColor(aShadowColor);
1771 Helper function to draw resource at specified position. The function extracts all required parameter from the stream.
1773 template<typename ContextType> void CCommandBuffer::DrawResourceToPosL(ContextType& aGraphicsContext)
1775 TSgDrawableId drawableId;
1778 CWindowGc::TGraphicsRotation rotation;
1779 ReadL<TSgDrawableId>(drawableId);
1780 ReadL<TInt>(screenNumber);
1782 ReadL<CWindowGc::TGraphicsRotation>(rotation);
1783 if (iDrawableCache->UseL(drawableId, screenNumber) == KErrNone)
1785 DoDrawResourceToPos(aGraphicsContext, iDrawableCache->Resolve(drawableId, screenNumber), pos, rotation);
1789 void CCommandBuffer::DoDrawResourceToPos(CWindowGc& aGraphicsContext, const TAny* aDrawableSource, const TPoint& aPos, CWindowGc::TGraphicsRotation aRotation)
1791 MWsDrawResource* drawResource = static_cast<MWsDrawResource*>(aGraphicsContext.Interface(KMWsDrawResourceInterfaceUid));
1794 drawResource->DrawResource(aPos, *static_cast<const RWsDrawableSource*>(aDrawableSource), aRotation);
1798 void CCommandBuffer::DoDrawResourceToPos(MWsGraphicsContext& aGraphicsContext, const TAny* aDrawableSource, const TPoint& aPos, CWindowGc::TGraphicsRotation aRotation)
1800 MWsDrawableSourceProvider* drawResource = aGraphicsContext.ObjectInterface<MWsDrawableSourceProvider>();
1803 drawResource->DrawResource(aDrawableSource, aPos, aRotation);
1808 Helper function to draw resource into specified rectangle. The function extracts all required parameter from the stream.
1810 template<typename ContextType> void CCommandBuffer::DrawResourceToRectL(ContextType& aGraphicsContext)
1812 TSgDrawableId drawableId;
1815 CWindowGc::TGraphicsRotation rotation;
1816 ReadL<TSgDrawableId>(drawableId);
1817 ReadL<TInt>(screenNumber);
1819 ReadL<CWindowGc::TGraphicsRotation>(rotation);
1821 if (iDrawableCache->UseL(drawableId, screenNumber) == KErrNone)
1823 DoDrawResourceToRect(aGraphicsContext, iDrawableCache->Resolve(drawableId, screenNumber), rect, rotation);
1827 void CCommandBuffer::DoDrawResourceToRect(CWindowGc& aGraphicsContext, const TAny* aDrawableSource, const TRect& aRect, CWindowGc::TGraphicsRotation aRotation)
1829 MWsDrawResource* drawResource = static_cast<MWsDrawResource*>(aGraphicsContext.Interface(KMWsDrawResourceInterfaceUid));
1832 drawResource->DrawResource(aRect, *static_cast<const RWsDrawableSource*>(aDrawableSource), aRotation);
1836 void CCommandBuffer::DoDrawResourceToRect(MWsGraphicsContext& aGraphicsContext, const TAny* aDrawableSource, const TRect& aRect, CWindowGc::TGraphicsRotation aRotation)
1838 MWsDrawableSourceProvider* drawResource = aGraphicsContext.ObjectInterface<MWsDrawableSourceProvider>();
1841 drawResource->DrawResource(aDrawableSource, aRect, aRotation);
1846 Helper function to draw resource into specified rectangle from specified rectangle of the drawable. The function extracts all required parameter from the stream.
1848 template<typename ContextType> void CCommandBuffer::DrawResourceFromRectToRectL(ContextType& aGraphicsContext)
1850 TSgDrawableId drawableId;
1854 CWindowGc::TGraphicsRotation rotation;
1855 ReadL<TSgDrawableId>(drawableId);
1856 ReadL<TInt>(screenNumber);
1857 ReadL<TRect>(rectDest);
1858 ReadL<TRect>(rectSrc);
1859 ReadL<CWindowGc::TGraphicsRotation>(rotation);
1861 if (iDrawableCache->UseL(drawableId, screenNumber) == KErrNone)
1863 DoDrawResourceFromRectToRect(aGraphicsContext, iDrawableCache->Resolve(drawableId, screenNumber), rectDest, rectSrc, rotation);
1867 void CCommandBuffer::DoDrawResourceFromRectToRect(CWindowGc& aGraphicsContext, const TAny* aDrawableSource, const TRect& aRectDest, const TRect& aRectSrc, CWindowGc::TGraphicsRotation aRotation)
1869 MWsDrawResource* drawResource = static_cast<MWsDrawResource*>(aGraphicsContext.Interface(KMWsDrawResourceInterfaceUid));
1872 drawResource->DrawResource(aRectDest, *static_cast<const RWsDrawableSource*>(aDrawableSource), aRectSrc, aRotation);
1876 void CCommandBuffer::DoDrawResourceFromRectToRect(MWsGraphicsContext& aGraphicsContext, const TAny* aDrawableSource, const TRect& aRectDest, const TRect& aRectSrc, CWindowGc::TGraphicsRotation aRotation)
1878 MWsDrawableSourceProvider* drawResource = aGraphicsContext.ObjectInterface<MWsDrawableSourceProvider>();
1881 drawResource->DrawResource(aDrawableSource, aRectDest, aRectSrc, aRotation);
1885 template<typename ContextType> void CCommandBuffer::DrawResourceWithDataL(ContextType& aGraphicsContext)
1887 TSgDrawableId drawableId;
1891 ReadL<TSgDrawableId>(drawableId);
1892 ReadL<TInt>(screenNumber);
1896 if (iDrawableCache->UseL(drawableId, screenNumber) == KErrNone)
1898 DoDrawResourceWithData(aGraphicsContext, iDrawableCache->Resolve(drawableId, screenNumber), rect, data);
1901 CleanupStack::PopAndDestroy(); //ReadTextLC
1904 void CCommandBuffer::DoDrawResourceWithData(CWindowGc& aGraphicsContext, const TAny* aDrawableSource, const TRect& aRect, const TDesC8& aParam)
1906 MWsDrawResource* drawResource = static_cast<MWsDrawResource*>(aGraphicsContext.Interface(KMWsDrawResourceInterfaceUid));
1909 drawResource->DrawResource(aRect, *static_cast<const RWsDrawableSource*>(aDrawableSource), aParam);
1913 void CCommandBuffer::DoDrawResourceWithData(MWsGraphicsContext& aGraphicsContext, const TAny* aDrawableSource, const TRect& aRect, const TDesC8& aParam)
1915 MWsDrawableSourceProvider* drawResource = aGraphicsContext.ObjectInterface<MWsDrawableSourceProvider>();
1918 drawResource->DrawResource(aDrawableSource, aRect, aParam);