os/graphics/windowing/windowserver/test/t_ratelimiter/tratelimitdrawer/ratelimitdrawer.h
Update contrib.
1 // Copyright (c) 2008-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.
19 @internalComponent - Internal Symbian test code
22 #ifndef RATELIMITDRAWER_H_
23 #define RATELIMITDRAWER_H_
26 #include "graphics/WSGRAPHICDRAWER.H"
27 #include <graphics/WSGRAPHICDRAWERINTERFACE.H>
28 #include "../inc/constants.h"
31 Drawer plug-in class used to draw the animation and scheduling.
33 NONSHARABLE_CLASS(CWsRateLimitGraphicDrawer): public CWsGraphicDrawer
36 enum {EImplUid = 0x102869F6};
39 static CWsRateLimitGraphicDrawer* NewL();
40 ~CWsRateLimitGraphicDrawer();
41 void ConstructL(MWsGraphicDrawerEnvironment& aEnv,const TGraphicDrawerId& aId,MWsClient& aOwner,const TDesC8& aData);
42 void HandleMessage(const TDesC8& aData);
44 void DoDraw(MWsGc& aGc,const TRect& aRect,const TDesC8& aData) const;
45 void InitialiseMembers();
47 CWsRateLimitGraphicDrawer();
50 TRgb iColors[KMaxFrames];
51 mutable TReal iFrameRate;
53 mutable TTime iStartTime;
56 #endif /*RATELIMITDRAWER_H_*/