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 MCAMERAHISTOGRAM_H
23 #define MCAMERAHISTOGRAM_H
25 #include <ecam/camerahistogram.h>
26 #include <ecam/ecamcommonuidif.hrh>
29 This is the UID which is used to obtain the MCameraHistogram interface,
30 via a call to CCamera::CustomInterface(), which provides implementation of the M-class interface.
32 @see KECamMCameraHistogramUidValue
33 @deprecated use KECamMCameraV2HistogramUid
35 static const TUid KECamMCameraHistogramUid = {KECamMCameraHistogramUidValue};
38 This is the UID which is used to obtain the MCameraV2Histogram interface,
39 via a call to CCamera::CustomInterface(), which provides implementation of the M-class interface.
41 @see KECamMCameraV2HistogramUidValue
43 static const TUid KECamMCameraV2HistogramUid = {KECamMCameraV2HistogramUidValue};
46 This is a mixin class to be implemented by providers of the extension API for the camera histogram.
48 Histograms can be sent to the client or directly displayed on the viewfinder.
50 @note This class is intended for sub classing by licensees only.
52 @see CCamera::CCameraHistogram
55 @deprecated use MCameraV2Histogram
57 class MCameraHistogram
62 @deprecated use void MCameraV2Histogram::GetSupportedHistogramsL(TUint& aSupportedHistogramType)
64 Gets a list of the types of histograms the ECam implementation supports.
66 @return A bit field representing all supported types of histograms.
68 @see CCamera::CCameraHistogram::THistogramType
70 virtual TUint32 SupportedHistograms()=0;
73 @deprecated use void MCameraV2Histogram::PrepareClientHistogramL
75 Request to prepare a non direct histogram.
77 @note A direct histogram is directly embedded into the viewfinder.
78 If a non direct histogram is requested the histogram data will be passed to the camera client.
81 The type of histogram to be prepared. This must be one of the supported histogram types returned by
82 SupportedHistograms().
84 @leave KErrNotSupported if the histogram type supplied in aType is not supported.
86 @return An integer value which is the handle of the histogram on the ECam implementation.
87 This value must be passed to other API functions when requesting operations
88 involving this particular histogram.
90 @see PrepareDSAHistogramL
92 virtual TUint PrepareHistogramL(CCamera::CCameraHistogram::THistogramType aType)=0;
95 @deprecated use void MCameraV2Histogram::PrepareDirectHistogramL
97 Request to prepare a direct histogram.
99 @note A direct histogram is directly embedded into the viewfinder.
102 The type of histogram to be prepared. This must be one of the supported histogram types returned by
103 SupportedHistograms().
105 The position on the screen (in pixels) where the histogram is to be displayed.
107 The size of histogram in pixels.
109 The colour and alpha blending with which the histogram will be displayed.
111 @leave KErrNotSupported if the histogram type supplied in aType is not supported.
113 @return An integer value which is the handle of the histogram on the ECam implementation.
114 This value must be passed to other API functions when requesting operations
115 involving this particular histogram.
117 @see PrepareHistogramL
119 virtual TUint PrepareDSAHistogramL(CCamera::CCameraHistogram::THistogramType aType, const TPoint& aPosition, const TSize& aSize, const TRgb& aColor)=0;
122 @deprecated use void MCameraV2Histogram::StartHistogram()
124 Request to start getting histogram notifications.
127 The handle identifying the histogram on the ECam implementation.
129 @leave KErrArgument if aHistHandle is out of range; also any system wide error.
131 virtual void StartHistogramL(TUint aHistHandle)=0;
134 @deprecated use void MCameraV2Histogram::StopHistogram()
136 Request to stop getting histogram notifications.
139 The handle identifying the histogram on the ECam implementation.
141 @leave KErrArgument if aHistHandle is out of range; also any system wide error.
143 virtual void StopHistogramL(TUint aHistHandle)=0;
146 @deprecated only one histogram is available per buffer with the usage of MHistogramV2Buffer and MCameraV2Histogram.
148 Destroys a histogram on the ECam implementation and releases its handle.
151 The handle identifying the histogram on the ECam implementation.
153 @leave KErrArgument if aHistHandle is out of range; also any system wide error.
155 virtual void DestroyHistogramL(TUint aHistHandle)=0;
158 @deprecated use void MCameraV2Histogram::Release(CCamera::CCameraV2Histogram *aHistogramHandle)
160 Releases all the histogram handles created by this object and destroys them on the ECam implementation.
161 This function is called from the destructor of CCamera::CCameraHistogram.
163 virtual void Release()=0;
166 @deprecated use void MCameraV2Histogram::GetHistogramStateL(TBool& aIsHistogramActive)
168 Gets a list of all histograms that are active on the ECam implementation.
169 A histogram is in an active state if StartHistogramL() has been called on it.
171 @param aActiveHistograms
172 Returned list of histogram handles for which StartHistogramL() has been called.
174 @leave KErrNoMemory if the ECam implementation cannot add more histogram handles due to low memory; also any system wide error.
176 virtual void GetActiveHistogramsL(RArray<TUint>& aActiveHistograms)=0;
179 @deprecated use void MCameraV2Histogram::UpdateDirectHistogramPropertiesL
181 Updates the properties of a direct histogram.
184 The handle identifying the histogram on the ECam implementation.
186 The new position on the screen (in pixels) where the histogram is to be displayed.
188 The new size of histogram in pixels.
190 The new colour and alpha blending with which the histogram will be displayed.
192 @leave KErrArgument if aHistHandle is out of range; also any system wide error.
194 virtual void UpdateDSAHistogramPropertiesL(TUint aHistHandle, const TPoint& aPosition, const TSize& aSize, const TRgb& aColor)=0;
197 @deprecated use void MCameraV2Histogram::GetDirectHistogramPropertiesL
199 Gets the properties of a direct histogram.
202 The handle on the ECam implementation of the direct histogram whose properties are to be retrieved.
204 A reference to a TPoint object that will receive the position (in pixels) of the histogram on the screen.
206 A reference to a TSize object that will receive the size of the histogram in pixels.
208 A reference to a TRgb object that will receive the colour and alpha blending of the histogram.
210 @leave KErrArgument if aHistHandle is out of range; also any system wide error.
212 virtual void GetDSAHistogramPropertiesL(TUint aHistHandle, TPoint& aPosition, TSize& aSize, TRgb& aColor)=0;
215 @deprecated use MCaptureImageObserver, MCaptureVideoObserver, MDirectViewFinderObserver, and MClientViewFinderObserver
216 which have callback functions which notify the client about availability of histogram data. These are sent when
217 CCameraV2Histogram::StartHistogram() is called after CCameraV2Histogram::PrepareClientHistogramL(). If
218 CCameraV2Histogram::PrepareClientHistogramL() is not called first then the callback returns KErrBadHandle.
220 Returns to the client the histogram data for all the histograms generated by the ECam implementation.
222 @leave KErrNoMemory if the ECam implementation has not been able to create the histogram buffer;
223 also any system wide error.
225 @return A reference to a histogram buffer which will contain the returned histogram data.
227 virtual MHistogramBuffer& HistogramDataL()=0;
230 @deprecated use MCaptureImageObserver, MCaptureVideoObserver, MDirectViewFinderObserver, and MClientViewFinderObserver
231 which have callback functions which notify the client about availability of histogram data. These are sent when
232 CCameraV2Histogram::StartHistogram() is called after CCameraV2Histogram::PrepareClientHistogramL(). If
233 CCameraV2Histogram::PrepareClientHistogramL() is not called first then the callback returns KErrBadHandle.
235 Returns the data for a single histogram from the ECam implementation to the client.
238 The handle on the ECam implementation of the histogram whose data is to be retrieved.
240 @leave KErrNoMemory if the ECam implementation has not been able to create the histogram buffer;
241 also any system wide error.
243 @return A reference to a histogram buffer which will contain the returned histogram data.
245 virtual MHistogramBuffer& HistogramDataL(TUint aHistHandle)=0;
249 This is a mixin class to be implemented by providers of the extension API for the camera v2 histogram.
251 Histograms can be sent to the client or directly displayed on the screen.
253 @note This class is intended for sub classing by licensees only.
255 @see CCamera::CCameraV2Histogram
260 class MCameraV2Histogram
266 Releases the interface.
268 @param aHistogramHandle
269 The pointer to the histogram class object which would be destroyed by the client.
271 virtual void Release(CCamera::CCameraV2Histogram* aHistogramHandle)=0;
274 The pointer to the V2 Histogram class used to pass back to the client via observer callbacks when direct histogram
275 gets displayed. Implementation is not supposed to not destroy this object.
277 @param aHistogramHandle
278 The pointer to the histogram class object.
280 @see MCaptureImageObserver
281 @see MDirectViewFinderObserver
282 @see MClientViewFinderObserver
284 virtual void SetHistogramHandle(CCamera::CCameraV2Histogram* aHistogramHandle)=0;
287 Retrieves a list of the supported types of histograms.
289 @param aSupportedHistogramType
290 A reference to bit field representing the supported types of histograms as given by CCamera::
291 CCameraV2Histogram::THistogramType
293 @leave May leave with any error code.
295 @see CCamera::CCameraV2Histogram::THistogramType
297 virtual void GetSupportedHistogramsL(TUint& aSupportedHistogramType) const =0;
300 Informs whether or not the direct histogram is supported.
302 @param aIsDirectHistogramSupported
303 ETrue implies that direct histogram is supported.
304 EFalse implies that direct histogram is not supported.
306 @leave May leave with any error code.
308 virtual void GetDirectHistogramSupportInfoL(TBool& aIsDirectHistogramSupported) const=0;
311 Request to prepare a client based histogram.
313 @note A direct histogram is directly embedded into the viewfinder.
314 If a non direct histogram is requested the histogram data will be passed to the camera client.
317 The type of histogram to be prepared. This must be one of the supported histogram types given by
318 GetSupportedHistogramsL.
320 @leave May leave with any error code.
322 @note Each histogram object will either prepare direct histogram or client histogram. Preparing multiple histograms
323 per object is an invalid case.
325 @see PrepareDSAHistogramL
327 virtual void PrepareClientHistogramL(CCamera::CCameraV2Histogram::THistogramType aType)=0;
330 Prepares the direct histogram.
332 @param aDirectHistogramParameters
333 The parameters required to prepare the direct histogram.
335 @leave May leave with any error code.
337 @note Each histogram object will either prepare direct histogram or client histogram. Preparing multiple histograms
338 per object is an invalid case.
340 @see PrepareClientHistogramL
342 virtual void PrepareDirectHistogramL(const CCamera::CCameraV2Histogram::TDirectHistogramParameters& aDirectHistogramParameters)=0;
345 Update the parameters for the direct histogram.
347 @param aDirectHistogramParameters
348 The desired parameters which have to be used to update the direct histogram.
350 @leave May leave with any error code.
352 virtual void UpdateDirectHistogramPropertiesL(const CCamera::CCameraV2Histogram::TDirectHistogramParameters& aDirectHistogramParameters)=0;
355 Retrieves the currently used parameters for the direct histogram.
357 @param aDirectHistogramParameters
358 Retrieves the parameters currently being used for the direct histogram.
360 @leave May leave with any error code.
362 virtual void GetDirectHistogramPropertiesL(CCamera::CCameraV2Histogram::TDirectHistogramParameters& aDirectHistogramParameters) const=0;
365 Request to start getting histogram notifications.
367 @note Histogram should have been prepared before calling this method.
369 @note Histogram notifications are sent to the client by using relevant callbacks for image capture, video capture
372 @see MCaptureImageObserver
373 @see MCaptureVideoObserver
374 @see MDirectViewFinderObserver
375 @see MClientViewFinderObserver
377 virtual void StartHistogram()=0;
380 Request to stop generating histogram.
382 virtual void StopHistogram()=0;
385 Informs whether the histogram is currently active or not.
386 A histogram is in an active state if StartHistogram() has been called on it and has not been yet stopped.
388 @param aIsHistogramActive
389 ETrue indicates that the histogram is active.
390 EFalse indicates that the histogram is inactive.
392 @leave May leave with any error code.
394 virtual void GetHistogramStateL(TBool& aIsHistogramActive) const=0;
397 #endif // MCAMERAHISTOGRAM_H