First public contribution.
1 // Copyright (c) 2007-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_DSA_APP_ENG_H__
23 #define __T_DSA_APP_ENG_H__
32 enum DirScrAccEngPanics
34 DirScrAccEngAlreadyStarted = 1,
35 DirScrAccEngAlreadyStopped
38 class CTDsaAppEng : public CTimer, public MDirectScreenAccess
43 // Construction & destruction
44 static CTDsaAppEng* NewL
47 CWsScreenDevice& aScreenDevice,
55 // Start and stop the drawing
60 inline TBool Drawing(){return iDrawing;}
64 // Implement MDirectScreenAccess
65 void Restart(RDirectScreenAccess::TTerminationReasons aReason);
66 void AbortNow(RDirectScreenAccess::TTerminationReasons aReason);
76 // private constructors - use NewL to construct a CTDsaAppEng!
80 CWsScreenDevice& aScreenDevice,
85 void CreateTestFileL(const TDesC& aFileName);
86 void WriteResultsL(const TDesC& aFileName);
90 // Window server handling
92 CWsScreenDevice& iScreenDevice;
95 // Direct Screen Access
96 CDirectScreenAccess* iDirectScreenAccess;
100 CTPerfData * iPerfData;
107 TInt iCounterFrequency;
108 TUint32 iPrevCounter;
111 TInt iRotationAbortCount;
113 RSemaphore iSemaphore;
116 #endif // __T_DSA_APP_ENG_H__