os/graphics/windowing/windowserver/stdgraphic/wsgraphicdrawernonngacontext.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/stdgraphic/wsgraphicdrawernonngacontext.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,99 @@
     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 +#undef SYMBIAN_GRAPHICS_GCE
    1.20 +
    1.21 +#include "wsgraphicdrawercontext.h"
    1.22 +#include "stdgraphictestdrawer.h"
    1.23 +#include <bitstd.h>
    1.24 +
    1.25 +MWsGraphicDrawerContext* CWsGraphicDrawerNonNgaContext::NewL()
    1.26 +	{
    1.27 +	return new(ELeave) CWsGraphicDrawerNonNgaContext();
    1.28 +	}
    1.29 +
    1.30 +void CWsGraphicDrawerNonNgaContext::Destroy()
    1.31 +	{
    1.32 +	delete this;
    1.33 +	}
    1.34 +
    1.35 +MWsClient& CWsGraphicDrawerNonNgaContext::Client(MWsGc& aGc)
    1.36 +	{
    1.37 +	return aGc.Client();
    1.38 +	}
    1.39 +
    1.40 +MWsScreen& CWsGraphicDrawerNonNgaContext::Screen(MWsGc& aGc)
    1.41 +	{
    1.42 +	return aGc.Screen();
    1.43 +	}
    1.44 +
    1.45 +const TTime& CWsGraphicDrawerNonNgaContext::Now(MWsGc& aGc) const
    1.46 +	{
    1.47 +	return aGc.Now();
    1.48 +	}
    1.49 +
    1.50 +void CWsGraphicDrawerNonNgaContext::ScheduleAnimation(MWsGc& aGc, const TRect& aRect,const TTimeIntervalMicroSeconds& aFromNow)
    1.51 +	{
    1.52 +	aGc.ScheduleAnimation(aRect, aFromNow);
    1.53 +	}
    1.54 +
    1.55 +void CWsGraphicDrawerNonNgaContext::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 CWsGraphicDrawerNonNgaContext::SetGcOrigin(MWsGc& aGc, const TPoint& aOrigin)
    1.61 +	{
    1.62 +	aGc.SetGcOrigin(aOrigin);
    1.63 +	}
    1.64 +
    1.65 +TInt CWsGraphicDrawerNonNgaContext::Push(MWsGc& aGc) const
    1.66 +	{
    1.67 +	return aGc.PushBitGcSettings();
    1.68 +	}
    1.69 +
    1.70 +void CWsGraphicDrawerNonNgaContext::Pop(MWsGc& aGc) const
    1.71 +	{
    1.72 +	aGc.PopBitGcSettings();
    1.73 +	}
    1.74 +
    1.75 +void CWsGraphicDrawerNonNgaContext::DrawBitmap(MWsGc& aGc, const TPoint& aDestPos, const CFbsBitmap* aSourceBitmap, const TRect& aSourceRect, const CFbsBitmap* aMaskBitmap) const
    1.76 +	{
    1.77 +	CFbsBitGc& bitGc = aGc.BitGc();
    1.78 +	if (aMaskBitmap)
    1.79 +		{
    1.80 +		bitGc.BitBltMasked(aDestPos, aSourceBitmap, aSourceRect, aMaskBitmap, EFalse);
    1.81 +		}
    1.82 +	else
    1.83 +		{
    1.84 +		bitGc.BitBlt(aDestPos, aSourceBitmap, aSourceRect);
    1.85 +		}
    1.86 +	}
    1.87 +
    1.88 +void CWsGraphicDrawerNonNgaContext::DrawFrameRate(MWsGc& aGc, const TRect& aRect, const CFrameRate& aFps) const
    1.89 +	{
    1.90 +	CFbsBitGc& bitGc = aGc.BitGc();
    1.91 +	bitGc.SetDrawMode(CGraphicsContext::EDrawModePEN);
    1.92 +	bitGc.SetPenStyle(CGraphicsContext::ENullPen);
    1.93 +	bitGc.SetBrushStyle(CGraphicsContext::ENullBrush);
    1.94 +
    1.95 +	if ((aFps.CountSamples() > 1) && bitGc.IsFontUsed())
    1.96 +		{
    1.97 +		TBuf<20> buf;
    1.98 +		buf.AppendNum(aFps.Fps());
    1.99 +		bitGc.SetPenColor(KRgbRed);
   1.100 +		bitGc.DrawText(buf,NULL,TPoint(aRect.iTl.iX,aRect.iBr.iY));
   1.101 +		}
   1.102 +	}