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.
22 #ifndef MCAMERADIRECTVIEWFINDER_H
23 #define MCAMERADIRECTVIEWFINDER_H
25 #include <ecam/ecamdirectviewfinder.h>
26 #include <ecam/cameradirectviewfinderuidif.hrh>
28 /** This is the UID which is used to obtain the interface MCameraDirectViewFinder, via the
29 CCamera::CustomInterface() call. */
30 static const TUid KECamMCameraDirectViewFinderUid = {KECamMCameraDirectViewFinderUidValue};
32 /** Mixin class for implementation of camera direct viewfinder control.
34 class MCameraDirectViewFinder
40 Releases the interface.
42 virtual void Release()=0;
45 Pauses the direct view finder
47 @leave KErrNoMemory: Out of memory or any other leave code
49 @note This will pause the direct viewfinder which is started using the CCamera method.
51 @see CCamera::StartViewFinderDirectL(RWsSession& aWs,CWsScreenDevice& aScreenDevice,RWindowBase& aWindow,TRect& aScreenRect)
52 @see CCamera::StartViewFinderDirectL(RWsSession& aWs,CWsScreenDevice& aScreenDevice,RWindowBase& aWindow,TRect& aScreenRect,TRect& aClipRect)
54 virtual void PauseViewFinderDirectL()=0;
57 Resumes the direct view finder
59 @leave KErrNoMemory: Out of memory or any other leave code
61 @note This will resume the direct viewfinder which is started using the CCamera method.
63 @see CCamera::StartViewFinderDirectL(RWsSession& aWs,CWsScreenDevice& aScreenDevice,RWindowBase& aWindow,TRect& aScreenRect)
64 @see CCamera::StartViewFinderDirectL(RWsSession& aWs,CWsScreenDevice& aScreenDevice,RWindowBase& aWindow,TRect& aScreenRect,TRect& aClipRect)
66 virtual void ResumeViewFinderDirectL()=0;
69 Gets the current view finder state.
71 @return Retrieves the current direct view finder state.
73 @note This will retrieve the state of the direct viewfinder which is started using the CCamera method.
75 @see CCamera::StartViewFinderDirectL(RWsSession& aWs,CWsScreenDevice& aScreenDevice,RWindowBase& aWindow,TRect& aScreenRect)
76 @see CCamera::StartViewFinderDirectL(RWsSession& aWs,CWsScreenDevice& aScreenDevice,RWindowBase& aWindow,TRect& aScreenRect,TRect& aClipRect)
78 virtual CCamera::CCameraDirectViewFinder::TViewFinderState ViewFinderState() const =0;
81 #endif // MCAMERADIRECTVIEWFINDER_H