os/graphics/windowing/windowserver/test/t_ratelimiter/inc/t_wservratelimiterteststep.h
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/test/t_ratelimiter/inc/t_wservratelimiterteststep.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,73 @@
1.4 +// Copyright (c) 2008-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 +//
1.18 +
1.19 +/**
1.20 + @file
1.21 + @test
1.22 + @internalComponent
1.23 +*/
1.24 +
1.25 +#ifndef T_WSERVRATELIMITERTESTSTEP_H_
1.26 +#define T_WSERVRATELIMITERTESTSTEP_H_
1.27 +
1.28 +#include <fbs.h>
1.29 +#include <w32std.h>
1.30 +#include <test/testexecutestepbase.h>
1.31 +#include "../tratelimitdrawer/wsratelimitdrawer.h"
1.32 +
1.33 +const TUint32 KNullWsHandle = 0xFFFFFFFF;
1.34 +
1.35 +/**
1.36 + A main interface for implementation test cases
1.37 + */
1.38 +class MTestCases
1.39 + {
1.40 +public:
1.41 + virtual void RunTestCaseL(TInt aCurTestCase) = 0;
1.42 + };
1.43 +
1.44 +class CTestManager;
1.45 +
1.46 +class CT_WServRateLimiterTestStep : public CTestStep, public MTestCases
1.47 + {
1.48 +public:
1.49 + CT_WServRateLimiterTestStep();
1.50 + ~CT_WServRateLimiterTestStep();
1.51 + // from CTestStep
1.52 + virtual enum TVerdict doTestStepL();
1.53 + void RunTestCaseL(TInt aCurTestCase);
1.54 +
1.55 +private:
1.56 + void CreateRWindowL(const RWindowGroup& aWinGroup, RWindow& aWin, const TPoint& aPos, const TRgb& aBkgdColor, const TSize& aWinSize, const TUint32 aHandle = KNullWsHandle );
1.57 + void DrawGraphic(RWindow& aWin, CWsGraphic* aGraphic, CWindowGc* aGc);
1.58 + // Test cases
1.59 + void TestRateLimitedAnimationL();
1.60 + TBool IsRunningAtExpectedFrameRate(TReal aActualFrameRate, TReal aExpectedFrameRate, TReal aErrorThreshHold);
1.61 +
1.62 +private: // Data members
1.63 + TInt iTestId;
1.64 + TDisplayMode iDisplayMode;
1.65 + CWindowGc* iGc;
1.66 + CWindowGc* iGc2;
1.67 + CWsScreenDevice* iScreen;
1.68 + CWsScreenDevice* iScreen1;
1.69 + RWsSession iWsSession;
1.70 + RWindowGroup iWinGroup;
1.71 + RWindowGroup iWinGroup1;
1.72 + CTestManager* iTestManager;
1.73 + TBool iTwoScreens;
1.74 + };
1.75 +
1.76 +#endif /*T_WSERVRATELIMITERTESTSTEP_H_*/