First public contribution.
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".
9 // Initial Contributors:
10 // Nokia Corporation - initial contribution.
17 #ifndef ECAMOBSERVERTEST_H
18 #define ECAMOBSERVERTEST_H
20 #include <testframework.h>
22 #include <ecamadvsettings.h>
24 class RECamObserverTest : public RTestStep, public 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);
39 TVerdict DoTestStepL()=0;
45 TInt iParam; //for TECAMEvent2 events
49 class RECamContinousZoomObserverTest : public RTestStep, public MContinuousZoomObserver
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);
59 TVerdict DoTestStepL()=0;
62 #endif // ECAMOBSERVERTEST_H