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_FPSAPP_ENG_H__ sl@0: #define __T_FPSAPP_ENG_H__ sl@0: sl@0: #include sl@0: #include //TSurfaceId sl@0: #include //RSurfaceManager sl@0: #include sl@0: sl@0: _LIT(KTFpsAppPanicTxt, "t_fpsapp.exe"); sl@0: sl@0: class CFpsAppEng : public CTimer sl@0: { sl@0: public: sl@0: static CFpsAppEng* NewL(RWsSession& aClient, CWsScreenDevice& aScreenDevice, RWindow& aWindow); sl@0: ~CFpsAppEng(); sl@0: sl@0: void StartDrawing(); sl@0: sl@0: sl@0: private: sl@0: // Implement CTimer sl@0: void RunL(); sl@0: void DoCancel(); sl@0: sl@0: // private constructors - use NewL to construct a CTPseudoAppEng! sl@0: CFpsAppEng(RWsSession& aClient, CWsScreenDevice& aScreenDevice, RWindow& aWindow); sl@0: void ConstructL(); sl@0: sl@0: // Surface sl@0: void CreateSurfaceManager(); sl@0: void CreateSurface(TSurfaceId& aSurfaceId); sl@0: void CreateSurfaceUpdateSessionL(); sl@0: void DestroySurface(); sl@0: sl@0: private: sl@0: RWsSession& iClient; sl@0: RWindow& iWindow; sl@0: CWsScreenDevice& iScreenDevice; sl@0: RSurfaceManager iSurfaceManager; sl@0: TSurfaceId iSurfaceId; sl@0: RChunk iChunk; sl@0: RSurfaceUpdateSession iSurfaceUpdateSession; sl@0: TUint32* iSurfacePtr; sl@0: TUint32* iBufPtr1; sl@0: TInt iNoOfBytes; sl@0: TInt iNoOfPixels; sl@0: TBool iCol1; sl@0: TBool iCol2; sl@0: }; sl@0: sl@0: #endif //__T_FPSAPP_ENG_H__ sl@0: sl@0: sl@0: