1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/nga/remotegc/RemoteGc.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,829 @@
1.4 +// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#include <graphics/remotegc.h>
1.20 +#include <graphics/commandbuffer.h>
1.21 +#include <graphics/wsdrawresource.h>
1.22 +#include <graphics/gdi/gdiconsts.h>
1.23 +#include <graphics/gdi/gdistructs.h>
1.24 +#include "graphics/windowserverconstants.h"
1.25 +
1.26 +#define KDefaultShadowColor KRgbGray
1.27 +
1.28 +class CRemoteGc::CPimpl : public CBase, public MWsDrawResource
1.29 + {
1.30 +public:
1.31 + CPimpl(CRemoteGc& aGc) : iGc(aGc) {}
1.32 +public: //from MWsDrawResource
1.33 + void DrawResource(const TPoint& aPos, const RWsDrawableSource& aSource, CWindowGc::TGraphicsRotation aRotation=CWindowGc::EGraphicsRotationNone)
1.34 + {
1.35 + iGc.DrawResource(aPos, aSource, aRotation);
1.36 + }
1.37 + void DrawResource(const TRect& aDestRect, const RWsDrawableSource& aSource, CWindowGc::TGraphicsRotation aRotation=CWindowGc::EGraphicsRotationNone)
1.38 + {
1.39 + iGc.DrawResource(aDestRect, aSource, aRotation);
1.40 + }
1.41 + void DrawResource(const TRect& aDestRect, const RWsDrawableSource& aSource, const TRect& aSrcRect, CWindowGc::TGraphicsRotation aRotation=CWindowGc::EGraphicsRotationNone)
1.42 + {
1.43 + iGc.DrawResource(aDestRect, aSource, aSrcRect, aRotation);
1.44 + }
1.45 + void DrawResource(const TRect& aDestRect, const RWsDrawableSource& aSource, const TDesC8& aParam)
1.46 + {
1.47 + iGc.DrawResource(aDestRect, aSource, aParam);
1.48 + }
1.49 +private:
1.50 + CRemoteGc& iGc;
1.51 + };
1.52 +
1.53 +/**
1.54 +Creates a new remotegc.
1.55 +
1.56 +@param aDevice The windowserver screendevice to use.
1.57 +@param aCommandBufferObserver Pointer to a commandbufferobserver.
1.58 +@return A pointer to a new instance of CRemoteGc.
1.59 +*/
1.60 +EXPORT_C CRemoteGc* CRemoteGc::NewL(CWsScreenDevice* aDevice)
1.61 + {
1.62 + CRemoteGc* remoteGc = new (ELeave) CRemoteGc(aDevice);
1.63 + CleanupStack::PushL(remoteGc);
1.64 + remoteGc->ConstructL();
1.65 + CleanupStack::Pop(remoteGc);
1.66 + return remoteGc;
1.67 + }
1.68 +
1.69 +CRemoteGc::CRemoteGc(CWsScreenDevice* aDevice) : CWindowGc(aDevice), iCommandBufferObserver(NULL), iFont(NULL), iShadowColor(KDefaultShadowColor)
1.70 + {
1.71 + }
1.72 +
1.73 +EXPORT_C CRemoteGc::~CRemoteGc()
1.74 + {
1.75 + delete iCommandBuffer;
1.76 + delete iRemoteGcPimpl;
1.77 + }
1.78 +
1.79 +void CRemoteGc::ConstructL()
1.80 + {
1.81 + User::LeaveIfError(CWindowGc::Construct());
1.82 + iCommandBuffer = CCommandBuffer::NewL();
1.83 + iRemoteGcPimpl = new(ELeave) CPimpl(*this);
1.84 + }
1.85 +
1.86 +EXPORT_C void CRemoteGc::SetCommandBufferObserver(MCommandBufferObserver* aCommandBufferObserver)
1.87 + {
1.88 + iCommandBufferObserver = aCommandBufferObserver;
1.89 + }
1.90 +
1.91 +/**
1.92 +Resets the commandbuffer.
1.93 +*/
1.94 +EXPORT_C void CRemoteGc::ResetCommandBuffer()
1.95 + {
1.96 + iCommandBuffer->Reset();
1.97 + }
1.98 +
1.99 +/**
1.100 +Externalizes commandbuffer sections into a format which makes it possible to send over IPC.
1.101 +If ETrue is sent as a parameter to this method, the entire commandbuffer will be externalized,
1.102 +otherwise only sections which has not been externalized before will be externalized. Note that if only
1.103 +not externalized sections is asked for, the flag will be reset on that section so next call
1.104 +to ExternalizeLC will not externalize that section.
1.105 +
1.106 +@param aMsgBuf A buffer used to externalize the commandbuffer to.
1.107 +@param aEntireBuffer If ETrue, the entire commandbuffer will be externalized, otherwise only sections which has not been externalized before.
1.108 +*/
1.109 +EXPORT_C void CRemoteGc::ExternalizeL(RWsGraphicMsgBuf& aMsgBuf, TBool aEntireBuffer)
1.110 + {
1.111 + return iCommandBuffer->ExternalizeL(aMsgBuf, aEntireBuffer);
1.112 + }
1.113 +
1.114 +/**
1.115 +Prepares the remotegc to be drawn to.
1.116 +
1.117 +@param aRect The rect to be drawn.
1.118 +*/
1.119 +EXPORT_C void CRemoteGc::BeginDraw(const TRect& aRect)
1.120 + {
1.121 + iDrawRect = aRect;
1.122 + iBoundingRect = TRect();
1.123 + iHasBitmapCommand = EFalse;
1.124 + iCommandBuffer->Prepare(aRect);
1.125 + }
1.126 +
1.127 +/**
1.128 +Finishes the current redraw.
1.129 +This method should be called when drawing to the remotegc is complete.
1.130 +*/
1.131 +EXPORT_C void CRemoteGc::EndDraw()
1.132 + {
1.133 + iBoundingRect.Intersection(iDrawRect);
1.134 + const TInt err = iCommandBuffer->Finish(iDrawRect, iBoundingRect, iHasBitmapCommand);
1.135 +
1.136 + if(iCommandBufferObserver && !err)
1.137 + iCommandBufferObserver->CommandBufferUpdated(iDrawRect, iBoundingRect);
1.138 + }
1.139 +
1.140 +void CRemoteGc::Activate(RDrawableWindow &aDevice)
1.141 + {
1.142 + BeginDraw(aDevice.GetDrawRect());
1.143 + CWindowGc::Activate(aDevice);
1.144 + }
1.145 +
1.146 +void CRemoteGc::Deactivate()
1.147 + {
1.148 + CWindowGc::Deactivate();
1.149 + iFont = NULL;
1.150 + iShadowColor = KDefaultShadowColor;
1.151 + EndDraw();
1.152 + }
1.153 +
1.154 +void CRemoteGc::Clear()
1.155 + {
1.156 + iCommandBuffer->Write<TDrawCode>(ECommandClear);
1.157 + iBoundingRect.BoundingRect(iDrawRect);
1.158 + }
1.159 +
1.160 +void CRemoteGc::Clear(const TRect& aRect)
1.161 + {
1.162 + iCommandBuffer->Write<TDrawCode>(ECommandClearRect);
1.163 + iCommandBuffer->Write<TRect>(aRect);
1.164 + iBoundingRect.BoundingRect(aRect);
1.165 + }
1.166 +
1.167 +void CRemoteGc::CopyRect(const TPoint &anOffset, const TRect &aRect)
1.168 + {
1.169 + iCommandBuffer->Write<TDrawCode>(ECommandCopyRect);
1.170 + iCommandBuffer->Write<TPoint>(anOffset);
1.171 + iCommandBuffer->Write<TRect>(aRect);
1.172 + iBoundingRect.BoundingRect(iDrawRect);
1.173 + }
1.174 +
1.175 +void CRemoteGc::BitBlt(const TPoint &aPoint, const CFbsBitmap *aBitmap)
1.176 + {
1.177 + __ASSERT_DEBUG(aBitmap, User::Invariant());
1.178 + if(aBitmap)
1.179 + {
1.180 + iCommandBuffer->Write<TDrawCode>(ECommandBitBlt1);
1.181 + iCommandBuffer->Write<TPoint>(aPoint);
1.182 + iCommandBuffer->Write<TInt>(aBitmap->Handle());
1.183 + iBoundingRect.BoundingRect(TRect(aPoint, aBitmap->SizeInPixels()));
1.184 + iHasBitmapCommand = ETrue;
1.185 + }
1.186 + }
1.187 +
1.188 +void CRemoteGc::BitBlt(const TPoint &aDestination, const CFbsBitmap *aBitmap, const TRect &aSource)
1.189 + {
1.190 + __ASSERT_DEBUG(aBitmap, User::Invariant());
1.191 + if(aBitmap)
1.192 + {
1.193 + iCommandBuffer->Write<TDrawCode>(ECommandBitBlt2);
1.194 + iCommandBuffer->Write<TPoint>(aDestination);
1.195 + iCommandBuffer->Write<TInt>(aBitmap->Handle());
1.196 + iCommandBuffer->Write<TRect>(aSource);
1.197 + iBoundingRect.BoundingRect(TRect(aDestination, aSource.Size()));
1.198 + iHasBitmapCommand = ETrue;
1.199 + }
1.200 + }
1.201 +
1.202 +void CRemoteGc::BitBltMasked(const TPoint& aPoint, const CFbsBitmap* aBitmap, const TRect& aSourceRect, const CFbsBitmap* aMaskBitmap, TBool aInvertMask)
1.203 + {
1.204 + __ASSERT_DEBUG(aBitmap && aMaskBitmap, User::Invariant());
1.205 + if(aBitmap && aMaskBitmap)
1.206 + {
1.207 + iCommandBuffer->Write<TDrawCode>(ECommandBitBltMasked);
1.208 + iCommandBuffer->Write<TPoint>(aPoint);
1.209 + iCommandBuffer->Write<TInt>(aBitmap->Handle());
1.210 + iCommandBuffer->Write<TRect>(aSourceRect);
1.211 + iCommandBuffer->Write<TInt>(aMaskBitmap->Handle());
1.212 + iCommandBuffer->Write<TBool>(aInvertMask);
1.213 + iBoundingRect.BoundingRect(TRect(aPoint, aSourceRect.Size()));
1.214 + iHasBitmapCommand = ETrue;
1.215 + }
1.216 + }
1.217 +
1.218 +void CRemoteGc::BitBlt(const TPoint &aPoint, const CWsBitmap *aBitmap)
1.219 + {
1.220 + BitBlt(aPoint, reinterpret_cast<const CFbsBitmap*>(aBitmap));
1.221 + }
1.222 +
1.223 +void CRemoteGc::BitBlt(const TPoint &aDestination, const CWsBitmap *aBitmap, const TRect &aSource)
1.224 + {
1.225 + BitBlt(aDestination, reinterpret_cast<const CFbsBitmap*>(aBitmap), aSource);
1.226 + }
1.227 +
1.228 +void CRemoteGc::BitBltMasked(const TPoint& aPoint, const CWsBitmap *aBitmap, const TRect& aSourceRect, const CWsBitmap *aMaskBitmap, TBool aInvertMask)
1.229 + {
1.230 + BitBltMasked(aPoint, reinterpret_cast<const CFbsBitmap*>(aBitmap), aSourceRect, reinterpret_cast<const CFbsBitmap*>(aMaskBitmap), aInvertMask);
1.231 + }
1.232 +
1.233 +void CRemoteGc::SetFaded(TBool /*aFaded*/)
1.234 + {
1.235 + // deprecated
1.236 + }
1.237 +
1.238 +void CRemoteGc::SetFadingParameters(TUint8 /*aBlackMap*/,TUint8 /*aWhiteMap*/)
1.239 + {
1.240 + // deprecated
1.241 + }
1.242 +
1.243 +TInt CRemoteGc::AlphaBlendBitmaps(const TPoint& aDestPt, const CFbsBitmap* aSrcBmp, const TRect& aSrcRect, const CFbsBitmap* aAlphaBmp, const TPoint& aAlphaPt)
1.244 + {
1.245 + iCommandBuffer->Write<TDrawCode>(ECommandAlphaBlendBitmaps);
1.246 + iCommandBuffer->Write<TPoint>(aDestPt);
1.247 + iCommandBuffer->Write<TInt>(aSrcBmp->Handle());
1.248 + iCommandBuffer->Write<TRect>(aSrcRect);
1.249 + iCommandBuffer->Write<TInt>(aAlphaBmp->Handle());
1.250 + iCommandBuffer->Write<TPoint>(aAlphaPt);
1.251 + iBoundingRect.BoundingRect(iDrawRect);
1.252 + iHasBitmapCommand = ETrue;
1.253 + return KErrNone;
1.254 + }
1.255 +
1.256 +TInt CRemoteGc::AlphaBlendBitmaps(const TPoint& aDestPt, const CWsBitmap* aSrcBmp, const TRect& aSrcRect, const CWsBitmap* aAlphaBmp, const TPoint& aAlphaPt)
1.257 + {
1.258 + return AlphaBlendBitmaps(aDestPt, reinterpret_cast<const CFbsBitmap*>(aSrcBmp), aSrcRect, reinterpret_cast<const CFbsBitmap*>(aAlphaBmp), aAlphaPt);
1.259 + }
1.260 +
1.261 +void CRemoteGc::SetOrigin(const TPoint &aPoint)
1.262 + {
1.263 + iCommandBuffer->Write<TDrawCode>(ECommandSetOrigin);
1.264 + iCommandBuffer->Write<TPoint>(aPoint);
1.265 + }
1.266 +
1.267 +void CRemoteGc::SetDrawMode(TDrawMode aDrawingMode)
1.268 + {
1.269 + iCommandBuffer->Write<TDrawCode>(ECommandSetDrawMode);
1.270 + iCommandBuffer->Write<TDrawMode>(aDrawingMode);
1.271 + }
1.272 +
1.273 +void CRemoteGc::SetClippingRect(const TRect& aRect)
1.274 + {
1.275 + iCommandBuffer->Write<TDrawCode>(ECommandSetClippingRect);
1.276 + iCommandBuffer->Write<TRect>(aRect);
1.277 + }
1.278 +
1.279 +void CRemoteGc::CancelClippingRect()
1.280 + {
1.281 + iCommandBuffer->Write<TDrawCode>(ECommandCancelClippingRect);
1.282 + }
1.283 +
1.284 +void CRemoteGc::Reset()
1.285 + {
1.286 + iCommandBuffer->Write<TDrawCode>(ECommandReset);
1.287 + iFont = NULL;
1.288 + iShadowColor = KDefaultShadowColor;
1.289 + }
1.290 +
1.291 +void CRemoteGc::UseFont(const CFont *aFont)
1.292 + {
1.293 + if (iFont!=(CFbsFont *)aFont)
1.294 + {
1.295 + iFont=(CFbsFont *)aFont;
1.296 + iCommandBuffer->Write<TDrawCode>(ECommandUseFont);
1.297 + iCommandBuffer->Write<TInt>(((CFbsFont*)aFont)->Handle());
1.298 + }
1.299 + }
1.300 +
1.301 +void CRemoteGc::DiscardFont()
1.302 + {
1.303 + iFont = NULL;
1.304 + iCommandBuffer->Write<TDrawCode>(ECommandDiscardFont);
1.305 + }
1.306 +
1.307 +void CRemoteGc::SetUnderlineStyle(TFontUnderline aUnderlineStyle)
1.308 + {
1.309 + iCommandBuffer->Write<TDrawCode>(ECommandSetUnderlineStyle);
1.310 + iCommandBuffer->Write<TFontUnderline>(aUnderlineStyle);
1.311 + }
1.312 +
1.313 +void CRemoteGc::SetStrikethroughStyle(TFontStrikethrough aStrikethroughStyle)
1.314 + {
1.315 + iCommandBuffer->Write<TDrawCode>(ECommandSetStrikethroughStyle);
1.316 + iCommandBuffer->Write<TFontStrikethrough>(aStrikethroughStyle);
1.317 + }
1.318 +
1.319 +void CRemoteGc::SetWordJustification(TInt aExcessWidth, TInt aNumGaps)
1.320 + {
1.321 + iCommandBuffer->Write<TDrawCode>(ECommandSetWordJustification);
1.322 + iCommandBuffer->Write<TInt>(aExcessWidth);
1.323 + iCommandBuffer->Write<TInt>(aNumGaps);
1.324 + }
1.325 +
1.326 +void CRemoteGc::SetCharJustification(TInt aExcessWidth, TInt aNumChars)
1.327 + {
1.328 + iCommandBuffer->Write<TDrawCode>(ECommandSetCharJustification);
1.329 + iCommandBuffer->Write<TInt>(aExcessWidth);
1.330 + iCommandBuffer->Write<TInt>(aNumChars);
1.331 + }
1.332 +
1.333 +void CRemoteGc::SetPenColor(const TRgb &aColor)
1.334 + {
1.335 + iCommandBuffer->Write<TDrawCode>(ECommandSetPenColor);
1.336 + iCommandBuffer->Write<TRgb>(aColor);
1.337 + }
1.338 +
1.339 +void CRemoteGc::SetPenStyle(TPenStyle aPenStyle)
1.340 + {
1.341 + iCommandBuffer->Write<TDrawCode>(ECommandSetPenStyle);
1.342 + iCommandBuffer->Write<TPenStyle>(aPenStyle);
1.343 + }
1.344 +
1.345 +void CRemoteGc::SetPenSize(const TSize& aSize)
1.346 + {
1.347 + iCommandBuffer->Write<TDrawCode>(ECommandSetPenSize);
1.348 + iCommandBuffer->Write<TSize>(aSize);
1.349 + }
1.350 +
1.351 +void CRemoteGc::SetBrushColor(const TRgb &aColor)
1.352 + {
1.353 + iCommandBuffer->Write<TDrawCode>(ECommandSetBrushColor);
1.354 + iCommandBuffer->Write<TRgb>(aColor);
1.355 + }
1.356 +
1.357 +void CRemoteGc::SetBrushStyle(TBrushStyle aBrushStyle)
1.358 + {
1.359 + iCommandBuffer->Write<TDrawCode>(ECommandSetBrushStyle);
1.360 + iCommandBuffer->Write<TBrushStyle>(aBrushStyle);
1.361 + }
1.362 +
1.363 +void CRemoteGc::SetBrushOrigin(const TPoint &aOrigin)
1.364 + {
1.365 + iCommandBuffer->Write<TDrawCode>(ECommandSetBrushOrigin);
1.366 + iCommandBuffer->Write<TPoint>(aOrigin);
1.367 + }
1.368 +
1.369 +void CRemoteGc::UseBrushPattern(const CFbsBitmap *aDevice)
1.370 + {
1.371 + iCommandBuffer->Write<TDrawCode>(ECommandUseBrushPattern);
1.372 + iCommandBuffer->Write<TInt>(aDevice->Handle());
1.373 + }
1.374 +
1.375 +void CRemoteGc::DiscardBrushPattern()
1.376 + {
1.377 + iCommandBuffer->Write<TDrawCode>(ECommandDiscardBrushPattern);
1.378 + }
1.379 +
1.380 +void CRemoteGc::MoveTo(const TPoint &aPoint)
1.381 + {
1.382 + iCommandBuffer->Write<TDrawCode>(ECommandMoveTo);
1.383 + iCommandBuffer->Write<TPoint>(aPoint);
1.384 + }
1.385 +
1.386 +void CRemoteGc::MoveBy(const TPoint &aPoint)
1.387 + {
1.388 + iCommandBuffer->Write<TDrawCode>(ECommandMoveBy);
1.389 + iCommandBuffer->Write<TPoint>(aPoint);
1.390 + }
1.391 +
1.392 +void CRemoteGc::Plot(const TPoint &aPoint)
1.393 + {
1.394 + iCommandBuffer->Write<TDrawCode>(ECommandPlot);
1.395 + iCommandBuffer->Write<TPoint>(aPoint);
1.396 + iBoundingRect.BoundingRect(iDrawRect);
1.397 + }
1.398 +
1.399 +void CRemoteGc::DrawArc(const TRect &aRect,const TPoint &aStart,const TPoint &aEnd)
1.400 + {
1.401 + iCommandBuffer->Write<TDrawCode>(ECommandDrawArc);
1.402 + iCommandBuffer->Write<TRect>(aRect);
1.403 + iCommandBuffer->Write<TPoint>(aStart);
1.404 + iCommandBuffer->Write<TPoint>(aEnd);
1.405 + iBoundingRect.BoundingRect(iDrawRect);
1.406 + }
1.407 +
1.408 +void CRemoteGc::DrawLine(const TPoint &aPoint1,const TPoint &aPoint2)
1.409 + {
1.410 + iCommandBuffer->Write<TDrawCode>(ECommandDrawLine);
1.411 + iCommandBuffer->Write<TPoint>(aPoint1);
1.412 + iCommandBuffer->Write<TPoint>(aPoint2);
1.413 + iBoundingRect.BoundingRect(iDrawRect);
1.414 + }
1.415 +
1.416 +void CRemoteGc::DrawLineTo(const TPoint &aPoint)
1.417 + {
1.418 + iCommandBuffer->Write<TDrawCode>(ECommandDrawLineTo);
1.419 + iCommandBuffer->Write<TPoint>(aPoint);
1.420 + iBoundingRect.BoundingRect(iDrawRect);
1.421 + }
1.422 +
1.423 +void CRemoteGc::DrawLineBy(const TPoint &aPoint)
1.424 + {
1.425 + iCommandBuffer->Write<TDrawCode>(ECommandDrawLineBy);
1.426 + iCommandBuffer->Write<TPoint>(aPoint);
1.427 + iBoundingRect.BoundingRect(iDrawRect);
1.428 + }
1.429 +
1.430 +void CRemoteGc::DrawPolyLine(const CArrayFix<TPoint> *aPointList)
1.431 + {
1.432 + iCommandBuffer->Write<TDrawCode>(ECommandDrawPolyLine);
1.433 + iCommandBuffer->Write<TInt>(aPointList->Count()); // Write number of points
1.434 +
1.435 + const TInt count = aPointList->Count();
1.436 + for(TInt i = 0; i < count; i++)
1.437 + {
1.438 + iCommandBuffer->Write<TPoint>(aPointList->At(i));
1.439 + }
1.440 + iBoundingRect.BoundingRect(iDrawRect);
1.441 + }
1.442 +
1.443 +void CRemoteGc::DrawPolyLine(const TPoint* aPointList, TInt aNumPoints)
1.444 + {
1.445 + iCommandBuffer->Write<TDrawCode>(ECommandDrawPolyLine);
1.446 + iCommandBuffer->Write<TInt>(aNumPoints); // Write number of points
1.447 +
1.448 + for(TInt i = 0; i < aNumPoints; i++)
1.449 + {
1.450 + iCommandBuffer->Write<TPoint>(aPointList[i]);
1.451 + }
1.452 + iBoundingRect.BoundingRect(iDrawRect);
1.453 + }
1.454 +
1.455 +void CRemoteGc::DrawPie(const TRect &aRect,const TPoint &aStart,const TPoint &aEnd)
1.456 + {
1.457 + iCommandBuffer->Write<TDrawCode>(ECommandDrawPie);
1.458 + iCommandBuffer->Write<TRect>(aRect);
1.459 + iCommandBuffer->Write<TPoint>(aStart);
1.460 + iCommandBuffer->Write<TPoint>(aEnd);
1.461 + iBoundingRect.BoundingRect(iDrawRect);
1.462 + }
1.463 +
1.464 +void CRemoteGc::DrawEllipse(const TRect &aRect)
1.465 + {
1.466 + iCommandBuffer->Write<TDrawCode>(ECommandDrawEllipse);
1.467 + iCommandBuffer->Write<TRect>(aRect);
1.468 + iBoundingRect.BoundingRect(iDrawRect);
1.469 + }
1.470 +
1.471 +void CRemoteGc::DrawRect(const TRect &aRect)
1.472 + {
1.473 + iCommandBuffer->Write<TDrawCode>(ECommandDrawRect);
1.474 + iCommandBuffer->Write<TRect>(aRect);
1.475 + iBoundingRect.BoundingRect(iDrawRect);
1.476 + }
1.477 +
1.478 +void CRemoteGc::DrawRoundRect(const TRect &aRect,const TSize &aEllipse)
1.479 + {
1.480 + iCommandBuffer->Write<TDrawCode>(ECommandDrawRoundRect);
1.481 + iCommandBuffer->Write<TRect>(aRect);
1.482 + iCommandBuffer->Write<TSize>(aEllipse);
1.483 + iBoundingRect.BoundingRect(iDrawRect);
1.484 + }
1.485 +
1.486 +TInt CRemoteGc::DrawPolygon(const CArrayFix<TPoint> *aPointList, TFillRule aFillRule)
1.487 + {
1.488 + iCommandBuffer->Write<TDrawCode>(ECommandDrawPolygon);
1.489 + iCommandBuffer->Write<TInt>(aPointList->Count()); // Write number of points
1.490 +
1.491 + for(TInt i = 0; i < aPointList->Count(); i++)
1.492 + {
1.493 + iCommandBuffer->Write<TPoint>(aPointList->At(i));
1.494 + }
1.495 +
1.496 + iCommandBuffer->Write<TFillRule>(aFillRule);
1.497 + iBoundingRect.BoundingRect(iDrawRect);
1.498 + return KErrNone;
1.499 + }
1.500 +
1.501 +TInt CRemoteGc::DrawPolygon(const TPoint* aPointList, TInt aNumPoints, TFillRule aFillRule)
1.502 + {
1.503 + iCommandBuffer->Write<TDrawCode>(ECommandDrawPolygon);
1.504 + iCommandBuffer->Write<TInt>(aNumPoints); // Write number of points
1.505 +
1.506 + for(TInt i = 0; i < aNumPoints; i++)
1.507 + {
1.508 + iCommandBuffer->Write<TPoint>(aPointList[i]);
1.509 + }
1.510 +
1.511 + iCommandBuffer->Write<TFillRule>(aFillRule);
1.512 + iBoundingRect.BoundingRect(iDrawRect);
1.513 + return KErrNone;
1.514 + }
1.515 +
1.516 +void CRemoteGc::DrawBitmap(const TPoint &aTopLeft, const CFbsBitmap *aDevice)
1.517 + {
1.518 + iCommandBuffer->Write<TDrawCode>(ECommandDrawBitmap1);
1.519 + iCommandBuffer->Write<TPoint>(aTopLeft);
1.520 + iCommandBuffer->Write<TInt>(aDevice->Handle());
1.521 + iBoundingRect.BoundingRect(TRect(aTopLeft, aDevice->SizeInPixels()));
1.522 + iHasBitmapCommand = ETrue;
1.523 + }
1.524 +
1.525 +void CRemoteGc::DrawBitmap(const TRect &aDestRect, const CFbsBitmap *aDevice)
1.526 + {
1.527 + iCommandBuffer->Write<TDrawCode>(ECommandDrawBitmap2);
1.528 + iCommandBuffer->Write<TRect>(aDestRect);
1.529 + iCommandBuffer->Write<TInt>(aDevice->Handle());
1.530 + iBoundingRect.BoundingRect(aDestRect);
1.531 + iHasBitmapCommand = ETrue;
1.532 + }
1.533 +
1.534 +void CRemoteGc::DrawBitmap(const TRect &aDestRect, const CFbsBitmap *aDevice, const TRect &aSourceRect)
1.535 + {
1.536 + iCommandBuffer->Write<TDrawCode>(ECommandDrawBitmap3);
1.537 + iCommandBuffer->Write<TRect>(aDestRect);
1.538 + iCommandBuffer->Write<TInt>(aDevice->Handle());
1.539 + iCommandBuffer->Write<TRect>(aSourceRect);
1.540 + iBoundingRect.BoundingRect(aDestRect);
1.541 + iHasBitmapCommand = ETrue;
1.542 + }
1.543 +
1.544 +void CRemoteGc::DrawBitmapMasked(const TRect& aDestRect, const CFbsBitmap* aBitmap, const TRect& aSourceRect, const CFbsBitmap* aMaskBitmap, TBool aInvertMask)
1.545 + {
1.546 + iCommandBuffer->Write<TDrawCode>(ECommandDrawBitmapMasked);
1.547 + iCommandBuffer->Write<TRect>(aDestRect);
1.548 + iCommandBuffer->Write<TInt>(aBitmap->Handle());
1.549 + iCommandBuffer->Write<TRect>(aSourceRect);
1.550 + iCommandBuffer->Write<TInt>(aMaskBitmap->Handle());
1.551 + iCommandBuffer->Write<TBool>(aInvertMask);
1.552 + iBoundingRect.BoundingRect(aDestRect);
1.553 + iHasBitmapCommand = ETrue;
1.554 + }
1.555 +
1.556 +void CRemoteGc::DrawBitmapMasked(const TRect& aDestRect, const CWsBitmap* aBitmap, const TRect& aSourceRect, const CWsBitmap* aMaskBitmap, TBool aInvertMask)
1.557 + {
1.558 + DrawBitmapMasked(aDestRect, reinterpret_cast<const CFbsBitmap*>(aBitmap), aSourceRect, reinterpret_cast<const CFbsBitmap*>(aMaskBitmap), aInvertMask);
1.559 + }
1.560 +
1.561 +void CRemoteGc::DrawText(const TDesC &aBuf,const TPoint &aPos)
1.562 + {
1.563 + iCommandBuffer->Write<TDrawCode>(ECommandDrawText1);
1.564 + iCommandBuffer->WriteText(aBuf);
1.565 + iCommandBuffer->Write<TPoint>(aPos);
1.566 + iBoundingRect.BoundingRect(iDrawRect);
1.567 + }
1.568 +
1.569 +void CRemoteGc::DrawText(const TDesC &aBuf, const TRect &aBox, TInt aBaselineOffset, TTextAlign aHoriz, TInt aLeftMrg)
1.570 + {
1.571 + iCommandBuffer->Write<TDrawCode>(ECommandDrawText2);
1.572 + iCommandBuffer->WriteText(aBuf);
1.573 + iCommandBuffer->Write<TRect>(aBox);
1.574 + iCommandBuffer->Write<TInt>(aBaselineOffset);
1.575 + iCommandBuffer->Write<TTextAlign>(aHoriz);
1.576 + iCommandBuffer->Write<TInt>(aLeftMrg);
1.577 + iBoundingRect.BoundingRect(aBox);
1.578 + }
1.579 +
1.580 +void CRemoteGc::DrawText(const TDesC& aText, const TPoint& aPosition, const TDrawTextParam& aParam)
1.581 + {
1.582 + iCommandBuffer->Write<TDrawCode>(ECommandDrawText3);
1.583 + iCommandBuffer->WriteText(aText);
1.584 + iCommandBuffer->Write<TPoint>(aPosition);
1.585 + iCommandBuffer->Write<TDrawTextParam>(aParam);
1.586 + iBoundingRect.BoundingRect(iDrawRect);
1.587 + }
1.588 +
1.589 +void CRemoteGc::MapColors(const TRect& /*aRect*/, const TRgb* /*aColors*/, TInt /*aNumPairs*/, TBool /*aMapForwards*/)
1.590 + {
1.591 + //deprecated
1.592 + }
1.593 +
1.594 +TInt CRemoteGc::SetClippingRegion(const TRegion &aRegion)
1.595 + {
1.596 + iCommandBuffer->Write<TDrawCode>(ECommandSetClippingRegion);
1.597 +
1.598 + const TInt count = aRegion.Count();
1.599 + iCommandBuffer->Write<TInt>(count);
1.600 +
1.601 + for(TInt i = 0; i < count; i++)
1.602 + {
1.603 + iCommandBuffer->Write<TRect>(aRegion.RectangleList()[i]);
1.604 + }
1.605 +
1.606 + return KErrNone;
1.607 + }
1.608 +
1.609 +void CRemoteGc::CancelClippingRegion()
1.610 + {
1.611 + iCommandBuffer->Write<TDrawCode>(ECommandCancelClippingRegion);
1.612 + }
1.613 +
1.614 +void CRemoteGc::DrawTextVertical(const TDesC& aText, const TPoint& aPos, TBool aUp)
1.615 + {
1.616 + iCommandBuffer->Write<TDrawCode>(ECommandDrawTextVertical1);
1.617 + iCommandBuffer->WriteText(aText);
1.618 + iCommandBuffer->Write<TPoint>(aPos);
1.619 + iCommandBuffer->Write<TBool>(aUp);
1.620 + iBoundingRect.BoundingRect(iDrawRect);
1.621 + }
1.622 +
1.623 +void CRemoteGc::DrawTextVertical(const TDesC& aText, const TRect& aBox, TInt aBaselineOffset, TBool aUp, TTextAlign aVert, TInt aMargin)
1.624 + {
1.625 + iCommandBuffer->Write<TDrawCode>(ECommandDrawTextVertical2);
1.626 + iCommandBuffer->WriteText(aText);
1.627 + iCommandBuffer->Write<TRect>(aBox);
1.628 + iCommandBuffer->Write<TInt>(aBaselineOffset);
1.629 + iCommandBuffer->Write<TBool>(aUp);
1.630 + iCommandBuffer->Write<TTextAlign>(aVert);
1.631 + iCommandBuffer->Write<TInt>(aMargin);
1.632 + iBoundingRect.BoundingRect(aBox);
1.633 + }
1.634 +
1.635 +void CRemoteGc::DrawWsGraphic(const TWsGraphicId& aId,const TRect& aDestRect)
1.636 + {
1.637 + iCommandBuffer->Write<TDrawCode>(ECommandDrawWsGraphic1);
1.638 + iCommandBuffer->Write<TInt>(aId.IsUid()? aId.Uid().iUid: aId.Id());
1.639 + iCommandBuffer->Write<TBool>(aId.IsUid());
1.640 + iCommandBuffer->Write<TRect>(aDestRect);
1.641 + iBoundingRect.BoundingRect(aDestRect);
1.642 + }
1.643 +
1.644 +void CRemoteGc::DrawWsGraphic(const TWsGraphicId& aId,const TRect& aDestRect,const TDesC8& aData)
1.645 + {
1.646 + iCommandBuffer->Write<TDrawCode>(ECommandDrawWsGraphic2);
1.647 + iCommandBuffer->Write<TInt>(aId.IsUid()? aId.Uid().iUid: aId.Id());
1.648 + iCommandBuffer->Write<TBool>(aId.IsUid());
1.649 + iCommandBuffer->Write<TRect>(aDestRect);
1.650 + iCommandBuffer->WriteText(aData);
1.651 + iBoundingRect.BoundingRect(aDestRect);
1.652 + }
1.653 +
1.654 +void CRemoteGc::SetDitherOrigin(const TPoint& /*aPoint*/) //deprecated
1.655 + {
1.656 + // do nothing, does not apply to CBitmapContext which CCommandBuffer is using
1.657 + }
1.658 +
1.659 +void CRemoteGc::SetOpaque(TBool /*aDrawOpaque*/) // deprecated
1.660 + {
1.661 + // overrides to prevent calling CWindowGc::SetOpaque, it's specific to how wserv blends windows content
1.662 + }
1.663 +
1.664 +TInt CRemoteGc::APIExtension(TUid aUid, TAny*& aOutput, TAny* aInput)
1.665 + {
1.666 + if (aUid == KGetUnderlineMetrics)
1.667 + {
1.668 + return APIExGetUnderlineMetrics(aOutput);
1.669 + }
1.670 + else if (aUid == KSetShadowColor)
1.671 + {
1.672 + return APIExSetShadowColor(aInput);
1.673 + }
1.674 + else if (aUid == KDrawTextInContextUid)
1.675 + {
1.676 + TDrawTextInContextInternal* contextParam = (TDrawTextInContextInternal*)aInput;
1.677 + return APIExDrawText(contextParam->iText, &contextParam->iParam, contextParam->iPosition);
1.678 + }
1.679 + else if (aUid == KDrawBoxTextInContextUid)
1.680 + {
1.681 + TDrawTextInContextInternal* contextParam = (TDrawTextInContextInternal*)aInput;
1.682 + return APIExDrawText(contextParam->iText,&contextParam->iParam,contextParam->iBox,contextParam->iBaselineOffset,contextParam->iAlign,contextParam->iMargin);
1.683 + }
1.684 + else if (aUid == KDrawTextInContextVerticalUid)
1.685 + {
1.686 + TDrawTextInContextInternal* contextParam = (TDrawTextInContextInternal*)aInput;
1.687 + return APIExDrawTextVertical(contextParam->iText, &contextParam->iParam, contextParam->iPosition,contextParam->iUp);
1.688 + }
1.689 + else if (aUid == KDrawBoxTextInContextVerticalUid)
1.690 + {
1.691 + TDrawTextInContextInternal* contextParam = (TDrawTextInContextInternal*)aInput;
1.692 + return APIExDrawTextVertical(contextParam->iText,&contextParam->iParam,contextParam->iBox,contextParam->iBaselineOffset,contextParam->iUp,contextParam->iAlign,contextParam->iMargin);
1.693 + }
1.694 + else if (aUid == KApiExtensionInterfaceUid)
1.695 + {
1.696 + return APIExInterface(aOutput, *static_cast<TUid*>(aInput));
1.697 + }
1.698 + /* Future cases may be placed here later.*/
1.699 + else
1.700 + {
1.701 + return CBitmapContext::APIExtension(aUid, aOutput, aInput);
1.702 + }
1.703 + }
1.704 +
1.705 +TInt CRemoteGc::APIExGetUnderlineMetrics(TAny*& aOutput)
1.706 + {
1.707 + const TInt width = Max(iFont->HeightInPixels() / 10,1);
1.708 + TTwoTInt* ptr = (TTwoTInt*)aOutput;
1.709 + ptr->iTop = 1 + width / 2;
1.710 + ptr->iBottom = (ptr->iTop) + width;
1.711 + return KErrNone;
1.712 + }
1.713 +
1.714 +TInt CRemoteGc::APIExSetShadowColor(TAny* aShadowColor)
1.715 + {
1.716 + const TRgb shadowColor = *(reinterpret_cast<TRgb*> (aShadowColor));
1.717 + iCommandBuffer->Write<TDrawCode>(ECommandSetShadowColor);
1.718 + iCommandBuffer->Write<TRgb>(shadowColor);
1.719 + iShadowColor = shadowColor;
1.720 + return KErrNone;
1.721 + }
1.722 +
1.723 +TInt CRemoteGc::APIExGetShadowColor(TAny*& aOutput)
1.724 + {
1.725 + TRgb* ptr = (TRgb*)aOutput;
1.726 + ptr->SetInternal(iShadowColor.Internal());
1.727 + return KErrNone;
1.728 + }
1.729 +
1.730 +TInt CRemoteGc::APIExDrawText(const TDesC &aBuf,const TTextParameters* aParam,const TPoint &aPos)
1.731 + {
1.732 + iCommandBuffer->Write<TDrawCode>(ECommandDrawText4);
1.733 + iCommandBuffer->WriteText(aBuf);
1.734 + iCommandBuffer->Write<TTextParameters>(*aParam);
1.735 + iCommandBuffer->Write<TPoint>(aPos);
1.736 + iBoundingRect.BoundingRect(iDrawRect);
1.737 + return KErrNone;
1.738 + }
1.739 +
1.740 +TInt CRemoteGc::APIExDrawText(const TDesC &aBuf,const TTextParameters* aParam,const TRect &aBox,TInt aBaselineOffset,TTextAlign aHoriz,TInt aLeftMrg)
1.741 + {
1.742 + iCommandBuffer->Write<TDrawCode>(ECommandDrawText5);
1.743 + iCommandBuffer->WriteText(aBuf);
1.744 + iCommandBuffer->Write<TTextParameters>(*aParam);
1.745 + iCommandBuffer->Write<TRect>(aBox);
1.746 + iCommandBuffer->Write<TInt>(aBaselineOffset);
1.747 + iCommandBuffer->Write<TTextAlign>(aHoriz);
1.748 + iCommandBuffer->Write<TInt>(aLeftMrg);
1.749 + iBoundingRect.BoundingRect(aBox);
1.750 + return KErrNone;
1.751 + }
1.752 +
1.753 +TInt CRemoteGc::APIExDrawTextVertical(const TDesC& aText,const TTextParameters* aParam,const TPoint& aPos,TBool aUp)
1.754 + {
1.755 + iCommandBuffer->Write<TDrawCode>(ECommandDrawTextVertical3);
1.756 + iCommandBuffer->WriteText(aText);
1.757 + iCommandBuffer->Write<TTextParameters>(*aParam);
1.758 + iCommandBuffer->Write<TPoint>(aPos);
1.759 + iCommandBuffer->Write<TBool>(aUp);
1.760 + iBoundingRect.BoundingRect(iDrawRect);
1.761 + return KErrNone;
1.762 + }
1.763 +
1.764 +TInt CRemoteGc::APIExDrawTextVertical(const TDesC& aText,const TTextParameters* aParam,const TRect& aBox,TInt aBaselineOffset,TBool aUp,TTextAlign aVert,TInt aMargin)
1.765 + {
1.766 + iCommandBuffer->Write<TDrawCode>(ECommandDrawTextVertical4);
1.767 + iCommandBuffer->WriteText(aText);
1.768 + iCommandBuffer->Write<TTextParameters>(*aParam);
1.769 + iCommandBuffer->Write<TRect>(aBox);
1.770 + iCommandBuffer->Write<TInt>(aBaselineOffset);
1.771 + iCommandBuffer->Write<TBool>(aUp);
1.772 + iCommandBuffer->Write<TTextAlign>(aVert);
1.773 + iCommandBuffer->Write<TInt>(aMargin);
1.774 + iBoundingRect.BoundingRect(aBox);
1.775 + return KErrNone;
1.776 + }
1.777 +
1.778 +TInt CRemoteGc::APIExInterface(TAny*& aInterface, TUid aInterfaceId)
1.779 + {
1.780 + if(aInterfaceId == KMWsDrawResourceInterfaceUid)
1.781 + {
1.782 + aInterface = static_cast<MWsDrawResource*>(iRemoteGcPimpl);
1.783 + return KErrNone;
1.784 + }
1.785 + return KErrNotSupported;
1.786 + }
1.787 +
1.788 +void CRemoteGc::DrawResource(const TPoint& aPos, const RWsDrawableSource& aSource, CWindowGc::TGraphicsRotation aRotation)
1.789 + {
1.790 + iCommandBuffer->Write<TDrawCode>(ECommandDrawResourceToPos);
1.791 + iCommandBuffer->Write<TSgDrawableId>(aSource.DrawableId());
1.792 + iCommandBuffer->Write<TInt>(aSource.ScreenNumber());
1.793 + iCommandBuffer->Write<TPoint>(aPos);
1.794 + iCommandBuffer->Write<CWindowGc::TGraphicsRotation>(aRotation);
1.795 + iBoundingRect.BoundingRect(iDrawRect);
1.796 + iHasBitmapCommand = ETrue;
1.797 + }
1.798 +
1.799 +void CRemoteGc::DrawResource(const TRect& aDestRect, const RWsDrawableSource& aSource, CWindowGc::TGraphicsRotation aRotation)
1.800 + {
1.801 + iCommandBuffer->Write<TDrawCode>(ECommandDrawResourceToRect);
1.802 + iCommandBuffer->Write<TSgDrawableId>(aSource.DrawableId());
1.803 + iCommandBuffer->Write<TInt>(aSource.ScreenNumber());
1.804 + iCommandBuffer->Write<TRect>(aDestRect);
1.805 + iCommandBuffer->Write<CWindowGc::TGraphicsRotation>(aRotation);
1.806 + iBoundingRect.BoundingRect(aDestRect);
1.807 + iHasBitmapCommand = ETrue;
1.808 + }
1.809 +
1.810 +void CRemoteGc::DrawResource(const TRect& aDestRect, const RWsDrawableSource& aSource, const TRect& aSrcRect, CWindowGc::TGraphicsRotation aRotation)
1.811 + {
1.812 + iCommandBuffer->Write<TDrawCode>(ECommandDrawResourceFromRectToRect);
1.813 + iCommandBuffer->Write<TSgDrawableId>(aSource.DrawableId());
1.814 + iCommandBuffer->Write<TInt>(aSource.ScreenNumber());
1.815 + iCommandBuffer->Write<TRect>(aDestRect);
1.816 + iCommandBuffer->Write<TRect>(aSrcRect);
1.817 + iCommandBuffer->Write<CWindowGc::TGraphicsRotation>(aRotation);
1.818 + iBoundingRect.BoundingRect(aDestRect);
1.819 + iHasBitmapCommand = ETrue;
1.820 + }
1.821 +
1.822 +void CRemoteGc::DrawResource(const TRect& aDestRect, const RWsDrawableSource& aSource, const TDesC8& aParam)
1.823 + {
1.824 + iCommandBuffer->Write<TDrawCode>(ECommandDrawResourceWithData);
1.825 + iCommandBuffer->Write<TSgDrawableId>(aSource.DrawableId());
1.826 + iCommandBuffer->Write<TInt>(aSource.ScreenNumber());
1.827 + iCommandBuffer->Write<TRect>(aDestRect);
1.828 + iCommandBuffer->WriteText(aParam);
1.829 + iBoundingRect.BoundingRect(aDestRect);
1.830 + iHasBitmapCommand = ETrue;
1.831 + }
1.832 +