os/mm/imagingandcamerafws/cameraunittest/src/TSU_ECM_ADV/ECamObserverTest.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 
     2 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
     3 // All rights reserved.
     4 // This component and the accompanying materials are made available
     5 // under the terms of "Eclipse Public License v1.0"
     6 // which accompanies this distribution, and is available
     7 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     8 //
     9 // Initial Contributors:
    10 // Nokia Corporation - initial contribution.
    11 //
    12 // Contributors:
    13 //
    14 // Description:
    15 //
    16 
    17 #ifndef ECAMOBSERVERTEST_H
    18 #define ECAMOBSERVERTEST_H
    19 
    20 #include <testframework.h>
    21 #include <ecam.h>
    22 #include <ecamadvsettings.h>
    23 
    24 class RECamObserverTest : public RTestStep, public MCameraObserver2
    25 	{
    26 public:
    27 	//MCameraObserver2
    28 	void HandleEvent(const TECAMEvent& aEvent);
    29 	void ViewFinderReady(MCameraBuffer& aCameraBuffer,TInt aError);
    30 	void ImageBufferReady(MCameraBuffer& aCameraBuffer,TInt aError);
    31 	void VideoBufferReady(MCameraBuffer& aCameraBuffer,TInt aError);	
    32 	void CheckNotification(const TUid& aEventUid, TVerdict& aResult);	
    33 	void CheckNotificationTwo(const TUid& aEventUid, TVerdict& aResult);	
    34 	void CheckNotificationNeg(const TUid& aEventUid, TVerdict& aResult);
    35 	void CheckNotificationImgProc(const TUid& aEventUid, TInt aParam, TVerdict& aResult);	
    36 
    37 protected:
    38 	// from RTestStep;
    39 	TVerdict DoTestStepL()=0;
    40 
    41 protected:
    42 	TUid iEventUid;
    43 	TUid iEventUidTwo;
    44 	TInt iError;
    45 	TInt iParam; //for TECAMEvent2 events
    46 	};
    47 
    48 
    49 class RECamContinousZoomObserverTest : public RTestStep, public MContinuousZoomObserver
    50 	{
    51 public:
    52 	//MContinuousZoomObserver
    53 	void ContinuousZoomProgress(CCamera::CCameraContinuousZoom& aContinuousZoomHandle, TInt aZoomFactor, TInt aError);
    54 	void ContinuousZoomCompleted(CCamera::CCameraContinuousZoom& aContinuousZoomHandle, TInt aFinalZoomFactor, TInt aError);
    55 	TInt CustomInterface(TUid aInterface, TAny*& aPtrInterface);
    56 
    57 protected:
    58 	// from RTestStep
    59 	TVerdict DoTestStepL()=0;
    60 	};
    61 
    62 #endif // ECAMOBSERVERTEST_H