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 #undef SYMBIAN_GRAPHICS_GCE
18 #include "wsgraphicdrawercontext.h"
19 #include "stdgraphictestdrawer.h"
22 MWsGraphicDrawerContext* CWsGraphicDrawerNonNgaContext::NewL()
24 return new(ELeave) CWsGraphicDrawerNonNgaContext();
27 void CWsGraphicDrawerNonNgaContext::Destroy()
32 MWsClient& CWsGraphicDrawerNonNgaContext::Client(MWsGc& aGc)
37 MWsScreen& CWsGraphicDrawerNonNgaContext::Screen(MWsGc& aGc)
42 const TTime& CWsGraphicDrawerNonNgaContext::Now(MWsGc& aGc) const
47 void CWsGraphicDrawerNonNgaContext::ScheduleAnimation(MWsGc& aGc, const TRect& aRect,const TTimeIntervalMicroSeconds& aFromNow)
49 aGc.ScheduleAnimation(aRect, aFromNow);
52 void CWsGraphicDrawerNonNgaContext::ScheduleAnimation(MWsGc& aGc, const TRect& aRect,const TTimeIntervalMicroSeconds& aFromNow,const TTimeIntervalMicroSeconds& aFreq,const TTimeIntervalMicroSeconds& aStop)
54 aGc.ScheduleAnimation(aRect, aFromNow, aFreq, aStop);
57 void CWsGraphicDrawerNonNgaContext::SetGcOrigin(MWsGc& aGc, const TPoint& aOrigin)
59 aGc.SetGcOrigin(aOrigin);
62 TInt CWsGraphicDrawerNonNgaContext::Push(MWsGc& aGc) const
64 return aGc.PushBitGcSettings();
67 void CWsGraphicDrawerNonNgaContext::Pop(MWsGc& aGc) const
69 aGc.PopBitGcSettings();
72 void CWsGraphicDrawerNonNgaContext::DrawBitmap(MWsGc& aGc, const TPoint& aDestPos, const CFbsBitmap* aSourceBitmap, const TRect& aSourceRect, const CFbsBitmap* aMaskBitmap) const
74 CFbsBitGc& bitGc = aGc.BitGc();
77 bitGc.BitBltMasked(aDestPos, aSourceBitmap, aSourceRect, aMaskBitmap, EFalse);
81 bitGc.BitBlt(aDestPos, aSourceBitmap, aSourceRect);
85 void CWsGraphicDrawerNonNgaContext::DrawFrameRate(MWsGc& aGc, const TRect& aRect, const CFrameRate& aFps) const
87 CFbsBitGc& bitGc = aGc.BitGc();
88 bitGc.SetDrawMode(CGraphicsContext::EDrawModePEN);
89 bitGc.SetPenStyle(CGraphicsContext::ENullPen);
90 bitGc.SetBrushStyle(CGraphicsContext::ENullBrush);
92 if ((aFps.CountSamples() > 1) && bitGc.IsFontUsed())
95 buf.AppendNum(aFps.Fps());
96 bitGc.SetPenColor(KRgbRed);
97 bitGc.DrawText(buf,NULL,TPoint(aRect.iTl.iX,aRect.iBr.iY));