sl@0
|
1 |
// Copyright (c) 2005-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 |
@prototype
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
|
sl@0
|
22 |
#ifndef MCAMERASNAPSHOT_H
|
sl@0
|
23 |
#define MCAMERASNAPSHOT_H
|
sl@0
|
24 |
|
sl@0
|
25 |
#include <ecam/camerasnapshot.h>
|
sl@0
|
26 |
#include <ecam/ecamcommonuidif.hrh>
|
sl@0
|
27 |
|
sl@0
|
28 |
class TRgb;
|
sl@0
|
29 |
|
sl@0
|
30 |
/**
|
sl@0
|
31 |
This is the UID which is used to obtain the MCameraSnapshot interface,
|
sl@0
|
32 |
via a call to CCamera::CustomInterface(), which provides implementation of the M-class interface.
|
sl@0
|
33 |
|
sl@0
|
34 |
@see KECamMCameraSnapshotUidValue
|
sl@0
|
35 |
*/
|
sl@0
|
36 |
static const TUid KECamMCameraSnapshotUid = {KECamMCameraSnapshotUidValue};
|
sl@0
|
37 |
|
sl@0
|
38 |
/**
|
sl@0
|
39 |
This is the UID which is used to obtain the MCameraSnapshot2 interface,
|
sl@0
|
40 |
via a call to CCamera::CustomInterface(), which provides implementation of the M-class interface.
|
sl@0
|
41 |
|
sl@0
|
42 |
@see KECamMCameraSnapshot2UidValue
|
sl@0
|
43 |
*/
|
sl@0
|
44 |
static const TUid KECamMCameraSnapshot2Uid = {KECamMCameraSnapshot2UidValue};
|
sl@0
|
45 |
|
sl@0
|
46 |
/**
|
sl@0
|
47 |
This is a mixin class to be implemented by providers of the extension API for the camera snapshot.
|
sl@0
|
48 |
|
sl@0
|
49 |
@note This class is intended for sub classing by licensees only.
|
sl@0
|
50 |
|
sl@0
|
51 |
@see CCamera::CCameraSnapshot
|
sl@0
|
52 |
|
sl@0
|
53 |
@publishedPartner
|
sl@0
|
54 |
@prototype
|
sl@0
|
55 |
*/
|
sl@0
|
56 |
|
sl@0
|
57 |
class MCameraSnapshot
|
sl@0
|
58 |
{
|
sl@0
|
59 |
|
sl@0
|
60 |
public:
|
sl@0
|
61 |
/**
|
sl@0
|
62 |
@publishedPartner
|
sl@0
|
63 |
@released
|
sl@0
|
64 |
|
sl@0
|
65 |
Gets a list of camera formats for which the ECam implementation supports snapshots.
|
sl@0
|
66 |
|
sl@0
|
67 |
@return Bit field containing the supported camera formats as CCamera::TFormat values.
|
sl@0
|
68 |
*/
|
sl@0
|
69 |
virtual TUint32 SupportedFormats()=0;
|
sl@0
|
70 |
|
sl@0
|
71 |
/**
|
sl@0
|
72 |
@deprecated Use void MCameraSnapshot2::PrepareSnapshotL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters);
|
sl@0
|
73 |
|
sl@0
|
74 |
Sets the properties of the snapshot data including the background colour and the position of the snapshot.
|
sl@0
|
75 |
|
sl@0
|
76 |
@param aFormat
|
sl@0
|
77 |
The image format that the snapshot must have.
|
sl@0
|
78 |
@param aPosition
|
sl@0
|
79 |
The top left corner position (in pixels) which determines the layout of the snapshot image
|
sl@0
|
80 |
within the dimensions provided by the aSize parameter when the snapshot has been scaled
|
sl@0
|
81 |
maintaining its aspect ratio. See also SetPositionL().
|
sl@0
|
82 |
@param aSize
|
sl@0
|
83 |
The size of the snapshot in pixels.
|
sl@0
|
84 |
@param aBgColor
|
sl@0
|
85 |
The background colour to be used if the snapshot has been scaled (maintaining its aspect ratio)
|
sl@0
|
86 |
and does not fully fill the dimension provided by the aSize parameter. See also SetBgColorL().
|
sl@0
|
87 |
@param aMaintainAspectRatio
|
sl@0
|
88 |
Set to ETrue if the aspect ratio of the snapshot image must be maintained when scaling down.
|
sl@0
|
89 |
|
sl@0
|
90 |
@leave KErrNotSupported if the specified image format is not supported; also any system wide error.
|
sl@0
|
91 |
*/
|
sl@0
|
92 |
virtual void PrepareSnapshotL(CCamera::TFormat aFormat, const TPoint& aPosition, const TSize& aSize, const TRgb& aBgColor, TBool aMaintainAspectRatio)=0;
|
sl@0
|
93 |
|
sl@0
|
94 |
/**
|
sl@0
|
95 |
@deprecated Use void MCameraSnapshot2::PrepareSnapshotL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters);
|
sl@0
|
96 |
|
sl@0
|
97 |
Sets the properties of the snapshot data, excluding the background colour and the position of the snapshot.
|
sl@0
|
98 |
This method can be used when the client wishes to determine the layout and background colour after the
|
sl@0
|
99 |
snapshot image has been generated. See also SetPositionL() and SetBgColorL().
|
sl@0
|
100 |
|
sl@0
|
101 |
@param aFormat
|
sl@0
|
102 |
The image format that the snapshot must have.
|
sl@0
|
103 |
@param aSize
|
sl@0
|
104 |
The size of the snapshot in pixels.
|
sl@0
|
105 |
@param aMaintainAspectRatio
|
sl@0
|
106 |
Set to ETrue if the aspect ratio of the snapshot image must be maintained when scaling down.
|
sl@0
|
107 |
|
sl@0
|
108 |
@leave KErrNotSupported if the specified image format is not supported; also any system wide error.
|
sl@0
|
109 |
*/
|
sl@0
|
110 |
virtual void PrepareSnapshotL(CCamera::TFormat aFormat, const TSize& aSize, TBool aMaintainAspectRatio)=0;
|
sl@0
|
111 |
|
sl@0
|
112 |
/**
|
sl@0
|
113 |
@deprecated Use void MCameraSnapshot2::SetSnapshotParametersL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters);
|
sl@0
|
114 |
|
sl@0
|
115 |
Sets the background colour to be used if the snapshot has been scaled (maintaining its aspect ratio)
|
sl@0
|
116 |
and does not fully fill the snapshot size as specified in PrepareSnapshot().
|
sl@0
|
117 |
|
sl@0
|
118 |
@param aBgColor
|
sl@0
|
119 |
The new background colour.
|
sl@0
|
120 |
|
sl@0
|
121 |
@leave KErrNotSupported if the specified image format is not supported; also any system wide error.
|
sl@0
|
122 |
*/
|
sl@0
|
123 |
virtual void SetBgColorL(const TRgb& aBgColor)=0;
|
sl@0
|
124 |
|
sl@0
|
125 |
/**
|
sl@0
|
126 |
@deprecated Use void MCameraSnapshot2::SetSnapshotParametersL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters);
|
sl@0
|
127 |
|
sl@0
|
128 |
Sets the top left corner position (in pixels), where the snapshot should be laid out after scaling
|
sl@0
|
129 |
down (maintaining its aspect ratio). The position is within the dimensions provided by the snapshot
|
sl@0
|
130 |
size specified in PrepareSnapshot().
|
sl@0
|
131 |
|
sl@0
|
132 |
@param aPosition
|
sl@0
|
133 |
The top left corner position in pixels of the snapshot.
|
sl@0
|
134 |
|
sl@0
|
135 |
@leave KErrNotSupported if the specified image format is not supported; also any system wide error.
|
sl@0
|
136 |
*/
|
sl@0
|
137 |
virtual void SetPositionL(const TPoint& aPosition)=0;
|
sl@0
|
138 |
|
sl@0
|
139 |
/**
|
sl@0
|
140 |
@deprecated Use void MCameraSnapshot2::GetSnapshotStatusL(CCamera::CCameraSnapshot::TSnapshotState& aSnapshotState) const;
|
sl@0
|
141 |
|
sl@0
|
142 |
Determines if the snapshot feature is active.
|
sl@0
|
143 |
|
sl@0
|
144 |
@return ETrue, if StartSnapshot() has been called, otherwise EFalse.
|
sl@0
|
145 |
*/
|
sl@0
|
146 |
virtual TBool IsSnapshotActive() const=0;
|
sl@0
|
147 |
|
sl@0
|
148 |
/**
|
sl@0
|
149 |
@deprecated Use void MCameraSnapshot2::EnableSnapshotL();
|
sl@0
|
150 |
|
sl@0
|
151 |
Activates the snapshot feature. Calls to this method when the snapshot feature is already active
|
sl@0
|
152 |
will be ignored.
|
sl@0
|
153 |
|
sl@0
|
154 |
The client will not receive snapshot notifications until the snapshot feature is activated.
|
sl@0
|
155 |
*/
|
sl@0
|
156 |
virtual void StartSnapshot()=0;
|
sl@0
|
157 |
|
sl@0
|
158 |
/**
|
sl@0
|
159 |
@deprecated Use void MCameraSnapshot2::DisableSnapshotL();
|
sl@0
|
160 |
|
sl@0
|
161 |
Deactivates the snapshot feature if it is active.
|
sl@0
|
162 |
|
sl@0
|
163 |
Once the snapshot has been deactivated, the client will no longer receive notifications about snapshots.
|
sl@0
|
164 |
*/
|
sl@0
|
165 |
virtual void StopSnapshot()=0;
|
sl@0
|
166 |
|
sl@0
|
167 |
/**
|
sl@0
|
168 |
@deprecated Use callbacks: MCaptureImageObserver::ClientSnapshotForImageReady and MCaptureVideoObserver::
|
sl@0
|
169 |
ClientSnapshotReady
|
sl@0
|
170 |
|
sl@0
|
171 |
Returns the snapshot data from ECam implementation to the client.
|
sl@0
|
172 |
|
sl@0
|
173 |
The data is returned in an MCameraBuffer object. In the case where the driving mode returns more
|
sl@0
|
174 |
than one image (burst mode, bracket mode, etc.) the buffer contains several snapshots which may
|
sl@0
|
175 |
be returned in any order. The aFrameIndexOrder array provides the image sequence numbers in the
|
sl@0
|
176 |
order in which the snapshots for those images are returned within the MCameraBuffer.
|
sl@0
|
177 |
|
sl@0
|
178 |
@param aFrameIndexOrder
|
sl@0
|
179 |
A reference to an array that will receive the image sequence numbers in the order to which
|
sl@0
|
180 |
the snapshots within MCameraBuffer relate.
|
sl@0
|
181 |
|
sl@0
|
182 |
@return A reference to an MCameraBuffer which will contain the returned snapshot image data.
|
sl@0
|
183 |
|
sl@0
|
184 |
@leave KErrNoMemory if the ECam implementation has not been able to create the camera buffer;
|
sl@0
|
185 |
also any system wide error.
|
sl@0
|
186 |
*/
|
sl@0
|
187 |
virtual MCameraBuffer& SnapshotDataL(RArray<TInt>& aFrameIndexOrder)=0;
|
sl@0
|
188 |
|
sl@0
|
189 |
/**
|
sl@0
|
190 |
Destroys the object of this class on the ECam implementation.
|
sl@0
|
191 |
This function is called from the destructor of CCamera::CCameraSnapshot.
|
sl@0
|
192 |
*/
|
sl@0
|
193 |
virtual void Release()=0;
|
sl@0
|
194 |
|
sl@0
|
195 |
};
|
sl@0
|
196 |
|
sl@0
|
197 |
/**
|
sl@0
|
198 |
This is a mixin class to be implemented by providers of the extension API for the extra features for camera snapshot.
|
sl@0
|
199 |
|
sl@0
|
200 |
@see CCamera::CCameraSnapshot
|
sl@0
|
201 |
|
sl@0
|
202 |
@publishedPartner
|
sl@0
|
203 |
@prototype
|
sl@0
|
204 |
*/
|
sl@0
|
205 |
|
sl@0
|
206 |
class MCameraSnapshot2
|
sl@0
|
207 |
{
|
sl@0
|
208 |
|
sl@0
|
209 |
public:
|
sl@0
|
210 |
/**
|
sl@0
|
211 |
Releases the interface.
|
sl@0
|
212 |
*/
|
sl@0
|
213 |
virtual void Release()=0;
|
sl@0
|
214 |
|
sl@0
|
215 |
/**
|
sl@0
|
216 |
Sets the client viewfinder on which the client snapshot will be displayed.
|
sl@0
|
217 |
|
sl@0
|
218 |
@param aClientViewFinderId
|
sl@0
|
219 |
The client viewfinder on which this client snapshot will be displayed.
|
sl@0
|
220 |
*/
|
sl@0
|
221 |
virtual void SetClientViewFinderId(TInt aClientViewFinderId)=0;
|
sl@0
|
222 |
|
sl@0
|
223 |
/**
|
sl@0
|
224 |
Retrieves the concrete factory handle for the histogram implementation in order to
|
sl@0
|
225 |
use it specifically for a given snapshot.
|
sl@0
|
226 |
|
sl@0
|
227 |
@param aImplFactoryPtr
|
sl@0
|
228 |
The concrete factory handle for the histogram implementation specific to the given snapshot.
|
sl@0
|
229 |
|
sl@0
|
230 |
@leave May leave with any error code.
|
sl@0
|
231 |
*/
|
sl@0
|
232 |
virtual void CreateHistogramImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const=0;
|
sl@0
|
233 |
|
sl@0
|
234 |
/**
|
sl@0
|
235 |
Sets the properties of the snapshot. ECam implementation may use a different size than that specified by this method.
|
sl@0
|
236 |
|
sl@0
|
237 |
@param aSnapshotParameters
|
sl@0
|
238 |
The snaspshot parameters.
|
sl@0
|
239 |
|
sl@0
|
240 |
@leave May leave with any error code.
|
sl@0
|
241 |
|
sl@0
|
242 |
@note This method is used to provide snapshot parameters.
|
sl@0
|
243 |
*/
|
sl@0
|
244 |
virtual void PrepareSnapshotL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters)=0;
|
sl@0
|
245 |
|
sl@0
|
246 |
/**
|
sl@0
|
247 |
Retrieves the snapshot parameters. ECam implementation may use a different size than that provided by this method.
|
sl@0
|
248 |
|
sl@0
|
249 |
@param aSnapshotParameters
|
sl@0
|
250 |
Retrieves the currently used snapshot parameters.
|
sl@0
|
251 |
|
sl@0
|
252 |
@leave May leave with any error code.
|
sl@0
|
253 |
|
sl@0
|
254 |
@note This method is used to retrieve snapshot parameters.
|
sl@0
|
255 |
*/
|
sl@0
|
256 |
virtual void GetSnapshotParametersL(CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters)=0;
|
sl@0
|
257 |
|
sl@0
|
258 |
/**
|
sl@0
|
259 |
Sets/updates the snapshot parameters.
|
sl@0
|
260 |
|
sl@0
|
261 |
@param aSnapshotParameters
|
sl@0
|
262 |
The desired snapshot parameters.
|
sl@0
|
263 |
|
sl@0
|
264 |
@leave May leave with any error code.
|
sl@0
|
265 |
|
sl@0
|
266 |
@note This method is used to set/update snapshot parameters.
|
sl@0
|
267 |
*/
|
sl@0
|
268 |
virtual void SetSnapshotParametersL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters)=0;
|
sl@0
|
269 |
|
sl@0
|
270 |
/**
|
sl@0
|
271 |
Retrieves the current status for the snapshot.
|
sl@0
|
272 |
|
sl@0
|
273 |
@param aSnapshotState
|
sl@0
|
274 |
Retrieves information about the current snapshot state.
|
sl@0
|
275 |
|
sl@0
|
276 |
@leave May leave with any error code.
|
sl@0
|
277 |
|
sl@0
|
278 |
@note This method is used to retrieve the snapshot status.
|
sl@0
|
279 |
*/
|
sl@0
|
280 |
virtual void GetSnapshotStatusL(CCamera::CCameraSnapshot::TSnapshotState& aSnapshotState) const=0;
|
sl@0
|
281 |
|
sl@0
|
282 |
/**
|
sl@0
|
283 |
The method specifies the frames to be used from video captured data in order to create snapshot for video.
|
sl@0
|
284 |
|
sl@0
|
285 |
@param aSnapshotVideoFrames
|
sl@0
|
286 |
A TSnapshotVideoFrames used to specify the desired frames to be used for creating snapshots for video.
|
sl@0
|
287 |
|
sl@0
|
288 |
@leave May leave with any error code.
|
sl@0
|
289 |
*/
|
sl@0
|
290 |
virtual void SelectSnapshotVideoFramesL(CCamera::CCameraSnapshot::TSnapshotVideoFrames aSnapshotVideoFrames)=0;
|
sl@0
|
291 |
|
sl@0
|
292 |
/**
|
sl@0
|
293 |
Activates the snapshot feature. Calls to this method when the snapshot feature is already active will be ignored.
|
sl@0
|
294 |
|
sl@0
|
295 |
The client will not receive snapshot notifications until the snapshot feature is activated.
|
sl@0
|
296 |
|
sl@0
|
297 |
Implementation shall use the observers: MCaptureImageObserver and MCaptureVideoObserver. Snapshot notifications will
|
sl@0
|
298 |
be send to the clients via these observers and not through events.
|
sl@0
|
299 |
*/
|
sl@0
|
300 |
virtual void EnableSnapshot()=0;
|
sl@0
|
301 |
|
sl@0
|
302 |
/**
|
sl@0
|
303 |
Deactivates the snapshot feature if it is active.
|
sl@0
|
304 |
|
sl@0
|
305 |
Once the snapshot has been deactivated, the client will no longer receive notifications about snapshots.
|
sl@0
|
306 |
*/
|
sl@0
|
307 |
virtual void DisableSnapshot()=0;
|
sl@0
|
308 |
};
|
sl@0
|
309 |
|
sl@0
|
310 |
#endif // MCAMERASNAPSHOT_H
|