Update contrib.
1 // Copyright (c) 2008-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 #define SYMBIAN_GRAPHICS_GCE
18 #include "wsgraphicdrawercontext.h"
19 #include "stdgraphictestdrawer.h"
20 #include <graphics/wsgraphicscontext.h>
22 MWsGraphicDrawerContext* CWsGraphicDrawerNgaContext::NewL()
24 return new(ELeave) CWsGraphicDrawerNgaContext();
27 void CWsGraphicDrawerNgaContext::Destroy()
32 MWsClient& CWsGraphicDrawerNgaContext::Client(MWsGc& aGc)
37 MWsScreen& CWsGraphicDrawerNgaContext::Screen(MWsGc& aGc)
42 const TTime& CWsGraphicDrawerNgaContext::Now(MWsGc& aGc) const
47 void CWsGraphicDrawerNgaContext::ScheduleAnimation(MWsGc& aGc, const TRect& aRect,const TTimeIntervalMicroSeconds& aFromNow)
49 aGc.ScheduleAnimation(aRect, aFromNow);
52 void CWsGraphicDrawerNgaContext::ScheduleAnimation(MWsGc& aGc, const TRect& aRect,const TTimeIntervalMicroSeconds& aFromNow,const TTimeIntervalMicroSeconds& aFreq,const TTimeIntervalMicroSeconds& aStop)
54 aGc.ScheduleAnimation(aRect, aFromNow, aFreq, aStop);
57 void CWsGraphicDrawerNgaContext::SetGcOrigin(MWsGc& aGc, const TPoint& aOrigin)
59 aGc.SetGcOrigin(aOrigin);
62 TInt CWsGraphicDrawerNgaContext::Push(MWsGc& aGc) const
64 MWsGraphicsContext* context = aGc.ObjectInterface<MWsGraphicsContext>();
67 return context->Push();
69 return KErrNotSupported;
72 void CWsGraphicDrawerNgaContext::Pop(MWsGc& aGc) const
74 MWsGraphicsContext* context = aGc.ObjectInterface<MWsGraphicsContext>();
81 void CWsGraphicDrawerNgaContext::DrawBitmap(MWsGc& aGc, const TPoint& aDestPos, const CFbsBitmap* aSourceBitmap, const TRect& aSourceRect, const CFbsBitmap* aMaskBitmap) const
83 MWsGraphicsContext* context = aGc.ObjectInterface<MWsGraphicsContext>();
88 context->BitBltMasked(aDestPos, *aSourceBitmap, aSourceRect, *aMaskBitmap, EFalse);
92 context->BitBlt(aDestPos, *aSourceBitmap, aSourceRect);
97 void CWsGraphicDrawerNgaContext::DrawFrameRate(MWsGc& aGc, const TRect& aRect, const CFrameRate& aFps) const
99 MWsGraphicsContext* context = aGc.ObjectInterface<MWsGraphicsContext>();
102 context->SetDrawMode(MWsGraphicsContext::EDrawModePEN);
103 context->SetPenStyle(MWsGraphicsContext::ENullPen);
104 context->SetBrushStyle(MWsGraphicsContext::ENullBrush);
106 if ((aFps.CountSamples() > 1) && context->HasFont())
109 buf.AppendNum(aFps.Fps());
110 context->SetPenColor(KRgbRed);
111 context->DrawText(buf,NULL,TPoint(aRect.iTl.iX,aRect.iBr.iY));