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 CAMERASNAPSHOT_H
23 #define CAMERASNAPSHOT_H
27 #include <ecamcapturecontrol.h>
28 #include <ecam/ecamcommonuids.hrh>
29 #ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
30 #include <ecam/ecamcommonuidsconst.hrh>
32 class MCameraSnapshot;
33 class MCameraSnapshot2;
35 class MImplementationFactory;
38 Constant used to specify the default display time. When this default display time is specified by the client, the implementation
39 may use its own time interval in order to display the direct snapshot data.
41 @see CCamera::CCameraSnapshot::TSnapshotParameters::iDisplayTime
46 static const TInt KECamSnapshotDefaultDisplayTime = 0;
49 The current Version of the TSnapshotParameters class.
54 static const TUint KECamSnapshotParametersCurrentVersion = 1;
57 UID used to identify the event that, the request for snapshot has completed successfully.
58 A callback to MCameraObserver2::HandleEvent() will occur when the snapshot data is ready to be retrieved.
59 If a call to StartSnapshot() is made without a successful call to PrepareSnapshotL() then the callback returns KErrNotReady.
61 static const TUid KUidECamEventCameraSnapshot = {KUidECamEventSnapshotUidValue};
64 UID used to identify the CCamera::CCameraSnapshot API.
65 This is the UID which is used to obtain the CCameraSnapshot interface,
66 via a call to CCamera::CustomInterface().
68 @see KECamSnapshotUidValue
69 @see CCamera::CCameraSnapshot
71 static const TUid KECamSnapshotUid = {KECamSnapshotUidValue};
74 This class allows the client to request snapshot data in a specified image format for both still images and video.
76 Snapshot object may be created out of new classes: CCameraImageCapture and CCameraVideoCaptureControl. The client selects
77 snapshot parameters calling PrepareSnapshotL(const TSnapshotParameters& aSnapshotParameters). It can then enable and
78 disable the snapshot generation by calling EnableSnapshotL() and DisableSnapshotL(). The client application using this API
79 shall provide MCaptureImageObserver and MCaptureVideoObserver interface. Callbacks available are MCaptureImageObserver::
80 ClientSnapshotForImageReady and MCaptureVideoObserver::ClientSnapshotReady.
82 Snapshots are supposed to be displayed on a particular viewfinder. So, while destruction, client shall destroy snapshot
83 first. In general, child objects shall be destroyed before the parent objects.
85 Following is valid for older clients who created snapshots using NewL method:-
86 The client selects snapshot parameters calling PrepareSnapshotL(). It can then start and stop
87 receiving notifications from the ECam implementation by calling StartSnapshot() and StopSnapshot().
88 The client application using this API should provide MCameraObserver2 interface to be signalled,
89 with event KUidECamEventCameraSnapshot, when snapshot data is available to be retrieved from
90 the ECam implementation.
91 The client can then retrieve the snapshot data from the ECam implementation calling SnapshotDataL().
93 @note This class provides a standardised client interface for the camera snapshot. Classes cannot be derived from it.
95 @note If the class methods leave, the output type parameter value is not guaranteed to be valid.
101 class CCamera::CCameraSnapshot: public CBase
104 friend class CCamera;
106 friend CCamera::CCameraSnapshot* CCamera::CCameraImageCapture::GetSnapshotHandleL(TInt aClientViewFinderId) const;
107 friend CCamera::CCameraSnapshot* CCamera::CCameraVideoCaptureControl::GetSnapshotHandleL(TInt aClientViewFinderId) const;
111 Describes the state of snapshot.
112 The enumeration list may be extended in future.
116 /** Snapshot has not been prepared. */
118 /** Snapshot has been prepared but not yet enabled. */
120 /** Snapshot has been prepared and enabled but not yet disabled. */
122 /** Snapshot has been disabled. */
127 Specifies the video frames to be used in order to create snapshots fo video.
128 The enumeration list may be extended in future.
130 enum TSnapshotVideoFrames
132 /** Snapshot for video created from first video frame. Used by default. */
133 ESnapshotVideoFirstFrame,
134 /** Snapshot for video created from last video frame. */
135 ESnapshotVideoLastFrame,
136 /** Snapshot for video created from first and last video frame. */
137 ESnapshotVideoFirstAndLastFrame,
138 /** Snapshot for video created from every video frame. */
139 ESnapshotVideoEveryFrame
143 Specifes the parameters necessary for client snapshots.
145 class TSnapshotParameters
148 IMPORT_C TSnapshotParameters();
150 IMPORT_C TUint Size() const;
151 IMPORT_C TUint Version() const;
153 IMPORT_C TBool IsAspectRatioMaintained() const;
155 IMPORT_C void SetAspectRatioState(TBool aIsAspectRatioMaintained);
158 //for future expansion
162 // reserved for future expansion
173 /** Set to ETrue if the aspect ratio of the snapshot image must be maintained when scaling down */
174 TUint iIsAspectRatioMaintained:1;
177 /** The image format that the snapshot must have. */
178 CCamera::TFormat iFormat;
179 /** The top left corner position (in pixels) which determines the layout of the snapshot image
180 within the dimensions provided by the iSnapshotSize parameter when the snapshot has been scaled
181 maintaining its aspect ratio. ECam implementation is supposed to calculate the proportion between
182 the top left corner and the snapshot size and hence use it, in case, the snapshot size used is different. */
184 /** The size of the snapshot in pixels. The snapshot size may be changed by the implementation to meet hardware
185 requirements, performance etc. */
190 IMPORT_C static CCameraSnapshot* NewL(CCamera& aCamera);
192 IMPORT_C CCamera::CCameraV2Histogram* CreateHistogramHandleL() const;
194 IMPORT_C TUint32 SupportedFormats();
196 IMPORT_C void PrepareSnapshotL(CCamera::TFormat aFormat, const TPoint& aPosition, const TSize& aSize, const TRgb& aBgColor, TBool aMaintainAspectRatio);
197 IMPORT_C void PrepareSnapshotL(CCamera::TFormat aFormat, const TSize& aSize, TBool aMaintainAspectRatio);
199 IMPORT_C void SetBgColorL(const TRgb& aBgColor);
200 IMPORT_C void SetPositionL(const TPoint& aPosition);
202 IMPORT_C TBool IsSnapshotActive() const;
203 IMPORT_C void StartSnapshot();
204 IMPORT_C void StopSnapshot();
206 IMPORT_C MCameraBuffer& SnapshotDataL(RArray<TInt>& aFrameIndexOrder);
208 IMPORT_C ~CCameraSnapshot();
210 IMPORT_C void PrepareSnapshotL(const TSnapshotParameters& aSnapshotParameters);
212 IMPORT_C void GetSnapshotParametersL(TSnapshotParameters& aSnapshotParameters);
213 IMPORT_C void SetSnapshotParametersL(const TSnapshotParameters& aSnapshotParameters);
215 IMPORT_C void GetSnapshotStatusL(TSnapshotState& aSnapshotState) const;
217 IMPORT_C void SelectSnapshotVideoFramesL(TSnapshotVideoFrames aSnapshotVideoFrames);
219 IMPORT_C void EnableSnapshotL();
220 IMPORT_C void DisableSnapshotL();
223 IMPORT_C static CCameraSnapshot* CreateL(CCamera& aCamera, MImplementationFactory& aImplFactory, TInt aClientViewFinderId);
225 CCameraSnapshot(CCamera& aOwner);
227 void ConstructL(const MImplementationFactory& aImplFactory, TInt aClientViewFinderId);
231 MCameraSnapshot* iImpl; // not owned
232 MCameraSnapshot2* iImpl2; // not owned
235 #endif // CAMERASNAPSHOT_H