os/graphics/windowing/windowserver/test/t_ratelimiter/inc/t_wservratelimiterteststep.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 /**
    17  @file
    18  @test
    19  @internalComponent
    20 */
    21 
    22 #ifndef T_WSERVRATELIMITERTESTSTEP_H_
    23 #define T_WSERVRATELIMITERTESTSTEP_H_
    24 
    25 #include <fbs.h>
    26 #include <w32std.h>
    27 #include <test/testexecutestepbase.h>
    28 #include "../tratelimitdrawer/wsratelimitdrawer.h"
    29 
    30 const TUint32 KNullWsHandle = 0xFFFFFFFF;
    31 
    32 /**
    33   A main interface for implementation test cases
    34  */
    35 class MTestCases
    36 	{
    37 public:
    38 	virtual void RunTestCaseL(TInt aCurTestCase) = 0;
    39 	};
    40 
    41 class CTestManager;
    42 
    43 class CT_WServRateLimiterTestStep : public CTestStep, public MTestCases
    44 	{
    45 public:
    46 	CT_WServRateLimiterTestStep();
    47 	~CT_WServRateLimiterTestStep();
    48 	// from CTestStep
    49 	virtual enum TVerdict doTestStepL();
    50 	void RunTestCaseL(TInt aCurTestCase);
    51 	
    52 private:
    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);
    55 	// Test cases
    56 	void TestRateLimitedAnimationL();
    57 	TBool IsRunningAtExpectedFrameRate(TReal aActualFrameRate, TReal aExpectedFrameRate, TReal aErrorThreshHold);
    58 
    59 private:	// Data members
    60 	TInt					iTestId;
    61 	TDisplayMode			iDisplayMode;
    62 	CWindowGc* 				iGc;
    63 	CWindowGc* 				iGc2;
    64 	CWsScreenDevice* 		iScreen;
    65 	CWsScreenDevice* 		iScreen1;
    66 	RWsSession 				iWsSession;
    67 	RWindowGroup 			iWinGroup;
    68 	RWindowGroup 			iWinGroup1;
    69 	CTestManager* 			iTestManager;
    70 	TBool					iTwoScreens;
    71 	};
    72 
    73 #endif /*T_WSERVRATELIMITERTESTSTEP_H_*/