1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/stdgraphic/wsgraphicdrawerngacontext.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,114 @@
1.4 +// Copyright (c) 2008-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 +#define SYMBIAN_GRAPHICS_GCE
1.20 +
1.21 +#include "wsgraphicdrawercontext.h"
1.22 +#include "stdgraphictestdrawer.h"
1.23 +#include <graphics/wsgraphicscontext.h>
1.24 +
1.25 +MWsGraphicDrawerContext* CWsGraphicDrawerNgaContext::NewL()
1.26 + {
1.27 + return new(ELeave) CWsGraphicDrawerNgaContext();
1.28 + }
1.29 +
1.30 +void CWsGraphicDrawerNgaContext::Destroy()
1.31 + {
1.32 + delete this;
1.33 + }
1.34 +
1.35 +MWsClient& CWsGraphicDrawerNgaContext::Client(MWsGc& aGc)
1.36 + {
1.37 + return aGc.Client();
1.38 + }
1.39 +
1.40 +MWsScreen& CWsGraphicDrawerNgaContext::Screen(MWsGc& aGc)
1.41 + {
1.42 + return aGc.Screen();
1.43 + }
1.44 +
1.45 +const TTime& CWsGraphicDrawerNgaContext::Now(MWsGc& aGc) const
1.46 + {
1.47 + return aGc.Now();
1.48 + }
1.49 +
1.50 +void CWsGraphicDrawerNgaContext::ScheduleAnimation(MWsGc& aGc, const TRect& aRect,const TTimeIntervalMicroSeconds& aFromNow)
1.51 + {
1.52 + aGc.ScheduleAnimation(aRect, aFromNow);
1.53 + }
1.54 +
1.55 +void CWsGraphicDrawerNgaContext::ScheduleAnimation(MWsGc& aGc, const TRect& aRect,const TTimeIntervalMicroSeconds& aFromNow,const TTimeIntervalMicroSeconds& aFreq,const TTimeIntervalMicroSeconds& aStop)
1.56 + {
1.57 + aGc.ScheduleAnimation(aRect, aFromNow, aFreq, aStop);
1.58 + }
1.59 +
1.60 +void CWsGraphicDrawerNgaContext::SetGcOrigin(MWsGc& aGc, const TPoint& aOrigin)
1.61 + {
1.62 + aGc.SetGcOrigin(aOrigin);
1.63 + }
1.64 +
1.65 +TInt CWsGraphicDrawerNgaContext::Push(MWsGc& aGc) const
1.66 + {
1.67 + MWsGraphicsContext* context = aGc.ObjectInterface<MWsGraphicsContext>();
1.68 + if (context)
1.69 + {
1.70 + return context->Push();
1.71 + }
1.72 + return KErrNotSupported;
1.73 + }
1.74 +
1.75 +void CWsGraphicDrawerNgaContext::Pop(MWsGc& aGc) const
1.76 + {
1.77 + MWsGraphicsContext* context = aGc.ObjectInterface<MWsGraphicsContext>();
1.78 + if (context)
1.79 + {
1.80 + context->Pop();
1.81 + }
1.82 + }
1.83 +
1.84 +void CWsGraphicDrawerNgaContext::DrawBitmap(MWsGc& aGc, const TPoint& aDestPos, const CFbsBitmap* aSourceBitmap, const TRect& aSourceRect, const CFbsBitmap* aMaskBitmap) const
1.85 + {
1.86 + MWsGraphicsContext* context = aGc.ObjectInterface<MWsGraphicsContext>();
1.87 + if (context)
1.88 + {
1.89 + if (aMaskBitmap)
1.90 + {
1.91 + context->BitBltMasked(aDestPos, *aSourceBitmap, aSourceRect, *aMaskBitmap, EFalse);
1.92 + }
1.93 + else
1.94 + {
1.95 + context->BitBlt(aDestPos, *aSourceBitmap, aSourceRect);
1.96 + }
1.97 + }
1.98 + }
1.99 +
1.100 +void CWsGraphicDrawerNgaContext::DrawFrameRate(MWsGc& aGc, const TRect& aRect, const CFrameRate& aFps) const
1.101 + {
1.102 + MWsGraphicsContext* context = aGc.ObjectInterface<MWsGraphicsContext>();
1.103 + if (context)
1.104 + {
1.105 + context->SetDrawMode(MWsGraphicsContext::EDrawModePEN);
1.106 + context->SetPenStyle(MWsGraphicsContext::ENullPen);
1.107 + context->SetBrushStyle(MWsGraphicsContext::ENullBrush);
1.108 +
1.109 + if ((aFps.CountSamples() > 1) && context->HasFont())
1.110 + {
1.111 + TBuf<20> buf;
1.112 + buf.AppendNum(aFps.Fps());
1.113 + context->SetPenColor(KRgbRed);
1.114 + context->DrawText(buf,NULL,TPoint(aRect.iTl.iX,aRect.iBr.iY));
1.115 + }
1.116 + }
1.117 + }