First public contribution.
1 // Copyright (c) 2008-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.
16 #ifndef TCWGCECSCBASE_H_
17 #define TCWGCECSCBASE_H_
19 #include <test/tefunit.h>
21 #include "surfaceutility.h"
22 #include <e32property.h>
27 TBool GetValue(TUint aKey);
28 void PrintAllL(CTestFixture& aLogger);
29 TBool ResetValue(TUint aKey);
33 #ifdef GCE_BACKEND_PROFILING
34 TInt iValue[EPerfLastKey];
35 TInt iPrevValue[EPerfLastKey];
36 const static TBuf<100> propertyKeysTxt[EPerfLastKey];
40 class CWsGceCscBase: public CTestFixture
44 template <class Referee,class LoggerOwner>
48 SafePointer(LoggerOwner* aOwner,Referee* aReferee=NULL):
49 iOwner(aOwner), iReferee(aReferee)
51 Referee* operator=(Referee* aReferee)
53 return iReferee=aReferee;
55 Referee*& operator()()
63 iOwner -> INFO_PRINTF1(_L("Tried to dereference a pointer that is null!"));
64 User::Panic(_L("null pointer"),__LINE__);
75 virtual ~CWsGceCscBase();
76 virtual void SetupL();
77 virtual void TearDownL();
78 virtual void TearDownFromDeleteL();
81 typedef TBuf<KMaxTestName> TTestName;
83 class TPostTestCleanup
88 CSurfaceUtility* iSharedUtility;
89 TBool iCleanedUpOnExit;
93 typedef enum TOptimizationLevel
96 EDetectFrontmostFullScreenOpaqueLayer,
102 void SetCompositionMode(RWindow& aWindow, TDisplayMode aMode);
104 TBool Compare(CFbsBitmap& aBitmap1, CFbsBitmap& aBitmap2);
106 void ConstructOpaqueWindowLC(RWindow& aWindow,
109 const TPoint& aPoint,
112 void ConstructOpaqueWindowL(RWindow& aWindow,
115 const TPoint& aPoint,
118 void SetBackgroundColorWindow(RWindow& aWindow, const TRgb& aColor);
120 void ConstructOpaqueSurfacedWindowLC(RWindow& aWindow,
123 const TPoint& aPoint,
125 TSurfaceId& aSurfaceID);
126 void ConstructOpaqueSurfacedWindowL(RWindow& aWindow,
129 const TPoint& aPoint,
131 const TSurfaceId& aSurfaceID);
134 inline TInt ObjIndScr(TInt aScreen,TInt aWin=0,TInt aLayer=0,TInt aExtra=0);
135 template <class DataType> // DataType may be TSurfaceId, TInt,TRect, TSurfaceConfiguration (not TRegion)
136 TInt DebugInfo(TWsDebugInfoFunc aFunction, TInt aObjectIndex, TDes8& aHostBuffer,const DataType*&aReturnedObject)const
138 return DebugInfo(aFunction,aObjectIndex,aHostBuffer,(const void*&)aReturnedObject,sizeof(DataType));
140 TInt DebugInfo(TWsDebugInfoFunc aFunction,
143 const void*&aReturnedObject,
144 TInt aObjectSize)const;
145 void TefUnitFailLeaveL();
146 static void Pause(TInt aMilliseconds=200);
147 TBool GCEIsSupported() const;
148 static TBool GCEIsSupportedStatic();
149 static TPostTestCleanup& PostTestCleanupInstance();
155 CWsScreenDevice* iScreenDevice;
158 TBool iTransparencyEnabled;
159 TRgb iRed, iGreen, iBlue, iCyan, iMagenta, iYellow, iWhite;
160 TDisplayMode iDisplayMode;
161 SafePointer<CSurfaceUtility,CWsGceCscBase> iUtility;
162 static const TInt KMaxInfoLines=5;
163 TTestName iTestInfo[KMaxInfoLines];
165 static const TUidPixelFormat KSurfaceFormat = EUidPixelFormatXRGB_8888;
166 static const TInt KBytesPerPixel = 4; // Four bytes per pixel for the format above.
167 TPerfProperties iProperties;
170 inline TInt CWsGceCscBase::ObjIndScr(TInt aScreen,
175 return (aScreen<<EWsDebugArgScreenShift)
176 | (aWin<<EWsDebugArgWindowShift)
177 | (aLayer<<EWsDebugArgLayerShift)
178 | (aExtra<<EWsDebugArgExtraShift);
181 #endif /*TCWGCECSCBASE_H_*/