os/graphics/windowing/windowserver/test/t_integ/inc/t_pseudoappshared.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 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 
    18 /**
    19  @file
    20  @test
    21  @internalComponent
    22 */
    23 
    24 #ifndef __T_PSEUDOAPPSHARED_H__
    25 #define __T_PSEUDOAPPSHARED_H__
    26 
    27 #include "t_pseudoapptestresults.h"
    28 #include <e32base.h>
    29 #include <graphics/surface.h>		//TSurfaceId
    30 #include <gdi.h>			//Display modes
    31 
    32 class CTestScreen;
    33 class CTestSurfacedWindow;
    34 
    35 class CTPseudoAppShared : public CBase
    36 	{
    37 private:
    38 	class TSurfaceCollection
    39 		{
    40 	public:
    41 		TSurfaceCollection();
    42 		TSurfaceCollection(TInt aScreenNo, TInt aWindowNo, const TSurfaceId& aSurfaceId);
    43 		TSurfaceCollection(TInt aScreenNo, TInt aWindowNo);
    44 
    45 		// TIdentityRelation comparison functions
    46 		static TBool IndicesEqual(const TSurfaceCollection& aFirst, const TSurfaceCollection& aSecond);
    47 		static TBool AnotherWindowWithSameSurfaceId(const TSurfaceCollection& aFirst, const TSurfaceCollection& aSecond);
    48 		
    49 	public:
    50 		TInt iScreenNo;
    51 		TInt iWindowNo;
    52 		TSurfaceId iSurfaceId;
    53 		};
    54 
    55 public:
    56 	IMPORT_C CTPseudoAppShared();
    57 	IMPORT_C void AddTestScreenL(TInt aScreenNo, TDisplayMode aMode, TInt aFrameDuration, const TSize& aScreenSize,
    58 								 TGceTestResults* aGceTestResults, const TDesC& aConfigFileName);
    59 
    60 	~CTPseudoAppShared();
    61 	TSurfaceId GetSurfaceId(TInt aScreenNo, TInt aWindowNo);
    62 	void SetSurfaceIdL(TInt aScreenNo, TInt aWindowNo, const TSurfaceId& aSurfaceId);
    63 	void RemoveSurfaceIdEntry(TInt aScreenNo, TInt aWindowNo);
    64 	TBool RotationSupported(TInt aScreenNo, TInt aWindowNo, const TSurfaceId& aSurfaceId) const;
    65 
    66 public:
    67 	RPointerArray<CTestScreen> iTestScreens;
    68 
    69 private:
    70 	RArray<TSurfaceCollection> iSurfaceCollection;
    71 	};
    72 
    73 #endif //__T_PSEUDOAPPSHARED_H__