os/graphics/windowing/windowserver/stdgraphic/wsgraphicdrawernonngacontext.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#undef SYMBIAN_GRAPHICS_GCE
sl@0
    17
sl@0
    18
#include "wsgraphicdrawercontext.h"
sl@0
    19
#include "stdgraphictestdrawer.h"
sl@0
    20
#include <bitstd.h>
sl@0
    21
sl@0
    22
MWsGraphicDrawerContext* CWsGraphicDrawerNonNgaContext::NewL()
sl@0
    23
	{
sl@0
    24
	return new(ELeave) CWsGraphicDrawerNonNgaContext();
sl@0
    25
	}
sl@0
    26
sl@0
    27
void CWsGraphicDrawerNonNgaContext::Destroy()
sl@0
    28
	{
sl@0
    29
	delete this;
sl@0
    30
	}
sl@0
    31
sl@0
    32
MWsClient& CWsGraphicDrawerNonNgaContext::Client(MWsGc& aGc)
sl@0
    33
	{
sl@0
    34
	return aGc.Client();
sl@0
    35
	}
sl@0
    36
sl@0
    37
MWsScreen& CWsGraphicDrawerNonNgaContext::Screen(MWsGc& aGc)
sl@0
    38
	{
sl@0
    39
	return aGc.Screen();
sl@0
    40
	}
sl@0
    41
sl@0
    42
const TTime& CWsGraphicDrawerNonNgaContext::Now(MWsGc& aGc) const
sl@0
    43
	{
sl@0
    44
	return aGc.Now();
sl@0
    45
	}
sl@0
    46
sl@0
    47
void CWsGraphicDrawerNonNgaContext::ScheduleAnimation(MWsGc& aGc, const TRect& aRect,const TTimeIntervalMicroSeconds& aFromNow)
sl@0
    48
	{
sl@0
    49
	aGc.ScheduleAnimation(aRect, aFromNow);
sl@0
    50
	}
sl@0
    51
sl@0
    52
void CWsGraphicDrawerNonNgaContext::ScheduleAnimation(MWsGc& aGc, const TRect& aRect,const TTimeIntervalMicroSeconds& aFromNow,const TTimeIntervalMicroSeconds& aFreq,const TTimeIntervalMicroSeconds& aStop)
sl@0
    53
	{
sl@0
    54
	aGc.ScheduleAnimation(aRect, aFromNow, aFreq, aStop);
sl@0
    55
	}
sl@0
    56
sl@0
    57
void CWsGraphicDrawerNonNgaContext::SetGcOrigin(MWsGc& aGc, const TPoint& aOrigin)
sl@0
    58
	{
sl@0
    59
	aGc.SetGcOrigin(aOrigin);
sl@0
    60
	}
sl@0
    61
sl@0
    62
TInt CWsGraphicDrawerNonNgaContext::Push(MWsGc& aGc) const
sl@0
    63
	{
sl@0
    64
	return aGc.PushBitGcSettings();
sl@0
    65
	}
sl@0
    66
sl@0
    67
void CWsGraphicDrawerNonNgaContext::Pop(MWsGc& aGc) const
sl@0
    68
	{
sl@0
    69
	aGc.PopBitGcSettings();
sl@0
    70
	}
sl@0
    71
sl@0
    72
void CWsGraphicDrawerNonNgaContext::DrawBitmap(MWsGc& aGc, const TPoint& aDestPos, const CFbsBitmap* aSourceBitmap, const TRect& aSourceRect, const CFbsBitmap* aMaskBitmap) const
sl@0
    73
	{
sl@0
    74
	CFbsBitGc& bitGc = aGc.BitGc();
sl@0
    75
	if (aMaskBitmap)
sl@0
    76
		{
sl@0
    77
		bitGc.BitBltMasked(aDestPos, aSourceBitmap, aSourceRect, aMaskBitmap, EFalse);
sl@0
    78
		}
sl@0
    79
	else
sl@0
    80
		{
sl@0
    81
		bitGc.BitBlt(aDestPos, aSourceBitmap, aSourceRect);
sl@0
    82
		}
sl@0
    83
	}
sl@0
    84
sl@0
    85
void CWsGraphicDrawerNonNgaContext::DrawFrameRate(MWsGc& aGc, const TRect& aRect, const CFrameRate& aFps) const
sl@0
    86
	{
sl@0
    87
	CFbsBitGc& bitGc = aGc.BitGc();
sl@0
    88
	bitGc.SetDrawMode(CGraphicsContext::EDrawModePEN);
sl@0
    89
	bitGc.SetPenStyle(CGraphicsContext::ENullPen);
sl@0
    90
	bitGc.SetBrushStyle(CGraphicsContext::ENullBrush);
sl@0
    91
sl@0
    92
	if ((aFps.CountSamples() > 1) && bitGc.IsFontUsed())
sl@0
    93
		{
sl@0
    94
		TBuf<20> buf;
sl@0
    95
		buf.AppendNum(aFps.Fps());
sl@0
    96
		bitGc.SetPenColor(KRgbRed);
sl@0
    97
		bitGc.DrawText(buf,NULL,TPoint(aRect.iTl.iX,aRect.iBr.iY));
sl@0
    98
		}
sl@0
    99
	}