Update contrib.
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_FPSAPP_ENG_H__
23 #define __T_FPSAPP_ENG_H__
26 #include <graphics/surface.h> //TSurfaceId
27 #include <graphics/surfacemanager.h> //RSurfaceManager
28 #include <graphics/surfaceupdateclient.h>
30 _LIT(KTFpsAppPanicTxt, "t_fpsapp.exe");
32 class CFpsAppEng : public CTimer
35 static CFpsAppEng* NewL(RWsSession& aClient, CWsScreenDevice& aScreenDevice, RWindow& aWindow);
46 // private constructors - use NewL to construct a CTPseudoAppEng!
47 CFpsAppEng(RWsSession& aClient, CWsScreenDevice& aScreenDevice, RWindow& aWindow);
51 void CreateSurfaceManager();
52 void CreateSurface(TSurfaceId& aSurfaceId);
53 void CreateSurfaceUpdateSessionL();
54 void DestroySurface();
59 CWsScreenDevice& iScreenDevice;
60 RSurfaceManager iSurfaceManager;
61 TSurfaceId iSurfaceId;
63 RSurfaceUpdateSession iSurfaceUpdateSession;
72 #endif //__T_FPSAPP_ENG_H__