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_APP1_ENG_H__ sl@0: #define __T_APP1_ENG_H__ sl@0: sl@0: #include sl@0: sl@0: enum TApp1EngPanics sl@0: { sl@0: TApp1EngAlreadyStarted = 1, sl@0: TApp1EngAlreadyStopped sl@0: }; sl@0: sl@0: sl@0: class CTApp1Eng : public CTimer sl@0: { sl@0: sl@0: public: sl@0: sl@0: // Construction & destruction sl@0: static CTApp1Eng* NewL sl@0: ( sl@0: RWsSession& aClient, sl@0: CWsScreenDevice& aScreenDevice, sl@0: RWindow& aWindow sl@0: ); sl@0: sl@0: ~CTApp1Eng(); 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 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 CTApp1Eng! sl@0: CTApp1Eng sl@0: ( sl@0: RWsSession& aClient, sl@0: CWsScreenDevice& aScreenDevice, sl@0: RWindow& aWindow sl@0: ); sl@0: sl@0: void ConstructL(); sl@0: sl@0: private: sl@0: sl@0: // Window server handling sl@0: RWsSession& iClient; sl@0: RWindow& iWindow; sl@0: CWsScreenDevice& iScreenDevice; sl@0: CWindowGc * iGc; sl@0: sl@0: // Are we drawing sl@0: TBool iDrawing; sl@0: TBool iRotationFlag; sl@0: sl@0: TInt iFrameCount; sl@0: sl@0: RArray iRotationList; sl@0: RArray iScrModeList; sl@0: TInt iRotationTimer; sl@0: TInt iRotationCount; sl@0: TInt iIterations; sl@0: sl@0: RSemaphore iSemaphore; sl@0: }; sl@0: sl@0: #endif // __T_APP1_ENG_H__ sl@0: sl@0: sl@0: