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 |
#define SYMBIAN_GRAPHICS_GCE
|
sl@0
|
17 |
|
sl@0
|
18 |
#include "wsgraphicdrawercontext.h"
|
sl@0
|
19 |
#include "stdgraphictestdrawer.h"
|
sl@0
|
20 |
#include <graphics/wsgraphicscontext.h>
|
sl@0
|
21 |
|
sl@0
|
22 |
MWsGraphicDrawerContext* CWsGraphicDrawerNgaContext::NewL()
|
sl@0
|
23 |
{
|
sl@0
|
24 |
return new(ELeave) CWsGraphicDrawerNgaContext();
|
sl@0
|
25 |
}
|
sl@0
|
26 |
|
sl@0
|
27 |
void CWsGraphicDrawerNgaContext::Destroy()
|
sl@0
|
28 |
{
|
sl@0
|
29 |
delete this;
|
sl@0
|
30 |
}
|
sl@0
|
31 |
|
sl@0
|
32 |
MWsClient& CWsGraphicDrawerNgaContext::Client(MWsGc& aGc)
|
sl@0
|
33 |
{
|
sl@0
|
34 |
return aGc.Client();
|
sl@0
|
35 |
}
|
sl@0
|
36 |
|
sl@0
|
37 |
MWsScreen& CWsGraphicDrawerNgaContext::Screen(MWsGc& aGc)
|
sl@0
|
38 |
{
|
sl@0
|
39 |
return aGc.Screen();
|
sl@0
|
40 |
}
|
sl@0
|
41 |
|
sl@0
|
42 |
const TTime& CWsGraphicDrawerNgaContext::Now(MWsGc& aGc) const
|
sl@0
|
43 |
{
|
sl@0
|
44 |
return aGc.Now();
|
sl@0
|
45 |
}
|
sl@0
|
46 |
|
sl@0
|
47 |
void CWsGraphicDrawerNgaContext::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 CWsGraphicDrawerNgaContext::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 CWsGraphicDrawerNgaContext::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 CWsGraphicDrawerNgaContext::Push(MWsGc& aGc) const
|
sl@0
|
63 |
{
|
sl@0
|
64 |
MWsGraphicsContext* context = aGc.ObjectInterface<MWsGraphicsContext>();
|
sl@0
|
65 |
if (context)
|
sl@0
|
66 |
{
|
sl@0
|
67 |
return context->Push();
|
sl@0
|
68 |
}
|
sl@0
|
69 |
return KErrNotSupported;
|
sl@0
|
70 |
}
|
sl@0
|
71 |
|
sl@0
|
72 |
void CWsGraphicDrawerNgaContext::Pop(MWsGc& aGc) const
|
sl@0
|
73 |
{
|
sl@0
|
74 |
MWsGraphicsContext* context = aGc.ObjectInterface<MWsGraphicsContext>();
|
sl@0
|
75 |
if (context)
|
sl@0
|
76 |
{
|
sl@0
|
77 |
context->Pop();
|
sl@0
|
78 |
}
|
sl@0
|
79 |
}
|
sl@0
|
80 |
|
sl@0
|
81 |
void CWsGraphicDrawerNgaContext::DrawBitmap(MWsGc& aGc, const TPoint& aDestPos, const CFbsBitmap* aSourceBitmap, const TRect& aSourceRect, const CFbsBitmap* aMaskBitmap) const
|
sl@0
|
82 |
{
|
sl@0
|
83 |
MWsGraphicsContext* context = aGc.ObjectInterface<MWsGraphicsContext>();
|
sl@0
|
84 |
if (context)
|
sl@0
|
85 |
{
|
sl@0
|
86 |
if (aMaskBitmap)
|
sl@0
|
87 |
{
|
sl@0
|
88 |
context->BitBltMasked(aDestPos, *aSourceBitmap, aSourceRect, *aMaskBitmap, EFalse);
|
sl@0
|
89 |
}
|
sl@0
|
90 |
else
|
sl@0
|
91 |
{
|
sl@0
|
92 |
context->BitBlt(aDestPos, *aSourceBitmap, aSourceRect);
|
sl@0
|
93 |
}
|
sl@0
|
94 |
}
|
sl@0
|
95 |
}
|
sl@0
|
96 |
|
sl@0
|
97 |
void CWsGraphicDrawerNgaContext::DrawFrameRate(MWsGc& aGc, const TRect& aRect, const CFrameRate& aFps) const
|
sl@0
|
98 |
{
|
sl@0
|
99 |
MWsGraphicsContext* context = aGc.ObjectInterface<MWsGraphicsContext>();
|
sl@0
|
100 |
if (context)
|
sl@0
|
101 |
{
|
sl@0
|
102 |
context->SetDrawMode(MWsGraphicsContext::EDrawModePEN);
|
sl@0
|
103 |
context->SetPenStyle(MWsGraphicsContext::ENullPen);
|
sl@0
|
104 |
context->SetBrushStyle(MWsGraphicsContext::ENullBrush);
|
sl@0
|
105 |
|
sl@0
|
106 |
if ((aFps.CountSamples() > 1) && context->HasFont())
|
sl@0
|
107 |
{
|
sl@0
|
108 |
TBuf<20> buf;
|
sl@0
|
109 |
buf.AppendNum(aFps.Fps());
|
sl@0
|
110 |
context->SetPenColor(KRgbRed);
|
sl@0
|
111 |
context->DrawText(buf,NULL,TPoint(aRect.iTl.iX,aRect.iBr.iY));
|
sl@0
|
112 |
}
|
sl@0
|
113 |
}
|
sl@0
|
114 |
}
|