sl@0: // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @test sl@0: @internalComponent sl@0: */ sl@0: sl@0: #ifndef __T_DSA_APP_ENG_H__ sl@0: #define __T_DSA_APP_ENG_H__ sl@0: sl@0: // INCLUDES sl@0: #include sl@0: sl@0: class CTPerfData; sl@0: sl@0: // ENUMERATIONS sl@0: sl@0: enum DirScrAccEngPanics sl@0: { sl@0: DirScrAccEngAlreadyStarted = 1, sl@0: DirScrAccEngAlreadyStopped sl@0: }; sl@0: sl@0: class CTDsaAppEng : public CTimer, public MDirectScreenAccess sl@0: { sl@0: sl@0: public: sl@0: sl@0: // Construction & destruction sl@0: static CTDsaAppEng* NewL sl@0: ( sl@0: RWsSession& aClient, sl@0: CWsScreenDevice& aScreenDevice, sl@0: RWindow& aWindow sl@0: ); sl@0: sl@0: ~CTDsaAppEng(); sl@0: sl@0: public: sl@0: sl@0: // Start and stop the drawing sl@0: void StartDrawing(); sl@0: void StopDrawing(); sl@0: sl@0: // Are we drawing sl@0: inline TBool Drawing(){return iDrawing;} sl@0: sl@0: private: sl@0: sl@0: // Implement MDirectScreenAccess sl@0: void Restart(RDirectScreenAccess::TTerminationReasons aReason); sl@0: void AbortNow(RDirectScreenAccess::TTerminationReasons aReason); sl@0: sl@0: private: sl@0: sl@0: // Implement CTimer sl@0: void RunL(); sl@0: void DoCancel(); sl@0: sl@0: private: sl@0: sl@0: // private constructors - use NewL to construct a CTDsaAppEng! sl@0: CTDsaAppEng sl@0: ( sl@0: RWsSession& aClient, sl@0: CWsScreenDevice& aScreenDevice, sl@0: RWindow& aWindow sl@0: ); sl@0: sl@0: void ConstructL(); sl@0: void CreateTestFileL(const TDesC& aFileName); sl@0: void WriteResultsL(const TDesC& aFileName); sl@0: sl@0: private: sl@0: sl@0: // Window server handling sl@0: RWsSession& iClient; sl@0: CWsScreenDevice& iScreenDevice; sl@0: RWindow& iWindow; sl@0: sl@0: // Direct Screen Access sl@0: CDirectScreenAccess* iDirectScreenAccess; sl@0: CFbsBitGc* iGc; sl@0: RRegion* iRegion; sl@0: sl@0: CTPerfData * iPerfData; sl@0: sl@0: // Are we drawing sl@0: TBool iDrawing; sl@0: sl@0: TInt iFrameCount; sl@0: TInt iFinishTesting; sl@0: TInt iCounterFrequency; sl@0: TUint32 iPrevCounter; sl@0: sl@0: TInt iPrevRotation; sl@0: TInt iRotationAbortCount; sl@0: sl@0: RSemaphore iSemaphore; sl@0: }; sl@0: sl@0: #endif // __T_DSA_APP_ENG_H__ sl@0: sl@0: