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_PSEUDOAPPSCREEN_H__
23 #define __T_PSEUDOAPPSCREEN_H__
26 #include <gdi.h> //Display modes
27 #include <iniparser.h>
29 #include "t_pseudoappsurfacedwindow.h"
30 #include "t_pseudoapptestresults.h"
31 #include "t_pseudoappshared.h"
33 _LIT(KScreenWindowPopupApp, "z:\\sys\\bin\\t_pseudoapppopupwindow.exe");
34 _LIT(KScreenRotationApp, "z:\\sys\\bin\\t_screenrotationpapp.exe");
36 _LIT(KScreenWindow, "screen%d_window_");
37 _LIT(KScreenWindowNumber, "screen%d_window%d_");
38 _LIT(KScreen, "screen%d_");
40 class CTestScreen : public CBase
43 static CTestScreen* NewL(TInt aScreenNo, TDisplayMode aMode, TInt aFrameDuration, const TSize& aScreenSize, TGceTestResults* aGceTestResults,
44 const TDesC& aConfigFileName, CTPseudoAppShared& aPseudoAppShared);
45 IMPORT_C void UpdateL(SurfaceDetails& aSurfDetails);
46 IMPORT_C TBool Rotation();
47 IMPORT_C void RotateL(TInt aScreenNo, TInt aFrameNumber);
51 CTestScreen(CTPseudoAppShared& aPseudoAppShared);
52 void ConstructL(TInt aScreenNo, TDisplayMode aMode, TInt aFrameDuration, const TSize& aScreenSize, TGceTestResults* aGceTestResults,const TDesC& aConfigFileName);
53 void ImportScreenConfigL(TInt aScreenNo, TDisplayMode aMode, TInt aFrameDuration, const TSize& aScreenSize, TGceTestResults* aGceTestResults, const TDesC& aConfigFileName);
54 void CreatePopupWindow();
55 void DestroyPopupWindow();
56 void LaunchRotationApp();
57 void DestroyRotationApp();
60 CArrayPtrFlat<CTestSurfacedWindow>* iWindAndSurf;
62 TInt iPopupOccurances;
68 RProcess iPopupProcess;
69 RProcess iRotationProcess;
71 CTPseudoAppShared& iPseudoAppShared;
74 #endif //__T_PSEUDOAPPSCREEN_H__