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.
28 class CBaseStressletAllocator;
29 class MTestStepReporter;
31 /** CStresslet base class */
32 class CStresslet : public CBase
35 static void LaunchL(CStresslet* aStresslet);
37 virtual void HandleRedraw(TWsRedrawEvent &aEvent) = 0;
38 virtual void HandleEvent(TWsEvent &aEvent) = 0;
39 RWsSession& Session();
42 CStresslet(MTestStepReporter& aReporter);
43 virtual void StartL()=0;
44 void ConcludeNow(void);
45 CWindowGc& WindowGc();
46 MTestStepReporter& Reporter();
51 /** Inner class CEventHandler */
52 class CEventHandler : public CActive
55 static CEventHandler* NewL (CStresslet& aStresslet);
57 protected: // from CActive
62 CEventHandler (CStresslet& aStresslet);
64 CStresslet& iStresslet;
68 /** Inner class CRedrawHandler */
69 class CRedrawHandler : public CActive
72 static CRedrawHandler* NewL (CStresslet& aStresslet);
74 protected: // from CActive
79 CRedrawHandler (CStresslet& aStresslet);
81 CStresslet& iStresslet;
82 TWsRedrawEvent iRedrawEvent;
88 CWsScreenDevice* iScreenDevice;
89 CRedrawHandler* iRedrawHandler;
90 CEventHandler* iEventHandler;
92 MTestStepReporter& iReporter;
95 #define REPORT_EVENT(value) (Reporter().LogCondition(value,(TText8*)__FILE__,__LINE__))
96 #define REPORT_EVENT_WITH_TEXT(value,text) (text,Reporter().LogCondition(value,(TText8*)__FILE__,__LINE__))