os/graphics/windowing/windowserver/stdgraphic/stdgraphictestdrawer.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/stdgraphic/stdgraphictestdrawer.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,58 @@
     1.4 +// Copyright (c) 1995-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 +// STDGRAPHICTESTDRAWER.CPP
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#ifndef __STDGRAPHICDRAWERTEST_H__
    1.22 +#define __STDGRAPHICDRAWERTEST_H__
    1.23 +
    1.24 +#include <e32std.h>
    1.25 +#include "graphics/WSGRAPHICDRAWER.H"
    1.26 +#include <graphics/WSGRAPHICDRAWERINTERFACE.H>
    1.27 +
    1.28 +class MWsGraphicDrawerContext;
    1.29 +
    1.30 +NONSHARABLE_CLASS(CFrameRate): public CBase
    1.31 +	{
    1.32 +public:
    1.33 +	TInt CountSamples() const;
    1.34 +	void Sample() const;
    1.35 +	TInt Fps() const;
    1.36 +private:
    1.37 +	static const TInt KMaxSamples = 25;
    1.38 +	mutable TInt iNumSamples;
    1.39 +	mutable TInt64 iSamples[KMaxSamples];
    1.40 +	};
    1.41 +
    1.42 +NONSHARABLE_CLASS(CWsGraphicDrawerTestFrameRate): public CWsGraphicDrawer
    1.43 +	{
    1.44 +public:
    1.45 +	enum 
    1.46 +		{
    1.47 +		EImplUid = 0x10281AB2
    1.48 +		};
    1.49 +	static CWsGraphicDrawerTestFrameRate* CreateL();
    1.50 +	~CWsGraphicDrawerTestFrameRate();
    1.51 +	void ConstructL(MWsGraphicDrawerEnvironment& aEnv,const TGraphicDrawerId& aId,MWsClient& aOwner,const TDesC8& aData);
    1.52 +	void HandleMessage(const TDesC8& aData);
    1.53 +private:
    1.54 +	void DoDraw(MWsGc& aGc,const TRect& aRect,const TDesC8& aData) const;
    1.55 +private:
    1.56 +	CWsGraphicDrawerTestFrameRate();
    1.57 +	CFrameRate iFps;
    1.58 +	MWsGraphicDrawerContext* iContext;
    1.59 +	};
    1.60 +
    1.61 +#endif //__STDGRAPHICDRAWERTEST_H__