sl@0: // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #include "RemoteGc.h" sl@0: #include "RemoteGcUtils.h" sl@0: #include "CommandBuffer.h" sl@0: #include sl@0: sl@0: /** sl@0: Creates a new remotegc. sl@0: sl@0: @param aDevice The windowserver screendevice to use. sl@0: @param aCommandBufferObserver Pointer to a commandbufferobserver. sl@0: @return A pointer to a new instance of CRemoteGc. sl@0: */ sl@0: EXPORT_C CRemoteGc* CRemoteGc::NewL(CWsScreenDevice* aDevice) sl@0: { sl@0: CRemoteGc* remoteGc = new (ELeave) CRemoteGc(aDevice); sl@0: CleanupStack::PushL(remoteGc); sl@0: remoteGc->ConstructL(); sl@0: CleanupStack::Pop(remoteGc); sl@0: return remoteGc; sl@0: } sl@0: sl@0: CRemoteGc::CRemoteGc(CWsScreenDevice* aDevice) : CWindowGc(aDevice), iCommandBufferObserver(NULL) sl@0: { sl@0: } sl@0: sl@0: EXPORT_C CRemoteGc::~CRemoteGc() sl@0: { sl@0: delete iCommandBuffer; sl@0: } sl@0: sl@0: void CRemoteGc::ConstructL() sl@0: { sl@0: User::LeaveIfError(CWindowGc::Construct()); sl@0: iCommandBuffer = CCommandBuffer::NewL(); sl@0: } sl@0: sl@0: EXPORT_C void CRemoteGc::SetCommandBufferObserver(MCommandBufferObserver* aCommandBufferObserver) sl@0: { sl@0: iCommandBufferObserver = aCommandBufferObserver; sl@0: } sl@0: sl@0: /** sl@0: Resets the commandbuffer. sl@0: */ sl@0: EXPORT_C void CRemoteGc::ResetCommandBuffer() sl@0: { sl@0: iCommandBuffer->Reset(); sl@0: } sl@0: sl@0: /** sl@0: Externalizes commandbuffer sections into a format which makes it possible to send over IPC. sl@0: If ETrue is sent as a parameter to this method, the entire commandbuffer will be externalized, sl@0: otherwise only sections which has not been externalized before will be externalized. Note that if only sl@0: not externalized sections is asked for, the flag will be reset on that section so next call sl@0: to ExternalizeLC will not externalize that section. sl@0: sl@0: @param aMsgBuf A buffer used to externalize the commandbuffer to. sl@0: @param aEntireBuffer If ETrue, the entire commandbuffer will be externalized, otherwise only sections which has not been externalized before. sl@0: */ sl@0: EXPORT_C void CRemoteGc::ExternalizeL(RWsGraphicMsgBuf& aMsgBuf, TBool aEntireBuffer) sl@0: { sl@0: return iCommandBuffer->ExternalizeL(aMsgBuf, aEntireBuffer); sl@0: } sl@0: sl@0: /** sl@0: Prepares the remotegc to be drawn to. sl@0: sl@0: @param aRect The rect to be drawn. sl@0: */ sl@0: EXPORT_C void CRemoteGc::BeginDraw(const TRect& aRect) sl@0: { sl@0: iDrawRect = aRect; sl@0: iBoundingRect = TRect(); sl@0: iHasBitmapCommand = EFalse; sl@0: iCommandBuffer->Prepare(aRect); sl@0: } sl@0: sl@0: /** sl@0: Finishes the current redraw. sl@0: This method should be called when drawing to the remotegc is complete. sl@0: */ sl@0: EXPORT_C void CRemoteGc::EndDraw() sl@0: { sl@0: iBoundingRect.Intersection(iDrawRect); sl@0: const TInt err = iCommandBuffer->Finish(iDrawRect, iBoundingRect, iHasBitmapCommand); sl@0: sl@0: if(iCommandBufferObserver && !err) sl@0: iCommandBufferObserver->CommandBufferUpdated(iDrawRect, iBoundingRect); sl@0: } sl@0: sl@0: void CRemoteGc::Activate(RDrawableWindow &aDevice) sl@0: { sl@0: BeginDraw(aDevice.GetDrawRect()); sl@0: CWindowGc::Activate(aDevice); sl@0: } sl@0: sl@0: void CRemoteGc::Deactivate() sl@0: { sl@0: CWindowGc::Deactivate(); sl@0: EndDraw(); sl@0: } sl@0: sl@0: void CRemoteGc::Clear() sl@0: { sl@0: iCommandBuffer->Write(ECommandClear); sl@0: iBoundingRect.BoundingRect(iDrawRect); sl@0: } sl@0: sl@0: void CRemoteGc::Clear(const TRect& aRect) sl@0: { sl@0: iCommandBuffer->Write(ECommandClearRect); sl@0: iCommandBuffer->Write(aRect); sl@0: iBoundingRect.BoundingRect(aRect); sl@0: } sl@0: sl@0: void CRemoteGc::CopyRect(const TPoint &anOffset, const TRect &aRect) sl@0: { sl@0: iCommandBuffer->Write(ECommandCopyRect); sl@0: iCommandBuffer->Write(anOffset); sl@0: iCommandBuffer->Write(aRect); sl@0: iBoundingRect.BoundingRect(iDrawRect); sl@0: } sl@0: sl@0: void CRemoteGc::BitBlt(const TPoint &aPoint, const CFbsBitmap *aBitmap) sl@0: { sl@0: __ASSERT_DEBUG(aBitmap, User::Invariant()); sl@0: if(aBitmap) sl@0: { sl@0: iCommandBuffer->Write(ECommandBitBlt1); sl@0: iCommandBuffer->Write(aPoint); sl@0: iCommandBuffer->Write(aBitmap->Handle()); sl@0: iBoundingRect.BoundingRect(TRect(aPoint, aBitmap->SizeInPixels())); sl@0: iHasBitmapCommand = ETrue; sl@0: } sl@0: } sl@0: sl@0: void CRemoteGc::BitBlt(const TPoint &aDestination, const CFbsBitmap *aBitmap, const TRect &aSource) sl@0: { sl@0: __ASSERT_DEBUG(aBitmap, User::Invariant()); sl@0: if(aBitmap) sl@0: { sl@0: iCommandBuffer->Write(ECommandBitBlt2); sl@0: iCommandBuffer->Write(aDestination); sl@0: iCommandBuffer->Write(aBitmap->Handle()); sl@0: iCommandBuffer->Write(aSource); sl@0: iBoundingRect.BoundingRect(TRect(aDestination, aSource.Size())); sl@0: iHasBitmapCommand = ETrue; sl@0: } sl@0: } sl@0: sl@0: void CRemoteGc::BitBltMasked(const TPoint& aPoint, const CFbsBitmap* aBitmap, const TRect& aSourceRect, const CFbsBitmap* aMaskBitmap, TBool aInvertMask) sl@0: { sl@0: __ASSERT_DEBUG(aBitmap && aMaskBitmap, User::Invariant()); sl@0: if(aBitmap && aMaskBitmap) sl@0: { sl@0: iCommandBuffer->Write(ECommandBitBltMasked); sl@0: iCommandBuffer->Write(aPoint); sl@0: iCommandBuffer->Write(aBitmap->Handle()); sl@0: iCommandBuffer->Write(aSourceRect); sl@0: iCommandBuffer->Write(aMaskBitmap->Handle()); sl@0: iCommandBuffer->Write(aInvertMask); sl@0: iBoundingRect.BoundingRect(TRect(aPoint, aSourceRect.Size())); sl@0: iHasBitmapCommand = ETrue; sl@0: } sl@0: } sl@0: sl@0: void CRemoteGc::BitBlt(const TPoint &aPoint, const CWsBitmap *aBitmap) sl@0: { sl@0: BitBlt(aPoint, reinterpret_cast(aBitmap)); sl@0: } sl@0: sl@0: void CRemoteGc::BitBlt(const TPoint &aDestination, const CWsBitmap *aBitmap, const TRect &aSource) sl@0: { sl@0: BitBlt(aDestination, reinterpret_cast(aBitmap), aSource); sl@0: } sl@0: sl@0: void CRemoteGc::BitBltMasked(const TPoint& aPoint, const CWsBitmap *aBitmap, const TRect& aSourceRect, const CWsBitmap *aMaskBitmap, TBool aInvertMask) sl@0: { sl@0: BitBltMasked(aPoint, reinterpret_cast(aBitmap), aSourceRect, reinterpret_cast(aMaskBitmap), aInvertMask); sl@0: } sl@0: sl@0: void CRemoteGc::SetFaded(TBool aFaded) sl@0: { sl@0: iCommandBuffer->Write(ECommandSetFaded); sl@0: iCommandBuffer->Write(aFaded); sl@0: } sl@0: sl@0: void CRemoteGc::SetFadingParameters(TUint8 aBlackMap,TUint8 aWhiteMap) sl@0: { sl@0: iCommandBuffer->Write(ECommandSetFadingParameters); sl@0: iCommandBuffer->Write(aBlackMap); sl@0: iCommandBuffer->Write(aWhiteMap); sl@0: } sl@0: sl@0: TInt CRemoteGc::AlphaBlendBitmaps(const TPoint& aDestPt, const CFbsBitmap* aSrcBmp, const TRect& aSrcRect, const CFbsBitmap* aAlphaBmp, const TPoint& aAlphaPt) sl@0: { sl@0: iCommandBuffer->Write(ECommandAlphaBlendBitmaps); sl@0: iCommandBuffer->Write(aDestPt); sl@0: iCommandBuffer->Write(aSrcBmp->Handle()); sl@0: iCommandBuffer->Write(aSrcRect); sl@0: iCommandBuffer->Write(aAlphaBmp->Handle()); sl@0: iCommandBuffer->Write(aAlphaPt); sl@0: iBoundingRect.BoundingRect(iDrawRect); sl@0: iHasBitmapCommand = ETrue; sl@0: return KErrNone; sl@0: } sl@0: sl@0: TInt CRemoteGc::AlphaBlendBitmaps(const TPoint& aDestPt, const CWsBitmap* aSrcBmp, const TRect& aSrcRect, const CWsBitmap* aAlphaBmp, const TPoint& aAlphaPt) sl@0: { sl@0: return AlphaBlendBitmaps(aDestPt, reinterpret_cast(aSrcBmp), aSrcRect, reinterpret_cast(aAlphaBmp), aAlphaPt); sl@0: } sl@0: sl@0: void CRemoteGc::SetOrigin(const TPoint &aPoint) sl@0: { sl@0: iCommandBuffer->Write(ECommandSetOrigin); sl@0: iCommandBuffer->Write(aPoint); sl@0: } sl@0: sl@0: void CRemoteGc::SetDrawMode(TDrawMode aDrawingMode) sl@0: { sl@0: iCommandBuffer->Write(ECommandSetDrawMode); sl@0: iCommandBuffer->Write(aDrawingMode); sl@0: } sl@0: sl@0: void CRemoteGc::SetClippingRect(const TRect& aRect) sl@0: { sl@0: iCommandBuffer->Write(ECommandSetClippingRect); sl@0: iCommandBuffer->Write(aRect); sl@0: } sl@0: sl@0: void CRemoteGc::CancelClippingRect() sl@0: { sl@0: iCommandBuffer->Write(ECommandCancelClippingRect); sl@0: } sl@0: sl@0: void CRemoteGc::Reset() sl@0: { sl@0: iCommandBuffer->Write(ECommandReset); sl@0: } sl@0: sl@0: void CRemoteGc::UseFont(const CFont *aFont) sl@0: { sl@0: iCommandBuffer->Write(ECommandUseFont); sl@0: iCommandBuffer->Write(((CFbsFont*)aFont)->Handle()); sl@0: } sl@0: sl@0: void CRemoteGc::DiscardFont() sl@0: { sl@0: iCommandBuffer->Write(ECommandDiscardFont); sl@0: } sl@0: sl@0: void CRemoteGc::SetUnderlineStyle(TFontUnderline aUnderlineStyle) sl@0: { sl@0: iCommandBuffer->Write(ECommandSetUnderlineStyle); sl@0: iCommandBuffer->Write(aUnderlineStyle); sl@0: } sl@0: sl@0: void CRemoteGc::SetStrikethroughStyle(TFontStrikethrough aStrikethroughStyle) sl@0: { sl@0: iCommandBuffer->Write(ECommandSetStrikethroughStyle); sl@0: iCommandBuffer->Write(aStrikethroughStyle); sl@0: } sl@0: sl@0: void CRemoteGc::SetWordJustification(TInt aExcessWidth, TInt aNumGaps) sl@0: { sl@0: iCommandBuffer->Write(ECommandSetWordJustification); sl@0: iCommandBuffer->Write(aExcessWidth); sl@0: iCommandBuffer->Write(aNumGaps); sl@0: } sl@0: sl@0: void CRemoteGc::SetCharJustification(TInt aExcessWidth, TInt aNumChars) sl@0: { sl@0: iCommandBuffer->Write(ECommandSetCharJustification); sl@0: iCommandBuffer->Write(aExcessWidth); sl@0: iCommandBuffer->Write(aNumChars); sl@0: } sl@0: sl@0: void CRemoteGc::SetPenColor(const TRgb &aColor) sl@0: { sl@0: iCommandBuffer->Write(ECommandSetPenColor); sl@0: iCommandBuffer->Write(aColor); sl@0: } sl@0: sl@0: void CRemoteGc::SetPenStyle(TPenStyle aPenStyle) sl@0: { sl@0: iCommandBuffer->Write(ECommandSetPenStyle); sl@0: iCommandBuffer->Write(aPenStyle); sl@0: } sl@0: sl@0: void CRemoteGc::SetPenSize(const TSize& aSize) sl@0: { sl@0: iCommandBuffer->Write(ECommandSetPenSize); sl@0: iCommandBuffer->Write(aSize); sl@0: } sl@0: sl@0: void CRemoteGc::SetBrushColor(const TRgb &aColor) sl@0: { sl@0: iCommandBuffer->Write(ECommandSetBrushColor); sl@0: iCommandBuffer->Write(aColor); sl@0: } sl@0: sl@0: void CRemoteGc::SetBrushStyle(TBrushStyle aBrushStyle) sl@0: { sl@0: iCommandBuffer->Write(ECommandSetBrushStyle); sl@0: iCommandBuffer->Write(aBrushStyle); sl@0: } sl@0: sl@0: void CRemoteGc::SetBrushOrigin(const TPoint &aOrigin) sl@0: { sl@0: iCommandBuffer->Write(ECommandSetBrushOrigin); sl@0: iCommandBuffer->Write(aOrigin); sl@0: } sl@0: sl@0: void CRemoteGc::UseBrushPattern(const CFbsBitmap *aDevice) sl@0: { sl@0: iCommandBuffer->Write(ECommandUseBrushPattern); sl@0: iCommandBuffer->Write(aDevice->Handle()); sl@0: } sl@0: sl@0: void CRemoteGc::DiscardBrushPattern() sl@0: { sl@0: iCommandBuffer->Write(ECommandDiscardBrushPattern); sl@0: } sl@0: sl@0: void CRemoteGc::MoveTo(const TPoint &aPoint) sl@0: { sl@0: iCommandBuffer->Write(ECommandMoveTo); sl@0: iCommandBuffer->Write(aPoint); sl@0: } sl@0: sl@0: void CRemoteGc::MoveBy(const TPoint &aPoint) sl@0: { sl@0: iCommandBuffer->Write(ECommandMoveBy); sl@0: iCommandBuffer->Write(aPoint); sl@0: } sl@0: sl@0: void CRemoteGc::Plot(const TPoint &aPoint) sl@0: { sl@0: iCommandBuffer->Write(ECommandPlot); sl@0: iCommandBuffer->Write(aPoint); sl@0: iBoundingRect.BoundingRect(iDrawRect); sl@0: } sl@0: sl@0: void CRemoteGc::DrawArc(const TRect &aRect,const TPoint &aStart,const TPoint &aEnd) sl@0: { sl@0: iCommandBuffer->Write(ECommandDrawArc); sl@0: iCommandBuffer->Write(aRect); sl@0: iCommandBuffer->Write(aStart); sl@0: iCommandBuffer->Write(aEnd); sl@0: iBoundingRect.BoundingRect(iDrawRect); sl@0: } sl@0: sl@0: void CRemoteGc::DrawLine(const TPoint &aPoint1,const TPoint &aPoint2) sl@0: { sl@0: iCommandBuffer->Write(ECommandDrawLine); sl@0: iCommandBuffer->Write(aPoint1); sl@0: iCommandBuffer->Write(aPoint2); sl@0: iBoundingRect.BoundingRect(iDrawRect); sl@0: } sl@0: sl@0: void CRemoteGc::DrawLineTo(const TPoint &aPoint) sl@0: { sl@0: iCommandBuffer->Write(ECommandDrawLineTo); sl@0: iCommandBuffer->Write(aPoint); sl@0: iBoundingRect.BoundingRect(iDrawRect); sl@0: } sl@0: sl@0: void CRemoteGc::DrawLineBy(const TPoint &aPoint) sl@0: { sl@0: iCommandBuffer->Write(ECommandDrawLineBy); sl@0: iCommandBuffer->Write(aPoint); sl@0: iBoundingRect.BoundingRect(iDrawRect); sl@0: } sl@0: sl@0: void CRemoteGc::DrawPolyLine(const CArrayFix *aPointList) sl@0: { sl@0: iCommandBuffer->Write(ECommandDrawPolyLine); sl@0: iCommandBuffer->Write(aPointList->Count()); // Write number of points sl@0: sl@0: const TInt count = aPointList->Count(); sl@0: for(TInt i = 0; i < count; i++) sl@0: { sl@0: iCommandBuffer->Write(aPointList->At(i)); sl@0: } sl@0: iBoundingRect.BoundingRect(iDrawRect); sl@0: } sl@0: sl@0: void CRemoteGc::DrawPolyLine(const TPoint* aPointList, TInt aNumPoints) sl@0: { sl@0: iCommandBuffer->Write(ECommandDrawPolyLine); sl@0: iCommandBuffer->Write(aNumPoints); // Write number of points sl@0: sl@0: for(TInt i = 0; i < aNumPoints; i++) sl@0: { sl@0: iCommandBuffer->Write(aPointList[i]); sl@0: } sl@0: iBoundingRect.BoundingRect(iDrawRect); sl@0: } sl@0: sl@0: void CRemoteGc::DrawPie(const TRect &aRect,const TPoint &aStart,const TPoint &aEnd) sl@0: { sl@0: iCommandBuffer->Write(ECommandDrawPie); sl@0: iCommandBuffer->Write(aRect); sl@0: iCommandBuffer->Write(aStart); sl@0: iCommandBuffer->Write(aEnd); sl@0: iBoundingRect.BoundingRect(iDrawRect); sl@0: } sl@0: sl@0: void CRemoteGc::DrawEllipse(const TRect &aRect) sl@0: { sl@0: iCommandBuffer->Write(ECommandDrawEllipse); sl@0: iCommandBuffer->Write(aRect); sl@0: iBoundingRect.BoundingRect(iDrawRect); sl@0: } sl@0: sl@0: void CRemoteGc::DrawRect(const TRect &aRect) sl@0: { sl@0: iCommandBuffer->Write(ECommandDrawRect); sl@0: iCommandBuffer->Write(aRect); sl@0: iBoundingRect.BoundingRect(iDrawRect); sl@0: } sl@0: sl@0: void CRemoteGc::DrawRoundRect(const TRect &aRect,const TSize &aEllipse) sl@0: { sl@0: iCommandBuffer->Write(ECommandDrawRoundRect); sl@0: iCommandBuffer->Write(aRect); sl@0: iCommandBuffer->Write(aEllipse); sl@0: iBoundingRect.BoundingRect(iDrawRect); sl@0: } sl@0: sl@0: TInt CRemoteGc::DrawPolygon(const CArrayFix *aPointList, TFillRule aFillRule) sl@0: { sl@0: iCommandBuffer->Write(ECommandDrawPolygon); sl@0: iCommandBuffer->Write(aPointList->Count()); // Write number of points sl@0: sl@0: for(TInt i = 0; i < aPointList->Count(); i++) sl@0: { sl@0: iCommandBuffer->Write(aPointList->At(i)); sl@0: } sl@0: sl@0: iCommandBuffer->Write(aFillRule); sl@0: iBoundingRect.BoundingRect(iDrawRect); sl@0: return KErrNone; sl@0: } sl@0: sl@0: TInt CRemoteGc::DrawPolygon(const TPoint* aPointList, TInt aNumPoints, TFillRule aFillRule) sl@0: { sl@0: iCommandBuffer->Write(ECommandDrawPolygon); sl@0: iCommandBuffer->Write(aNumPoints); // Write number of points sl@0: sl@0: for(TInt i = 0; i < aNumPoints; i++) sl@0: { sl@0: iCommandBuffer->Write(aPointList[i]); sl@0: } sl@0: sl@0: iCommandBuffer->Write(aFillRule); sl@0: iBoundingRect.BoundingRect(iDrawRect); sl@0: return KErrNone; sl@0: } sl@0: sl@0: void CRemoteGc::DrawBitmap(const TPoint &aTopLeft, const CFbsBitmap *aDevice) sl@0: { sl@0: iCommandBuffer->Write(ECommandDrawBitmap1); sl@0: iCommandBuffer->Write(aTopLeft); sl@0: iCommandBuffer->Write(aDevice->Handle()); sl@0: iBoundingRect.BoundingRect(TRect(aTopLeft, aDevice->SizeInPixels())); sl@0: iHasBitmapCommand = ETrue; sl@0: } sl@0: sl@0: void CRemoteGc::DrawBitmap(const TRect &aDestRect, const CFbsBitmap *aDevice) sl@0: { sl@0: iCommandBuffer->Write(ECommandDrawBitmap2); sl@0: iCommandBuffer->Write(aDestRect); sl@0: iCommandBuffer->Write(aDevice->Handle()); sl@0: iBoundingRect.BoundingRect(aDestRect); sl@0: iHasBitmapCommand = ETrue; sl@0: } sl@0: sl@0: void CRemoteGc::DrawBitmap(const TRect &aDestRect, const CFbsBitmap *aDevice, const TRect &aSourceRect) sl@0: { sl@0: iCommandBuffer->Write(ECommandDrawBitmap3); sl@0: iCommandBuffer->Write(aDestRect); sl@0: iCommandBuffer->Write(aDevice->Handle()); sl@0: iCommandBuffer->Write(aSourceRect); sl@0: iBoundingRect.BoundingRect(aDestRect); sl@0: iHasBitmapCommand = ETrue; sl@0: } sl@0: sl@0: void CRemoteGc::DrawBitmapMasked(const TRect& aDestRect, const CFbsBitmap* aBitmap, const TRect& aSourceRect, const CFbsBitmap* aMaskBitmap, TBool aInvertMask) sl@0: { sl@0: iCommandBuffer->Write(ECommandDrawBitmapMasked); sl@0: iCommandBuffer->Write(aDestRect); sl@0: iCommandBuffer->Write(aBitmap->Handle()); sl@0: iCommandBuffer->Write(aSourceRect); sl@0: iCommandBuffer->Write(aMaskBitmap->Handle()); sl@0: iCommandBuffer->Write(aInvertMask); sl@0: iBoundingRect.BoundingRect(aDestRect); sl@0: iHasBitmapCommand = ETrue; sl@0: } sl@0: sl@0: void CRemoteGc::DrawBitmapMasked(const TRect& aDestRect, const CWsBitmap* aBitmap, const TRect& aSourceRect, const CWsBitmap* aMaskBitmap, TBool aInvertMask) sl@0: { sl@0: DrawBitmapMasked(aDestRect, reinterpret_cast(aBitmap), aSourceRect, reinterpret_cast(aMaskBitmap), aInvertMask); sl@0: } sl@0: sl@0: void CRemoteGc::DrawText(const TDesC &aBuf,const TPoint &aPos) sl@0: { sl@0: iCommandBuffer->Write(ECommandDrawText1); sl@0: iCommandBuffer->WriteText(aBuf); sl@0: iCommandBuffer->Write(aPos); sl@0: iBoundingRect.BoundingRect(iDrawRect); sl@0: } sl@0: sl@0: void CRemoteGc::DrawText(const TDesC &aBuf, const TRect &aBox, TInt aBaselineOffset, TTextAlign aHoriz, TInt aLeftMrg) sl@0: { sl@0: iCommandBuffer->Write(ECommandDrawText2); sl@0: iCommandBuffer->WriteText(aBuf); sl@0: iCommandBuffer->Write(aBox); sl@0: iCommandBuffer->Write(aBaselineOffset); sl@0: iCommandBuffer->Write(aHoriz); sl@0: iCommandBuffer->Write(aLeftMrg); sl@0: iBoundingRect.BoundingRect(aBox); sl@0: } sl@0: sl@0: void CRemoteGc::DrawText(const TDesC& aText, const TPoint& aPosition, const TDrawTextParam& aParam) sl@0: { sl@0: iCommandBuffer->Write(ECommandDrawText3); sl@0: iCommandBuffer->WriteText(aText); sl@0: iCommandBuffer->Write(aPosition); sl@0: iCommandBuffer->Write(aParam); sl@0: iBoundingRect.BoundingRect(iDrawRect); sl@0: } sl@0: sl@0: void CRemoteGc::MapColors(const TRect& aRect, const TRgb* aColors, TInt aNumPairs, TBool aMapForwards) sl@0: { sl@0: iCommandBuffer->Write(ECommandMapColors); sl@0: iCommandBuffer->Write(aRect); sl@0: iCommandBuffer->Write(aNumPairs); sl@0: sl@0: for(TInt i = 0; i < aNumPairs; i++) sl@0: { sl@0: iCommandBuffer->Write(aColors[i]); sl@0: iCommandBuffer->Write(aColors[i+1]); sl@0: } sl@0: sl@0: iCommandBuffer->Write(aMapForwards); sl@0: } sl@0: sl@0: TInt CRemoteGc::SetClippingRegion(const TRegion &aRegion) sl@0: { sl@0: iCommandBuffer->Write(ECommandSetClippingRegion); sl@0: sl@0: const TInt count = aRegion.Count(); sl@0: iCommandBuffer->Write(count); sl@0: sl@0: for(TInt i = 0; i < count; i++) sl@0: { sl@0: iCommandBuffer->Write(aRegion.RectangleList()[i]); sl@0: } sl@0: sl@0: return KErrNone; sl@0: } sl@0: sl@0: void CRemoteGc::CancelClippingRegion() sl@0: { sl@0: iCommandBuffer->Write(ECommandCancelClippingRegion); sl@0: } sl@0: sl@0: void CRemoteGc::DrawTextVertical(const TDesC& aText, const TPoint& aPos, TBool aUp) sl@0: { sl@0: iCommandBuffer->Write(ECommandDrawTextVertical1); sl@0: iCommandBuffer->WriteText(aText); sl@0: iCommandBuffer->Write(aPos); sl@0: iCommandBuffer->Write(aUp); sl@0: iBoundingRect.BoundingRect(iDrawRect); sl@0: } sl@0: sl@0: void CRemoteGc::DrawTextVertical(const TDesC& aText, const TRect& aBox, TInt aBaselineOffset, TBool aUp, TTextAlign aVert, TInt aMargin) sl@0: { sl@0: iCommandBuffer->Write(ECommandDrawTextVertical2); sl@0: iCommandBuffer->WriteText(aText); sl@0: iCommandBuffer->Write(aBox); sl@0: iCommandBuffer->Write(aBaselineOffset); sl@0: iCommandBuffer->Write(aUp); sl@0: iCommandBuffer->Write(aVert); sl@0: iCommandBuffer->Write(aMargin); sl@0: iBoundingRect.BoundingRect(aBox); sl@0: } sl@0: sl@0: void CRemoteGc::DrawWsGraphic(const TWsGraphicId& aId,const TRect& aDestRect) sl@0: { sl@0: iCommandBuffer->Write(ECommandDrawWsGraphic1); sl@0: iCommandBuffer->Write(aId.IsUid()? aId.Uid().iUid: aId.Id()); sl@0: iCommandBuffer->Write(aId.IsUid()); sl@0: iCommandBuffer->Write(aDestRect); sl@0: iBoundingRect.BoundingRect(aDestRect); sl@0: } sl@0: sl@0: void CRemoteGc::DrawWsGraphic(const TWsGraphicId& aId,const TRect& aDestRect,const TDesC8& aData) sl@0: { sl@0: iCommandBuffer->Write(ECommandDrawWsGraphic2); sl@0: iCommandBuffer->Write(aId.IsUid()? aId.Uid().iUid: aId.Id()); sl@0: iCommandBuffer->Write(aId.IsUid()); sl@0: iCommandBuffer->Write(aDestRect); sl@0: iCommandBuffer->WriteText(aData); sl@0: iBoundingRect.BoundingRect(aDestRect); sl@0: } sl@0: sl@0: void CRemoteGc::SetDitherOrigin(const TPoint& /*aPoint*/) sl@0: { sl@0: // do nothing, does not apply to CBitmapContext which CCommandBuffer is using sl@0: } sl@0: sl@0: void CRemoteGc::SetOpaque(TBool /*aDrawOpaque*/) sl@0: { sl@0: // overrides to prevent calling CWindowGc::SetOpaque, it's specific to how wserv blends windows content sl@0: } sl@0: sl@0: TInt CRemoteGc::APIExtension(TUid aUid, TAny*& aOutput, TAny* aInput) sl@0: { sl@0: if (aUid == KSetShadowColor) sl@0: { sl@0: return APIExSetShadowColor(aInput); sl@0: } sl@0: /* Future cases may be placed here later.*/ sl@0: else sl@0: { sl@0: return CBitmapContext::APIExtension(aUid, aOutput, aInput); sl@0: } sl@0: } sl@0: sl@0: TInt CRemoteGc::APIExSetShadowColor(TAny* aShadowColor) sl@0: { sl@0: const TRgb shadowColor = *(reinterpret_cast (aShadowColor)); sl@0: iCommandBuffer->Write(ECommandSetShadowColor); sl@0: iCommandBuffer->Write(shadowColor); sl@0: return KErrNone; sl@0: }