Update contrib.
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 <ecam/ecamdirectviewfinder.h>
17 #include <ecam/ecamdirectviewfinderuids.hrh>
18 #include <ecam/mcameradirectviewfinder.h>
21 Factory function for creating the CCameraDirectViewFinder object.
24 a reference to a CCamera object providing the settings.
26 @return a pointer to a fully constructed CCameraDirectViewFinder object.
28 @leave KErrNoMemory Out of memory Or any other system-wide error code.
30 EXPORT_C CCamera::CCameraDirectViewFinder* CCamera::CCameraDirectViewFinder::NewL(CCamera& aCamera)
32 CCamera::CCameraDirectViewFinder* self = new (ELeave)CCamera::CCameraDirectViewFinder(aCamera);
33 CleanupStack::PushL(self);
35 CleanupStack::Pop(self);
39 void CCamera::CCameraDirectViewFinder::ConstructL()
44 User::LeaveIfError(KErrNotSupported);
49 CCameraDirectViewFinder Constructor.
52 a reference to a CCamera object providing the settings.
54 CCamera::CCameraDirectViewFinder::CCameraDirectViewFinder(CCamera& aOwner): iOwner(aOwner), iImpl(NULL)
59 Pauses the direct viewfinder
61 @leave KErrNoMemory: Out of memory.
63 @note This will pause the direct viewfinder which is started using the CCamera method.
65 @see CCamera::StartViewFinderDirectL(RWsSession& aWs,CWsScreenDevice& aScreenDevice,RWindowBase& aWindow,TRect& aScreenRect)
66 @see CCamera::StartViewFinderDirectL(RWsSession& aWs,CWsScreenDevice& aScreenDevice,RWindowBase& aWindow,TRect& aScreenRect,TRect& aClipRect)
68 EXPORT_C void CCamera::CCameraDirectViewFinder::PauseViewFinderDirectL()
70 iImpl->PauseViewFinderDirectL();
74 Resumes the direct viewfinder
76 @leave KErrNoMemory Out of memory.
78 @note This will resume the direct viewfinder which is started using the CCamera method.
80 @see CCamera::StartViewFinderDirectL(RWsSession& aWs,CWsScreenDevice& aScreenDevice,RWindowBase& aWindow,TRect& aScreenRect)
81 @see CCamera::StartViewFinderDirectL(RWsSession& aWs,CWsScreenDevice& aScreenDevice,RWindowBase& aWindow,TRect& aScreenRect,TRect& aClipRect)
83 EXPORT_C void CCamera::CCameraDirectViewFinder::ResumeViewFinderDirectL()
85 iImpl->ResumeViewFinderDirectL();
89 Gets the current view finder state.
91 @return Retrieves the current direct view finder state.
93 @note This will retrieve the state of the direct viewfinder which is started using the CCamera method.
95 @see CCamera::StartViewFinderDirectL(RWsSession& aWs,CWsScreenDevice& aScreenDevice,RWindowBase& aWindow,TRect& aScreenRect)
96 @see CCamera::StartViewFinderDirectL(RWsSession& aWs,CWsScreenDevice& aScreenDevice,RWindowBase& aWindow,TRect& aScreenRect,TRect& aClipRect)
98 EXPORT_C CCamera::CCameraDirectViewFinder::TViewFinderState CCamera::CCameraDirectViewFinder::ViewFinderState() const
100 return iImpl->ViewFinderState();
106 EXPORT_C CCamera::CCameraDirectViewFinder::~CCameraDirectViewFinder()
115 Gets the handle to the implementer's MCameraDirectViewFinder derived class.
117 void CCamera::CCameraDirectViewFinder::SetImplHandle()
121 iImpl = static_cast<MCameraDirectViewFinder*>(iOwner.CustomInterface(KECamMCameraDirectViewFinderUid));