Update contrib.
1 // Copyright (c) 2007-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.
18 @test - Test plug-in to test wsgraphic animation artwork framerate
19 @internalComponent - Internal Symbian test code
22 #ifndef __GRAPHICDRAWERTESTFRAMERATE_H__
23 #define __GRAPHICDRAWERTESTFRAMERATE_H__
26 #include "graphics/WSGRAPHICDRAWER.H"
27 #include <graphics/WSGRAPHICDRAWERINTERFACE.H>
29 //Maximum number of animations at a time.
32 class MWsGraphicDrawerContext;
35 Drawer plug-in class used to draw the animation and scheduling.
37 NONSHARABLE_CLASS(CGraphicDrawerTestFrameRate): public CWsGraphicDrawer
44 static CGraphicDrawerTestFrameRate* CreateL();
45 ~CGraphicDrawerTestFrameRate();
46 void ConstructL(MWsGraphicDrawerEnvironment& aEnv,const TGraphicDrawerId& aId,MWsClient& aOwner,const TDesC8& aData);
47 void HandleMessage(const TDesC8& aData);
49 void DoDraw(MWsGc& aGc,const TRect& aRect,const TDesC8& aData) const;
51 CGraphicDrawerTestFrameRate();
52 mutable TInt iCounter[KMaxAnim];
53 MWsGraphicDrawerContext* iContext;
56 #endif //__GRAPHICDRAWERTESTFRAMERATE_H__