Update contrib.
1 // Copyright (c) 1995-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 "stdgraphicdrawer.h"
17 #include "wsgraphicdrawercontext.h"
21 CWsGraphicDrawerBitmap* CWsGraphicDrawerBitmap::CreateL()
23 return new(ELeave) CWsGraphicDrawerBitmap;
26 void CWsGraphicDrawerBitmap::ConstructL(MWsGraphicDrawerEnvironment& aEnv,const TGraphicDrawerId& aId,MWsClient& aOwner,const TDesC8& aData)
28 TInt bitmapHandle = 0;
30 RDesReadStream in(aData);
32 bitmapHandle = in.ReadInt32L();
33 maskHandle = in.ReadInt32L();
35 BaseConstructL(aEnv,aId,aOwner);
38 iBitmap = new(ELeave) CFbsBitmap;
39 User::LeaveIfError(iBitmap->Duplicate(bitmapHandle));
42 iMask = new(ELeave) CFbsBitmap;
43 User::LeaveIfError(iMask->Duplicate(maskHandle));
46 if (!(aEnv.Screen(0)->ResolveObjectInterface(KMWsCompositionContext) || aEnv.Screen(0)->ResolveObjectInterface(KMWsScene)))
48 iContext = CWsGraphicDrawerNonNgaContext::NewL();
52 iContext = CWsGraphicDrawerNgaContext::NewL();
56 CWsGraphicDrawerBitmap::CWsGraphicDrawerBitmap()
60 CWsGraphicDrawerBitmap::~CWsGraphicDrawerBitmap()
71 void CWsGraphicDrawerBitmap::DoDraw(MWsGc& aGc,const TRect& aRect,const TDesC8& /*aData*/) const
75 if (KErrNone != iContext->Push(aGc))
79 TRect bmpRect(aRect.iTl,iBitmap->SizeInPixels());
80 bmpRect.Intersection(aRect);
81 iContext->DrawBitmap(aGc, aRect.iTl, iBitmap, bmpRect.Size(), iMask);
86 void CWsGraphicDrawerBitmap::HandleMessage(const TDesC8& /*aData*/)