Update contrib.
1 // Copyright (c) 2005-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 MCAMERASNAPSHOT_H
23 #define MCAMERASNAPSHOT_H
25 #include <ecam/camerasnapshot.h>
26 #include <ecam/ecamcommonuidif.hrh>
31 This is the UID which is used to obtain the MCameraSnapshot interface,
32 via a call to CCamera::CustomInterface(), which provides implementation of the M-class interface.
34 @see KECamMCameraSnapshotUidValue
36 static const TUid KECamMCameraSnapshotUid = {KECamMCameraSnapshotUidValue};
39 This is the UID which is used to obtain the MCameraSnapshot2 interface,
40 via a call to CCamera::CustomInterface(), which provides implementation of the M-class interface.
42 @see KECamMCameraSnapshot2UidValue
44 static const TUid KECamMCameraSnapshot2Uid = {KECamMCameraSnapshot2UidValue};
47 This is a mixin class to be implemented by providers of the extension API for the camera snapshot.
49 @note This class is intended for sub classing by licensees only.
51 @see CCamera::CCameraSnapshot
65 Gets a list of camera formats for which the ECam implementation supports snapshots.
67 @return Bit field containing the supported camera formats as CCamera::TFormat values.
69 virtual TUint32 SupportedFormats()=0;
72 @deprecated Use void MCameraSnapshot2::PrepareSnapshotL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters);
74 Sets the properties of the snapshot data including the background colour and the position of the snapshot.
77 The image format that the snapshot must have.
79 The top left corner position (in pixels) which determines the layout of the snapshot image
80 within the dimensions provided by the aSize parameter when the snapshot has been scaled
81 maintaining its aspect ratio. See also SetPositionL().
83 The size of the snapshot in pixels.
85 The background colour to be used if the snapshot has been scaled (maintaining its aspect ratio)
86 and does not fully fill the dimension provided by the aSize parameter. See also SetBgColorL().
87 @param aMaintainAspectRatio
88 Set to ETrue if the aspect ratio of the snapshot image must be maintained when scaling down.
90 @leave KErrNotSupported if the specified image format is not supported; also any system wide error.
92 virtual void PrepareSnapshotL(CCamera::TFormat aFormat, const TPoint& aPosition, const TSize& aSize, const TRgb& aBgColor, TBool aMaintainAspectRatio)=0;
95 @deprecated Use void MCameraSnapshot2::PrepareSnapshotL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters);
97 Sets the properties of the snapshot data, excluding the background colour and the position of the snapshot.
98 This method can be used when the client wishes to determine the layout and background colour after the
99 snapshot image has been generated. See also SetPositionL() and SetBgColorL().
102 The image format that the snapshot must have.
104 The size of the snapshot in pixels.
105 @param aMaintainAspectRatio
106 Set to ETrue if the aspect ratio of the snapshot image must be maintained when scaling down.
108 @leave KErrNotSupported if the specified image format is not supported; also any system wide error.
110 virtual void PrepareSnapshotL(CCamera::TFormat aFormat, const TSize& aSize, TBool aMaintainAspectRatio)=0;
113 @deprecated Use void MCameraSnapshot2::SetSnapshotParametersL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters);
115 Sets the background colour to be used if the snapshot has been scaled (maintaining its aspect ratio)
116 and does not fully fill the snapshot size as specified in PrepareSnapshot().
119 The new background colour.
121 @leave KErrNotSupported if the specified image format is not supported; also any system wide error.
123 virtual void SetBgColorL(const TRgb& aBgColor)=0;
126 @deprecated Use void MCameraSnapshot2::SetSnapshotParametersL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters);
128 Sets the top left corner position (in pixels), where the snapshot should be laid out after scaling
129 down (maintaining its aspect ratio). The position is within the dimensions provided by the snapshot
130 size specified in PrepareSnapshot().
133 The top left corner position in pixels of the snapshot.
135 @leave KErrNotSupported if the specified image format is not supported; also any system wide error.
137 virtual void SetPositionL(const TPoint& aPosition)=0;
140 @deprecated Use void MCameraSnapshot2::GetSnapshotStatusL(CCamera::CCameraSnapshot::TSnapshotState& aSnapshotState) const;
142 Determines if the snapshot feature is active.
144 @return ETrue, if StartSnapshot() has been called, otherwise EFalse.
146 virtual TBool IsSnapshotActive() const=0;
149 @deprecated Use void MCameraSnapshot2::EnableSnapshotL();
151 Activates the snapshot feature. Calls to this method when the snapshot feature is already active
154 The client will not receive snapshot notifications until the snapshot feature is activated.
156 virtual void StartSnapshot()=0;
159 @deprecated Use void MCameraSnapshot2::DisableSnapshotL();
161 Deactivates the snapshot feature if it is active.
163 Once the snapshot has been deactivated, the client will no longer receive notifications about snapshots.
165 virtual void StopSnapshot()=0;
168 @deprecated Use callbacks: MCaptureImageObserver::ClientSnapshotForImageReady and MCaptureVideoObserver::
171 Returns the snapshot data from ECam implementation to the client.
173 The data is returned in an MCameraBuffer object. In the case where the driving mode returns more
174 than one image (burst mode, bracket mode, etc.) the buffer contains several snapshots which may
175 be returned in any order. The aFrameIndexOrder array provides the image sequence numbers in the
176 order in which the snapshots for those images are returned within the MCameraBuffer.
178 @param aFrameIndexOrder
179 A reference to an array that will receive the image sequence numbers in the order to which
180 the snapshots within MCameraBuffer relate.
182 @return A reference to an MCameraBuffer which will contain the returned snapshot image data.
184 @leave KErrNoMemory if the ECam implementation has not been able to create the camera buffer;
185 also any system wide error.
187 virtual MCameraBuffer& SnapshotDataL(RArray<TInt>& aFrameIndexOrder)=0;
190 Destroys the object of this class on the ECam implementation.
191 This function is called from the destructor of CCamera::CCameraSnapshot.
193 virtual void Release()=0;
198 This is a mixin class to be implemented by providers of the extension API for the extra features for camera snapshot.
200 @see CCamera::CCameraSnapshot
206 class MCameraSnapshot2
211 Releases the interface.
213 virtual void Release()=0;
216 Sets the client viewfinder on which the client snapshot will be displayed.
218 @param aClientViewFinderId
219 The client viewfinder on which this client snapshot will be displayed.
221 virtual void SetClientViewFinderId(TInt aClientViewFinderId)=0;
224 Retrieves the concrete factory handle for the histogram implementation in order to
225 use it specifically for a given snapshot.
227 @param aImplFactoryPtr
228 The concrete factory handle for the histogram implementation specific to the given snapshot.
230 @leave May leave with any error code.
232 virtual void CreateHistogramImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const=0;
235 Sets the properties of the snapshot. ECam implementation may use a different size than that specified by this method.
237 @param aSnapshotParameters
238 The snaspshot parameters.
240 @leave May leave with any error code.
242 @note This method is used to provide snapshot parameters.
244 virtual void PrepareSnapshotL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters)=0;
247 Retrieves the snapshot parameters. ECam implementation may use a different size than that provided by this method.
249 @param aSnapshotParameters
250 Retrieves the currently used snapshot parameters.
252 @leave May leave with any error code.
254 @note This method is used to retrieve snapshot parameters.
256 virtual void GetSnapshotParametersL(CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters)=0;
259 Sets/updates the snapshot parameters.
261 @param aSnapshotParameters
262 The desired snapshot parameters.
264 @leave May leave with any error code.
266 @note This method is used to set/update snapshot parameters.
268 virtual void SetSnapshotParametersL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters)=0;
271 Retrieves the current status for the snapshot.
273 @param aSnapshotState
274 Retrieves information about the current snapshot state.
276 @leave May leave with any error code.
278 @note This method is used to retrieve the snapshot status.
280 virtual void GetSnapshotStatusL(CCamera::CCameraSnapshot::TSnapshotState& aSnapshotState) const=0;
283 The method specifies the frames to be used from video captured data in order to create snapshot for video.
285 @param aSnapshotVideoFrames
286 A TSnapshotVideoFrames used to specify the desired frames to be used for creating snapshots for video.
288 @leave May leave with any error code.
290 virtual void SelectSnapshotVideoFramesL(CCamera::CCameraSnapshot::TSnapshotVideoFrames aSnapshotVideoFrames)=0;
293 Activates the snapshot feature. Calls to this method when the snapshot feature is already active will be ignored.
295 The client will not receive snapshot notifications until the snapshot feature is activated.
297 Implementation shall use the observers: MCaptureImageObserver and MCaptureVideoObserver. Snapshot notifications will
298 be send to the clients via these observers and not through events.
300 virtual void EnableSnapshot()=0;
303 Deactivates the snapshot feature if it is active.
305 Once the snapshot has been deactivated, the client will no longer receive notifications about snapshots.
307 virtual void DisableSnapshot()=0;
310 #endif // MCAMERASNAPSHOT_H