First public contribution.
1 // Copyright (c) 1995-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.
14 // STDGRAPHICTESTDRAWER.CPP
18 #ifndef __STDGRAPHICDRAWERTEST_H__
19 #define __STDGRAPHICDRAWERTEST_H__
22 #include "graphics/WSGRAPHICDRAWER.H"
23 #include <graphics/WSGRAPHICDRAWERINTERFACE.H>
25 class MWsGraphicDrawerContext;
27 NONSHARABLE_CLASS(CFrameRate): public CBase
30 TInt CountSamples() const;
34 static const TInt KMaxSamples = 25;
35 mutable TInt iNumSamples;
36 mutable TInt64 iSamples[KMaxSamples];
39 NONSHARABLE_CLASS(CWsGraphicDrawerTestFrameRate): public CWsGraphicDrawer
46 static CWsGraphicDrawerTestFrameRate* CreateL();
47 ~CWsGraphicDrawerTestFrameRate();
48 void ConstructL(MWsGraphicDrawerEnvironment& aEnv,const TGraphicDrawerId& aId,MWsClient& aOwner,const TDesC8& aData);
49 void HandleMessage(const TDesC8& aData);
51 void DoDraw(MWsGc& aGc,const TRect& aRect,const TDesC8& aData) const;
53 CWsGraphicDrawerTestFrameRate();
55 MWsGraphicDrawerContext* iContext;
58 #endif //__STDGRAPHICDRAWERTEST_H__