os/graphics/windowing/windowserver/test/t_integ/inc/t_pseudoappscreen.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 /**
    17  @file
    18  @test
    19  @internalComponent
    20 */
    21 
    22 #ifndef __T_PSEUDOAPPSCREEN_H__
    23 #define __T_PSEUDOAPPSCREEN_H__
    24 
    25 #include <e32base.h>
    26 #include <gdi.h>					//Display modes
    27 #include <iniparser.h>
    28 
    29 #include "t_pseudoappsurfacedwindow.h"
    30 #include "t_pseudoapptestresults.h"
    31 #include "t_pseudoappshared.h"
    32 
    33 _LIT(KScreenWindowPopupApp,  "z:\\sys\\bin\\t_pseudoapppopupwindow.exe");
    34 _LIT(KScreenRotationApp,     "z:\\sys\\bin\\t_screenrotationpapp.exe");
    35 
    36 _LIT(KScreenWindow,          "screen%d_window_");
    37 _LIT(KScreenWindowNumber,    "screen%d_window%d_");
    38 _LIT(KScreen,                "screen%d_");
    39 
    40 class CTestScreen : public CBase
    41 	{
    42 public:
    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);
    48 	~CTestScreen();
    49 
    50 private:
    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();
    58 
    59 private:
    60 	CArrayPtrFlat<CTestSurfacedWindow>* iWindAndSurf;
    61 
    62 	TInt iPopupOccurances;
    63 	TInt iFrameDuration;
    64 	TInt iFrameCounter;
    65 	TInt iRotation;
    66 	TSize iScreenSize;
    67 
    68 	RProcess iPopupProcess;
    69 	RProcess iRotationProcess;
    70 	CIniData* iUtils;
    71 	CTPseudoAppShared& iPseudoAppShared;
    72 	};
    73 
    74 #endif //__T_PSEUDOAPPSCREEN_H__