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 CAMERASNAPSHOT_H
|
sl@0
|
23 |
#define CAMERASNAPSHOT_H
|
sl@0
|
24 |
|
sl@0
|
25 |
#include <ecam.h>
|
sl@0
|
26 |
#include <gdi.h>
|
sl@0
|
27 |
#include <ecamcapturecontrol.h>
|
sl@0
|
28 |
#include <ecam/ecamcommonuids.hrh>
|
sl@0
|
29 |
#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
|
sl@0
|
30 |
#include <ecam/ecamcommonuidsconst.hrh>
|
sl@0
|
31 |
#endif
|
sl@0
|
32 |
class MCameraSnapshot;
|
sl@0
|
33 |
class MCameraSnapshot2;
|
sl@0
|
34 |
|
sl@0
|
35 |
class MImplementationFactory;
|
sl@0
|
36 |
|
sl@0
|
37 |
/**
|
sl@0
|
38 |
Constant used to specify the default display time. When this default display time is specified by the client, the implementation
|
sl@0
|
39 |
may use its own time interval in order to display the direct snapshot data.
|
sl@0
|
40 |
|
sl@0
|
41 |
@see CCamera::CCameraSnapshot::TSnapshotParameters::iDisplayTime
|
sl@0
|
42 |
|
sl@0
|
43 |
@publishedPartner
|
sl@0
|
44 |
@prototype
|
sl@0
|
45 |
*/
|
sl@0
|
46 |
static const TInt KECamSnapshotDefaultDisplayTime = 0;
|
sl@0
|
47 |
|
sl@0
|
48 |
/**
|
sl@0
|
49 |
The current Version of the TSnapshotParameters class.
|
sl@0
|
50 |
|
sl@0
|
51 |
@publishedPartner
|
sl@0
|
52 |
@prototype
|
sl@0
|
53 |
*/
|
sl@0
|
54 |
static const TUint KECamSnapshotParametersCurrentVersion = 1;
|
sl@0
|
55 |
|
sl@0
|
56 |
/**
|
sl@0
|
57 |
UID used to identify the event that, the request for snapshot has completed successfully.
|
sl@0
|
58 |
A callback to MCameraObserver2::HandleEvent() will occur when the snapshot data is ready to be retrieved.
|
sl@0
|
59 |
If a call to StartSnapshot() is made without a successful call to PrepareSnapshotL() then the callback returns KErrNotReady.
|
sl@0
|
60 |
*/
|
sl@0
|
61 |
static const TUid KUidECamEventCameraSnapshot = {KUidECamEventSnapshotUidValue};
|
sl@0
|
62 |
|
sl@0
|
63 |
/**
|
sl@0
|
64 |
UID used to identify the CCamera::CCameraSnapshot API.
|
sl@0
|
65 |
This is the UID which is used to obtain the CCameraSnapshot interface,
|
sl@0
|
66 |
via a call to CCamera::CustomInterface().
|
sl@0
|
67 |
|
sl@0
|
68 |
@see KECamSnapshotUidValue
|
sl@0
|
69 |
@see CCamera::CCameraSnapshot
|
sl@0
|
70 |
*/
|
sl@0
|
71 |
static const TUid KECamSnapshotUid = {KECamSnapshotUidValue};
|
sl@0
|
72 |
|
sl@0
|
73 |
/**
|
sl@0
|
74 |
This class allows the client to request snapshot data in a specified image format for both still images and video.
|
sl@0
|
75 |
|
sl@0
|
76 |
Snapshot object may be created out of new classes: CCameraImageCapture and CCameraVideoCaptureControl. The client selects
|
sl@0
|
77 |
snapshot parameters calling PrepareSnapshotL(const TSnapshotParameters& aSnapshotParameters). It can then enable and
|
sl@0
|
78 |
disable the snapshot generation by calling EnableSnapshotL() and DisableSnapshotL(). The client application using this API
|
sl@0
|
79 |
shall provide MCaptureImageObserver and MCaptureVideoObserver interface. Callbacks available are MCaptureImageObserver::
|
sl@0
|
80 |
ClientSnapshotForImageReady and MCaptureVideoObserver::ClientSnapshotReady.
|
sl@0
|
81 |
|
sl@0
|
82 |
Snapshots are supposed to be displayed on a particular viewfinder. So, while destruction, client shall destroy snapshot
|
sl@0
|
83 |
first. In general, child objects shall be destroyed before the parent objects.
|
sl@0
|
84 |
|
sl@0
|
85 |
Following is valid for older clients who created snapshots using NewL method:-
|
sl@0
|
86 |
The client selects snapshot parameters calling PrepareSnapshotL(). It can then start and stop
|
sl@0
|
87 |
receiving notifications from the ECam implementation by calling StartSnapshot() and StopSnapshot().
|
sl@0
|
88 |
The client application using this API should provide MCameraObserver2 interface to be signalled,
|
sl@0
|
89 |
with event KUidECamEventCameraSnapshot, when snapshot data is available to be retrieved from
|
sl@0
|
90 |
the ECam implementation.
|
sl@0
|
91 |
The client can then retrieve the snapshot data from the ECam implementation calling SnapshotDataL().
|
sl@0
|
92 |
|
sl@0
|
93 |
@note This class provides a standardised client interface for the camera snapshot. Classes cannot be derived from it.
|
sl@0
|
94 |
|
sl@0
|
95 |
@note If the class methods leave, the output type parameter value is not guaranteed to be valid.
|
sl@0
|
96 |
|
sl@0
|
97 |
@publishedPartner
|
sl@0
|
98 |
@prototype
|
sl@0
|
99 |
*/
|
sl@0
|
100 |
|
sl@0
|
101 |
class CCamera::CCameraSnapshot: public CBase
|
sl@0
|
102 |
{
|
sl@0
|
103 |
|
sl@0
|
104 |
friend class CCamera;
|
sl@0
|
105 |
|
sl@0
|
106 |
friend CCamera::CCameraSnapshot* CCamera::CCameraImageCapture::GetSnapshotHandleL(TInt aClientViewFinderId) const;
|
sl@0
|
107 |
friend CCamera::CCameraSnapshot* CCamera::CCameraVideoCaptureControl::GetSnapshotHandleL(TInt aClientViewFinderId) const;
|
sl@0
|
108 |
|
sl@0
|
109 |
public:
|
sl@0
|
110 |
/**
|
sl@0
|
111 |
Describes the state of snapshot.
|
sl@0
|
112 |
The enumeration list may be extended in future.
|
sl@0
|
113 |
*/
|
sl@0
|
114 |
enum TSnapshotState
|
sl@0
|
115 |
{
|
sl@0
|
116 |
/** Snapshot has not been prepared. */
|
sl@0
|
117 |
ESnapshotNotCreated,
|
sl@0
|
118 |
/** Snapshot has been prepared but not yet enabled. */
|
sl@0
|
119 |
ESnapshotInactive,
|
sl@0
|
120 |
/** Snapshot has been prepared and enabled but not yet disabled. */
|
sl@0
|
121 |
ESnapshotActive,
|
sl@0
|
122 |
/** Snapshot has been disabled. */
|
sl@0
|
123 |
ESnapshotDisabled,
|
sl@0
|
124 |
};
|
sl@0
|
125 |
|
sl@0
|
126 |
/**
|
sl@0
|
127 |
Specifies the video frames to be used in order to create snapshots fo video.
|
sl@0
|
128 |
The enumeration list may be extended in future.
|
sl@0
|
129 |
*/
|
sl@0
|
130 |
enum TSnapshotVideoFrames
|
sl@0
|
131 |
{
|
sl@0
|
132 |
/** Snapshot for video created from first video frame. Used by default. */
|
sl@0
|
133 |
ESnapshotVideoFirstFrame,
|
sl@0
|
134 |
/** Snapshot for video created from last video frame. */
|
sl@0
|
135 |
ESnapshotVideoLastFrame,
|
sl@0
|
136 |
/** Snapshot for video created from first and last video frame. */
|
sl@0
|
137 |
ESnapshotVideoFirstAndLastFrame,
|
sl@0
|
138 |
/** Snapshot for video created from every video frame. */
|
sl@0
|
139 |
ESnapshotVideoEveryFrame
|
sl@0
|
140 |
};
|
sl@0
|
141 |
|
sl@0
|
142 |
/**
|
sl@0
|
143 |
Specifes the parameters necessary for client snapshots.
|
sl@0
|
144 |
*/
|
sl@0
|
145 |
class TSnapshotParameters
|
sl@0
|
146 |
{
|
sl@0
|
147 |
public:
|
sl@0
|
148 |
IMPORT_C TSnapshotParameters();
|
sl@0
|
149 |
|
sl@0
|
150 |
IMPORT_C TUint Size() const;
|
sl@0
|
151 |
IMPORT_C TUint Version() const;
|
sl@0
|
152 |
|
sl@0
|
153 |
IMPORT_C TBool IsAspectRatioMaintained() const;
|
sl@0
|
154 |
|
sl@0
|
155 |
IMPORT_C void SetAspectRatioState(TBool aIsAspectRatioMaintained);
|
sl@0
|
156 |
|
sl@0
|
157 |
private:
|
sl@0
|
158 |
//for future expansion
|
sl@0
|
159 |
TUint iSize:24;
|
sl@0
|
160 |
TUint iVersion:8;
|
sl@0
|
161 |
|
sl@0
|
162 |
// reserved for future expansion
|
sl@0
|
163 |
TInt iReserved1;
|
sl@0
|
164 |
TInt iReserved2;
|
sl@0
|
165 |
TInt iReserved3;
|
sl@0
|
166 |
|
sl@0
|
167 |
TInt iReserved5;
|
sl@0
|
168 |
TInt iReserved6;
|
sl@0
|
169 |
TInt iReserved7;
|
sl@0
|
170 |
|
sl@0
|
171 |
TUint iReserved4:31;
|
sl@0
|
172 |
|
sl@0
|
173 |
/** Set to ETrue if the aspect ratio of the snapshot image must be maintained when scaling down */
|
sl@0
|
174 |
TUint iIsAspectRatioMaintained:1;
|
sl@0
|
175 |
|
sl@0
|
176 |
public:
|
sl@0
|
177 |
/** The image format that the snapshot must have. */
|
sl@0
|
178 |
CCamera::TFormat iFormat;
|
sl@0
|
179 |
/** The top left corner position (in pixels) which determines the layout of the snapshot image
|
sl@0
|
180 |
within the dimensions provided by the iSnapshotSize parameter when the snapshot has been scaled
|
sl@0
|
181 |
maintaining its aspect ratio. ECam implementation is supposed to calculate the proportion between
|
sl@0
|
182 |
the top left corner and the snapshot size and hence use it, in case, the snapshot size used is different. */
|
sl@0
|
183 |
TPoint iPosition;
|
sl@0
|
184 |
/** The size of the snapshot in pixels. The snapshot size may be changed by the implementation to meet hardware
|
sl@0
|
185 |
requirements, performance etc. */
|
sl@0
|
186 |
TSize iSnapshotSize;
|
sl@0
|
187 |
};
|
sl@0
|
188 |
|
sl@0
|
189 |
public:
|
sl@0
|
190 |
IMPORT_C static CCameraSnapshot* NewL(CCamera& aCamera);
|
sl@0
|
191 |
|
sl@0
|
192 |
IMPORT_C CCamera::CCameraV2Histogram* CreateHistogramHandleL() const;
|
sl@0
|
193 |
|
sl@0
|
194 |
IMPORT_C TUint32 SupportedFormats();
|
sl@0
|
195 |
|
sl@0
|
196 |
IMPORT_C void PrepareSnapshotL(CCamera::TFormat aFormat, const TPoint& aPosition, const TSize& aSize, const TRgb& aBgColor, TBool aMaintainAspectRatio);
|
sl@0
|
197 |
IMPORT_C void PrepareSnapshotL(CCamera::TFormat aFormat, const TSize& aSize, TBool aMaintainAspectRatio);
|
sl@0
|
198 |
|
sl@0
|
199 |
IMPORT_C void SetBgColorL(const TRgb& aBgColor);
|
sl@0
|
200 |
IMPORT_C void SetPositionL(const TPoint& aPosition);
|
sl@0
|
201 |
|
sl@0
|
202 |
IMPORT_C TBool IsSnapshotActive() const;
|
sl@0
|
203 |
IMPORT_C void StartSnapshot();
|
sl@0
|
204 |
IMPORT_C void StopSnapshot();
|
sl@0
|
205 |
|
sl@0
|
206 |
IMPORT_C MCameraBuffer& SnapshotDataL(RArray<TInt>& aFrameIndexOrder);
|
sl@0
|
207 |
|
sl@0
|
208 |
IMPORT_C ~CCameraSnapshot();
|
sl@0
|
209 |
|
sl@0
|
210 |
IMPORT_C void PrepareSnapshotL(const TSnapshotParameters& aSnapshotParameters);
|
sl@0
|
211 |
|
sl@0
|
212 |
IMPORT_C void GetSnapshotParametersL(TSnapshotParameters& aSnapshotParameters);
|
sl@0
|
213 |
IMPORT_C void SetSnapshotParametersL(const TSnapshotParameters& aSnapshotParameters);
|
sl@0
|
214 |
|
sl@0
|
215 |
IMPORT_C void GetSnapshotStatusL(TSnapshotState& aSnapshotState) const;
|
sl@0
|
216 |
|
sl@0
|
217 |
IMPORT_C void SelectSnapshotVideoFramesL(TSnapshotVideoFrames aSnapshotVideoFrames);
|
sl@0
|
218 |
|
sl@0
|
219 |
IMPORT_C void EnableSnapshotL();
|
sl@0
|
220 |
IMPORT_C void DisableSnapshotL();
|
sl@0
|
221 |
|
sl@0
|
222 |
private:
|
sl@0
|
223 |
IMPORT_C static CCameraSnapshot* CreateL(CCamera& aCamera, MImplementationFactory& aImplFactory, TInt aClientViewFinderId);
|
sl@0
|
224 |
|
sl@0
|
225 |
CCameraSnapshot(CCamera& aOwner);
|
sl@0
|
226 |
void ConstructL();
|
sl@0
|
227 |
void ConstructL(const MImplementationFactory& aImplFactory, TInt aClientViewFinderId);
|
sl@0
|
228 |
|
sl@0
|
229 |
private:
|
sl@0
|
230 |
CCamera& iOwner;
|
sl@0
|
231 |
MCameraSnapshot* iImpl; // not owned
|
sl@0
|
232 |
MCameraSnapshot2* iImpl2; // not owned
|
sl@0
|
233 |
};
|
sl@0
|
234 |
|
sl@0
|
235 |
#endif // CAMERASNAPSHOT_H
|