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 |
#include <ecam/mcamerahistogram.h>
|
sl@0
|
23 |
#include "ecamversion.h"
|
sl@0
|
24 |
#include <ecam/implementationfactoryintf.h>
|
sl@0
|
25 |
|
sl@0
|
26 |
/**
|
sl@0
|
27 |
@deprecated use static CCamera::CCameraV2Histogram* CreateL(CCamera& aCamera, MImplementationFactory& aImplFactory)
|
sl@0
|
28 |
|
sl@0
|
29 |
Factory function that creates a new camera histogram object on the heap.
|
sl@0
|
30 |
|
sl@0
|
31 |
@param aCamera
|
sl@0
|
32 |
A reference to the camera object for which a camera histogram object is to be created.
|
sl@0
|
33 |
|
sl@0
|
34 |
@leave KErrNoMemory if out of memory; also any system wide error.
|
sl@0
|
35 |
|
sl@0
|
36 |
@return A pointer to the newly created camera histogram object.
|
sl@0
|
37 |
|
sl@0
|
38 |
@note Clients using MCameraObserver are not recommended to use this extension class since they cannot handle events.
|
sl@0
|
39 |
*/
|
sl@0
|
40 |
EXPORT_C CCamera::CCameraHistogram* CCamera::CCameraHistogram::NewL(CCamera& aCamera)
|
sl@0
|
41 |
{
|
sl@0
|
42 |
CCamera::CCameraHistogram* self = new (ELeave) CCamera::CCameraHistogram(aCamera);
|
sl@0
|
43 |
CleanupStack::PushL(self);
|
sl@0
|
44 |
self->ConstructL();
|
sl@0
|
45 |
CleanupStack::Pop(self);
|
sl@0
|
46 |
return self;
|
sl@0
|
47 |
}
|
sl@0
|
48 |
|
sl@0
|
49 |
/**
|
sl@0
|
50 |
@deprecated use void CCamera::CCameraV2Histogram::ConstructL(const MImplementationFactory& aImplFactory)
|
sl@0
|
51 |
|
sl@0
|
52 |
CCameraHistogram second phase constructor.
|
sl@0
|
53 |
|
sl@0
|
54 |
This function used to initialise internal state of the object.
|
sl@0
|
55 |
It uses reference to the camera to retrieve histogram interface pointer.
|
sl@0
|
56 |
|
sl@0
|
57 |
@leave KErrNotSupported if this functionality is not supported; also any system wide error.
|
sl@0
|
58 |
*/
|
sl@0
|
59 |
void CCamera::CCameraHistogram::ConstructL()
|
sl@0
|
60 |
{
|
sl@0
|
61 |
iImpl = static_cast<MCameraHistogram*>(iOwner.CustomInterface(KECamMCameraHistogramUid));
|
sl@0
|
62 |
|
sl@0
|
63 |
if (iImpl == NULL)
|
sl@0
|
64 |
{
|
sl@0
|
65 |
User::Leave(KErrNotSupported);
|
sl@0
|
66 |
}
|
sl@0
|
67 |
}
|
sl@0
|
68 |
|
sl@0
|
69 |
/**
|
sl@0
|
70 |
@deprecated use CCamera::CCameraV2Histogram::CCameraV2Histogram(CCamera& aOwner)
|
sl@0
|
71 |
|
sl@0
|
72 |
Constructor for the CCamera::CCameraHistogram class.
|
sl@0
|
73 |
|
sl@0
|
74 |
@param aOwner
|
sl@0
|
75 |
A reference to the camera object for which a camera histogram object is to be created.
|
sl@0
|
76 |
*/
|
sl@0
|
77 |
CCamera::CCameraHistogram::CCameraHistogram(CCamera& aOwner):iOwner(aOwner), iImpl(NULL)
|
sl@0
|
78 |
{
|
sl@0
|
79 |
}
|
sl@0
|
80 |
|
sl@0
|
81 |
/**
|
sl@0
|
82 |
@deprecated use CCamera::CCameraV2Histogram::~CCameraV2Histogram()
|
sl@0
|
83 |
|
sl@0
|
84 |
Destructor for the CCamera::CCameraHistogram class.
|
sl@0
|
85 |
*/
|
sl@0
|
86 |
EXPORT_C CCamera::CCameraHistogram::~CCameraHistogram()
|
sl@0
|
87 |
{
|
sl@0
|
88 |
if (iImpl != NULL)
|
sl@0
|
89 |
{
|
sl@0
|
90 |
iImpl->Release();
|
sl@0
|
91 |
}
|
sl@0
|
92 |
}
|
sl@0
|
93 |
|
sl@0
|
94 |
/**
|
sl@0
|
95 |
@deprecated use void CCamera::CCameraV2Histogram::GetSupportedHistogramsL(TUint& aSupportedHistogramType)
|
sl@0
|
96 |
|
sl@0
|
97 |
Gets a list of the types of histograms the ECam implementation supports.
|
sl@0
|
98 |
|
sl@0
|
99 |
@return A bit field representing all supported types of histograms.
|
sl@0
|
100 |
|
sl@0
|
101 |
@see CCamera::CCameraHistogram::THistogramType
|
sl@0
|
102 |
*/
|
sl@0
|
103 |
EXPORT_C TUint32 CCamera::CCameraHistogram::SupportedHistograms()
|
sl@0
|
104 |
{
|
sl@0
|
105 |
return iImpl->SupportedHistograms();
|
sl@0
|
106 |
}
|
sl@0
|
107 |
|
sl@0
|
108 |
/**
|
sl@0
|
109 |
@deprecated use void CCamera::CCameraV2Histogram::PrepareClientHistogramL
|
sl@0
|
110 |
|
sl@0
|
111 |
Request to prepare a non direct histogram.
|
sl@0
|
112 |
|
sl@0
|
113 |
@note A direct histogram is directly embedded into the viewfinder.
|
sl@0
|
114 |
If a non direct histogram is requested the histogram data will be passed to the camera client.
|
sl@0
|
115 |
|
sl@0
|
116 |
@param aType
|
sl@0
|
117 |
The type of histogram to be prepared. This must be one of the supported histogram types returned by
|
sl@0
|
118 |
SupportedHistograms().
|
sl@0
|
119 |
|
sl@0
|
120 |
@leave KErrNotSupported if the histogram type supplied in aType is not supported.
|
sl@0
|
121 |
|
sl@0
|
122 |
@return An integer value which is the handle of the histogram on the ECam implementation.
|
sl@0
|
123 |
This value must be passed to other API functions when requesting operations
|
sl@0
|
124 |
involving this particular histogram.
|
sl@0
|
125 |
|
sl@0
|
126 |
@see PrepareDSAHistogramL
|
sl@0
|
127 |
*/
|
sl@0
|
128 |
EXPORT_C TUint CCamera::CCameraHistogram::PrepareHistogramL(THistogramType aType)
|
sl@0
|
129 |
{
|
sl@0
|
130 |
return iImpl->PrepareHistogramL(aType);
|
sl@0
|
131 |
}
|
sl@0
|
132 |
|
sl@0
|
133 |
/**
|
sl@0
|
134 |
@deprecated use void CCamera::CCameraV2Histogram::PrepareDirectHistogramL
|
sl@0
|
135 |
|
sl@0
|
136 |
Request to prepare a direct histogram.
|
sl@0
|
137 |
|
sl@0
|
138 |
@note A Direct histogram is directly embedded into the viewfinder.
|
sl@0
|
139 |
|
sl@0
|
140 |
@param aType
|
sl@0
|
141 |
The type of histogram to be prepared. This must be one of the supported histogram types returned by
|
sl@0
|
142 |
SupportedHistograms().
|
sl@0
|
143 |
@param aPosition
|
sl@0
|
144 |
The position on the screen (in pixels) where the histogram is to be displayed.
|
sl@0
|
145 |
@param aSize
|
sl@0
|
146 |
The size of histogram in pixels.
|
sl@0
|
147 |
@param aColor
|
sl@0
|
148 |
The colour and alpha blending with which the histogram will be displayed.
|
sl@0
|
149 |
|
sl@0
|
150 |
@leave KErrNotSupported if the histogram type supplied in aType is not supported.
|
sl@0
|
151 |
|
sl@0
|
152 |
@return An integer value which is the handle of the histogram on the ECam implementation.
|
sl@0
|
153 |
This value must be passed to other API functions when requesting operations
|
sl@0
|
154 |
involving this particular histogram.
|
sl@0
|
155 |
|
sl@0
|
156 |
@see PrepareHistogramL
|
sl@0
|
157 |
*/
|
sl@0
|
158 |
EXPORT_C TUint CCamera::CCameraHistogram::PrepareDSAHistogramL(THistogramType aType, const TPoint& aPosition, const TSize& aSize, const TRgb& aColor)
|
sl@0
|
159 |
{
|
sl@0
|
160 |
return iImpl->PrepareDSAHistogramL(aType, aPosition, aSize, aColor);
|
sl@0
|
161 |
}
|
sl@0
|
162 |
|
sl@0
|
163 |
/**
|
sl@0
|
164 |
@deprecated use void CCamera::CCameraV2Histogram::StartHistogram()
|
sl@0
|
165 |
|
sl@0
|
166 |
Request to start getting histogram notifications.
|
sl@0
|
167 |
|
sl@0
|
168 |
@param aHistHandle
|
sl@0
|
169 |
The handle identifying the histogram on the ECam implementation.
|
sl@0
|
170 |
|
sl@0
|
171 |
@leave KErrArgument if aHistHandle is out of range; also any system wide error.
|
sl@0
|
172 |
|
sl@0
|
173 |
@see KUidECamEventCameraHistogram
|
sl@0
|
174 |
*/
|
sl@0
|
175 |
EXPORT_C void CCamera::CCameraHistogram::StartHistogramL(TUint aHistHandle)
|
sl@0
|
176 |
{
|
sl@0
|
177 |
iImpl->StartHistogramL(aHistHandle);
|
sl@0
|
178 |
}
|
sl@0
|
179 |
|
sl@0
|
180 |
/**
|
sl@0
|
181 |
@deprecated use void CCamera::CCameraV2Histogram::StopHistogram()
|
sl@0
|
182 |
|
sl@0
|
183 |
Request to stop getting histogram notifications.
|
sl@0
|
184 |
|
sl@0
|
185 |
@param aHistHandle
|
sl@0
|
186 |
The handle identifying the histogram on the ECam implementation.
|
sl@0
|
187 |
|
sl@0
|
188 |
@leave KErrArgument if aHistHandle is out of range; also any system wide error.
|
sl@0
|
189 |
*/
|
sl@0
|
190 |
EXPORT_C void CCamera::CCameraHistogram::StopHistogramL(TUint aHistHandle)
|
sl@0
|
191 |
{
|
sl@0
|
192 |
iImpl->StopHistogramL(aHistHandle);
|
sl@0
|
193 |
}
|
sl@0
|
194 |
|
sl@0
|
195 |
/**
|
sl@0
|
196 |
@deprecated only one histogram is available per buffer with the usage of MHistogramV2Buffer and CCameraV2Histogram.
|
sl@0
|
197 |
|
sl@0
|
198 |
Destroys a histogram on the ECam implementation and releases its handle.
|
sl@0
|
199 |
|
sl@0
|
200 |
@param aHistHandle
|
sl@0
|
201 |
The handle identifying the histogram on the ECam implementation.
|
sl@0
|
202 |
|
sl@0
|
203 |
@leave KErrArgument if aHistHandle is out of range; also any system wide error.
|
sl@0
|
204 |
*/
|
sl@0
|
205 |
EXPORT_C void CCamera::CCameraHistogram::DestroyHistogramL(TUint aHistHandle)
|
sl@0
|
206 |
{
|
sl@0
|
207 |
iImpl->DestroyHistogramL(aHistHandle);
|
sl@0
|
208 |
}
|
sl@0
|
209 |
|
sl@0
|
210 |
/**
|
sl@0
|
211 |
@deprecated use void CCamera::CCameraV2Histogram::GetHistogramStateL(TBool& aIsHistogramActive)
|
sl@0
|
212 |
|
sl@0
|
213 |
Gets a list of all histograms that are active on the ECam implementation.
|
sl@0
|
214 |
A histogram is in an active state if StartHistogramL() has been called on it.
|
sl@0
|
215 |
|
sl@0
|
216 |
@param aActiveHistograms
|
sl@0
|
217 |
Returned list of histogram handles for which StartHistogramL() has been called.
|
sl@0
|
218 |
|
sl@0
|
219 |
@leave KErrNoMemory if the ECam implementation cannot add more histogram handles due to low memory; also any system wide error.
|
sl@0
|
220 |
*/
|
sl@0
|
221 |
EXPORT_C void CCamera::CCameraHistogram::GetActiveHistogramsL(RArray<TUint>& aActiveHistograms)
|
sl@0
|
222 |
{
|
sl@0
|
223 |
iImpl->GetActiveHistogramsL(aActiveHistograms);
|
sl@0
|
224 |
}
|
sl@0
|
225 |
|
sl@0
|
226 |
/**
|
sl@0
|
227 |
@deprecated use void CCamera::CCameraV2Histogram::UpdateDirectHistogramPropertiesL
|
sl@0
|
228 |
|
sl@0
|
229 |
Updates the properties of a direct histogram.
|
sl@0
|
230 |
|
sl@0
|
231 |
@param aHistHandle
|
sl@0
|
232 |
The handle identifying the histogram on the ECam implementation.
|
sl@0
|
233 |
@param aPosition
|
sl@0
|
234 |
The new position on the screen (in pixels) where the histogram is to be displayed.
|
sl@0
|
235 |
@param aSize
|
sl@0
|
236 |
The new size of histogram in pixels.
|
sl@0
|
237 |
@param aColor
|
sl@0
|
238 |
The new colour and alpha blending with which the histogram will be displayed.
|
sl@0
|
239 |
|
sl@0
|
240 |
@leave KErrArgument if aHistHandle is out of range; also any system wide error.
|
sl@0
|
241 |
*/
|
sl@0
|
242 |
EXPORT_C void CCamera::CCameraHistogram::UpdateDSAHistogramPropertiesL(TUint aHistHandle, const TPoint& aPosition, const TSize& aSize, const TRgb& aColor)
|
sl@0
|
243 |
{
|
sl@0
|
244 |
iImpl->UpdateDSAHistogramPropertiesL(aHistHandle, aPosition, aSize, aColor);
|
sl@0
|
245 |
}
|
sl@0
|
246 |
|
sl@0
|
247 |
/**
|
sl@0
|
248 |
@deprecated use void CCamera::CCameraV2Histogram::GetDirectHistogramPropertiesL
|
sl@0
|
249 |
|
sl@0
|
250 |
Gets the properties of a direct histogram.
|
sl@0
|
251 |
|
sl@0
|
252 |
@param aHistHandle
|
sl@0
|
253 |
The handle on the ECam implementation of the direct histogram whose properties are to be retrieved.
|
sl@0
|
254 |
@param aPosition
|
sl@0
|
255 |
A reference to a TPoint object that will receive the position (in pixels) of the histogram on the screen.
|
sl@0
|
256 |
@param aSize
|
sl@0
|
257 |
A reference to a TSize object that will receive the size of the histogram in pixels.
|
sl@0
|
258 |
@param aColor
|
sl@0
|
259 |
A reference to a TRgb object that will receive the colour and alpha blending of the histogram.
|
sl@0
|
260 |
|
sl@0
|
261 |
@leave KErrArgument if aHistHandle is out of range; also any system wide error.
|
sl@0
|
262 |
|
sl@0
|
263 |
@note If the method leaves, the reference arguments are not guaranteed to be valid.
|
sl@0
|
264 |
*/
|
sl@0
|
265 |
EXPORT_C void CCamera::CCameraHistogram::GetDSAHistogramPropertiesL(TUint aHistHandle, TPoint& aPosition, TSize& aSize, TRgb& aColor)
|
sl@0
|
266 |
{
|
sl@0
|
267 |
iImpl->GetDSAHistogramPropertiesL(aHistHandle, aPosition, aSize, aColor);
|
sl@0
|
268 |
}
|
sl@0
|
269 |
|
sl@0
|
270 |
|
sl@0
|
271 |
/**
|
sl@0
|
272 |
@deprecated use MCaptureImageObserver, MCaptureVideoObserver, MDirectViewFinderObserver, and MClientViewFinderObserver
|
sl@0
|
273 |
which have callback functions which notify the client about availability of histogram data. These are sent when
|
sl@0
|
274 |
CCameraV2Histogram::StartHistogram() is called after CCameraV2Histogram::PrepareClientHistogramL(). If
|
sl@0
|
275 |
CCameraV2Histogram::PrepareClientHistogramL() is not called first then the callback returns KErrBadHandle.
|
sl@0
|
276 |
|
sl@0
|
277 |
Returns to the client the histogram data for all the histograms generated by the ECam implementation.
|
sl@0
|
278 |
|
sl@0
|
279 |
@note The client application using this API should provide MCameraObserver2 interface to be
|
sl@0
|
280 |
signalled when histogram data is available to be retrieved from the ECAM implementation.
|
sl@0
|
281 |
|
sl@0
|
282 |
@see KUidECamEventCameraHistogram
|
sl@0
|
283 |
|
sl@0
|
284 |
@leave KErrNoMemory if the ECam implementation has not been able to create the histogram buffer;
|
sl@0
|
285 |
also any system wide error.
|
sl@0
|
286 |
|
sl@0
|
287 |
@return A reference to a histogram buffer which will contain the returned histogram data.
|
sl@0
|
288 |
*/
|
sl@0
|
289 |
EXPORT_C MHistogramBuffer& CCamera::CCameraHistogram::HistogramDataL()
|
sl@0
|
290 |
{
|
sl@0
|
291 |
return iImpl->HistogramDataL();
|
sl@0
|
292 |
}
|
sl@0
|
293 |
|
sl@0
|
294 |
/**
|
sl@0
|
295 |
@deprecated use MCaptureImageObserver, MCaptureVideoObserver, MDirectViewFinderObserver, and MClientViewFinderObserver
|
sl@0
|
296 |
which have callback functions which notify the client about availability of histogram data. These are sent when
|
sl@0
|
297 |
CCameraV2Histogram::StartHistogram() is called after CCameraV2Histogram::PrepareClientHistogramL(). If
|
sl@0
|
298 |
CCameraV2Histogram::PrepareClientHistogramL() is not called first then the callback returns KErrBadHandle.
|
sl@0
|
299 |
|
sl@0
|
300 |
Returns the data for a single histogram from the ECam implementation to the client.
|
sl@0
|
301 |
|
sl@0
|
302 |
@note The client application using this API should provide MCameraObserver2 interface to be
|
sl@0
|
303 |
signalled when histogram data is available to be retrieved from the ECAM implementation.
|
sl@0
|
304 |
|
sl@0
|
305 |
@see KUidECamEventCameraHistogram
|
sl@0
|
306 |
|
sl@0
|
307 |
@param aHistHandle
|
sl@0
|
308 |
The handle on the ECam implementation of the histogram whose data is to be retrieved.
|
sl@0
|
309 |
|
sl@0
|
310 |
@leave KErrNoMemory if the ECam implementation has not been able to create the histogram buffer;
|
sl@0
|
311 |
also any system wide error.
|
sl@0
|
312 |
|
sl@0
|
313 |
@return A reference to a histogram buffer which will contain the returned histogram data.
|
sl@0
|
314 |
*/
|
sl@0
|
315 |
EXPORT_C MHistogramBuffer& CCamera::CCameraHistogram::HistogramDataL(TUint aHistHandle)
|
sl@0
|
316 |
{
|
sl@0
|
317 |
return iImpl->HistogramDataL(aHistHandle);
|
sl@0
|
318 |
}
|
sl@0
|
319 |
|
sl@0
|
320 |
|
sl@0
|
321 |
//
|
sl@0
|
322 |
// CCameraV2Histogram //
|
sl@0
|
323 |
//
|
sl@0
|
324 |
/**
|
sl@0
|
325 |
@internalComponent
|
sl@0
|
326 |
|
sl@0
|
327 |
Factory function that creates a new camera histogram object specifically for a camera mode, for example, still image,
|
sl@0
|
328 |
video, snapshot and specific viewfinder.
|
sl@0
|
329 |
|
sl@0
|
330 |
@param aCamera
|
sl@0
|
331 |
A reference to the camera object for which a camera histogram object is to be created.
|
sl@0
|
332 |
|
sl@0
|
333 |
@param aImplFactory
|
sl@0
|
334 |
A reference to the MImplementationFactory derived object.
|
sl@0
|
335 |
|
sl@0
|
336 |
@leave KErrNoMemory if out of memory; also any system wide error.
|
sl@0
|
337 |
|
sl@0
|
338 |
@leave KErrExtensionNotSupported When NewL/NewDuplicateL used instead of New2L/NewDuplicate2L.
|
sl@0
|
339 |
|
sl@0
|
340 |
@return A pointer to a fully constructed camera histogram object.
|
sl@0
|
341 |
|
sl@0
|
342 |
@note This method is supposed to be used by internal ECAM components only.
|
sl@0
|
343 |
*/
|
sl@0
|
344 |
EXPORT_C CCamera::CCameraV2Histogram* CCamera::CCameraV2Histogram::CreateL(CCamera& aCamera, MImplementationFactory& aImplFactory)
|
sl@0
|
345 |
{
|
sl@0
|
346 |
if(aCamera.CameraVersion() == KCameraDefaultVersion)
|
sl@0
|
347 |
{
|
sl@0
|
348 |
User::Leave(KErrExtensionNotSupported);
|
sl@0
|
349 |
}
|
sl@0
|
350 |
|
sl@0
|
351 |
CCamera::CCameraV2Histogram* self = new (ELeave) CCamera::CCameraV2Histogram(aCamera);
|
sl@0
|
352 |
CleanupStack::PushL(self);
|
sl@0
|
353 |
self->ConstructL(aImplFactory);
|
sl@0
|
354 |
CleanupStack::Pop(self);
|
sl@0
|
355 |
return self;
|
sl@0
|
356 |
}
|
sl@0
|
357 |
|
sl@0
|
358 |
/**
|
sl@0
|
359 |
@internalComponent
|
sl@0
|
360 |
|
sl@0
|
361 |
CCameraV2Histogram second phase constructor
|
sl@0
|
362 |
|
sl@0
|
363 |
Function used to initialise internal state of the object specifically for a camera mode, for example, still image,
|
sl@0
|
364 |
video, snapshot and specific viewfinder.
|
sl@0
|
365 |
|
sl@0
|
366 |
This may be used in other possible cases as well.
|
sl@0
|
367 |
|
sl@0
|
368 |
@param aImplFactory
|
sl@0
|
369 |
A constant reference to the MImplementationFactory derived object.
|
sl@0
|
370 |
|
sl@0
|
371 |
@leave KErrNoMemory Out of memory; or any other error code as well.
|
sl@0
|
372 |
|
sl@0
|
373 |
@note This method is supposed to be used by this class only.
|
sl@0
|
374 |
*/
|
sl@0
|
375 |
void CCamera::CCameraV2Histogram::ConstructL(const MImplementationFactory& aImplFactory)
|
sl@0
|
376 |
{
|
sl@0
|
377 |
TInt err = KErrNone;
|
sl@0
|
378 |
TAny* implPtr = NULL;
|
sl@0
|
379 |
|
sl@0
|
380 |
err = aImplFactory.GetImpl(implPtr, KECamMCameraV2HistogramUid);
|
sl@0
|
381 |
if (err != KErrNone)
|
sl@0
|
382 |
{
|
sl@0
|
383 |
User::Leave(err);
|
sl@0
|
384 |
}
|
sl@0
|
385 |
iImpl = static_cast<MCameraV2Histogram*>(implPtr);
|
sl@0
|
386 |
|
sl@0
|
387 |
iImpl->SetHistogramHandle(this);
|
sl@0
|
388 |
}
|
sl@0
|
389 |
|
sl@0
|
390 |
/**
|
sl@0
|
391 |
Constructor for the CCamera::CCameraV2Histogram class.
|
sl@0
|
392 |
|
sl@0
|
393 |
@param aOwner
|
sl@0
|
394 |
A reference to the camera object for which a camera histogram object is to be created.
|
sl@0
|
395 |
*/
|
sl@0
|
396 |
CCamera::CCameraV2Histogram::CCameraV2Histogram(CCamera& aOwner):iOwner(aOwner), iImpl(NULL)
|
sl@0
|
397 |
{
|
sl@0
|
398 |
}
|
sl@0
|
399 |
|
sl@0
|
400 |
/**
|
sl@0
|
401 |
Destructor for the CCamera::CCameraV2Histogram class.
|
sl@0
|
402 |
*/
|
sl@0
|
403 |
EXPORT_C CCamera::CCameraV2Histogram::~CCameraV2Histogram()
|
sl@0
|
404 |
{
|
sl@0
|
405 |
if (iImpl != NULL)
|
sl@0
|
406 |
{
|
sl@0
|
407 |
iImpl->Release(this);
|
sl@0
|
408 |
}
|
sl@0
|
409 |
}
|
sl@0
|
410 |
|
sl@0
|
411 |
/**
|
sl@0
|
412 |
Retrieves a list of the supported types of histograms.
|
sl@0
|
413 |
|
sl@0
|
414 |
@param aSupportedHistogramType
|
sl@0
|
415 |
A reference to bit field representing the supported types of histograms as given by CCamera::
|
sl@0
|
416 |
CCameraV2Histogram::THistogramType
|
sl@0
|
417 |
|
sl@0
|
418 |
@leave May leave with any error code.
|
sl@0
|
419 |
|
sl@0
|
420 |
@see CCamera::CCameraV2Histogram::THistogramType
|
sl@0
|
421 |
*/
|
sl@0
|
422 |
EXPORT_C void CCamera::CCameraV2Histogram::GetSupportedHistogramsL(TUint& aSupportedHistogramType) const
|
sl@0
|
423 |
{
|
sl@0
|
424 |
return iImpl->GetSupportedHistogramsL(aSupportedHistogramType);
|
sl@0
|
425 |
}
|
sl@0
|
426 |
|
sl@0
|
427 |
/**
|
sl@0
|
428 |
Informs whether or not the direct histogram is supported.
|
sl@0
|
429 |
|
sl@0
|
430 |
@param aIsDirectHistogramSupported
|
sl@0
|
431 |
ETrue implies that direct histogram is supported.
|
sl@0
|
432 |
EFalse implies that direct histogram is not supported.
|
sl@0
|
433 |
|
sl@0
|
434 |
@leave May leave with any error code.
|
sl@0
|
435 |
*/
|
sl@0
|
436 |
EXPORT_C void CCamera::CCameraV2Histogram::GetDirectHistogramSupportInfoL(TBool& aIsDirectHistogramSupported) const
|
sl@0
|
437 |
{
|
sl@0
|
438 |
return iImpl->GetDirectHistogramSupportInfoL(aIsDirectHistogramSupported);
|
sl@0
|
439 |
}
|
sl@0
|
440 |
|
sl@0
|
441 |
/**
|
sl@0
|
442 |
Request to prepare a client based histogram.
|
sl@0
|
443 |
|
sl@0
|
444 |
@note A direct histogram is directly embedded into the viewfinder.
|
sl@0
|
445 |
If a non direct histogram is requested the histogram data will be passed to the camera client.
|
sl@0
|
446 |
|
sl@0
|
447 |
@param aType
|
sl@0
|
448 |
The type of histogram to be prepared. This must be one of the supported histogram types given by
|
sl@0
|
449 |
GetSupportedHistogramsL.
|
sl@0
|
450 |
|
sl@0
|
451 |
@leave May leave with any error code.
|
sl@0
|
452 |
|
sl@0
|
453 |
@note Each histogram object will either prepare direct histogram or client histogram. Preparing multiple histograms
|
sl@0
|
454 |
per object is an invalid case.
|
sl@0
|
455 |
|
sl@0
|
456 |
@see PrepareDSAHistogramL
|
sl@0
|
457 |
*/
|
sl@0
|
458 |
EXPORT_C void CCamera::CCameraV2Histogram::PrepareClientHistogramL(CCamera::CCameraV2Histogram::THistogramType aType)
|
sl@0
|
459 |
{
|
sl@0
|
460 |
iImpl->PrepareClientHistogramL(aType);
|
sl@0
|
461 |
}
|
sl@0
|
462 |
|
sl@0
|
463 |
/**
|
sl@0
|
464 |
Prepares the direct histogram.
|
sl@0
|
465 |
|
sl@0
|
466 |
@param aDirectHistogramParameters
|
sl@0
|
467 |
The parameters required to prepare the direct histogram.
|
sl@0
|
468 |
|
sl@0
|
469 |
@leave May leave with any error code.
|
sl@0
|
470 |
|
sl@0
|
471 |
@note Each histogram object will either prepare direct histogram or client histogram. Preparing multiple histograms
|
sl@0
|
472 |
per object is an invalid case.
|
sl@0
|
473 |
|
sl@0
|
474 |
@see PrepareClientHistogramL
|
sl@0
|
475 |
*/
|
sl@0
|
476 |
EXPORT_C void CCamera::CCameraV2Histogram::PrepareDirectHistogramL(const CCamera::CCameraV2Histogram::TDirectHistogramParameters& aDirectHistogramParameters)
|
sl@0
|
477 |
{
|
sl@0
|
478 |
iImpl->PrepareDirectHistogramL(aDirectHistogramParameters);
|
sl@0
|
479 |
}
|
sl@0
|
480 |
|
sl@0
|
481 |
/**
|
sl@0
|
482 |
Update the parameters for the direct histogram.
|
sl@0
|
483 |
|
sl@0
|
484 |
@param aDirectHistogramParameters
|
sl@0
|
485 |
The desired parameters which have to be used to update the direct histogram.
|
sl@0
|
486 |
|
sl@0
|
487 |
@leave May leave with any error code.
|
sl@0
|
488 |
*/
|
sl@0
|
489 |
EXPORT_C void CCamera::CCameraV2Histogram::UpdateDirectHistogramPropertiesL(const CCamera::CCameraV2Histogram::TDirectHistogramParameters& aDirectHistogramParameters)
|
sl@0
|
490 |
{
|
sl@0
|
491 |
iImpl->UpdateDirectHistogramPropertiesL(aDirectHistogramParameters);
|
sl@0
|
492 |
}
|
sl@0
|
493 |
|
sl@0
|
494 |
/**
|
sl@0
|
495 |
Retrieves the currently used parameters for the direct histogram.
|
sl@0
|
496 |
|
sl@0
|
497 |
@param aDirectHistogramParameters
|
sl@0
|
498 |
Retrieves the parameters currently being used for the direct histogram.
|
sl@0
|
499 |
|
sl@0
|
500 |
@leave May leave with any error code.
|
sl@0
|
501 |
*/
|
sl@0
|
502 |
EXPORT_C void CCamera::CCameraV2Histogram::GetDirectHistogramPropertiesL(CCamera::CCameraV2Histogram::TDirectHistogramParameters& aDirectHistogramParameters) const
|
sl@0
|
503 |
{
|
sl@0
|
504 |
iImpl->GetDirectHistogramPropertiesL(aDirectHistogramParameters);
|
sl@0
|
505 |
}
|
sl@0
|
506 |
|
sl@0
|
507 |
/**
|
sl@0
|
508 |
Request to start getting histogram notifications.
|
sl@0
|
509 |
|
sl@0
|
510 |
@note Histogram should have been prepared before calling this method.
|
sl@0
|
511 |
|
sl@0
|
512 |
@note Histogram notifications are sent to the client by using relevant callbacks for image capture, video capture and
|
sl@0
|
513 |
viewfinders.
|
sl@0
|
514 |
|
sl@0
|
515 |
@see MCaptureImageObserver
|
sl@0
|
516 |
@see MCaptureVideoObserver
|
sl@0
|
517 |
@see MDirectViewFinderObserver
|
sl@0
|
518 |
@see MClientViewFinderObserver
|
sl@0
|
519 |
*/
|
sl@0
|
520 |
EXPORT_C void CCamera::CCameraV2Histogram::StartHistogram()
|
sl@0
|
521 |
{
|
sl@0
|
522 |
iImpl->StartHistogram();
|
sl@0
|
523 |
}
|
sl@0
|
524 |
|
sl@0
|
525 |
/**
|
sl@0
|
526 |
Request to stop generating histogram.
|
sl@0
|
527 |
*/
|
sl@0
|
528 |
EXPORT_C void CCamera::CCameraV2Histogram::StopHistogram()
|
sl@0
|
529 |
{
|
sl@0
|
530 |
iImpl->StopHistogram();
|
sl@0
|
531 |
}
|
sl@0
|
532 |
|
sl@0
|
533 |
/**
|
sl@0
|
534 |
Informs whether the histogram is currently active or not.
|
sl@0
|
535 |
A histogram is in an active state if StartHistogram() has been called on it and has not been yet stopped.
|
sl@0
|
536 |
|
sl@0
|
537 |
@param aIsHistogramActive
|
sl@0
|
538 |
ETrue indicates that the histogram is active.
|
sl@0
|
539 |
EFalse indicates that the histogram is inactive.
|
sl@0
|
540 |
|
sl@0
|
541 |
@leave May leave with any error code.
|
sl@0
|
542 |
*/
|
sl@0
|
543 |
EXPORT_C void CCamera::CCameraV2Histogram::GetHistogramStateL(TBool& aIsHistogramActive) const
|
sl@0
|
544 |
{
|
sl@0
|
545 |
iImpl->GetHistogramStateL(aIsHistogramActive);
|
sl@0
|
546 |
}
|
sl@0
|
547 |
|
sl@0
|
548 |
/**
|
sl@0
|
549 |
Constructor for the TDirectHistogramParameters class.
|
sl@0
|
550 |
Sets the size and version of this class.
|
sl@0
|
551 |
*/
|
sl@0
|
552 |
EXPORT_C CCamera::CCameraV2Histogram::TDirectHistogramParameters::TDirectHistogramParameters()
|
sl@0
|
553 |
{
|
sl@0
|
554 |
iSize = sizeof(CCamera::CCameraV2Histogram::TDirectHistogramParameters);
|
sl@0
|
555 |
iVersion = KECamDirectHistogramParametersCurrentVersion;
|
sl@0
|
556 |
}
|
sl@0
|
557 |
|
sl@0
|
558 |
/**
|
sl@0
|
559 |
Returns the size of the class. Used for extensibility by deriving from this base class and adding new member variables.
|
sl@0
|
560 |
Intended to be used for implementation of methods where this class reference is passed as function arguments.
|
sl@0
|
561 |
Implementation of such methods can find out the whether the actual class passed is base or the derived one. So, if a new application
|
sl@0
|
562 |
is made to run on an old implementation, an error may occur once the old implementation detects this by getting
|
sl@0
|
563 |
the size information of the T class passed. Also, if an old application is made to run on a new implementation, this can be
|
sl@0
|
564 |
handled correctly if the derived class variables handling is done in a proper 'if-else' statement.
|
sl@0
|
565 |
|
sl@0
|
566 |
@return The size of the class.
|
sl@0
|
567 |
|
sl@0
|
568 |
@note The size will be modified when the T-class gets updated.
|
sl@0
|
569 |
*/
|
sl@0
|
570 |
EXPORT_C TUint CCamera::CCameraV2Histogram::TDirectHistogramParameters::Size() const
|
sl@0
|
571 |
{
|
sl@0
|
572 |
return iSize;
|
sl@0
|
573 |
}
|
sl@0
|
574 |
|
sl@0
|
575 |
/**
|
sl@0
|
576 |
Returns the version of the class. Used for extensibility specially when the class members are not added but the Reserved
|
sl@0
|
577 |
members get used at a later stage.
|
sl@0
|
578 |
|
sl@0
|
579 |
@return The version of the class.
|
sl@0
|
580 |
|
sl@0
|
581 |
@note The version will be modified when the T-class gets updated.
|
sl@0
|
582 |
*/
|
sl@0
|
583 |
EXPORT_C TUint CCamera::CCameraV2Histogram::TDirectHistogramParameters::Version() const
|
sl@0
|
584 |
{
|
sl@0
|
585 |
return iVersion;
|
sl@0
|
586 |
}
|