diff -r 000000000000 -r 15bf7259bb7c uiacceltk/hitchcock/tsrc/alfperfapp/inc/alfperfappsuitetestcasecontrol.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/uiacceltk/hitchcock/tsrc/alfperfapp/inc/alfperfappsuitetestcasecontrol.h Tue Feb 02 07:56:43 2010 +0200 @@ -0,0 +1,136 @@ +/* +* Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: + * +*/ + +#ifndef ALFPERFAPPSUITETESTCASECONTROL_H_ +#define ALFPERFAPPSUITETESTCASECONTROL_H_ + +// INCLUDES +#include + +// CONSTANTS +const TInt KAlfPerfAppSuiteControlGroup = 1; + +const TInt KAlfPerfAppSuiteCmdCompleteNow = 0x5000; +const TInt KAlfPerfAppSuiteCmdNext = 0x5001; + +// CLASS DECLARATION +/** + * Abstract Suite test case control. + */ +class CAlfPerfAppSuiteTestCaseControl : public CAlfControl + { +public: + + /** + * Constructor. + */ + CAlfPerfAppSuiteTestCaseControl(); + + /** + * Destructor. + */ + ~CAlfPerfAppSuiteTestCaseControl(); + + /** + * Base class constructor. Derived classes may + * override this, but base class needs to be called. + */ + virtual void ConstructL( + CAlfEnv& aEnv, TInt aCaseId, const TRect& aVisibleArea ); + + /** + * Starts execution of the test case. By default, + * request status is stored to local variable. + */ + void StartExecuteL( TRequestStatus& aStatus ); + + /** + * Cancels execution. This control and environment will be + * deleted soon after calling this method. + */ + void CancelExecution(); + + /** + * Starts execution. + * If this method leaves, then request must not be completed. + * By default, this method completes immediately. + */ + virtual void DoStartExecuteL(); + + /** + * Sets visible area. + * @param aVisibleArea visible area. + */ + virtual void SetVisibleArea( const TRect& aVisibleArea ); + + // From base class CAlfControl: + + /** + * Handles events. + * Derived classes should forward to base class. + * @param aEvent event to be handled. + * @return ETrue if consumed, EFalse otherwise. + */ + virtual TBool OfferEventL( const TAlfEvent& aEvent ); + +protected: + + /** + * Completes automatically after specified duration. + * @param aDuration duration in ms + */ + void CompleteAfterL( TInt aDuration ); + + /** + * Completes current request. + */ + void CompleteNow( TInt aErrorCode ); + + /** + * Returns test case id. + */ + inline TInt CaseId() const; + + /** + * Returns ETrue if test case execution is still ongoing. + */ + TBool IsExecutionOngoing() const; + + /** + * Test case id. + */ + TInt iCaseId; + + /** + * Current visible screen area. + */ + TRect iVisibleArea; + +private: + + /** + * Pointer to request status. + * Not owned. + */ + TRequestStatus* iStatus; + + }; + +#endif // ALFPERFAPPSUITETESTCASECONTROL_H_ + +// end of file +