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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
24 #ifndef __T_PSEUDOAPPSHARED_H__
25 #define __T_PSEUDOAPPSHARED_H__
27 #include "t_pseudoapptestresults.h"
29 #include <graphics/surface.h> //TSurfaceId
30 #include <gdi.h> //Display modes
33 class CTestSurfacedWindow;
35 class CTPseudoAppShared : public CBase
38 class TSurfaceCollection
42 TSurfaceCollection(TInt aScreenNo, TInt aWindowNo, const TSurfaceId& aSurfaceId);
43 TSurfaceCollection(TInt aScreenNo, TInt aWindowNo);
45 // TIdentityRelation comparison functions
46 static TBool IndicesEqual(const TSurfaceCollection& aFirst, const TSurfaceCollection& aSecond);
47 static TBool AnotherWindowWithSameSurfaceId(const TSurfaceCollection& aFirst, const TSurfaceCollection& aSecond);
52 TSurfaceId iSurfaceId;
56 IMPORT_C CTPseudoAppShared();
57 IMPORT_C void AddTestScreenL(TInt aScreenNo, TDisplayMode aMode, TInt aFrameDuration, const TSize& aScreenSize,
58 TGceTestResults* aGceTestResults, const TDesC& aConfigFileName);
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;
67 RPointerArray<CTestScreen> iTestScreens;
70 RArray<TSurfaceCollection> iSurfaceCollection;
73 #endif //__T_PSEUDOAPPSHARED_H__