sl@0
|
1 |
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
/**
|
sl@0
|
17 |
@file
|
sl@0
|
18 |
@test
|
sl@0
|
19 |
@internalComponent
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
|
sl@0
|
22 |
#ifndef __T_PSEUDOAPPSCREEN_H__
|
sl@0
|
23 |
#define __T_PSEUDOAPPSCREEN_H__
|
sl@0
|
24 |
|
sl@0
|
25 |
#include <e32base.h>
|
sl@0
|
26 |
#include <gdi.h> //Display modes
|
sl@0
|
27 |
#include <iniparser.h>
|
sl@0
|
28 |
|
sl@0
|
29 |
#include "t_pseudoappsurfacedwindow.h"
|
sl@0
|
30 |
#include "t_pseudoapptestresults.h"
|
sl@0
|
31 |
#include "t_pseudoappshared.h"
|
sl@0
|
32 |
|
sl@0
|
33 |
_LIT(KScreenWindowPopupApp, "z:\\sys\\bin\\t_pseudoapppopupwindow.exe");
|
sl@0
|
34 |
_LIT(KScreenRotationApp, "z:\\sys\\bin\\t_screenrotationpapp.exe");
|
sl@0
|
35 |
|
sl@0
|
36 |
_LIT(KScreenWindow, "screen%d_window_");
|
sl@0
|
37 |
_LIT(KScreenWindowNumber, "screen%d_window%d_");
|
sl@0
|
38 |
_LIT(KScreen, "screen%d_");
|
sl@0
|
39 |
|
sl@0
|
40 |
class CTestScreen : public CBase
|
sl@0
|
41 |
{
|
sl@0
|
42 |
public:
|
sl@0
|
43 |
static CTestScreen* NewL(TInt aScreenNo, TDisplayMode aMode, TInt aFrameDuration, const TSize& aScreenSize, TGceTestResults* aGceTestResults,
|
sl@0
|
44 |
const TDesC& aConfigFileName, CTPseudoAppShared& aPseudoAppShared);
|
sl@0
|
45 |
IMPORT_C void UpdateL(SurfaceDetails& aSurfDetails);
|
sl@0
|
46 |
IMPORT_C TBool Rotation();
|
sl@0
|
47 |
IMPORT_C void RotateL(TInt aScreenNo, TInt aFrameNumber);
|
sl@0
|
48 |
~CTestScreen();
|
sl@0
|
49 |
|
sl@0
|
50 |
private:
|
sl@0
|
51 |
CTestScreen(CTPseudoAppShared& aPseudoAppShared);
|
sl@0
|
52 |
void ConstructL(TInt aScreenNo, TDisplayMode aMode, TInt aFrameDuration, const TSize& aScreenSize, TGceTestResults* aGceTestResults,const TDesC& aConfigFileName);
|
sl@0
|
53 |
void ImportScreenConfigL(TInt aScreenNo, TDisplayMode aMode, TInt aFrameDuration, const TSize& aScreenSize, TGceTestResults* aGceTestResults, const TDesC& aConfigFileName);
|
sl@0
|
54 |
void CreatePopupWindow();
|
sl@0
|
55 |
void DestroyPopupWindow();
|
sl@0
|
56 |
void LaunchRotationApp();
|
sl@0
|
57 |
void DestroyRotationApp();
|
sl@0
|
58 |
|
sl@0
|
59 |
private:
|
sl@0
|
60 |
CArrayPtrFlat<CTestSurfacedWindow>* iWindAndSurf;
|
sl@0
|
61 |
|
sl@0
|
62 |
TInt iPopupOccurances;
|
sl@0
|
63 |
TInt iFrameDuration;
|
sl@0
|
64 |
TInt iFrameCounter;
|
sl@0
|
65 |
TInt iRotation;
|
sl@0
|
66 |
TSize iScreenSize;
|
sl@0
|
67 |
|
sl@0
|
68 |
RProcess iPopupProcess;
|
sl@0
|
69 |
RProcess iRotationProcess;
|
sl@0
|
70 |
CIniData* iUtils;
|
sl@0
|
71 |
CTPseudoAppShared& iPseudoAppShared;
|
sl@0
|
72 |
};
|
sl@0
|
73 |
|
sl@0
|
74 |
#endif //__T_PSEUDOAPPSCREEN_H__
|