os/mm/imagingandcamerafws/cameraunittest/src/ECamUnitTestPlugin/directviewfinder.cpp
First public contribution.
1 // Copyright (c) 2006-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.
16 #include "directviewfinder.h"
19 * For Direct View Finder Pause/Resume functionality
21 CCamDirectViewFinder* CCamDirectViewFinder::NewL(CCamUnitTestPlugin& aOwner)
23 return new (ELeave) CCamDirectViewFinder(aOwner);
26 CCamDirectViewFinder::~CCamDirectViewFinder()
30 CCamDirectViewFinder::CCamDirectViewFinder(CCamUnitTestPlugin& aOwner):iOwner(aOwner),
31 iVFState(CCamera::CCameraDirectViewFinder::EViewFinderInActive)
35 void CCamDirectViewFinder::PauseViewFinderDirectL()
37 // dummy implementation
39 // Boundary checking of CCamera::ViewFinderActive() = ETrue should be there in real implementation
40 // otherwise Leave with KErrECamSettingDisabled
42 iVFState = CCamera::CCameraDirectViewFinder::EViewFinderPause;
45 void CCamDirectViewFinder::ResumeViewFinderDirectL()
47 // dummy implementation
49 // Boundary checking of CCamera::ViewFinderActive() = ETrue should be there in real implementation
50 // otherwise Leave with KErrECamSettingDisabled
52 iVFState = CCamera::CCameraDirectViewFinder::EViewFinderActive;
55 CCamera::CCameraDirectViewFinder::TViewFinderState CCamDirectViewFinder::ViewFinderState() const
60 void CCamDirectViewFinder::Release()