sl@0: // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: sl@0: #ifndef MCAMERAHISTOGRAM_H sl@0: #define MCAMERAHISTOGRAM_H sl@0: sl@0: #include sl@0: #include sl@0: sl@0: /** sl@0: This is the UID which is used to obtain the MCameraHistogram interface, sl@0: via a call to CCamera::CustomInterface(), which provides implementation of the M-class interface. sl@0: sl@0: @see KECamMCameraHistogramUidValue sl@0: @deprecated use KECamMCameraV2HistogramUid sl@0: */ sl@0: static const TUid KECamMCameraHistogramUid = {KECamMCameraHistogramUidValue}; sl@0: sl@0: /** sl@0: This is the UID which is used to obtain the MCameraV2Histogram interface, sl@0: via a call to CCamera::CustomInterface(), which provides implementation of the M-class interface. sl@0: sl@0: @see KECamMCameraV2HistogramUidValue sl@0: */ sl@0: static const TUid KECamMCameraV2HistogramUid = {KECamMCameraV2HistogramUidValue}; sl@0: sl@0: /** sl@0: This is a mixin class to be implemented by providers of the extension API for the camera histogram. sl@0: sl@0: Histograms can be sent to the client or directly displayed on the viewfinder. sl@0: sl@0: @note This class is intended for sub classing by licensees only. sl@0: sl@0: @see CCamera::CCameraHistogram sl@0: sl@0: @publishedPartner sl@0: @deprecated use MCameraV2Histogram sl@0: */ sl@0: class MCameraHistogram sl@0: { sl@0: sl@0: public: sl@0: /** sl@0: @deprecated use void MCameraV2Histogram::GetSupportedHistogramsL(TUint& aSupportedHistogramType) sl@0: sl@0: Gets a list of the types of histograms the ECam implementation supports. sl@0: sl@0: @return A bit field representing all supported types of histograms. sl@0: sl@0: @see CCamera::CCameraHistogram::THistogramType sl@0: */ sl@0: virtual TUint32 SupportedHistograms()=0; sl@0: sl@0: /** sl@0: @deprecated use void MCameraV2Histogram::PrepareClientHistogramL sl@0: sl@0: Request to prepare a non direct histogram. sl@0: sl@0: @note A direct histogram is directly embedded into the viewfinder. sl@0: If a non direct histogram is requested the histogram data will be passed to the camera client. sl@0: sl@0: @param aType sl@0: The type of histogram to be prepared. This must be one of the supported histogram types returned by sl@0: SupportedHistograms(). sl@0: sl@0: @leave KErrNotSupported if the histogram type supplied in aType is not supported. sl@0: sl@0: @return An integer value which is the handle of the histogram on the ECam implementation. sl@0: This value must be passed to other API functions when requesting operations sl@0: involving this particular histogram. sl@0: sl@0: @see PrepareDSAHistogramL sl@0: */ sl@0: virtual TUint PrepareHistogramL(CCamera::CCameraHistogram::THistogramType aType)=0; sl@0: sl@0: /** sl@0: @deprecated use void MCameraV2Histogram::PrepareDirectHistogramL sl@0: sl@0: Request to prepare a direct histogram. sl@0: sl@0: @note A direct histogram is directly embedded into the viewfinder. sl@0: sl@0: @param aType sl@0: The type of histogram to be prepared. This must be one of the supported histogram types returned by sl@0: SupportedHistograms(). sl@0: @param aPosition sl@0: The position on the screen (in pixels) where the histogram is to be displayed. sl@0: @param aSize sl@0: The size of histogram in pixels. sl@0: @param aColor sl@0: The colour and alpha blending with which the histogram will be displayed. sl@0: sl@0: @leave KErrNotSupported if the histogram type supplied in aType is not supported. sl@0: sl@0: @return An integer value which is the handle of the histogram on the ECam implementation. sl@0: This value must be passed to other API functions when requesting operations sl@0: involving this particular histogram. sl@0: sl@0: @see PrepareHistogramL sl@0: */ sl@0: virtual TUint PrepareDSAHistogramL(CCamera::CCameraHistogram::THistogramType aType, const TPoint& aPosition, const TSize& aSize, const TRgb& aColor)=0; sl@0: sl@0: /** sl@0: @deprecated use void MCameraV2Histogram::StartHistogram() sl@0: sl@0: Request to start getting histogram notifications. sl@0: sl@0: @param aHistHandle sl@0: The handle identifying the histogram on the ECam implementation. sl@0: sl@0: @leave KErrArgument if aHistHandle is out of range; also any system wide error. sl@0: */ sl@0: virtual void StartHistogramL(TUint aHistHandle)=0; sl@0: sl@0: /** sl@0: @deprecated use void MCameraV2Histogram::StopHistogram() sl@0: sl@0: Request to stop getting histogram notifications. sl@0: sl@0: @param aHistHandle sl@0: The handle identifying the histogram on the ECam implementation. sl@0: sl@0: @leave KErrArgument if aHistHandle is out of range; also any system wide error. sl@0: */ sl@0: virtual void StopHistogramL(TUint aHistHandle)=0; sl@0: sl@0: /** sl@0: @deprecated only one histogram is available per buffer with the usage of MHistogramV2Buffer and MCameraV2Histogram. sl@0: sl@0: Destroys a histogram on the ECam implementation and releases its handle. sl@0: sl@0: @param aHistHandle sl@0: The handle identifying the histogram on the ECam implementation. sl@0: sl@0: @leave KErrArgument if aHistHandle is out of range; also any system wide error. sl@0: */ sl@0: virtual void DestroyHistogramL(TUint aHistHandle)=0; sl@0: sl@0: /** sl@0: @deprecated use void MCameraV2Histogram::Release(CCamera::CCameraV2Histogram *aHistogramHandle) sl@0: sl@0: Releases all the histogram handles created by this object and destroys them on the ECam implementation. sl@0: This function is called from the destructor of CCamera::CCameraHistogram. sl@0: */ sl@0: virtual void Release()=0; sl@0: sl@0: /** sl@0: @deprecated use void MCameraV2Histogram::GetHistogramStateL(TBool& aIsHistogramActive) sl@0: sl@0: Gets a list of all histograms that are active on the ECam implementation. sl@0: A histogram is in an active state if StartHistogramL() has been called on it. sl@0: sl@0: @param aActiveHistograms sl@0: Returned list of histogram handles for which StartHistogramL() has been called. sl@0: sl@0: @leave KErrNoMemory if the ECam implementation cannot add more histogram handles due to low memory; also any system wide error. sl@0: */ sl@0: virtual void GetActiveHistogramsL(RArray& aActiveHistograms)=0; sl@0: sl@0: /** sl@0: @deprecated use void MCameraV2Histogram::UpdateDirectHistogramPropertiesL sl@0: sl@0: Updates the properties of a direct histogram. sl@0: sl@0: @param aHistHandle sl@0: The handle identifying the histogram on the ECam implementation. sl@0: @param aPosition sl@0: The new position on the screen (in pixels) where the histogram is to be displayed. sl@0: @param aSize sl@0: The new size of histogram in pixels. sl@0: @param aColor sl@0: The new colour and alpha blending with which the histogram will be displayed. sl@0: sl@0: @leave KErrArgument if aHistHandle is out of range; also any system wide error. sl@0: */ sl@0: virtual void UpdateDSAHistogramPropertiesL(TUint aHistHandle, const TPoint& aPosition, const TSize& aSize, const TRgb& aColor)=0; sl@0: sl@0: /** sl@0: @deprecated use void MCameraV2Histogram::GetDirectHistogramPropertiesL sl@0: sl@0: Gets the properties of a direct histogram. sl@0: sl@0: @param aHistHandle sl@0: The handle on the ECam implementation of the direct histogram whose properties are to be retrieved. sl@0: @param aPosition sl@0: A reference to a TPoint object that will receive the position (in pixels) of the histogram on the screen. sl@0: @param aSize sl@0: A reference to a TSize object that will receive the size of the histogram in pixels. sl@0: @param aColor sl@0: A reference to a TRgb object that will receive the colour and alpha blending of the histogram. sl@0: sl@0: @leave KErrArgument if aHistHandle is out of range; also any system wide error. sl@0: */ sl@0: virtual void GetDSAHistogramPropertiesL(TUint aHistHandle, TPoint& aPosition, TSize& aSize, TRgb& aColor)=0; sl@0: sl@0: /** sl@0: @deprecated use MCaptureImageObserver, MCaptureVideoObserver, MDirectViewFinderObserver, and MClientViewFinderObserver sl@0: which have callback functions which notify the client about availability of histogram data. These are sent when sl@0: CCameraV2Histogram::StartHistogram() is called after CCameraV2Histogram::PrepareClientHistogramL(). If sl@0: CCameraV2Histogram::PrepareClientHistogramL() is not called first then the callback returns KErrBadHandle. sl@0: sl@0: Returns to the client the histogram data for all the histograms generated by the ECam implementation. sl@0: sl@0: @leave KErrNoMemory if the ECam implementation has not been able to create the histogram buffer; sl@0: also any system wide error. sl@0: sl@0: @return A reference to a histogram buffer which will contain the returned histogram data. sl@0: */ sl@0: virtual MHistogramBuffer& HistogramDataL()=0; sl@0: sl@0: /** sl@0: @deprecated use MCaptureImageObserver, MCaptureVideoObserver, MDirectViewFinderObserver, and MClientViewFinderObserver sl@0: which have callback functions which notify the client about availability of histogram data. These are sent when sl@0: CCameraV2Histogram::StartHistogram() is called after CCameraV2Histogram::PrepareClientHistogramL(). If sl@0: CCameraV2Histogram::PrepareClientHistogramL() is not called first then the callback returns KErrBadHandle. sl@0: sl@0: Returns the data for a single histogram from the ECam implementation to the client. sl@0: sl@0: @param aHistHandle sl@0: The handle on the ECam implementation of the histogram whose data is to be retrieved. sl@0: sl@0: @leave KErrNoMemory if the ECam implementation has not been able to create the histogram buffer; sl@0: also any system wide error. sl@0: sl@0: @return A reference to a histogram buffer which will contain the returned histogram data. sl@0: */ sl@0: virtual MHistogramBuffer& HistogramDataL(TUint aHistHandle)=0; sl@0: }; sl@0: sl@0: /** sl@0: This is a mixin class to be implemented by providers of the extension API for the camera v2 histogram. sl@0: sl@0: Histograms can be sent to the client or directly displayed on the screen. sl@0: sl@0: @note This class is intended for sub classing by licensees only. sl@0: sl@0: @see CCamera::CCameraV2Histogram sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class MCameraV2Histogram sl@0: { sl@0: sl@0: public: sl@0: sl@0: /** sl@0: Releases the interface. sl@0: sl@0: @param aHistogramHandle sl@0: The pointer to the histogram class object which would be destroyed by the client. sl@0: */ sl@0: virtual void Release(CCamera::CCameraV2Histogram* aHistogramHandle)=0; sl@0: sl@0: /** sl@0: The pointer to the V2 Histogram class used to pass back to the client via observer callbacks when direct histogram sl@0: gets displayed. Implementation is not supposed to not destroy this object. sl@0: sl@0: @param aHistogramHandle sl@0: The pointer to the histogram class object. sl@0: sl@0: @see MCaptureImageObserver sl@0: @see MDirectViewFinderObserver sl@0: @see MClientViewFinderObserver sl@0: */ sl@0: virtual void SetHistogramHandle(CCamera::CCameraV2Histogram* aHistogramHandle)=0; sl@0: sl@0: /** sl@0: Retrieves a list of the supported types of histograms. sl@0: sl@0: @param aSupportedHistogramType sl@0: A reference to bit field representing the supported types of histograms as given by CCamera:: sl@0: CCameraV2Histogram::THistogramType sl@0: sl@0: @leave May leave with any error code. sl@0: sl@0: @see CCamera::CCameraV2Histogram::THistogramType sl@0: */ sl@0: virtual void GetSupportedHistogramsL(TUint& aSupportedHistogramType) const =0; sl@0: sl@0: /** sl@0: Informs whether or not the direct histogram is supported. sl@0: sl@0: @param aIsDirectHistogramSupported sl@0: ETrue implies that direct histogram is supported. sl@0: EFalse implies that direct histogram is not supported. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void GetDirectHistogramSupportInfoL(TBool& aIsDirectHistogramSupported) const=0; sl@0: sl@0: /** sl@0: Request to prepare a client based histogram. sl@0: sl@0: @note A direct histogram is directly embedded into the viewfinder. sl@0: If a non direct histogram is requested the histogram data will be passed to the camera client. sl@0: sl@0: @param aType sl@0: The type of histogram to be prepared. This must be one of the supported histogram types given by sl@0: GetSupportedHistogramsL. sl@0: sl@0: @leave May leave with any error code. sl@0: sl@0: @note Each histogram object will either prepare direct histogram or client histogram. Preparing multiple histograms sl@0: per object is an invalid case. sl@0: sl@0: @see PrepareDSAHistogramL sl@0: */ sl@0: virtual void PrepareClientHistogramL(CCamera::CCameraV2Histogram::THistogramType aType)=0; sl@0: sl@0: /** sl@0: Prepares the direct histogram. sl@0: sl@0: @param aDirectHistogramParameters sl@0: The parameters required to prepare the direct histogram. sl@0: sl@0: @leave May leave with any error code. sl@0: sl@0: @note Each histogram object will either prepare direct histogram or client histogram. Preparing multiple histograms sl@0: per object is an invalid case. sl@0: sl@0: @see PrepareClientHistogramL sl@0: */ sl@0: virtual void PrepareDirectHistogramL(const CCamera::CCameraV2Histogram::TDirectHistogramParameters& aDirectHistogramParameters)=0; sl@0: sl@0: /** sl@0: Update the parameters for the direct histogram. sl@0: sl@0: @param aDirectHistogramParameters sl@0: The desired parameters which have to be used to update the direct histogram. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void UpdateDirectHistogramPropertiesL(const CCamera::CCameraV2Histogram::TDirectHistogramParameters& aDirectHistogramParameters)=0; sl@0: sl@0: /** sl@0: Retrieves the currently used parameters for the direct histogram. sl@0: sl@0: @param aDirectHistogramParameters sl@0: Retrieves the parameters currently being used for the direct histogram. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void GetDirectHistogramPropertiesL(CCamera::CCameraV2Histogram::TDirectHistogramParameters& aDirectHistogramParameters) const=0; sl@0: sl@0: /** sl@0: Request to start getting histogram notifications. sl@0: sl@0: @note Histogram should have been prepared before calling this method. sl@0: sl@0: @note Histogram notifications are sent to the client by using relevant callbacks for image capture, video capture sl@0: and viewfinders. sl@0: sl@0: @see MCaptureImageObserver sl@0: @see MCaptureVideoObserver sl@0: @see MDirectViewFinderObserver sl@0: @see MClientViewFinderObserver sl@0: */ sl@0: virtual void StartHistogram()=0; sl@0: sl@0: /** sl@0: Request to stop generating histogram. sl@0: */ sl@0: virtual void StopHistogram()=0; sl@0: sl@0: /** sl@0: Informs whether the histogram is currently active or not. sl@0: A histogram is in an active state if StartHistogram() has been called on it and has not been yet stopped. sl@0: sl@0: @param aIsHistogramActive sl@0: ETrue indicates that the histogram is active. sl@0: EFalse indicates that the histogram is inactive. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void GetHistogramStateL(TBool& aIsHistogramActive) const=0; sl@0: }; sl@0: sl@0: #endif // MCAMERAHISTOGRAM_H