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/mcameraoverlay.h>
23 #ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
24 #include <ecam/cameraoverlayconst.h>
26 #include "ecamversion.h"
28 const TUint KBaselinedOverlayModeMask = (CCamera::CCameraOverlay::EModeVideo << 1) - 1;
29 const TUint KOverlayGlobalStillMode = (CCamera::CCameraOverlay::EModeStillImageContinuous
30 | CCamera::CCameraOverlay::EModeStillImageBracket
31 | CCamera::CCameraOverlay::EModeStillImageBracketMerge
32 | CCamera::CCameraOverlay::EModeStillImageTimed
33 | CCamera::CCameraOverlay::EModeStillImageTimeLapse
34 | CCamera::CCameraOverlay::EModeStillImageBurst);
36 Factory function that creates a new camera overlay object on the heap.
39 A reference to the camera object for which a camera overlay object is to be created.
41 @leave KErrNoMemory if out of memory; also any system wide error.
43 @return A pointer to the newly created camera overlay object.
45 @note Clients using MCameraObserver are not recommended to use this extension class since they cannot handle events.
48 EXPORT_C CCamera::CCameraOverlay* CCamera::CCameraOverlay::NewL(CCamera& aCamera)
50 CCamera::CCameraOverlay* self = new (ELeave) CCamera::CCameraOverlay(aCamera);
51 CleanupStack::PushL(self);
53 CleanupStack::Pop(self);
59 CCameraOverlay second phase constructor.
61 This function used to initialise internal state of the object.
62 It uses reference to the camera to retrieve overlay interface pointer.
64 @leave KErrNotSupported if this functionality is not supported; also any system wide error.
66 void CCamera::CCameraOverlay::ConstructL()
68 iImpl = static_cast<MCameraOverlay*>(iOwner.CustomInterface(KECamMCameraOverlayUid));
72 User::Leave(KErrNotSupported);
75 iImpl2 = static_cast<MCameraOverlay2*>(iOwner.CustomInterface(KECamMCameraOverlay2Uid));
79 Constructor for the CCamera::CCameraOverlay class.
82 A reference to the camera object for which a camera overlay object is to be created.
84 CCamera::CCameraOverlay::CCameraOverlay(CCamera& aOwner):iOwner(aOwner), iImpl(NULL), iImpl2(NULL)
89 Destructor for the CCamera::CCameraOverlay class.
91 EXPORT_C CCamera::CCameraOverlay::~CCameraOverlay()
104 Creates an image overlay object on the ECam implementation, returning a handle to the newly created object.
107 The parameters characterizing the overlay to be created.
109 The image that is to become the overlay.
110 By default this is set to NULL, allowing the client to provide the image at some point after
111 the overlay object has been created, by using SetOverlayBitmapL().
113 @leave KErrNoMemory if out of memory; also any system wide error.
115 @leave KErrArgument if the member variables in TOverlayParameters are such that they create mutual exclusion.
117 @return The overlay handle.
119 EXPORT_C TUint CCamera::CCameraOverlay::CreateOverlayL(const TOverlayParameters& aParameters, CFbsBitmap* aBitmap)
121 CCamera::CCameraOverlay::TOverlayParameters overlayParameters = aParameters;
122 if (aParameters.iCurrentModes & EModeViewfinder)
124 overlayParameters.iCurrentModes |= EModeClientViewfinder;
125 overlayParameters.iCurrentModes |= EModeDirectViewfinder;
127 if (aParameters.iCurrentModes & EModeStillImage)
129 overlayParameters.iCurrentModes |= KOverlayGlobalStillMode;
131 return iImpl->CreateOverlayL(overlayParameters, aBitmap);
135 Allows the overlay image data to be changed for a specified overlay.
136 Use this function to set the overlay image data if it was not specified when the overlay
137 was created using CreateOverlayL().
139 @param aOverlayHandle
140 The handle of the overlay whose overlay image data is to be changed.
142 The new image data for the overlay.
144 @leave KErrArgument if aOverlayHandle is out of range; also any system wide error.
146 @note Once this method is called, overlay size should not be changed for the given overlay. Hence, SetOverlayParametersL
147 should not be called after this method.
149 EXPORT_C void CCamera::CCameraOverlay::SetOverlayBitmapL(TUint aOverlayHandle, const CFbsBitmap* aBitmap)
151 iImpl->SetOverlayBitmapL(aOverlayHandle, aBitmap);
158 Allows the overlay image data to be changed for a specified overlay. Ownership of the bitmap is passed to the
160 Use this function to set the overlay image data if it was not specified when the overlay was created using
163 @param aOverlayHandle
164 The handle of the overlay whose overlay image data is to be changed.
166 The new image data for the overlay.
168 @leave May leave with any error code.
170 @note If required, implementation is free to modify the overlay bitmap passed to it.
172 @note SetOverlayParametersL should not be called after this method for the given overlay since it may change the overlay
173 parameters considerably. In such a case, SetOverlayParametersL may leave with error KErrArgument.
175 EXPORT_C void CCamera::CCameraOverlay::SetModifiableOverlayBitmapL(TUint aOverlayHandle, CFbsBitmap* aBitmap)
179 iImpl2->SetModifiableOverlayBitmapL(aOverlayHandle, aBitmap);
183 User::Leave(KErrNotSupported);
188 Gets the overlay image data for a specified overlay.
190 @param aOverlayHandle
191 The handle of the overlay whose overlay image data is to be obtained.
193 A CFbsBitmap that will receive the returned image data for the overlay.
195 @leave KErrArgument if aOverlayHandle is out of range; also any system wide error.
197 @leave KErrNotSupported if a sharing client (which did not create the given overlay) tries to retrieve the overlay bitmap
198 and the implementation may not be interested in providing the overlay.
200 @note The ECam implementation will transfer the ownership of the aBitmap to the client.
202 EXPORT_C void CCamera::CCameraOverlay::GetOverlayBitmapL(TUint aOverlayHandle, CFbsBitmap* aBitmap)
204 iImpl->GetOverlayBitmapL(aOverlayHandle, aBitmap);
208 Gets the parameters that characterize a given overlay.
210 @param aOverlayHandle
211 The handle of the overlay whose parameters are required.
213 Reference to TOverlayParameters object that will contain the returned overlay parameters.
215 @leave KErrArgument if aOverlayHandle is out of range; also any system wide error.
217 EXPORT_C void CCamera::CCameraOverlay::GetOverlayParametersL(TUint aOverlayHandle, TOverlayParameters& aInfo)
219 iImpl->GetOverlayParametersL(aOverlayHandle, aInfo);
221 // for clients not using CCamera::New2L() turn new overlay modes into old ones
222 if (iOwner.CameraVersion() == KCameraDefaultVersion)
224 // specific viewfinder modes into "old" EModeViewfinder
225 if (aInfo.iCurrentModes & (EModeClientViewfinder | EModeDirectViewfinder))
227 aInfo.iCurrentModes |= EModeViewfinder;
229 // turn different drive modes into "old" EModeStillImage
230 if (aInfo.iCurrentModes & ( EModeStillImageContinuous | EModeStillImageBracket |
231 EModeStillImageBracketMerge | EModeStillImageTimed |
232 EModeStillImageTimeLapse | EModeStillImageBurst
236 aInfo.iCurrentModes |= EModeStillImage;
238 // for old clients we present only old set of features
239 aInfo.iCurrentModes &= KBaselinedOverlayModeMask;
243 if (aInfo.iCurrentModes & EModeViewfinder)
245 aInfo.iCurrentModes |= EModeClientViewfinder;
246 aInfo.iCurrentModes |= EModeDirectViewfinder;
248 if (aInfo.iCurrentModes & EModeStillImage)
250 aInfo.iCurrentModes |= KOverlayGlobalStillMode;
256 Sets new parameters that characterize a given overlay.
258 @param aOverlayHandle
259 The handle of the overlay whose parameters are to be changed.
261 The new overlay parameters.
263 @leave KErrNotSupported if TOverlayCameraMode passed in TOverlayParameters is not supported;
264 also any system wide error.
266 @leave KErrArgument if the member variables in TOverlayParameters are such that they create mutual exclusion.
268 EXPORT_C void CCamera::CCameraOverlay::SetOverlayParametersL(TUint aOverlayHandle, const TOverlayParameters& aParameters)
270 CCamera::CCameraOverlay::TOverlayParameters overlayParameters = aParameters;
271 if (aParameters.iCurrentModes & EModeViewfinder)
273 overlayParameters.iCurrentModes |= EModeClientViewfinder;
274 overlayParameters.iCurrentModes |= EModeDirectViewfinder;
276 if (aParameters.iCurrentModes & EModeStillImage)
278 overlayParameters.iCurrentModes |= KOverlayGlobalStillMode;
281 iImpl->SetOverlayParametersL(aOverlayHandle, overlayParameters);
285 Releases the specified overlay handle.
287 @note If the handle specified in aOverlayHandle is invalid (out of range) the function
288 call is ignored and no error is reported.
290 @param aOverlayHandle
291 The handle of the overlay that is to be released.
293 EXPORT_C void CCamera::CCameraOverlay::ReleaseOverlay(TUint aOverlayHandle)
295 iImpl->ReleaseOverlay(aOverlayHandle);
299 Gets information on the overlay functionality supported by the ECam implementation.
302 A reference to a TOverlaySupportInfo object that will receive the overlay support information.
304 EXPORT_C void CCamera::CCameraOverlay::GetOverlaySupport(TOverlaySupportInfo& aInfo)
306 iImpl->GetOverlaySupport(aInfo);
307 // we hide new overlay modes for clients not using New2L()/NewDuplicate2L()
308 if (iOwner.CameraVersion() == KCameraDefaultVersion)
310 aInfo.iSupportedModes &= KBaselinedOverlayModeMask;
314 if (aInfo.iSupportedModes & EModeViewfinder)
316 aInfo.iSupportedModes |= EModeClientViewfinder;
317 aInfo.iSupportedModes |= EModeDirectViewfinder;
319 if (aInfo.iSupportedModes & EModeStillImage)
321 aInfo.iSupportedModes |= KOverlayGlobalStillMode;
327 Gets all the overlay handles maintained by the ECam implementation, in order of their Z-Value.
329 @param aOverlayHandles
330 Returned list, in Z-Value order, of all the overlay handles maintained on the ECam implementation.
331 The topmost overlay is the first element of the array.
333 @leave KErrNoMemory if out of memory; also any system wide error.
335 @note Implementation shall give preference to the sequence in which the client has passed the overlay handles in case of
336 any mis-match with the 'z-order' of each such overlay. Implementation shall amend the 'z-order' of the overlays if
337 required to remove any ambiguity.
339 EXPORT_C void CCamera::CCameraOverlay::GetAllOverlaysInZOrderL(RArray<TUint>& aOverlayHandles)
341 iImpl->GetAllOverlaysInZOrderL(aOverlayHandles);
345 Sets the Z-Order of all the overlay handles known by this CCameraOverlay object.
347 @param aOverlayHandles
348 The overlay handles in aOverlayHandles array. This must be the complete current set
349 of handles known to this CCameraOverlay object. The client specifies the desired
350 order by placing the topmost overlay in the first element of the array.
352 @leave KErrNoMemory if out of memory; also any system wide error.
354 @note Implementation shall give preference to the sequence in which the client has passed the overlay handles in case of
355 any mis-match with the 'z-order' of each such overlay. Implementation shall amend the 'z-order' of the overlays if
356 required to remove any ambiguity.
358 EXPORT_C void CCamera::CCameraOverlay::SetAllOverlaysInZOrderL(const RArray<TUint>& aOverlayHandles)
360 iImpl->SetAllOverlaysInZOrderL(aOverlayHandles);
364 Constructor for the TOverlaySupportInfo class.
366 EXPORT_C CCamera::CCameraOverlay::TOverlaySupportInfo::TOverlaySupportInfo()
368 iDesiredCameraMode = CCamera::CCameraOverlay::EModeNone;
369 iViewFinderHandle = KECamOverlayInvalidViewFinderHandle;
373 Returns the size of the class. Used for extensibility by deriving from this base class and adding new member variables.
374 Intended to be used for implementation of methods where this class reference is passed as function arguments.
375 Implementation of such methods can find out the whether the actual class passed is base or the derived one. So, if a new application
376 is made to run on an old implementation, an error may occur once the old implementation detects this by getting
377 the size information of the T class passed. Also, if an old application is made to run on a new implementation, this can be
378 corrrectly handled if the derived class variables handling is done in a proper 'if-else' statement.
380 @return The size of the class.
382 @note The size will be modified when the T-class gets updated.
384 EXPORT_C TUint CCamera::CCameraOverlay::TOverlaySupportInfo::Size() const
386 return sizeof(CCamera::CCameraOverlay::TOverlaySupportInfo);
390 Returns the version of the class. Used for extensibility specially when the class members are not added but the Reserved
391 members get used at a later stage.
393 @return The version of the class.
395 @note The version will be modified when the T-class gets updated.
397 EXPORT_C TUint CCamera::CCameraOverlay::TOverlaySupportInfo::Version() const
399 return KECamOverlaySupportInfoCurrentVersion;
403 Constructor for the TOverlayParameters class.
405 EXPORT_C CCamera::CCameraOverlay::TOverlayParameters::TOverlayParameters()
407 iViewFinderHandle = KECamOverlayInvalidViewFinderHandle;
411 Returns the size of the class. Used for extensibility by deriving from this base class and adding new member variables.
412 Intended to be used for implementation of methods where this class reference is passed as function arguments.
413 Implementation of such methods can find out the whether the actual class passed is base or the derived one. So, if a new application
414 is made to run on an old implementation, an error may occur once the old implementation detects this by getting
415 the size information of the T class passed. Also, if an old application is made to run on a new implementation, this can be
416 corrrectly handled if the derived class variables handling is done in a proper 'if-else' statement.
418 @return The size of the class.
420 @note The size will be modified when the T-class gets updated.
422 EXPORT_C TUint CCamera::CCameraOverlay::TOverlayParameters::Size() const
424 return sizeof(CCamera::CCameraOverlay::TOverlayParameters);
428 Returns the version of the class. Used for extensibility specially when the class members are not added but the Reserved
429 members get used at a later stage.
431 @return The version of the class.
433 @note The version will be modified when the T-class gets updated.
435 EXPORT_C TUint CCamera::CCameraOverlay::TOverlayParameters::Version() const
437 return KECamOverlayParametersCurrentVersion;
444 Gets all the overlay handles maintained by the ECam implementation, in order of their z-value, for a particular camera mode.
445 If for viewfinder, then the handle number is used to get the z-value for the viewfinder whose handle number is passed.
447 @param aOverlayCameraMode
448 The specific camera mode whose overlays' z-value information is required.
450 @param aViewFinderHandle
451 The specific viewfinder handle, if overlays' z-value information is required for viewfinder camera mode.
453 @param aOverlayHandles
454 Returned list, in z-value order, of all the overlay handles maintained on the ECam implementation.
455 The topmost overlay is the first element of the array.
457 @leave May leave with any error code.
459 @note Implementation shall give preference to the sequence in which the client has passed the overlay handles in case of
460 any mis-match with the 'z-order' of each such overlay. Implementation shall amend the 'z-order' of the overlays if
461 required to remove any ambiguity.
463 EXPORT_C void CCamera::CCameraOverlay::GetAllOverlaysInZOrderL(CCamera::CCameraOverlay::TOverlayCameraMode aOverlayCameraMode, TInt aViewFinderHandle, RArray<TUint>& aOverlayHandles) const
467 iImpl2->GetAllOverlaysInZOrderL(aOverlayCameraMode, aViewFinderHandle, aOverlayHandles);
471 User::Leave(KErrNotSupported);
479 Sets all the overlay handles maintained by the ECam implementation, in order of their z-value for a particular camera mode.
480 If for viewfinder, then the handle number is used to set the z-value for the viewfinder whose handle number is passed.
482 @param aOverlayCameraMode
483 The specific camera mode whose overlays' z-value is to be set.
485 @param aViewFinderHandle
486 The specific viewfinder handle, if overlays' z-value is required to be set for viewfinder camera mode.
488 @param aOverlayHandles
489 The overlay handles in aOverlayHandles array. This must be the complete current set
490 of handles known to this CCameraOverlay object for the given camera mode (and for the given viewfinder, if applicable).
491 The client specifies the desired order by placing the topmost overlay in the first element of the array.
493 @leave May leave with any error code.
495 @note Implementation shall give preference to the sequence in which the client has passed the overlay handles in case of
496 any mis-match with the 'z-order' of each such overlay. Implementation shall amend the 'z-order' of the overlays if
497 required to remove any ambiguity.
499 EXPORT_C void CCamera::CCameraOverlay::SetAllOverlaysInZOrderL(CCamera::CCameraOverlay::TOverlayCameraMode aOverlayCameraMode, TInt aViewFinderHandle, const RArray<TUint>& aOverlayHandles)
503 iImpl2->SetAllOverlaysInZOrderL(aOverlayCameraMode, aViewFinderHandle, aOverlayHandles);
507 User::Leave(KErrNotSupported);