os/graphics/windowing/windowserver/test/t_ratelimiter/inc/t_wservratelimiterteststep.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.
22 #ifndef T_WSERVRATELIMITERTESTSTEP_H_
23 #define T_WSERVRATELIMITERTESTSTEP_H_
27 #include <test/testexecutestepbase.h>
28 #include "../tratelimitdrawer/wsratelimitdrawer.h"
30 const TUint32 KNullWsHandle = 0xFFFFFFFF;
33 A main interface for implementation test cases
38 virtual void RunTestCaseL(TInt aCurTestCase) = 0;
43 class CT_WServRateLimiterTestStep : public CTestStep, public MTestCases
46 CT_WServRateLimiterTestStep();
47 ~CT_WServRateLimiterTestStep();
49 virtual enum TVerdict doTestStepL();
50 void RunTestCaseL(TInt aCurTestCase);
53 void CreateRWindowL(const RWindowGroup& aWinGroup, RWindow& aWin, const TPoint& aPos, const TRgb& aBkgdColor, const TSize& aWinSize, const TUint32 aHandle = KNullWsHandle );
54 void DrawGraphic(RWindow& aWin, CWsGraphic* aGraphic, CWindowGc* aGc);
56 void TestRateLimitedAnimationL();
57 TBool IsRunningAtExpectedFrameRate(TReal aActualFrameRate, TReal aExpectedFrameRate, TReal aErrorThreshHold);
59 private: // Data members
61 TDisplayMode iDisplayMode;
64 CWsScreenDevice* iScreen;
65 CWsScreenDevice* iScreen1;
66 RWsSession iWsSession;
67 RWindowGroup iWinGroup;
68 RWindowGroup iWinGroup1;
69 CTestManager* iTestManager;
73 #endif /*T_WSERVRATELIMITERTESTSTEP_H_*/