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 #include <ecam/mcamerahistogram.h>
23 #include "ecamversion.h"
24 #include <ecam/implementationfactoryintf.h>
27 @deprecated use static CCamera::CCameraV2Histogram* CreateL(CCamera& aCamera, MImplementationFactory& aImplFactory)
29 Factory function that creates a new camera histogram object on the heap.
32 A reference to the camera object for which a camera histogram object is to be created.
34 @leave KErrNoMemory if out of memory; also any system wide error.
36 @return A pointer to the newly created camera histogram object.
38 @note Clients using MCameraObserver are not recommended to use this extension class since they cannot handle events.
40 EXPORT_C CCamera::CCameraHistogram* CCamera::CCameraHistogram::NewL(CCamera& aCamera)
42 CCamera::CCameraHistogram* self = new (ELeave) CCamera::CCameraHistogram(aCamera);
43 CleanupStack::PushL(self);
45 CleanupStack::Pop(self);
50 @deprecated use void CCamera::CCameraV2Histogram::ConstructL(const MImplementationFactory& aImplFactory)
52 CCameraHistogram second phase constructor.
54 This function used to initialise internal state of the object.
55 It uses reference to the camera to retrieve histogram interface pointer.
57 @leave KErrNotSupported if this functionality is not supported; also any system wide error.
59 void CCamera::CCameraHistogram::ConstructL()
61 iImpl = static_cast<MCameraHistogram*>(iOwner.CustomInterface(KECamMCameraHistogramUid));
65 User::Leave(KErrNotSupported);
70 @deprecated use CCamera::CCameraV2Histogram::CCameraV2Histogram(CCamera& aOwner)
72 Constructor for the CCamera::CCameraHistogram class.
75 A reference to the camera object for which a camera histogram object is to be created.
77 CCamera::CCameraHistogram::CCameraHistogram(CCamera& aOwner):iOwner(aOwner), iImpl(NULL)
82 @deprecated use CCamera::CCameraV2Histogram::~CCameraV2Histogram()
84 Destructor for the CCamera::CCameraHistogram class.
86 EXPORT_C CCamera::CCameraHistogram::~CCameraHistogram()
95 @deprecated use void CCamera::CCameraV2Histogram::GetSupportedHistogramsL(TUint& aSupportedHistogramType)
97 Gets a list of the types of histograms the ECam implementation supports.
99 @return A bit field representing all supported types of histograms.
101 @see CCamera::CCameraHistogram::THistogramType
103 EXPORT_C TUint32 CCamera::CCameraHistogram::SupportedHistograms()
105 return iImpl->SupportedHistograms();
109 @deprecated use void CCamera::CCameraV2Histogram::PrepareClientHistogramL
111 Request to prepare a non direct histogram.
113 @note A direct histogram is directly embedded into the viewfinder.
114 If a non direct histogram is requested the histogram data will be passed to the camera client.
117 The type of histogram to be prepared. This must be one of the supported histogram types returned by
118 SupportedHistograms().
120 @leave KErrNotSupported if the histogram type supplied in aType is not supported.
122 @return An integer value which is the handle of the histogram on the ECam implementation.
123 This value must be passed to other API functions when requesting operations
124 involving this particular histogram.
126 @see PrepareDSAHistogramL
128 EXPORT_C TUint CCamera::CCameraHistogram::PrepareHistogramL(THistogramType aType)
130 return iImpl->PrepareHistogramL(aType);
134 @deprecated use void CCamera::CCameraV2Histogram::PrepareDirectHistogramL
136 Request to prepare a direct histogram.
138 @note A Direct histogram is directly embedded into the viewfinder.
141 The type of histogram to be prepared. This must be one of the supported histogram types returned by
142 SupportedHistograms().
144 The position on the screen (in pixels) where the histogram is to be displayed.
146 The size of histogram in pixels.
148 The colour and alpha blending with which the histogram will be displayed.
150 @leave KErrNotSupported if the histogram type supplied in aType is not supported.
152 @return An integer value which is the handle of the histogram on the ECam implementation.
153 This value must be passed to other API functions when requesting operations
154 involving this particular histogram.
156 @see PrepareHistogramL
158 EXPORT_C TUint CCamera::CCameraHistogram::PrepareDSAHistogramL(THistogramType aType, const TPoint& aPosition, const TSize& aSize, const TRgb& aColor)
160 return iImpl->PrepareDSAHistogramL(aType, aPosition, aSize, aColor);
164 @deprecated use void CCamera::CCameraV2Histogram::StartHistogram()
166 Request to start getting histogram notifications.
169 The handle identifying the histogram on the ECam implementation.
171 @leave KErrArgument if aHistHandle is out of range; also any system wide error.
173 @see KUidECamEventCameraHistogram
175 EXPORT_C void CCamera::CCameraHistogram::StartHistogramL(TUint aHistHandle)
177 iImpl->StartHistogramL(aHistHandle);
181 @deprecated use void CCamera::CCameraV2Histogram::StopHistogram()
183 Request to stop getting histogram notifications.
186 The handle identifying the histogram on the ECam implementation.
188 @leave KErrArgument if aHistHandle is out of range; also any system wide error.
190 EXPORT_C void CCamera::CCameraHistogram::StopHistogramL(TUint aHistHandle)
192 iImpl->StopHistogramL(aHistHandle);
196 @deprecated only one histogram is available per buffer with the usage of MHistogramV2Buffer and CCameraV2Histogram.
198 Destroys a histogram on the ECam implementation and releases its handle.
201 The handle identifying the histogram on the ECam implementation.
203 @leave KErrArgument if aHistHandle is out of range; also any system wide error.
205 EXPORT_C void CCamera::CCameraHistogram::DestroyHistogramL(TUint aHistHandle)
207 iImpl->DestroyHistogramL(aHistHandle);
211 @deprecated use void CCamera::CCameraV2Histogram::GetHistogramStateL(TBool& aIsHistogramActive)
213 Gets a list of all histograms that are active on the ECam implementation.
214 A histogram is in an active state if StartHistogramL() has been called on it.
216 @param aActiveHistograms
217 Returned list of histogram handles for which StartHistogramL() has been called.
219 @leave KErrNoMemory if the ECam implementation cannot add more histogram handles due to low memory; also any system wide error.
221 EXPORT_C void CCamera::CCameraHistogram::GetActiveHistogramsL(RArray<TUint>& aActiveHistograms)
223 iImpl->GetActiveHistogramsL(aActiveHistograms);
227 @deprecated use void CCamera::CCameraV2Histogram::UpdateDirectHistogramPropertiesL
229 Updates the properties of a direct histogram.
232 The handle identifying the histogram on the ECam implementation.
234 The new position on the screen (in pixels) where the histogram is to be displayed.
236 The new size of histogram in pixels.
238 The new colour and alpha blending with which the histogram will be displayed.
240 @leave KErrArgument if aHistHandle is out of range; also any system wide error.
242 EXPORT_C void CCamera::CCameraHistogram::UpdateDSAHistogramPropertiesL(TUint aHistHandle, const TPoint& aPosition, const TSize& aSize, const TRgb& aColor)
244 iImpl->UpdateDSAHistogramPropertiesL(aHistHandle, aPosition, aSize, aColor);
248 @deprecated use void CCamera::CCameraV2Histogram::GetDirectHistogramPropertiesL
250 Gets the properties of a direct histogram.
253 The handle on the ECam implementation of the direct histogram whose properties are to be retrieved.
255 A reference to a TPoint object that will receive the position (in pixels) of the histogram on the screen.
257 A reference to a TSize object that will receive the size of the histogram in pixels.
259 A reference to a TRgb object that will receive the colour and alpha blending of the histogram.
261 @leave KErrArgument if aHistHandle is out of range; also any system wide error.
263 @note If the method leaves, the reference arguments are not guaranteed to be valid.
265 EXPORT_C void CCamera::CCameraHistogram::GetDSAHistogramPropertiesL(TUint aHistHandle, TPoint& aPosition, TSize& aSize, TRgb& aColor)
267 iImpl->GetDSAHistogramPropertiesL(aHistHandle, aPosition, aSize, aColor);
272 @deprecated use MCaptureImageObserver, MCaptureVideoObserver, MDirectViewFinderObserver, and MClientViewFinderObserver
273 which have callback functions which notify the client about availability of histogram data. These are sent when
274 CCameraV2Histogram::StartHistogram() is called after CCameraV2Histogram::PrepareClientHistogramL(). If
275 CCameraV2Histogram::PrepareClientHistogramL() is not called first then the callback returns KErrBadHandle.
277 Returns to the client the histogram data for all the histograms generated by the ECam implementation.
279 @note The client application using this API should provide MCameraObserver2 interface to be
280 signalled when histogram data is available to be retrieved from the ECAM implementation.
282 @see KUidECamEventCameraHistogram
284 @leave KErrNoMemory if the ECam implementation has not been able to create the histogram buffer;
285 also any system wide error.
287 @return A reference to a histogram buffer which will contain the returned histogram data.
289 EXPORT_C MHistogramBuffer& CCamera::CCameraHistogram::HistogramDataL()
291 return iImpl->HistogramDataL();
295 @deprecated use MCaptureImageObserver, MCaptureVideoObserver, MDirectViewFinderObserver, and MClientViewFinderObserver
296 which have callback functions which notify the client about availability of histogram data. These are sent when
297 CCameraV2Histogram::StartHistogram() is called after CCameraV2Histogram::PrepareClientHistogramL(). If
298 CCameraV2Histogram::PrepareClientHistogramL() is not called first then the callback returns KErrBadHandle.
300 Returns the data for a single histogram from the ECam implementation to the client.
302 @note The client application using this API should provide MCameraObserver2 interface to be
303 signalled when histogram data is available to be retrieved from the ECAM implementation.
305 @see KUidECamEventCameraHistogram
308 The handle on the ECam implementation of the histogram whose data is to be retrieved.
310 @leave KErrNoMemory if the ECam implementation has not been able to create the histogram buffer;
311 also any system wide error.
313 @return A reference to a histogram buffer which will contain the returned histogram data.
315 EXPORT_C MHistogramBuffer& CCamera::CCameraHistogram::HistogramDataL(TUint aHistHandle)
317 return iImpl->HistogramDataL(aHistHandle);
322 // CCameraV2Histogram //
327 Factory function that creates a new camera histogram object specifically for a camera mode, for example, still image,
328 video, snapshot and specific viewfinder.
331 A reference to the camera object for which a camera histogram object is to be created.
334 A reference to the MImplementationFactory derived object.
336 @leave KErrNoMemory if out of memory; also any system wide error.
338 @leave KErrExtensionNotSupported When NewL/NewDuplicateL used instead of New2L/NewDuplicate2L.
340 @return A pointer to a fully constructed camera histogram object.
342 @note This method is supposed to be used by internal ECAM components only.
344 EXPORT_C CCamera::CCameraV2Histogram* CCamera::CCameraV2Histogram::CreateL(CCamera& aCamera, MImplementationFactory& aImplFactory)
346 if(aCamera.CameraVersion() == KCameraDefaultVersion)
348 User::Leave(KErrExtensionNotSupported);
351 CCamera::CCameraV2Histogram* self = new (ELeave) CCamera::CCameraV2Histogram(aCamera);
352 CleanupStack::PushL(self);
353 self->ConstructL(aImplFactory);
354 CleanupStack::Pop(self);
361 CCameraV2Histogram second phase constructor
363 Function used to initialise internal state of the object specifically for a camera mode, for example, still image,
364 video, snapshot and specific viewfinder.
366 This may be used in other possible cases as well.
369 A constant reference to the MImplementationFactory derived object.
371 @leave KErrNoMemory Out of memory; or any other error code as well.
373 @note This method is supposed to be used by this class only.
375 void CCamera::CCameraV2Histogram::ConstructL(const MImplementationFactory& aImplFactory)
378 TAny* implPtr = NULL;
380 err = aImplFactory.GetImpl(implPtr, KECamMCameraV2HistogramUid);
385 iImpl = static_cast<MCameraV2Histogram*>(implPtr);
387 iImpl->SetHistogramHandle(this);
391 Constructor for the CCamera::CCameraV2Histogram class.
394 A reference to the camera object for which a camera histogram object is to be created.
396 CCamera::CCameraV2Histogram::CCameraV2Histogram(CCamera& aOwner):iOwner(aOwner), iImpl(NULL)
401 Destructor for the CCamera::CCameraV2Histogram class.
403 EXPORT_C CCamera::CCameraV2Histogram::~CCameraV2Histogram()
407 iImpl->Release(this);
412 Retrieves a list of the supported types of histograms.
414 @param aSupportedHistogramType
415 A reference to bit field representing the supported types of histograms as given by CCamera::
416 CCameraV2Histogram::THistogramType
418 @leave May leave with any error code.
420 @see CCamera::CCameraV2Histogram::THistogramType
422 EXPORT_C void CCamera::CCameraV2Histogram::GetSupportedHistogramsL(TUint& aSupportedHistogramType) const
424 return iImpl->GetSupportedHistogramsL(aSupportedHistogramType);
428 Informs whether or not the direct histogram is supported.
430 @param aIsDirectHistogramSupported
431 ETrue implies that direct histogram is supported.
432 EFalse implies that direct histogram is not supported.
434 @leave May leave with any error code.
436 EXPORT_C void CCamera::CCameraV2Histogram::GetDirectHistogramSupportInfoL(TBool& aIsDirectHistogramSupported) const
438 return iImpl->GetDirectHistogramSupportInfoL(aIsDirectHistogramSupported);
442 Request to prepare a client based histogram.
444 @note A direct histogram is directly embedded into the viewfinder.
445 If a non direct histogram is requested the histogram data will be passed to the camera client.
448 The type of histogram to be prepared. This must be one of the supported histogram types given by
449 GetSupportedHistogramsL.
451 @leave May leave with any error code.
453 @note Each histogram object will either prepare direct histogram or client histogram. Preparing multiple histograms
454 per object is an invalid case.
456 @see PrepareDSAHistogramL
458 EXPORT_C void CCamera::CCameraV2Histogram::PrepareClientHistogramL(CCamera::CCameraV2Histogram::THistogramType aType)
460 iImpl->PrepareClientHistogramL(aType);
464 Prepares the direct histogram.
466 @param aDirectHistogramParameters
467 The parameters required to prepare the direct histogram.
469 @leave May leave with any error code.
471 @note Each histogram object will either prepare direct histogram or client histogram. Preparing multiple histograms
472 per object is an invalid case.
474 @see PrepareClientHistogramL
476 EXPORT_C void CCamera::CCameraV2Histogram::PrepareDirectHistogramL(const CCamera::CCameraV2Histogram::TDirectHistogramParameters& aDirectHistogramParameters)
478 iImpl->PrepareDirectHistogramL(aDirectHistogramParameters);
482 Update the parameters for the direct histogram.
484 @param aDirectHistogramParameters
485 The desired parameters which have to be used to update the direct histogram.
487 @leave May leave with any error code.
489 EXPORT_C void CCamera::CCameraV2Histogram::UpdateDirectHistogramPropertiesL(const CCamera::CCameraV2Histogram::TDirectHistogramParameters& aDirectHistogramParameters)
491 iImpl->UpdateDirectHistogramPropertiesL(aDirectHistogramParameters);
495 Retrieves the currently used parameters for the direct histogram.
497 @param aDirectHistogramParameters
498 Retrieves the parameters currently being used for the direct histogram.
500 @leave May leave with any error code.
502 EXPORT_C void CCamera::CCameraV2Histogram::GetDirectHistogramPropertiesL(CCamera::CCameraV2Histogram::TDirectHistogramParameters& aDirectHistogramParameters) const
504 iImpl->GetDirectHistogramPropertiesL(aDirectHistogramParameters);
508 Request to start getting histogram notifications.
510 @note Histogram should have been prepared before calling this method.
512 @note Histogram notifications are sent to the client by using relevant callbacks for image capture, video capture and
515 @see MCaptureImageObserver
516 @see MCaptureVideoObserver
517 @see MDirectViewFinderObserver
518 @see MClientViewFinderObserver
520 EXPORT_C void CCamera::CCameraV2Histogram::StartHistogram()
522 iImpl->StartHistogram();
526 Request to stop generating histogram.
528 EXPORT_C void CCamera::CCameraV2Histogram::StopHistogram()
530 iImpl->StopHistogram();
534 Informs whether the histogram is currently active or not.
535 A histogram is in an active state if StartHistogram() has been called on it and has not been yet stopped.
537 @param aIsHistogramActive
538 ETrue indicates that the histogram is active.
539 EFalse indicates that the histogram is inactive.
541 @leave May leave with any error code.
543 EXPORT_C void CCamera::CCameraV2Histogram::GetHistogramStateL(TBool& aIsHistogramActive) const
545 iImpl->GetHistogramStateL(aIsHistogramActive);
549 Constructor for the TDirectHistogramParameters class.
550 Sets the size and version of this class.
552 EXPORT_C CCamera::CCameraV2Histogram::TDirectHistogramParameters::TDirectHistogramParameters()
554 iSize = sizeof(CCamera::CCameraV2Histogram::TDirectHistogramParameters);
555 iVersion = KECamDirectHistogramParametersCurrentVersion;
559 Returns the size of the class. Used for extensibility by deriving from this base class and adding new member variables.
560 Intended to be used for implementation of methods where this class reference is passed as function arguments.
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
562 is made to run on an old implementation, an error may occur once the old implementation detects this by getting
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
564 handled correctly if the derived class variables handling is done in a proper 'if-else' statement.
566 @return The size of the class.
568 @note The size will be modified when the T-class gets updated.
570 EXPORT_C TUint CCamera::CCameraV2Histogram::TDirectHistogramParameters::Size() const
576 Returns the version of the class. Used for extensibility specially when the class members are not added but the Reserved
577 members get used at a later stage.
579 @return The version of the class.
581 @note The version will be modified when the T-class gets updated.
583 EXPORT_C TUint CCamera::CCameraV2Histogram::TDirectHistogramParameters::Version() const