Update contrib.
1 // Copyright (c) 2004-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.
27 _LIT8(KECamPluginMatchString, "*"); // ECom insists on something
29 class CCameraStructure; // declared here.
32 Parent class for CCamera plugin.
33 Abstract class for CCamera plugin, including ECom support.
37 class CCameraPlugin : public CCamera
39 friend class CCamera; // so can use internal factory functions etc
45 @see CCamera::NewL(MCameraObserver& aObserver,TInt aCameraIndex)
47 IMPORT_C static CCameraPlugin* NewL(MCameraObserver& aObserver,TInt aCameraIndex, TInt aCameraVersion);
52 @see CCamera::NewDuplicateL(MCameraObserver& aObserver,TInt aCameraHandle)
54 IMPORT_C static CCameraPlugin* NewDuplicateL(MCameraObserver& aObserver,TInt aCameraHandle, TInt aCameraVersion);
59 @see CCamera::NewL(MCameraObserver2& aObserver,TInt aCameraIndex,TInt aPriority)
61 IMPORT_C static CCameraPlugin* NewL(MCameraObserver2& aObserver,TInt aCameraIndex,TInt aPriority, TInt aCameraVersion);
66 @see CCamera::NewDuplicateL(MCameraObserver2& aObserver,TInt aCameraHandle)
68 IMPORT_C static CCameraPlugin* NewDuplicateL(MCameraObserver2& aObserver,TInt aCameraHandle, TInt aCameraVersion);
73 @see CCamera::CamerasAvailable()
75 IMPORT_C static TInt CamerasAvailable();
78 Returns the camera API version no.
80 @return Version of the camera API
82 IMPORT_C TInt CameraVersion();
87 IMPORT_C ~CCameraPlugin();
92 A call to one of the factory functions firstly loads the plugin, followed by a
93 call to this function to complete construction.
95 Creates an object representing a camera.
98 Reference to class derived from MCameraObserver2 designed to receive
99 notification of asynchronous event completion.
101 Index from 0 to CamerasAvailable()-1 inclusive specifying the
102 camera device to use.
103 @return Pointer to a fully constructed CCamera object. Ownership is passed
106 @leave May leave with KErrNoMemory or KErrNotSupported if aCameraIndex is
109 virtual void Construct2L(MCameraObserver& aObserver,TInt aCameraIndex)=0;
112 A call to one of the factory functions firstly loads the plugin, followed by a
113 call to this function to complete construction.
115 Duplicates the original camera object for use by, for example, multimedia systems.
117 May leave with KErrNoMemory or KErrNotFound if aCameraHandle is not valid.
120 Reference to an observer.
121 @param aCameraHandle Handle of an existing camera object.
123 @return Duplicate of the original camera object.
125 virtual void Construct2DupL(MCameraObserver& aObserver,TInt aCameraHandle)=0;
128 A call to one of the factory functions firstly loads the plugin, followed by a
129 call to this function to complete construction.
131 Creates an object representing a camera.
134 Reference to class derived from MCameraObserver2 designed to receive
135 notification of asynchronous event completion.
137 Index from 0 to CamerasAvailable()-1 inclusive specifying the
138 camera device to use.
140 Value from -100 to 100 indicating relative priority of client to
143 @return Pointer to a fully constructed CCamera object. Ownership is passed
146 @leave May leave with KErrNoMemory or KErrNotSupported if aCameraIndex is
149 virtual void Construct2L(MCameraObserver2& aObserver,TInt aCameraIndex,TInt aPriority)=0;
152 A call to one of the factory functions firstly loads the plugin, followed by a
153 call to this function to complete construction.
155 Duplicates the original camera object for use by, for example, multimedia systems.
157 May leave with KErrNoMemory or KErrNotFound if aCameraHandle is not valid.
160 Reference to an observer.
161 @param aCameraHandle Handle of an existing camera object.
163 @leave May leave with KErrNoMemory or KErrNotFound if aCameraHandle is not valid.
165 @return Duplicate of the original camera object.
167 virtual void Construct2DupL(MCameraObserver2& aObserver,TInt aCameraHandle)=0;
172 Default constructor for this class.
174 IMPORT_C CCameraPlugin();
179 Returns the loaded plugin.
181 @return Pointer to the plugin.
183 static CCameraPlugin* NewL(TInt aCameraVersion);
186 Returns the loaded plugin.
187 Plugin is left on the cleanup stack.
189 @param aCameraVersion
190 The version of camera API used by applications
192 @return Pointer to the plugin.
194 static CCameraPlugin* NewLC(TInt aCameraVersion);
197 CCameraStructure* iCameraStructure;
200 NONSHARABLE_CLASS( CCameraStructure ): public CBase
207 #endif // ECAMPLUGIN_H