Update contrib.
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.
27 #include "stresslet.h"
28 #include "test_step_comparison.h"
29 #include "test_step_conf.h"
37 class CComparison : public CStresslet
40 class COperationTimer : public CTimer
43 COperationTimer(CComparison* aComp);
45 //pure virtual functions from CActive
52 //delayed bitmap comparison
53 class COneShotCompare : public CAsyncOneShot
56 COneShotCompare(TInt aPriority, CComparison& aComparison);
57 static COneShotCompare* NewL(TInt aPriority, CComparison& aComparison);
60 CComparison& iComparison;
63 friend class COneShotCompare;
90 static CComparison * NewLC(MTestStepReporter& aReporter);
91 virtual ~CComparison();
93 void Verify(CFbsBitmap * aServerBmp);
94 void SetRunDataL(const TRunData& aRunData, MTestStepConfigurationContextFactory* aConfFactory);
95 TBool WindowsReadyForVerification() const;
96 void SetVerifyTick(TUint32 aTick);
99 void HandleRedraw(TWsRedrawEvent &aEvent);
100 void HandleEvent(TWsEvent &aEvent);
102 virtual void StartL();
111 void CreateWindowL();
112 void DestroyWindow();
115 void BringWindowToFrontL();
116 void SendWindowToBackL();
118 void ToggleVisible();
120 TInt FindTopWindow(CCompWin* aWin);
122 CCompWin* RandomWindow();
123 TBool BitmapsMatch(const CFbsBitmap * aBitmap1, const CFbsBitmap * aBitmap2);
126 CComparison (MTestStepReporter& aReporter);
135 TBehaviour iBehaviour;
136 CPeriodic* iPeriodic;
137 RWindowGroup* iWinGroup;
138 RBlankWindow* iBackground;
139 RPointerArray<CCompWin> iWindows;
140 CFbsBitmap * iBitmap[2];
141 CFbsBitmapDevice * iDevice[2];
143 CFbsBitmap * iDifferenceBitmap;
144 CFbsBitmapDevice * iDifferenceDevice;
145 CWsScreenDevice* iScreen;
146 CFbsBitmap *iScreenBitmap;
158 TInt iNumWindowsLeft; //number of windows to be created before test is over
159 CTestExecWatchCat* iWatchCat;
163 COperationTimer* iTimer;
164 COneShotCompare *iOneShotCompare;
167 #endif // COMPARISON_H