sl@0
|
1 |
// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
/**
|
sl@0
|
17 |
@file
|
sl@0
|
18 |
@publishedPartner
|
sl@0
|
19 |
@released
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
|
sl@0
|
22 |
#ifndef ECAMPLUGIN_H
|
sl@0
|
23 |
#define ECAMPLUGIN_H
|
sl@0
|
24 |
|
sl@0
|
25 |
#include <ecam.h>
|
sl@0
|
26 |
|
sl@0
|
27 |
_LIT8(KECamPluginMatchString, "*"); // ECom insists on something
|
sl@0
|
28 |
|
sl@0
|
29 |
class CCameraStructure; // declared here.
|
sl@0
|
30 |
|
sl@0
|
31 |
/**
|
sl@0
|
32 |
Parent class for CCamera plugin.
|
sl@0
|
33 |
Abstract class for CCamera plugin, including ECom support.
|
sl@0
|
34 |
|
sl@0
|
35 |
@see CCamera
|
sl@0
|
36 |
*/
|
sl@0
|
37 |
class CCameraPlugin : public CCamera
|
sl@0
|
38 |
{
|
sl@0
|
39 |
friend class CCamera; // so can use internal factory functions etc
|
sl@0
|
40 |
protected:
|
sl@0
|
41 |
|
sl@0
|
42 |
/**
|
sl@0
|
43 |
@internalComponent
|
sl@0
|
44 |
|
sl@0
|
45 |
@see CCamera::NewL(MCameraObserver& aObserver,TInt aCameraIndex)
|
sl@0
|
46 |
*/
|
sl@0
|
47 |
IMPORT_C static CCameraPlugin* NewL(MCameraObserver& aObserver,TInt aCameraIndex, TInt aCameraVersion);
|
sl@0
|
48 |
|
sl@0
|
49 |
/**
|
sl@0
|
50 |
@internalComponent
|
sl@0
|
51 |
|
sl@0
|
52 |
@see CCamera::NewDuplicateL(MCameraObserver& aObserver,TInt aCameraHandle)
|
sl@0
|
53 |
*/
|
sl@0
|
54 |
IMPORT_C static CCameraPlugin* NewDuplicateL(MCameraObserver& aObserver,TInt aCameraHandle, TInt aCameraVersion);
|
sl@0
|
55 |
|
sl@0
|
56 |
/**
|
sl@0
|
57 |
@internalComponent
|
sl@0
|
58 |
|
sl@0
|
59 |
@see CCamera::NewL(MCameraObserver2& aObserver,TInt aCameraIndex,TInt aPriority)
|
sl@0
|
60 |
*/
|
sl@0
|
61 |
IMPORT_C static CCameraPlugin* NewL(MCameraObserver2& aObserver,TInt aCameraIndex,TInt aPriority, TInt aCameraVersion);
|
sl@0
|
62 |
|
sl@0
|
63 |
/**
|
sl@0
|
64 |
@internalComponent
|
sl@0
|
65 |
|
sl@0
|
66 |
@see CCamera::NewDuplicateL(MCameraObserver2& aObserver,TInt aCameraHandle)
|
sl@0
|
67 |
*/
|
sl@0
|
68 |
IMPORT_C static CCameraPlugin* NewDuplicateL(MCameraObserver2& aObserver,TInt aCameraHandle, TInt aCameraVersion);
|
sl@0
|
69 |
|
sl@0
|
70 |
/**
|
sl@0
|
71 |
@internalComponent
|
sl@0
|
72 |
|
sl@0
|
73 |
@see CCamera::CamerasAvailable()
|
sl@0
|
74 |
*/
|
sl@0
|
75 |
IMPORT_C static TInt CamerasAvailable();
|
sl@0
|
76 |
|
sl@0
|
77 |
/**
|
sl@0
|
78 |
Returns the camera API version no.
|
sl@0
|
79 |
|
sl@0
|
80 |
@return Version of the camera API
|
sl@0
|
81 |
*/
|
sl@0
|
82 |
IMPORT_C TInt CameraVersion();
|
sl@0
|
83 |
|
sl@0
|
84 |
/**
|
sl@0
|
85 |
Destructor
|
sl@0
|
86 |
*/
|
sl@0
|
87 |
IMPORT_C ~CCameraPlugin();
|
sl@0
|
88 |
|
sl@0
|
89 |
protected:
|
sl@0
|
90 |
|
sl@0
|
91 |
/**
|
sl@0
|
92 |
A call to one of the factory functions firstly loads the plugin, followed by a
|
sl@0
|
93 |
call to this function to complete construction.
|
sl@0
|
94 |
|
sl@0
|
95 |
Creates an object representing a camera.
|
sl@0
|
96 |
|
sl@0
|
97 |
@param aObserver
|
sl@0
|
98 |
Reference to class derived from MCameraObserver2 designed to receive
|
sl@0
|
99 |
notification of asynchronous event completion.
|
sl@0
|
100 |
@param aCameraIndex
|
sl@0
|
101 |
Index from 0 to CamerasAvailable()-1 inclusive specifying the
|
sl@0
|
102 |
camera device to use.
|
sl@0
|
103 |
@return Pointer to a fully constructed CCamera object. Ownership is passed
|
sl@0
|
104 |
to the caller.
|
sl@0
|
105 |
|
sl@0
|
106 |
@leave May leave with KErrNoMemory or KErrNotSupported if aCameraIndex is
|
sl@0
|
107 |
out of range.
|
sl@0
|
108 |
*/
|
sl@0
|
109 |
virtual void Construct2L(MCameraObserver& aObserver,TInt aCameraIndex)=0;
|
sl@0
|
110 |
|
sl@0
|
111 |
/**
|
sl@0
|
112 |
A call to one of the factory functions firstly loads the plugin, followed by a
|
sl@0
|
113 |
call to this function to complete construction.
|
sl@0
|
114 |
|
sl@0
|
115 |
Duplicates the original camera object for use by, for example, multimedia systems.
|
sl@0
|
116 |
|
sl@0
|
117 |
May leave with KErrNoMemory or KErrNotFound if aCameraHandle is not valid.
|
sl@0
|
118 |
|
sl@0
|
119 |
@param aObserver
|
sl@0
|
120 |
Reference to an observer.
|
sl@0
|
121 |
@param aCameraHandle Handle of an existing camera object.
|
sl@0
|
122 |
|
sl@0
|
123 |
@return Duplicate of the original camera object.
|
sl@0
|
124 |
*/
|
sl@0
|
125 |
virtual void Construct2DupL(MCameraObserver& aObserver,TInt aCameraHandle)=0;
|
sl@0
|
126 |
|
sl@0
|
127 |
/**
|
sl@0
|
128 |
A call to one of the factory functions firstly loads the plugin, followed by a
|
sl@0
|
129 |
call to this function to complete construction.
|
sl@0
|
130 |
|
sl@0
|
131 |
Creates an object representing a camera.
|
sl@0
|
132 |
|
sl@0
|
133 |
@param aObserver
|
sl@0
|
134 |
Reference to class derived from MCameraObserver2 designed to receive
|
sl@0
|
135 |
notification of asynchronous event completion.
|
sl@0
|
136 |
@param aCameraIndex
|
sl@0
|
137 |
Index from 0 to CamerasAvailable()-1 inclusive specifying the
|
sl@0
|
138 |
camera device to use.
|
sl@0
|
139 |
@param aPriority
|
sl@0
|
140 |
Value from -100 to 100 indicating relative priority of client to
|
sl@0
|
141 |
use camera.
|
sl@0
|
142 |
|
sl@0
|
143 |
@return Pointer to a fully constructed CCamera object. Ownership is passed
|
sl@0
|
144 |
to the caller.
|
sl@0
|
145 |
|
sl@0
|
146 |
@leave May leave with KErrNoMemory or KErrNotSupported if aCameraIndex is
|
sl@0
|
147 |
out of range.
|
sl@0
|
148 |
*/
|
sl@0
|
149 |
virtual void Construct2L(MCameraObserver2& aObserver,TInt aCameraIndex,TInt aPriority)=0;
|
sl@0
|
150 |
|
sl@0
|
151 |
/**
|
sl@0
|
152 |
A call to one of the factory functions firstly loads the plugin, followed by a
|
sl@0
|
153 |
call to this function to complete construction.
|
sl@0
|
154 |
|
sl@0
|
155 |
Duplicates the original camera object for use by, for example, multimedia systems.
|
sl@0
|
156 |
|
sl@0
|
157 |
May leave with KErrNoMemory or KErrNotFound if aCameraHandle is not valid.
|
sl@0
|
158 |
|
sl@0
|
159 |
@param aObserver
|
sl@0
|
160 |
Reference to an observer.
|
sl@0
|
161 |
@param aCameraHandle Handle of an existing camera object.
|
sl@0
|
162 |
|
sl@0
|
163 |
@leave May leave with KErrNoMemory or KErrNotFound if aCameraHandle is not valid.
|
sl@0
|
164 |
|
sl@0
|
165 |
@return Duplicate of the original camera object.
|
sl@0
|
166 |
*/
|
sl@0
|
167 |
virtual void Construct2DupL(MCameraObserver2& aObserver,TInt aCameraHandle)=0;
|
sl@0
|
168 |
|
sl@0
|
169 |
protected:
|
sl@0
|
170 |
|
sl@0
|
171 |
/**
|
sl@0
|
172 |
Default constructor for this class.
|
sl@0
|
173 |
*/
|
sl@0
|
174 |
IMPORT_C CCameraPlugin();
|
sl@0
|
175 |
|
sl@0
|
176 |
private:
|
sl@0
|
177 |
|
sl@0
|
178 |
/**
|
sl@0
|
179 |
Returns the loaded plugin.
|
sl@0
|
180 |
|
sl@0
|
181 |
@return Pointer to the plugin.
|
sl@0
|
182 |
*/
|
sl@0
|
183 |
static CCameraPlugin* NewL(TInt aCameraVersion);
|
sl@0
|
184 |
|
sl@0
|
185 |
/**
|
sl@0
|
186 |
Returns the loaded plugin.
|
sl@0
|
187 |
Plugin is left on the cleanup stack.
|
sl@0
|
188 |
|
sl@0
|
189 |
@param aCameraVersion
|
sl@0
|
190 |
The version of camera API used by applications
|
sl@0
|
191 |
|
sl@0
|
192 |
@return Pointer to the plugin.
|
sl@0
|
193 |
*/
|
sl@0
|
194 |
static CCameraPlugin* NewLC(TInt aCameraVersion);
|
sl@0
|
195 |
|
sl@0
|
196 |
private:
|
sl@0
|
197 |
CCameraStructure* iCameraStructure;
|
sl@0
|
198 |
};
|
sl@0
|
199 |
|
sl@0
|
200 |
NONSHARABLE_CLASS( CCameraStructure ): public CBase
|
sl@0
|
201 |
{
|
sl@0
|
202 |
public:
|
sl@0
|
203 |
TUid iDestructorKey;
|
sl@0
|
204 |
TInt iCameraVersion;
|
sl@0
|
205 |
};
|
sl@0
|
206 |
|
sl@0
|
207 |
#endif // ECAMPLUGIN_H
|