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.
21 #ifndef ECAMDIRECTVIEWFINDER_H
22 #define ECAMDIRECTVIEWFINDER_H
26 #include <ecam/ecamdirectviewfinderuids.hrh>
28 class MCameraDirectViewFinder;
31 UID used to identify the CCameraDirectViewFinder API.
33 @see CCamera::CCameraDirectViewFinder
35 static const TUid KECamDirectViewFinderUid = {KECamDirectViewFinderUidValue};
38 CCamera direct view finder class is used to provide support for Direct View Finder functionalities like pause/resume.
40 @note This class is not intended for sub-classing and used to standardise existing
41 varieties of implementations.
43 @note This class features are supposed to be meant for the direct viewfinder started using CCamera methods.
45 @note If the class methods leave, the output type parameter value is not guaranteed to be valid.
50 class CCamera::CCameraDirectViewFinder : public CBase
52 /* so can use internal factory functions etc. */
57 /** Specifies direct viewfinder state. */
60 /** View Finder is activated */
62 /** View Finder has been paused */
64 /** View Finder has been stopped or hasn't yet started. Default state. */
70 IMPORT_C static CCameraDirectViewFinder* NewL(CCamera& aOwner);
72 IMPORT_C void PauseViewFinderDirectL();
73 IMPORT_C void ResumeViewFinderDirectL();
74 IMPORT_C TViewFinderState ViewFinderState() const;
76 IMPORT_C ~CCameraDirectViewFinder();
79 CCameraDirectViewFinder(CCamera& aOwner);
86 MCameraDirectViewFinder* iImpl; // not owned
89 #endif // ECAMDIRECTVIEWFINDER_H