First public contribution.
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.
16 #include <ecam/ecamadvsettingsintf.h>
17 #include "ecamversion.h"
18 #include <ecam/ecamconstants.h>
19 #ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
20 #include <ecamadvsettingsconst.h>
21 #include <ecamadvsettingsdef.h>
23 #include <ecam/implementationfactoryintf.h>
24 const TInt KBaselinedFocusRanges = 0x1F;
25 const TInt KBaselinedWhiteBalanceModes = 0x01FF;
26 const TUint KBaselinedPixelAspectsMask = (CCamera::CCameraAdvancedSettings::EEPixelAspect59To54 << 1) - 1;
27 const TUint KBaselinedFlashModeMask = (CCamera::EFlashManual << 1) - 1;
28 const TUint KBaselinedPreCaptureWarning = (CCamera::CCameraAdvancedSettings::EPCWGeneralWarning << 1) - 1;
29 const TUint KBaselinedDriveMode = (CCamera::CCameraAdvancedSettings::EDriveModeBurst << 1) - 1;
32 Factory function for creating the CCameraPresets object.
35 a reference to a CCamera object providing the settings.
37 @return a pointer to a fully constructed CCameraPresets object.
39 @leave KErrNoMemory Out of memory Or any other system-wide error code.
41 @note Clients using MCameraObserver are not recommended to use this extension class since they cannot handle events.
43 EXPORT_C CCamera::CCameraPresets* CCamera::CCameraPresets::NewL(CCamera& aCamera)
45 CCamera::CCameraPresets* self = new (ELeave)CCamera::CCameraPresets(aCamera);
46 CleanupStack::PushL(self);
48 CleanupStack::Pop(self);
54 CCameraPresets Constructor.
57 a reference to a CCamera object providing the settings.
59 EXPORT_C CCamera::CCameraPresets::CCameraPresets(CCamera& aOwner):iOwner(aOwner), iImpl(NULL), iImpl2(NULL)
64 CCameraPresets second phase constructor.
66 Function used to initialise internal state of the object. Uses reference to the camera to retrieve
67 Camera presets interface pointer.
69 @leave KErrNoMemory Out of memory.
71 EXPORT_C void CCamera::CCameraPresets::ConstructL()
73 iImpl = static_cast<MCameraPresets*>(iOwner.CustomInterface(KECamMCameraPresetsUid));
77 User::Leave(KErrNotSupported);
80 iImpl2 = static_cast<MCameraPresets2*>(iOwner.CustomInterface(KECamMCameraPresets2Uid));
86 EXPORT_C CCamera::CCameraPresets::~CCameraPresets()
99 Gets the presets supported by the camera. These are identified by UIDs
100 and relate to a known predefined outcome.
101 The settings associated with a particular preset and their specific values
102 and ranges are specific to each type of camera hardware and are therefore not defined by the API.
105 An empty array of TUids which would be populated by the implementation with
106 the specific supported values. If the array is empty on return,
107 the camera does not support presets.
109 @leave KErrNoMemory Out of memory.
111 @note if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
112 application is not prepared to receive extra added uid values (new presets added). So, any extra uid value(unrecognised)
113 passed from the implementation will be filtered at this point.
114 To receive extra added uid values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
115 to create camera object. In this case, application is assumed to be prepared to receive unrecognised uid values.
117 @note Any preset uid, if added in future, has to have a uid value greater than KUidECamPresetFactoryDefaultUidValue
118 otherwise unrecognized preset uids could not be checked.
120 EXPORT_C void CCamera::CCameraPresets::GetSupportedPresetsL(RArray<TUid>& aPresets) const
122 iImpl->GetSupportedPresetsL(aPresets);
124 /* if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
125 application is not prepared to receive extra added uid values (new presets added). So, any extra uid value(unrecognised)
126 passed from the implementation will be filtered at this point.
127 To receive extra added uid values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
128 to create camera object. In this case, application is assumed to be prepared to receive unrecognised uid values */
129 FilterUnrecognisedUids(aPresets, KUidECamPresetFactoryDefaultUidValue);
133 Sets a specific preset supported by the device.
134 All clients, implementing the MCameraObserver2 interface will receive a notification
135 with the UID of the specific preset, signalling a new preset has been selected.
138 The UID of the new requested preset.
140 EXPORT_C void CCamera::CCameraPresets::SetPreset(TUid aPreset)
142 iImpl->SetPreset(aPreset);
146 Gets the current preset set on the camera.
148 @return The UID of the current preset. If there is no active preset then the
149 returned value is KNullUid.
151 @note if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that application is not
152 prepared to receive extra added uid values (new presets added). So, any extra uid(unrecognised) value received from the
153 implementation will be mapped to KUidECamPresetFactoryDefault at this point.
154 To receive extra added uid values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
155 to create camera object. In this case, application is assumed to be prepared to receive unrecognised uid values
157 EXPORT_C TUid CCamera::CCameraPresets::Preset() const
159 TUid preset = iImpl->Preset();
161 /* if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that application is not
162 prepared to receive extra added uid values (new presets added). So, any extra uid(unrecognised) value received from the
163 implementation will be mapped to KUidECamPresetFactoryDefault at this point.
164 To receive extra added uid values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
165 to create camera object. In this case, application is assumed to be prepared to receive unrecognised uid values */
166 if(iOwner.CameraVersion() == KCameraDefaultVersion)
168 if(preset.iUid > KUidECamPresetFactoryDefaultUidValue)
170 preset = KUidECamPresetFactoryDefault;
178 Get all settings affected by the current preset. This is to say that all settings which
179 are related to the preset in question will be included in the list, even though the value might
183 An empty array of TUids which would be populated by the implementation with
184 the specific settings.
186 @leave KErrNoMemory Out of memory.
188 @note if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
189 application is not prepared to receive extra added uid values (new settings added). So, any extra uid value passed
190 from the implementation will be filtered at this point.
191 To receive extra added uid values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
192 to create camera object. In this case, application is assumed to be prepared to receive unrecognised uid values
194 EXPORT_C void CCamera::CCameraPresets::GetAffectedSettingsL(RArray<TUid>& aSettings) const
196 iImpl->GetAffectedSettingsL(aSettings);
198 /* if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
199 application is not prepared to receive extra added uid values (new settings added). So, any extra uid value passed
200 from the implementation will be filtered at this point.
201 To receive extra added uid values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
202 to create camera object. In this case, application is assumed to be prepared to receive unrecognised uid values */
203 FilterUnrecognisedUids(aSettings, KUidECamEventCameraSettingAutoFocusType2UidValue);
207 Get all settings associated with a specific preset, identified by a UID.
208 This function does not require a preset to have been set prior the call as in
209 GetAffectedSettingsL() function.
210 The returned array will contain the UIDs of all settings which are associated and
211 potentially affected by that particular preset.
214 the UID of the preset in question.
217 An empty array of TUids which would be populated by the implementation with
218 the UIDs of the settings associated with that preset.
220 @leave KErrArgument If the provided preset UID is not recognised.
221 @leave KErrNoMemory Out of memory.
223 @note if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
224 application is not prepared to receive extra added uid values (new settings added). So, any extra uid value passed
225 from the implementation will be filtered at this point.
226 To receive extra added uid values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
227 to create camera object. In this case, application is assumed to be prepared to receive unrecognised uid values
229 EXPORT_C void CCamera::CCameraPresets::GetAssociatedSettingsL(TUid aPreset, RArray<TUid>& aSettings) const
231 iImpl->GetAssociatedSettingsL(aPreset, aSettings);
233 /* if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
234 application is not prepared to receive extra added uid values (new settings added). So, any extra uid value passed
235 from the implementation will be filtered at this point.
236 To receive extra added uid values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
237 to create camera object. In this case, application is assumed to be prepared to receive unrecognised uid values */
238 FilterUnrecognisedUids(aSettings, KUidECamEventCameraSettingAutoFocusType2UidValue);
241 void CCamera::CCameraPresets::FilterUnrecognisedUids(RArray<TUid>& aUids, const TInt aBaselineUid) const
243 if(iOwner.CameraVersion() == KCameraDefaultVersion)
245 for(TInt index =0; index < aUids.Count(); index++)
247 /** aBaselineUid is the baseline. Any uid with greater uid value means that it has
248 been added in later versions */
249 if(aUids[index].iUid > aBaselineUid)
259 Retrieves those settings for which ranges have been restricted in order to let the camera work in a given preset mode.
260 The client will be notified of range restrictions through ECAM event KUidECamEventRangeRestricted. After receiving this
261 notification, the client may use this method to retrieve those settings whose ranges have been restricted.
263 @param aRangeRestrictedSettings
264 An array of uids which represents those settings whose ranges have been restricted. These settings are ECam
265 component wide. For each of the settings, the client can query about the restricted ranges in the usual way.
266 Empty array indicates that there are no range restricted settings for the given preset.
268 @leave May leave with any error code.
273 EXPORT_C void CCamera::CCameraPresets::GetRangeRestrictedSettingsL(RArray<TUid>& aRangeRestrictedSettings) const
277 iImpl2->GetRangeRestrictedSettingsL(aRangeRestrictedSettings);
281 User::Leave(KErrNotSupported);
286 Retrieves those settings which have been restricted (settings no longer supported) in order to let the camera work in
288 The client will be notified of feature restrictions through ECAM event KUidECamEventFeatureRestricted. After receiving
289 this notification, the client may use this method to retrieve these settings.
291 @param aFeatureRestrictedSettings
292 An array of uids which represents those settings which have been restricted. These settings are ECam
293 component wide. Empty array indicates that there are no settings which have been been restricted for
296 @leave May leave with any error code.
301 EXPORT_C void CCamera::CCameraPresets::GetFeatureRestrictedSettingsL(RArray<TUid>& aFeatureRestrictedSettings) const
305 iImpl2->GetFeatureRestrictedSettingsL(aFeatureRestrictedSettings);
309 User::Leave(KErrNotSupported);
314 Retrieves information about whether the preset unlock feature is supported or not. Unlocking the preset helps in making
315 further setting changes after the camera works in a particular preset mode.
317 @param aUnlockSupported
318 ETrue indicates preset unlock feature is supported.
319 EFalse indicates preset lock feature is not supported.
321 @leave May leave with any error code.
326 EXPORT_C void CCamera::CCameraPresets::IsPresetUnlockSupportedL(TBool& aUnlockSupported) const
330 iImpl2->IsPresetUnlockSupportedL(aUnlockSupported);
334 User::Leave(KErrNotSupported);
339 Locks the preset for any further setting changes.
341 @note Event KUidECamEventPresetLocked is used to notify clients that the preset has been locked.
346 EXPORT_C void CCamera::CCameraPresets::LockPresetL()
350 iImpl2->LockPreset();
354 User::Leave(KErrNotSupported);
359 Unlocks the preset to apply further setting changes.
361 @note Event KUidECamEventPresetUnlocked is used to notify clients that the preset has been unlocked.
366 EXPORT_C void CCamera::CCameraPresets::UnlockPresetL()
370 iImpl2->UnlockPreset();
374 User::Leave(KErrNotSupported);
379 Factory function for creating the CCameraAdvancedSettings object.
382 a reference to a CCamera object providing the settings.
384 @return a pointer to a fully constructed CCameraAdvancedSettings object.
386 @leave KErrNoMemory Out of memory or any other system-wide error code.
388 @note Clients using MCameraObserver are not recommended to use this extension class since they cannot handle events.
390 EXPORT_C CCamera::CCameraAdvancedSettings* CCamera::CCameraAdvancedSettings::NewL(CCamera& aCamera)
392 CCamera::CCameraAdvancedSettings* self = new (ELeave)CCamera::CCameraAdvancedSettings(aCamera);
393 CleanupStack::PushL(self);
395 CleanupStack::Pop(self);
401 CCameraAdvancedSettings Constructor.
404 a reference to a CCamera object providing the settings.
406 EXPORT_C CCamera::CCameraAdvancedSettings::CCameraAdvancedSettings(CCamera& aOwner) : iOwner(aOwner), iImpl(NULL), iImpl2(NULL), iImpl3(NULL), iImpl4(NULL)
411 CCameraAdvancedSettings second phase constructor.
413 Function used to initialise internal state of the object. Uses reference to the camera to retrieve
414 Camera advanced settings interface pointer.
416 @leave KErrNoMemory Out of memory.
418 EXPORT_C void CCamera::CCameraAdvancedSettings::ConstructL()
420 iImpl = static_cast<MCameraAdvancedSettings*>(iOwner.CustomInterface(KECamMCameraAdvancedSettingsUid));
423 User::Leave(KErrNotSupported);
425 iImpl2 = static_cast<MCameraAdvancedSettings2*>(iOwner.CustomInterface(KECamMCameraAdvancedSettings2Uid));
426 iImpl3 = static_cast<MCameraAdvancedSettings3*>(iOwner.CustomInterface(KECamMCameraAdvancedSettings3Uid));
427 iImpl4 = static_cast<MCameraAdvancedSettings4*>(iOwner.CustomInterface(KECamMCameraAdvancedSettings4Uid));
433 EXPORT_C CCamera::CCameraAdvancedSettings::~CCameraAdvancedSettings()
454 Gets the type of this camera.
457 @return the type of this camera
459 EXPORT_C CCamera::CCameraAdvancedSettings::TCameraType CCamera::CCameraAdvancedSettings::CameraType() const
461 return iImpl->CameraType();
465 Get the type of a specific camera denoted by its index. A pluggable camera
466 may not necessarily be physically present. The type denotes whether the slot allocated
467 to that index is for pluggable or onboard camera.
471 An integer in the range of [0: CCamera::CamerasAvailable()-1].
473 @return the TCameraType value for the specific camera.
474 If the index is out of range, the return value is ECameraUnknown.
476 EXPORT_C CCamera::CCameraAdvancedSettings::TCameraType CCamera::CCameraAdvancedSettings::CameraType(TInt aCameraIndex)
478 return iImpl->CameraType(aCameraIndex);
482 Checks whether the current camera is present.
484 @return Whether the camera is currently present.
485 ETrue if camera is present, EFalse otherwise.
486 For example ECameraOnBoard (built-in) cameras are always present.
488 EXPORT_C TBool CCamera::CCameraAdvancedSettings::IsCameraPresent() const
490 return iImpl->IsCameraPresent();
494 Checks whether the camera, denoted by its index, is currently present.
495 The index uniquely identifies the camera on the device.
498 An integer in the range of [0:CCamera::CamerasAvailable()-1] specifying the
501 @return Whether the camera is currently present.
502 ETrue if camera is present, EFalse otherwise.
503 For example built-in (ECameraOnBoard) cameras
506 EXPORT_C TBool CCamera::CCameraAdvancedSettings::IsCameraPresent(TInt aCameraIndex)
508 return iImpl->IsCameraPresent(aCameraIndex);
512 Gets current camera index. The index uniquely identifies the camera on the device.
514 @return camera index in the inclusive range of [0:CCamera::CamerasAvailable() - 1].
516 EXPORT_C TInt CCamera::CCameraAdvancedSettings::CameraIndex() const
518 return iImpl->CameraIndex();
522 Gets all of the supported stabilization modes on the camera. The result is a bitfield
523 of the valid TStabilizationMode flags.
524 @see TStabilizationMode
526 @return a bitfield of all supported stabilization modes.
528 EXPORT_C TInt CCamera::CCameraAdvancedSettings::SupportedStabilizationModes() const
530 return iImpl->SupportedStabilizationModes();
534 Gets current stabilization mode on the camera.
535 The result is a valid TStabilizationMode value.
537 @return current stabilization mode of type TStabilizationMode.
539 EXPORT_C CCamera::CCameraAdvancedSettings::TStabilizationMode CCamera::CCameraAdvancedSettings::StabilizationMode() const
541 return iImpl->StabilizationMode();
545 Sets a specific stabilization mode on the camera.
547 Stabilization mode change fires a KUidECamEventCameraSettingStabilizationMode
548 event to all MCameraObserver2 clients of this specific camera.
550 @param aStabilizationMode
551 new stabilization mode of TStabilizationMode type.
553 EXPORT_C void CCamera::CCameraAdvancedSettings::SetStabilizationMode(CCamera::CCameraAdvancedSettings::TStabilizationMode aStabilizationMode)
555 iImpl->SetStabilizationMode(aStabilizationMode);
559 Gets all of the supported focus modes on the camera. The result is a bitfield
560 of the valid TFocusMode flags.
563 @return a bitfield of all supported focus modes.
565 EXPORT_C TInt CCamera::CCameraAdvancedSettings::SupportedFocusModes() const
567 return iImpl->SupportedFocusModes();
571 Gets current focus mode on the camera.
572 The result is a valid TFocusMode value.
574 @return current focus mode.
576 EXPORT_C CCamera::CCameraAdvancedSettings::TFocusMode CCamera::CCameraAdvancedSettings::FocusMode() const
578 return iImpl->FocusMode();
582 Sets a specific focus mode on the camera.
583 Focus mode change fires a KUidECamEventCameraSettingFocusMode event
584 to all MCameraObserver2 clients of the camera.
587 new focus mode of TFocusMode type.
589 EXPORT_C void CCamera::CCameraAdvancedSettings::SetFocusMode(CCamera::CCameraAdvancedSettings::TFocusMode aFocusMode)
591 iImpl->SetFocusMode(aFocusMode);
595 Gets all supported focus ranges on the camera.
597 @return an integer - a bitfield of all supported TFocusRange values.
599 @note if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
600 application is not prepared to receive extra added enum values. So, any extra enum value passed
601 from the implementation will be filtered at this point.
602 To receive extra added enum values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
603 to create camera object. In this case, application is assumed to be prepared to receive unrecognised enum values
605 EXPORT_C TInt CCamera::CCameraAdvancedSettings::SupportedFocusRanges() const
607 TInt supportedFocusRanges = iImpl->SupportedFocusRanges();
609 /* if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
610 application is not prepared to receive extra added enum values. So, any extra enum value passed
611 from the implementation will be filtered at this point.
612 To receive extra added enum values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
613 to create camera object. In this case, application is assumed to be prepared to receive unrecognised enum values */
614 if(iOwner.CameraVersion() == KCameraDefaultVersion)
616 supportedFocusRanges &= KBaselinedFocusRanges;
619 return supportedFocusRanges;
623 Gets current focus range on the camera.
625 @return the current TFocusRange value.
627 @note if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
628 application is not prepared to receive extra added enum values. So, any extra enum value received
629 from the implementation will be dropped and EFocusRangeAuto would be passed instead.
630 To receive extra added enum values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
631 to create camera object. In this case, application is assumed to be prepared to receive unrecognised enum values
633 EXPORT_C CCamera::CCameraAdvancedSettings::TFocusRange CCamera::CCameraAdvancedSettings::FocusRange() const
635 CCamera::CCameraAdvancedSettings::TFocusRange focusRange = iImpl->FocusRange();
637 /* if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
638 application is not prepared to receive extra added enum values. So, any extra enum value received
639 from the implementation will be dropped and EFocusRangeAuto would be passed instead.
640 To receive extra added enum values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
641 to create camera object. In this case, application is assumed to be prepared to receive unrecognised enum values */
642 if(iOwner.CameraVersion() == KCameraDefaultVersion)
644 if(static_cast<TInt>(focusRange) > KBaselinedFocusRanges)
646 focusRange = CCamera::CCameraAdvancedSettings::EFocusRangeAuto;
654 Sets a specific focus range on the camera.
655 The focus range change fires both, KUidECamEventCameraSettingFocusRange and
656 KUidECamEventCameraSettingFocusRange2 event to all MCameraObserver2 clients of the camera.
657 @see KUidECamEventCameraSettingFocusRange
660 newly selected focus range.
662 EXPORT_C void CCamera::CCameraAdvancedSettings::SetFocusRange(CCamera::CCameraAdvancedSettings::TFocusRange aFocusRange)
664 iImpl->SetFocusRange(aFocusRange);
668 Gets all supported auto focus types on the camera.
670 @return an integer - a bitfield of all supported TAutoFocusType values.
672 EXPORT_C TInt CCamera::CCameraAdvancedSettings::SupportedAutoFocusTypes() const
674 return iImpl->SupportedAutoFocusTypes();
678 Gets current auto focus type on the camera.
681 @return a CCamera::TAutoFocusType value.
683 EXPORT_C CCamera::CCameraAdvancedSettings::TAutoFocusType CCamera::CCameraAdvancedSettings::AutoFocusType() const
685 return iImpl->AutoFocusType();
689 Sets a specific auto focus type on the camera.
690 The focus type change fires both, KUidECamEventCameraSettingAutoFocusType and
691 KUidECamEventCameraSettingAutoFocusType2 event to all MCameraObserver2 clients of the camera.
692 @see KUidECamEventCameraSettingAutoFocusType
694 @param aAutoFocusType
697 EXPORT_C void CCamera::CCameraAdvancedSettings::SetAutoFocusType(CCamera::CCameraAdvancedSettings::TAutoFocusType aAutoFocusType)
699 iImpl->SetAutoFocusType(aAutoFocusType);
703 Gets all supported auto focus areas on the camera.
705 @return an integer - a bitfield of al supported TAutoFocusArea values.
707 EXPORT_C TInt CCamera::CCameraAdvancedSettings::SupportedAutoFocusAreas() const
709 return iImpl->SupportedAutoFocusAreas();
713 Gets current chosen auto focus area on the camera.
715 @return a CCamera::TAutoFocusArea value.
717 EXPORT_C CCamera::CCameraAdvancedSettings::TAutoFocusArea CCamera::CCameraAdvancedSettings::AutoFocusArea() const
719 return iImpl->AutoFocusArea();
723 Sets a specific auto focus area on the camera.
724 Focus area change fires a KUidECamEventCameraSettingAutoFocusArea event
725 to all MCameraObserver2 clients of the camera.
727 @param aAutoFocusArea
728 Autofocus area selection.
730 EXPORT_C void CCamera::CCameraAdvancedSettings::SetAutoFocusArea(CCamera::CCameraAdvancedSettings::TAutoFocusArea aAutoFocusArea)
732 iImpl->SetAutoFocusArea(aAutoFocusArea);
736 Get focus distance in millimetres.
738 @return the current focus distance in millimetres, directly from user setting of lenses.
740 EXPORT_C TInt CCamera::CCameraAdvancedSettings::FocusDistance() const
742 return iImpl->FocusDistance();
746 Set focus distance in millimetres. Focus distance change fires a KUidECamEventCameraSettingFocusDistance event
747 to all MCameraObserver2 clients of the camera.
750 the new distance value in millimetres.
752 @note KUidECamEvent2CameraSettingFocusDistance may be used to provide the focussing feedback as well. This means that
753 the feedback will state whether the proper focussing has been achieved after setting the given focus distance.
755 EXPORT_C void CCamera::CCameraAdvancedSettings::SetFocusDistance(TInt aDistance)
757 iImpl->SetFocusDistance(aDistance);
761 Get minimum focus distance in millimetres
763 @return the minimum (35 camera equivalent) focal length of a camera.
764 @note Current Focal length is calculated as focalLength = opticalZoom * minFocalLength;
766 EXPORT_C TInt CCamera::CCameraAdvancedSettings::GetMinFocalLength() const
768 return iImpl->GetMinFocalLength();
772 Gets the set of camera supported ISO rates.
774 @param aSupportedIsoRates
775 an array of integers which gets filled with the supported ISO rates.
777 @note When camera device is incapable of revealing the ISO rates supported, it has to be assumed that
778 camera will work only on the permanently set value. If this value is not known, empty array may be
779 returned; corresponding getter/setters for this feature should not be used in such a case.
781 EXPORT_C void CCamera::CCameraAdvancedSettings::GetSupportedIsoRatesL(RArray<TInt>& aSupportedIsoRates) const
783 iImpl->GetSupportedIsoRatesL(aSupportedIsoRates);
787 Gets current ISO rate.
789 @return current ISO rate as a TInt value.
790 Negative value returned means error case (system wide error code) and positive value means current ISO rate.
792 @note The returned value may be checked with the list of supported ISO rates. If value returned does not belong to
793 this list, then it may be treated as an error case.
795 EXPORT_C TInt CCamera::CCameraAdvancedSettings::IsoRate() const
797 return iImpl->IsoRate();
801 Set current ISO rate for the camera.
802 Triggers KUidECamEventCameraSettingIsoRate to all MCameraObserver2 clients of the camera.
805 required new ISO rate.
807 EXPORT_C void CCamera::CCameraAdvancedSettings::SetIsoRate(TInt aRate)
809 iImpl->SetIsoRate(aRate);
813 Gets the current discrete aperture steps (F-stops) supported by the camera.
816 A reference to an empty array of TInt which would be populated by the implementation with
817 the specific supported values. If the array is empty on return,
818 the camera supports all integer values in the aperture range. Each value is multiplied by
819 a factor of KECamFineResolutionFactor.
822 a reference to TValueInfo, which establishes the type of the returned data.
824 @leave KErrNoMemory Out of memory.
826 @note When camera device is incapable of revealing the aperture openings supported, it has to be assumed that
827 camera will work only on the parmanently set value. If this value is not known, empty array may be
828 returned and TValueInfo may be ENotActive; corresponding getter/setters for this feature should not be used in such a case.
830 EXPORT_C void CCamera::CCameraAdvancedSettings::GetAperturesL(RArray<TInt>& aFStops, TValueInfo& aInfo) const
832 iImpl->GetAperturesL(aFStops, aInfo);
836 Get current aperture value.
837 The default aperture value is ECAM implementation specific and could be either auto aperture or any other supported value.
839 @return Current aperture value as an integer, multiplied by KECamFineResolutionFactor.
840 For example the function will return 280 for the actual aperture of F2.8.
841 Negative value returned means error case (system wide error code) and positive value means current aperture.
843 EXPORT_C TInt CCamera::CCameraAdvancedSettings::Aperture() const
845 return iImpl->Aperture();
849 Set a new aperture value.
850 All MCameraObserver2 clients of the camera receive a KUidECamEventCameraSettingAperture
851 event notification when aperture value is changed.
854 a new aperture value in the supported by the camera range.
856 @note The aperture parameter value is an integer, multiplied by KECamFineResolutionFactor.
857 For example to set an aperture of F2.8, call SetAperture(280).
860 EXPORT_C void CCamera::CCameraAdvancedSettings::SetAperture(TInt aFStop)
862 iImpl->SetAperture(aFStop);
866 Gets the set of supported shutter speeds.
868 @param aShutterSpeeds
869 a reference to an RArray of TInt representing the discrete shutter speeds supported
870 currently by the camera.
873 a reference to TValueInfo, which establishes the type of the returned data.
875 @return the populated array with all shutter speeds in microseconds.
877 @leave KErrNoMemory Out of memory.
879 @note When camera device is incapable of revealing the shutter speeds supported, it has to be assumed that
880 camera will work only on the parmanently set value. If this value is not known, empty array may be
881 returned and TValueInfo may be ENotActive; corresponding getter/setters for this feature should not be used in such a case.
883 EXPORT_C void CCamera::CCameraAdvancedSettings::GetShutterSpeedsL(RArray<TInt>& aShutterSpeeds, TValueInfo& aInfo) const
885 iImpl->GetShutterSpeedsL(aShutterSpeeds, aInfo);
889 Gets the current shutter speed
891 @return the current shutter speed in microseconds.
892 Negative value returned means error case (system wide error code) and positive value means current shutter speed.
894 EXPORT_C TInt CCamera::CCameraAdvancedSettings::ShutterSpeed() const
896 return iImpl->ShutterSpeed();
900 Sets the current shutter speed. When set, all MCameraObserver2 clients of the camera
901 receive a KUidECamEventCameraSettingShutterSpeed event
904 the required shutter speed in microseconds.
906 EXPORT_C void CCamera::CCameraAdvancedSettings::SetShutterSpeed(TInt aShutterSpeed)
908 iImpl->SetShutterSpeed(aShutterSpeed);
912 Get all supported metering modes on this camera represented as bitfield of type TMeteringMode.
914 @return the set of supported metering modes.
916 EXPORT_C TInt CCamera::CCameraAdvancedSettings::SupportedMeteringModes() const
918 return iImpl->SupportedMeteringModes();
922 Get current metering mode.
924 @return a value of type TMeteringMode.
926 EXPORT_C CCamera::CCameraAdvancedSettings::TMeteringMode CCamera::CCameraAdvancedSettings::MeteringMode() const
928 return iImpl->MeteringMode();
932 Set the current metering mode. When set, all MCameraObserver2 clients are notified
933 with a KUidECamEventCameraSettingMeteringMode event.
936 new selection for metering mode of type TMeteringMode.
938 EXPORT_C void CCamera::CCameraAdvancedSettings::SetMeteringMode(CCamera::CCameraAdvancedSettings::TMeteringMode aMeteringMode)
940 iImpl->SetMeteringMode(aMeteringMode);
944 Get all supported drive modes as bitfields of TDriveMode type.
946 @return the set of supported drive modes.
948 EXPORT_C TInt CCamera::CCameraAdvancedSettings::SupportedDriveModes() const
950 TInt supportedDriveModes = iImpl->SupportedDriveModes();
952 /* if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
953 application is not prepared to receive extra added enum values. So, any extra enum value passed
954 from the implementation will be filtered at this point.
955 To receive extra added enum values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
956 to create camera object. In this case, application is assumed to be prepared to receive unrecognised enum values */
957 if(iOwner.CameraVersion() == KCameraDefaultVersion)
959 supportedDriveModes &= KBaselinedDriveMode;
962 return supportedDriveModes;
966 Gets currently active drive mode.
968 @return current drive mode.
970 EXPORT_C CCamera::CCameraAdvancedSettings::TDriveMode CCamera::CCameraAdvancedSettings::DriveMode() const
972 CCamera::CCameraAdvancedSettings::TDriveMode driveMode = iImpl->DriveMode();
974 /* if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
975 application is not prepared to receive extra added enum values. So, any extra enum value received
976 from the implementation will be dropped and EDriveModeAuto would be passed instead.
977 To receive extra added enum values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
978 to create camera object. In this case, application is assumed to be prepared to receive unrecognised enum values */
979 if(iOwner.CameraVersion() == KCameraDefaultVersion)
981 if(static_cast<TUint>(driveMode) > KBaselinedDriveMode)
983 driveMode = CCamera::CCameraAdvancedSettings::EDriveModeAuto;
991 Set the current metering mode. When set all MCameraObserver2 clients are notified with
992 KUidECamEventCameraSettingDriveMode.
995 new selection for drive mode value of type TDriveMode.
997 @note Unless reduced Latency scheme is not used (ie CaptureImageL(TInt aSequenceNumber) or StartPerformantVideoCaptureL())
998 if an image/video capture is still outstanding, this method may report error KErrInUse.
1000 EXPORT_C void CCamera::CCameraAdvancedSettings::SetDriveMode(CCamera::CCameraAdvancedSettings::TDriveMode aDriveMode)
1002 iImpl->SetDriveMode(aDriveMode);
1006 Get all supported bracket modes as bitfields.
1008 @return the set of all supported bracket modes as an integer.
1010 EXPORT_C TInt CCamera::CCameraAdvancedSettings::SupportedBracketModes() const
1012 return iImpl->SupportedBracketModes();
1016 Get current bracket mode.
1018 @return the current bracket mode TBracketMode.
1020 EXPORT_C CCamera::CCameraAdvancedSettings::TBracketMode CCamera::CCameraAdvancedSettings::BracketMode() const
1022 return iImpl->BracketMode();
1026 Set new bracket mode. All MCameraObserver2 clients are notified with
1027 KUidECamEventCameraSettingBracketMode.
1030 new selection for bracket mode of type TBracketMode.
1032 EXPORT_C void CCamera::CCameraAdvancedSettings::SetBracketMode(CCamera::CCameraAdvancedSettings::TBracketMode aBracketMode)
1034 iImpl->SetBracketMode(aBracketMode);
1038 Get all supported bracket parameters as bitfields.
1040 @return the set of all currently supported bracket modes.
1042 EXPORT_C TInt CCamera::CCameraAdvancedSettings::SupportedBracketParameters() const
1044 return iImpl->SupportedBracketParameters();
1048 Get current bracket parameter.
1050 @return the current bracket mode TBracketParameter.
1052 EXPORT_C CCamera::CCameraAdvancedSettings::TBracketParameter CCamera::CCameraAdvancedSettings::BracketParameter() const
1054 return iImpl->BracketParameter();
1058 Set new bracket parameter
1059 When set all clients are notified with
1060 KUidECamEventCameraSettingBracketParameter.
1062 @param aBracketParameter
1063 new selection for parameter type of type TBracketParameter.
1065 EXPORT_C void CCamera::CCameraAdvancedSettings::SetBracketParameter(CCamera::CCameraAdvancedSettings::TBracketParameter aBracketParameter)
1067 iImpl->SetBracketParameter(aBracketParameter);
1071 Get all supported bracket steps as bitfields.
1073 @return the set of all supported bracket modes.
1075 EXPORT_C TInt CCamera::CCameraAdvancedSettings::SupportedBracketSteps() const
1077 return iImpl->SupportedBracketSteps();
1081 Get current bracket step.
1083 @return the current bracket mode TBracketStep.
1085 EXPORT_C CCamera::CCameraAdvancedSettings::TBracketStep CCamera::CCameraAdvancedSettings::BracketStep() const
1087 return iImpl->BracketStep();
1091 Set new bracket step. All MCameraObserver2 clients are notified with
1092 KUidECamEventCameraSettingBracketStep.
1095 new selection for step of type TBracketStep.
1097 EXPORT_C void CCamera::CCameraAdvancedSettings::SetBracketStep(CCamera::CCameraAdvancedSettings::TBracketStep aBracketStep)
1099 iImpl->SetBracketStep(aBracketStep);
1103 Gets the settings for which frames to merge. Valid only in EDriveModeBracketMerge mode.
1104 @note there must be at least two images to merge. All are assumed to form a sequence and
1105 are identified using the first frame index and number of frames e.g. to merge two frames - one
1106 on and one +1, when in EBracketMode3Image, one sets the start index to 1 and frames to two.
1107 @note It is very much TBracketMode setting dependent operation.
1110 the index of the start frame, starts from 0.
1113 the number of frames to be merged.
1115 EXPORT_C void CCamera::CCameraAdvancedSettings::GetBracketMerge(TInt& aStartIndex, TInt& aFrames) const
1117 iImpl->GetBracketMerge(aStartIndex, aFrames);
1121 Sets the settings for which frames to merge. Valid only in EDriveModeBracketMerge mode.
1122 @note there must be at least two images to merge. All are assumed to form a sequence and
1123 are identified using the first frame index and number of frames e.g. to merge two frames - one
1124 on and one +1, when in EBracketMode3Image, one sets the start index to 1 and frames to 2.
1125 MCameraObserver2 clients are notified with a KUidECamEventBracketMerge event.
1127 @note It is very TBracketMode setting dependent.
1130 the index of the start frame, starts from 0.
1133 the number of frames to be merged.
1135 EXPORT_C void CCamera::CCameraAdvancedSettings::SetBracketMerge(TInt aStartIndex, TInt aFrames)
1137 iImpl->SetBracketMerge(aStartIndex, aFrames);
1141 Get camera all supported flash modes CCamera::TFlash
1143 @return the set of all supported flash modes as bitfields in an integer.
1144 @note Some of the flash modes are available only for clients using either CCamera::New2L() or CCamera::NewDuplicate2L()
1145 @see CCamera::TFlash
1147 EXPORT_C TInt CCamera::CCameraAdvancedSettings::SupportedFlashModes() const
1149 TInt modes = iImpl->SupportedFlashModes();
1150 if (iOwner.CameraVersion() == KCameraDefaultVersion)
1152 modes &= KBaselinedFlashModeMask;
1158 Gets the currently set flash mode.
1160 @return The currently set flash mode.
1161 @note Clients not using the CCamera::New2L() or CCamera::NewDuplicate2L() would be given CCamera::EFlashAuto
1162 if current flash mode exceeds CCamera::EFlashManual
1163 @see CCamera::TFlash
1165 EXPORT_C CCamera::TFlash CCamera::CCameraAdvancedSettings::FlashMode() const
1167 TInt mode = iImpl->FlashMode();
1168 if (iOwner.CameraVersion() == KCameraDefaultVersion && mode > KBaselinedFlashModeMask)
1172 return static_cast<CCamera::TFlash>(mode);
1176 Sets the flash mode.
1178 Triggers a KUidECamEventCameraSettingFlashMode event to all camera
1179 MCameraObserver2 clients.
1182 The required flash mode.
1184 EXPORT_C void CCamera::CCameraAdvancedSettings::SetFlashMode(CCamera::TFlash aMode)
1186 iImpl->SetFlashMode(aMode);
1190 Gets whether the flash red eye reduction is switched on.
1192 @return The present state - ETrue for switched on and EFalse for switched off.
1194 EXPORT_C TBool CCamera::CCameraAdvancedSettings::RedEyeReduceOn() const
1196 return iImpl->RedEyeReduceOn();
1200 Sets the flash red eye reduction on or off.
1202 Triggers a KUidECamEventCameraSettingFlashRedEyeReduce event to all camera
1203 MCameraObserver2 clients.
1206 The required state ETrue for switching it on and EFalse for switching it off.
1208 EXPORT_C void CCamera::CCameraAdvancedSettings::SetRedEyeReduceOn(TBool aState)
1210 iImpl->SetRedEyeReduceOn(aState);
1214 Get flash compensation steps as integers multiplied by KECamFineResolutionFactor.
1215 For example 0.5 EV is 50.
1217 @param aFlashCompensationSteps
1218 an RArray of integers which is populated on return to reflect the supported
1219 flash compensation steps,
1222 an TValueInfo reference, which establishes the organization of
1227 @leave KErrNoMemory Out of memory.
1229 @note When camera device doesn't support this, empty array may be returned and TValueInfo may be ENotActive;
1230 corresponding getter/setters for this feature should not be used in such a case.
1232 @note When camera device is incapable of revealing the flash compensation steps supported,
1233 it has to be assumed that camera will work only on the parmanently set value. If this value is not known, empty
1234 array may be returned and TValueInfo may be ENotActive; corresponding getter/setters for this feature should not be used in such a case.
1236 EXPORT_C void CCamera::CCameraAdvancedSettings::GetFlashCompensationStepsL(RArray<TInt>& aFlashCompensationSteps, TValueInfo& aInfo) const
1238 iImpl->GetFlashCompensationStepsL(aFlashCompensationSteps, aInfo);
1242 @deprecated Use TInt GetFlashCompensationStep(TInt& aFlashCompensationStep);
1244 Get current flash power compensation step.
1246 @return current flash compensation step.
1248 EXPORT_C TInt CCamera::CCameraAdvancedSettings::FlashCompensationStep() const
1250 return iImpl->FlashCompensationStep();
1254 Get current flash power compensation step.
1256 @param aFlashCompensationStep
1257 Reference to the current flash compensation step.
1259 @return system wide error code.
1261 @note Use this method in place of deprecated TInt FlashCompensationStep()
1264 EXPORT_C TInt CCamera::CCameraAdvancedSettings::GetFlashCompensationStep(TInt& aFlashCompensationStep) const
1266 return iImpl->GetFlashCompensationStep(aFlashCompensationStep);
1270 Set current flash compensation step as an integer multiplied by KECamFineResolutionFactor.
1271 For example to set a compensation of -0.3 EV, one should use a parameter with value -30.
1272 All clients receive a KUidECamEventCameraSettingFlashCompensationStep event, when the value has changed.
1274 @param aFlashCompensationStep
1275 a new value for the flash compensation step.
1277 EXPORT_C void CCamera::CCameraAdvancedSettings::SetFlashCompensationStep(TInt aFlashCompensationStep)
1279 iImpl->SetFlashCompensationStep(aFlashCompensationStep);
1283 Get current flash power compensation range measured in a already selected compensation step magnitude.
1284 @note This range may change if a different compensation step is selected.
1285 For example if flash compensation range is in the range -1EV 1.5EV and the selected flash compensation
1286 step is selected to be 0.3 EV, the result of this call will be aNegativeCompensation = -3 and aPositiveCompensation = 5.
1287 as there can be only three full steps for negative compensation (1/0.3) and five for flash power boost (1.5/0.3).
1288 In this way developers, having pre-selected a step value from the supported set, would need to provide
1289 just the multiplier (in steps) and the direction (the sign). Steps are always assumed integers.
1291 @param aNegativeCompensation
1292 a reference to an integer returning the maximum number of steps available for negative compensation.
1294 @param aPositiveCompensation
1295 a reference to an integer returning the maximum number of steps available for positive compensation.
1297 EXPORT_C void CCamera::CCameraAdvancedSettings::GetFlashCompensationRangeInSteps(TInt& aNegativeCompensation, TInt& aPositiveCompensation) const
1299 iImpl->GetFlashCompensationRangeInSteps(aNegativeCompensation, aPositiveCompensation);
1303 @deprecated Use TInt GetFlashCompensation(TInt& aFlashCompensation);
1305 Get the current flash compensation value as integer steps. Positive values boost flash power,
1306 negative reduce flash power. The change is not cumulative i.e. the change is stateless.
1307 Each call assumes no previous compensation has been performed i.e. that there is a zero compensation.
1309 @note if returned value is 2 (compensation steps) and the current flash compensation step is 0.3 EV,
1310 then the actual compensation effect will be 0.6 EV.
1312 @return the current number of compensation steps as an integer.
1314 EXPORT_C TInt CCamera::CCameraAdvancedSettings::FlashCompensation() const
1316 return iImpl->FlashCompensation();
1320 Get the current flash compensation value as integer steps. Positive values boost flash power,
1321 negative reduce flash power. The change is not cumulative i.e. the change is stateless.
1322 Each call assumes no previous compensation has been performed i.e. that there is a zero compensation.
1324 @note if retrieved value is 2 (compensation steps) and the current flash compensation step is 0.3 EV,
1325 then the actual compensation effect will be 0.6 EV.
1327 @param aFlashCompensation
1328 Reference to the current number of compensation steps as an integer.
1330 @return system wide error code.
1332 @note Use this method in place of deprecated TInt FlashCompensation()
1335 EXPORT_C TInt CCamera::CCameraAdvancedSettings::GetFlashCompensation(TInt& aFlashCompensation) const
1337 return iImpl->GetFlashCompensation(aFlashCompensation);
1341 Set the current flash compensation value as integer steps.
1342 Positive values increase power, negative reduce power. The change is not acumulative e.g. the change is stateless.
1343 Each call assumes no previous compensation has been performed i.e. that there is a zero compensation.
1344 Triggers a KUidECamEventCameraSettingFlashCompensation event.
1346 @param aFlashCompensationSteps
1347 a required compensation steps - negative value reduce the flash power
1348 positive boosts up the flash power.
1350 EXPORT_C void CCamera::CCameraAdvancedSettings::SetFlashCompensation(TInt aFlashCompensationSteps)
1352 iImpl->SetFlashCompensation(aFlashCompensationSteps);
1356 Check whether there is an external flash source.
1358 @return ETrue if an external flash source is present, EFalse otherwise
1360 EXPORT_C TBool CCamera::CCameraAdvancedSettings::IsExternalFlashPresent() const
1362 return iImpl->IsExternalFlashPresent();
1366 Gets the current discrete manual flash power levels supported by the camera in range 0-100
1367 as a percentage of maximum power level.
1369 @param aManualFlashPowerLevels
1370 An empty array of TInt which would be populated by the implementation with
1371 the specific supported values. If the array is empty on return,
1372 the camera does not support this functionality.
1375 a reference to TValueInfo, which establishes the type of the returned data.
1377 @leave KErrNoMemory Out of memory.
1379 @note When camera device doesn't support this, empty array may be returned and TValueInfo may be ENotActive;
1380 corresponding getter/setters for this feature should not be used in such a case.
1381 When camera device is incapable of revealing the manual flash power levels supported,
1382 it has to be assumed that camera will work only on the permanently set value. If this value is not known, empty
1383 array may be returned and TValueInfo may be ENotActive; corresponding getter/setters for this feature should not be used in such a case.
1385 EXPORT_C void CCamera::CCameraAdvancedSettings::GetManualFlashPowerLevelsL(RArray<TInt>& aManualFlashPowerLevels, TValueInfo& aInfo) const
1387 return iImpl->GetManualFlashPowerLevelsL(aManualFlashPowerLevels, aInfo);
1391 Gets the current manual flash power level on the camera.
1393 @return the current manual flash power level as a value in the range [0:100].
1394 Negative value returned means error case (system wide error code) and positive value means current manual flash power level.
1396 EXPORT_C TInt CCamera::CCameraAdvancedSettings::ManualFlashPowerLevel() const
1398 return iImpl->ManualFlashPowerLevel();
1402 Sets the current manual flash power level on the camera.
1403 Triggers a KUidECamEventCameraSettingFlashManualPower event to all MCameraObserver2 clients.
1405 @param aManualFlashPowerLevel
1406 one of the values returned in GetManualFlashPowerLevelsL().
1408 EXPORT_C void CCamera::CCameraAdvancedSettings::SetManualFlashPowerLevel(TInt aManualFlashPowerLevel)
1410 iImpl->SetManualFlashPowerLevel(aManualFlashPowerLevel);
1414 Get Supported exposure modes - bitfields of CCamera::TExposure
1416 @return the set of supported exposure modes.
1418 EXPORT_C TInt CCamera::CCameraAdvancedSettings::SupportedExposureModes() const
1420 return iImpl->SupportedExposureModes();
1424 Gets the currently set exposure setting value.
1426 @return The currently set exposure setting value.
1428 EXPORT_C CCamera::TExposure CCamera::CCameraAdvancedSettings::ExposureMode() const
1430 return iImpl->ExposureMode();
1434 Sets the exposure mode of the camera.
1435 Triggers a KUidECamEventCameraSettingExposureMode event to all MCameraObserver2 clients.
1437 @param aExposureMode
1438 The required exposure adjustment.
1440 EXPORT_C void CCamera::CCameraAdvancedSettings::SetExposureMode(CCamera::TExposure aExposureMode)
1442 iImpl->SetExposureMode(aExposureMode);
1446 Get exposure compensation steps as integers multiplied by KECamFineResolutionFactor.
1447 For example 0.3 EV is 30.
1449 @param aExposureCompensationSteps
1450 an RArray of integers which is populated to reflect the supported
1451 exposure compensation steps, all values have been multiplied by KECamFineResolutionFactor before
1452 truncated to integers.
1455 a reference to TValueInfo, which establishes the type of the returned data.
1457 @leave KErrNoMemory Out of memory.
1459 @note When camera device doesn't support this, empty array may be returned and TValueInfo may be ENotActive;
1460 corresponding getter/setters for this feature should not be used in such a case.
1461 When camera device is incapable of revealing the exposure compensation steps supported,
1462 it has to be assumed that camera will work only on the permanently set value. If this value is not known, empty
1463 array may be returned and TValueInfo may be ENotActive; corresponding getter/setters for this feature should not be used in such a case.
1465 EXPORT_C void CCamera::CCameraAdvancedSettings::GetExposureCompensationStepsL(RArray<TInt>& aExposureCompensationSteps, TValueInfo& aInfo) const
1467 iImpl->GetExposureCompensationStepsL(aExposureCompensationSteps, aInfo);
1471 @deprecated Use TInt GetExposureCompensationStep(TInt& aExposureCompensationStep);
1473 Get current exposure compensation step.
1475 @return the current exposure compensation step.
1477 EXPORT_C TInt CCamera::CCameraAdvancedSettings::ExposureCompensationStep() const
1479 return iImpl->ExposureCompensationStep();
1483 Get current exposure compensation step.
1485 @param aExposureCompensationStep
1486 Reference to the current exposure compensation step.
1488 @return system wide error code.
1490 @note Use this method in place of deprecated TInt ExposureCompensationStep()
1493 EXPORT_C TInt CCamera::CCameraAdvancedSettings::GetExposureCompensationStep(TInt& aExposureCompensationStep) const
1495 return iImpl->GetExposureCompensationStep(aExposureCompensationStep);
1499 Set current exposure compensation step as an integer multiplied by KECamFineResolutionFactor.
1500 All MCameraObserver2 clients receive a KUidECamEventCameraSettingExposureCompensationStep event,
1501 when the value has changed.
1503 @param aExposureCompensationStep
1504 a new value for the exposure compensation step.
1506 EXPORT_C void CCamera::CCameraAdvancedSettings::SetExposureCompensationStep(TInt aExposureCompensationStep)
1508 iImpl->SetExposureCompensationStep(aExposureCompensationStep);
1512 Get current exposure compensation range in steps. It depends on the previously
1513 selected exposure compensation step.
1515 @see GetFlashCompensationRangeInSteps()
1517 @param aNegativeCompensation
1518 reference to an integer returning the maximum number of steps
1519 available for negative compensation,
1521 @param aPositiveCompensation
1522 reference to an integer returning the maximum number of steps
1523 available for positive compensation,
1525 EXPORT_C void CCamera::CCameraAdvancedSettings::GetExposureCompensationRangeInSteps(TInt& aNegativeCompensation, TInt& aPositiveCompensation) const
1527 iImpl->GetExposureCompensationRangeInSteps(aNegativeCompensation, aPositiveCompensation);
1531 @deprecated Use TInt GetExposureCompensation(TInt& aExposureCompensation);
1533 Get the current exposure compensation steps. Positive values increase exposure times,
1534 negative reduce exposure times. The change is not cumulative i.e. the change is stateless.
1535 Each call assumes no previous compensation has been performed i.e. that there is a zero compensation.
1537 @note if returned value is 2 (compensation steps) and the current exposure compensation step is 0.3 EV,
1538 then the actual compensation effect will be 0.6 EV.
1540 @return current number of compensation steps as an integer.
1542 EXPORT_C TInt CCamera::CCameraAdvancedSettings::ExposureCompensation() const
1544 return iImpl->ExposureCompensation();
1548 Get the current exposure compensation steps. Positive values increase exposure times,
1549 negative reduce exposure times. The change is not cumulative i.e. the change is stateless.
1550 Each call assumes no previous compensation has been performed i.e. that there is a zero compensation.
1552 @note if retrieved value is 2 (compensation steps) and the current exposure compensation step is 0.3 EV,
1553 then the actual compensation effect will be 0.6 EV.
1555 @param aExposureCompensation
1556 Reference to the current number of compensation steps as an integer.
1558 @return system wide error code.
1560 @note Use this method in place of deprecated TInt ExposureCompensation()
1563 EXPORT_C TInt CCamera::CCameraAdvancedSettings::GetExposureCompensation(TInt& aExposureCompensation) const
1565 return iImpl->GetExposureCompensation(aExposureCompensation);
1569 Set the current exposure compensation value as integer steps.
1570 Triggers a KUidECamEventCameraSettingExposureCompensation event to all MCameraObserver2 clients.
1572 @param aExposureCompensationSteps
1573 a required number of compensation steps - negative value reduce the exposure time
1574 positive increases the exposure time.
1576 EXPORT_C void CCamera::CCameraAdvancedSettings::SetExposureCompensation(TInt aExposureCompensationSteps)
1578 iImpl->SetExposureCompensation(aExposureCompensationSteps);
1582 Gets camera supported set of white balance adjustments.
1584 @return bitfield of all supported CCamera::TWhiteBalance values.
1586 @note if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
1587 application is not prepared to receive extra added enum values. So, any extra enum value(unrecognised) passed
1588 from the implementation will be filtered at this point.
1589 To receive extra added enum values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
1590 to create camera object. In this case, application is assumed to be prepared to receive unrecognised enum values
1592 EXPORT_C TInt CCamera::CCameraAdvancedSettings::SupportedWhiteBalanceModes() const
1594 TInt supportedWhiteBalanceModes = iImpl->SupportedWhiteBalanceModes();
1596 /* if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
1597 application is not prepared to receive extra added enum values. So, any extra enum value(unrecognised) passed
1598 from the implementation will be filtered at this point.
1599 To receive extra added enum values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
1600 to create camera object. In this case, application is assumed to be prepared to receive unrecognised enum values */
1601 if(iOwner.CameraVersion() == KCameraDefaultVersion)
1603 supportedWhiteBalanceModes &= KBaselinedWhiteBalanceModes;
1606 return supportedWhiteBalanceModes;
1610 Gets the current white balance value.
1612 @return The current white balance value.
1614 @note if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
1615 application is not prepared to receive extra added enum values. So, any extra enum value(unrecognised) received
1616 from the implementation will be dropped and EWBAuto would be passed instead.
1617 To receive extra added enum values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
1618 to create camera object. In this case, application is assumed to be prepared to receive unrecognised enum values
1620 EXPORT_C CCamera::TWhiteBalance CCamera::CCameraAdvancedSettings::WhiteBalanceMode() const
1622 CCamera::TWhiteBalance whiteBalance = iImpl->WhiteBalanceMode();
1624 /* if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
1625 application is not prepared to receive extra added enum values. So, any extra enum value(unrecognised) received
1626 from the implementation will be dropped and EWBAuto would be passed instead.
1627 To receive extra added enum values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
1628 to create camera object. In this case, application is assumed to be prepared to receive unrecognised enum values */
1629 if(iOwner.CameraVersion() == KCameraDefaultVersion)
1631 if(static_cast<TInt>(whiteBalance) > KBaselinedWhiteBalanceModes)
1633 whiteBalance = CCamera::EWBAuto;
1637 return whiteBalance;
1641 Sets the white balance adjustment of the camera.
1643 No effect if this is not supported, see TCameraInfo::iWhiteBalanceModesSupported.
1644 Triggers KUidECamEventCameraSettingWhiteBalanceMode event to all MCameraObserver2 clients.
1646 @param aWhiteBalanceMode
1647 The required white balance mode.
1649 EXPORT_C void CCamera::CCameraAdvancedSettings::SetWhiteBalanceMode(CCamera::TWhiteBalance aWhiteBalanceMode)
1651 iImpl->SetWhiteBalanceMode(aWhiteBalanceMode);
1655 Gets the current state for aperture and exposure lock.
1657 @return ETrue if aperture and exposure values are locked together,
1658 EFalse if these are not locked.
1660 EXPORT_C TBool CCamera::CCameraAdvancedSettings::ApertureExposureLockOn() const
1662 return iImpl->ApertureExposureLockOn();
1666 Sets the current state for aperture and exposure lock.
1667 Triggers a KUidECamEventAELock event to all MCameraObserver2 clients.
1670 a value whether to lock exposure and aperture together.
1672 EXPORT_C void CCamera::CCameraAdvancedSettings::SetApertureExposureLockOn(TBool aAELock)
1674 iImpl->SetApertureExposureLockOn(aAELock);
1678 Gets the current state for button clicking sound effect.
1680 @return ETrue to switch clicking sound on, EFalse sound off
1682 EXPORT_C TBool CCamera::CCameraAdvancedSettings::ShootClickOn() const
1684 return iImpl->ShootClickOn();
1688 Sets the button clicking sound on /off. Triggers a KUidECamEventSoundClick event
1689 to all MCameraObserver2 clients.
1691 @param aShootClickOn
1692 ETrue to switch clicking sound on, EFalse sound is switched off.
1694 EXPORT_C void CCamera::CCameraAdvancedSettings::SetShootClickOn(TBool aShootClickOn)
1696 iImpl->SetShootClickOn(aShootClickOn);
1700 Get camera supported timer values. Active only when drive mode EDriveModeTimed.
1701 Time is in microseconds. As time interval is expected to be relatively short,
1702 integer value is considered sufficient.
1704 @param aTimerIntervals
1705 an RArray of integers which is populated to reflect the supported
1706 timer interval steps.
1709 an TValueInfo reference, which establishes the organization of
1714 @note When camera device doesn't support this, empty array may be returned and TValueInfo may be ENotActive;
1715 corresponding getter/setters for this feature should not be used in such a case.
1717 EXPORT_C void CCamera::CCameraAdvancedSettings::GetTimerIntervalsL(RArray<TInt>& aTimerIntervals, TValueInfo& aInfo) const
1719 iImpl->GetTimerIntervalsL(aTimerIntervals, aInfo);
1723 Get current timer value. Active only when drive mode is EDriveModeTimed.
1724 Timer resolution is in microseconds.
1726 @return current time interval value.
1727 Negative value returned means error case (system wide error code) and positive value means current timer interval.
1729 EXPORT_C TInt CCamera::CCameraAdvancedSettings::TimerInterval() const
1731 return iImpl->TimerInterval();
1735 Set current timer value. Active only when drive mode EDriveModeTimed.
1736 This is the time interval (delay) in microseconds between user pressing the button and image is taken.
1737 The setting of the value triggers a KUidECamEventCameraSettingTimerInterval event
1738 to all MCameraObserver2 clients.
1740 @param aTimerInterval
1741 The selected timer interval in microseconds.
1743 EXPORT_C void CCamera::CCameraAdvancedSettings::SetTimerInterval(TInt aTimerInterval)
1745 iImpl->SetTimerInterval(aTimerInterval);
1749 Get camera supported time lapse period range. Active only when drive mode EDriveModeTimeLapse.
1750 The time lapse is denoted as the uniform time period between consecutive frames.
1752 @param aTimeLapseMin
1753 The minimum time value.
1755 @param aTimeLapseMax
1756 The maximum time value.
1758 EXPORT_C void CCamera::CCameraAdvancedSettings::GetTimeLapsePeriodRange(TTime& aTimeLapseMin, TTime& aTimeLapseMax) const
1760 iImpl->GetTimeLapsePeriodRange(aTimeLapseMin, aTimeLapseMax);
1764 Get current time lapse value. Active only when drive mode EDriveModeTimeLapse.
1765 The time lapse is denoted as the uniform time period
1766 between consecutive frames and operation is configurable by its start, end and a fixed interval.
1769 the start of the timelapse period.
1772 the end of the timelapse period; start < end.
1775 the set parameter between two successive snapshots.
1777 EXPORT_C void CCamera::CCameraAdvancedSettings::GetTimeLapse(TTime& aStart, TTime& aEnd, TTime& aInterval) const
1779 iImpl->GetTimeLapse(aStart, aEnd, aInterval);
1783 Set current time lapse value. Active only when drive mode EDriveModeTimeLapse.
1784 The time lapse is denoted as the uniform time period between consecutive frames.
1785 Setting triggers a KUidECamEventCameraSettingTimeLapse event to all MCameraObserver2 camera clients.
1788 the start of the timelapse period.
1791 the end of the timelapse period; start < end.
1794 the set parameter between two successive snapshots.
1796 EXPORT_C void CCamera::CCameraAdvancedSettings::SetTimeLapse(const TTime& aStart, const TTime& aEnd, const TTime& aInterval)
1798 iImpl->SetTimeLapse(aStart, aEnd, aInterval);
1802 Get current picture orientation
1804 @return a TPictureOrientation value.
1806 EXPORT_C CCamera::CCameraAdvancedSettings::TPictureOrientation CCamera::CCameraAdvancedSettings::PictureOrientation() const
1808 return iImpl->PictureOrientation();
1812 Set a new picture orientation
1813 This triggers a KUidECamEventCameraSettingPictureOrientation event to all MCameraObserver2 clients.
1816 a value of TPictureOrientation denoting the new orientation.
1818 EXPORT_C void CCamera::CCameraAdvancedSettings::SetPictureOrientation(CCamera::CCameraAdvancedSettings::TPictureOrientation aOrientation)
1820 iImpl->SetPictureOrientation(aOrientation);
1824 Get supported pixel aspect ratio.
1826 @return a bitfield of all supported TPixelAspectRatio values.
1827 @note Some of the pixel aspect ratios are available only for clients using either CCamera::New2L() or CCamera::NewDuplicate2L()
1829 EXPORT_C TInt CCamera::CCameraAdvancedSettings::SupportedPixelAspectRatios() const
1831 TInt supportedRatios = iImpl->SupportedPixelAspectRatios();
1833 Mask out new features for old clients
1835 if (iOwner.CameraVersion() == KCameraDefaultVersion)
1837 supportedRatios &= KBaselinedPixelAspectsMask;
1839 return supportedRatios;
1843 Get current pixel aspect ratio.
1845 @return a TPixelAspectRatio value.
1846 @note Some of the pixel aspect ratios are available only for clients using either CCamera::New2L() or CCamera::NewDuplicate2L()
1848 EXPORT_C CCamera::CCameraAdvancedSettings::TPixelAspectRatio CCamera::CCameraAdvancedSettings::PixelAspectRatio() const
1850 TInt ratio = iImpl->PixelAspectRatio();
1852 Mask out new features for old clients
1854 if (iOwner.CameraVersion() == KCameraDefaultVersion)
1856 ratio &= KBaselinedPixelAspectsMask;
1858 return static_cast<CCamera::CCameraAdvancedSettings::TPixelAspectRatio>( ratio );
1862 Set a new pixel aspect ratio.
1863 This triggers a KUidECamEventPixelAspectRatio event to all MCameraObserver2 clients.
1865 @param aPixelAspectRatio
1866 a value of TPixelAspectRatio denoting the new pixel aspect ratio.
1868 EXPORT_C void CCamera::CCameraAdvancedSettings::SetPixelAspectRatio(CCamera::CCameraAdvancedSettings::TPixelAspectRatio aPixelAspectRatio)
1870 iImpl->SetPixelAspectRatio(aPixelAspectRatio);
1874 Get supported YUV ranges.
1876 @return a bitfileld of all supported TYuvRange values.
1878 EXPORT_C TInt CCamera::CCameraAdvancedSettings::SupportedYuvRanges() const
1880 return iImpl->SupportedYuvRanges();
1884 Get current YUV range.
1886 @return a TYuvRange value.
1888 EXPORT_C CCamera::CCameraAdvancedSettings::TYuvRange CCamera::CCameraAdvancedSettings::YuvRange() const
1890 return iImpl->YuvRange();
1894 Set a new YUV range.
1895 This triggers a KUidECamEventYuvRange event to all MCameraObserver2 clients.
1898 a value of TYuvRange denoting the new YUV range.
1900 EXPORT_C void CCamera::CCameraAdvancedSettings::SetYuvRange(CCamera::CCameraAdvancedSettings::TYuvRange aYuvRange)
1902 iImpl->SetYuvRange(aYuvRange);
1906 Get the number of images captured normally under EDriveModeBurst condition.
1907 @note: due to memory or image size limitations the actual number may be less.
1909 @return the number of images set to capture in burst mode.
1911 EXPORT_C TInt CCamera::CCameraAdvancedSettings::BurstImages() const
1913 return iImpl->BurstImages();
1917 Set the number of images captured normally under EDriveModeBurst condition.
1918 Triggers a KUidECamEventBurstImages event to all MCameraObserver2 clients.
1919 @note: due to memory or image size limitations the actual number may be less.
1922 the number of images set to capture in burst mode
1924 @note Unless reduced Latency scheme is not used (ie CaptureImageL(TInt aSequenceNumber) or StartPerformantVideoCaptureL())
1925 if an image/video capture is still outstanding, this method may report error KErrInUse.
1927 EXPORT_C void CCamera::CCameraAdvancedSettings::SetBurstImages(TInt aImages)
1929 iImpl->SetBurstImages(aImages);
1933 Gets the optical zoom levels.
1935 @param aOpticalZoomSteps
1936 Array to hold optical zoom values multiplied by KECamFineResolutionFactor to retain precision.
1937 So that if zoom is not supported the array will return a single element of value
1938 KECamFineResolutionFactor.
1941 a reference to TValueInfo, which establishes the type of the returned data.
1943 @note Such approach allows for support for both linear and non-linear zoom steps.
1944 When camera device doesn't support this, empty array may be returned and TValueInfo may be ENotActive;
1945 corresponding getter/setters for this feature should not be used in such a case.
1947 @leave KErrNoMemory Out of memory.
1949 EXPORT_C void CCamera::CCameraAdvancedSettings::GetOpticalZoomStepsL(RArray<TInt>& aOpticalZoomSteps, TValueInfo& aInfo) const
1951 iImpl->GetOpticalZoomStepsL(aOpticalZoomSteps, aInfo);
1955 Gets the currently set zoom value.
1957 @return The currently set optical zoom value. The value is multiplied by
1958 KECamFineResolutionFactor to retain precision.
1959 Negative value returned means error case (system wide error code) and positive value means current optical zoom.
1961 EXPORT_C TInt CCamera::CCameraAdvancedSettings::OpticalZoom() const
1963 return iImpl->OpticalZoom();
1967 Sets the zoom using a specific value. Triggers a KUidECamEventCameraSettingOpticalZoom
1968 event to all MCameraObserver2 clients.
1971 Required zoom value.
1973 EXPORT_C void CCamera::CCameraAdvancedSettings::SetOpticalZoom(TInt aOpticalZoom)
1975 iImpl->SetOpticalZoom(aOpticalZoom);
1979 Gets the digital zoom levels.
1981 @param aDigitalZoomSteps
1982 Array to hold digital zoom values multiplied by KECamFineResolutionFactor to retain precision.
1983 So that if zoom is not supported the array will return a single element of value
1984 KECamFineResolutionFactor.
1987 a reference to TValueInfo, which establishes the type of the returned data.
1989 @note Such approach allows for support for both linear and non-linear zoom steps.
1990 When camera device doesn't support this, empty array may be returned and TValueInfo may be ENotActive;
1991 corresponding getter/setters for this feature should not be used in such a case.
1993 @leave KErrNoMemory Out of memory.
1995 EXPORT_C void CCamera::CCameraAdvancedSettings::GetDigitalZoomStepsL(RArray<TInt>& aDigitalZoomSteps, TValueInfo& aInfo) const
1997 iImpl->GetDigitalZoomStepsL(aDigitalZoomSteps, aInfo);
2001 Gets the currently set digital zoom value.
2003 @return The currently set digital zoom value. The value is multiplied by
2004 KECamFineResolutionFactor to retain precision.
2005 Negative value returned means error case (system wide error code) and positive value means current digital zoom.
2007 EXPORT_C TInt CCamera::CCameraAdvancedSettings::DigitalZoom() const
2009 return iImpl->DigitalZoom();
2013 Sets the digital zoom value. Triggers a KUidECamEventCameraSettingDigitalZoom event
2014 to all MCameraObserver2 clients.
2017 Required zoom value.
2019 EXPORT_C void CCamera::CCameraAdvancedSettings::SetDigitalZoom(TInt aDigitalZoom)
2021 iImpl->SetDigitalZoom(aDigitalZoom);
2025 Checks whether exposure value is locked or not.
2027 @return whether exposure value is locked or not.
2028 ETrue if locked, EFalse otherwise.
2030 EXPORT_C TBool CCamera::CCameraAdvancedSettings::ExposureLockOn() const
2032 return iImpl->ExposureLockOn();
2036 Sets exposure lock state. Triggers a KUidECamEventCameraSettingExposureLock event
2037 to all MCameraObserver2 clients.
2042 EXPORT_C void CCamera::CCameraAdvancedSettings::SetExposureLockOn(TBool aState)
2044 iImpl->SetExposureLockOn(aState);
2048 Checks whether AutoFocus value is locked or not.
2050 @return whether AutoFocus value is locked or not.
2051 ETrue if locked, EFalse otherwise.
2053 EXPORT_C TBool CCamera::CCameraAdvancedSettings::AutoFocusLockOn() const
2055 return iImpl->AutoFocusLockOn();
2059 Sets autofocus lock state. Triggers a KUidECamEventCameraSettingAutoFocusLock event
2060 to all MCameraObserver2 clients.
2065 EXPORT_C void CCamera::CCameraAdvancedSettings::SetAutoFocusLockOn(TBool aState)
2067 iImpl->SetAutoFocusLockOn(aState);
2071 Gets an array of all the advanced settings parameters supported by the camera.
2072 These are identified by UIDs and relate to the set or subset of it of all defined settings UIDs.
2075 An empty array of TUids which would be populated by the implementation with
2076 the UIDs of the supported parameters. If the array is empty on return,
2077 the camera does not support any settings.
2079 @leave KErrNoMemory Out of memory.
2081 @note if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
2082 application is not prepared to receive extra added uid values (new settings added). So, any extra uid value passed
2083 from the implementation will be filtered at this point.
2084 To receive extra added uid values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
2085 to create camera object. In this case, application is assumed to be prepared to receive unrecognised uid values
2087 EXPORT_C void CCamera::CCameraAdvancedSettings::GetSupportedSettingsL(RArray<TUid>& aSettings) const
2089 iImpl->GetSupportedSettingsL(aSettings);
2091 /* if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
2092 application is not prepared to receive extra added uid values (new settings added). So, any extra uid value passed
2093 from the implementation will be filtered at this point.
2094 To receive extra added uid values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
2095 to create camera object. In this case, application is assumed to be prepared to receive unrecognised uid values */
2096 if(iOwner.CameraVersion() == KCameraDefaultVersion)
2098 for(TInt index =0; index < aSettings.Count(); index++)
2100 /** KUidECamEventCameraSettingAutoFocusType2UidValue is the baseline. Any settings with greater uid value means that it has
2101 been added in later versions */
2102 if(aSettings[index].iUid > KUidECamEventCameraSettingAutoFocusType2UidValue)
2104 aSettings.Remove(index);
2112 Gets an array of all the advanced settings parameters currently active on the camera.
2113 These are identified by UIDs and relate to the set or subset of it of all supported
2116 @param aActiveSettings
2117 An empty array of TUids which would be populated by the implementation with
2118 the active setting UIDs. If the array is empty on return,
2119 the camera does not support any settings.
2121 @leave KErrNoMemory Out of memory.
2123 @note if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
2124 application is not prepared to receive extra added uid values (new settings added). So, any extra uid value passed
2125 from the implementation will be filtered at this point.
2126 To receive extra added uid values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
2127 to create camera object. In this case, application is assumed to be prepared to receive unrecognised uid values
2129 EXPORT_C void CCamera::CCameraAdvancedSettings::GetActiveSettingsL(RArray<TUid>& aActiveSettings) const
2131 iImpl->GetActiveSettingsL(aActiveSettings);
2133 /* if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
2134 application is not prepared to receive extra added uid values (new settings added). So, any extra uid value passed
2135 from the implementation will be filtered at this point.
2136 To receive extra added uid values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
2137 to create camera object. In this case, application is assumed to be prepared to receive unrecognised uid values */
2138 if(iOwner.CameraVersion() == KCameraDefaultVersion)
2140 for(TInt index =0; index < aActiveSettings.Count(); index++)
2142 /** KUidECamEventCameraSettingAutoFocusType2UidValue is the baseline. Any settings with greater uid value means that it has
2143 been added in later versions */
2144 if(aActiveSettings[index].iUid > KUidECamEventCameraSettingAutoFocusType2UidValue)
2146 aActiveSettings.Remove(index);
2154 Gets an array of all the advanced settings parameters currently disabled on the camera.
2155 These are identified by UIDs and relate to the set or subset of it of all supported
2158 @param aDisabledSettings
2159 An empty array of TUids which would be populated by the implementation with
2160 the disabled setting UIDs. If the array is empty on return,
2161 the camera does not support any settings.
2163 @leave KErrNoMemory Out of memory.
2165 @note if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
2166 application is not prepared to receive extra added uid values (new settings added). So, any extra uid value passed
2167 from the implementation will be filtered at this point.
2168 To receive extra added uid values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
2169 to create camera object. In this case, application is assumed to be prepared to receive unrecognised uid values
2171 EXPORT_C void CCamera::CCameraAdvancedSettings::GetDisabledSettingsL(RArray<TUid>& aDisabledSettings) const
2173 iImpl->GetDisabledSettingsL(aDisabledSettings);
2175 /* if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
2176 application is not prepared to receive extra added uid values (new settings added). So, any extra uid value passed
2177 from the implementation will be filtered at this point.
2178 To receive extra added uid values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
2179 to create camera object. In this case, application is assumed to be prepared to receive unrecognised uid values */
2180 if(iOwner.CameraVersion() == KCameraDefaultVersion)
2182 for(TInt index =0; index < aDisabledSettings.Count(); index++)
2184 /** KUidECamEventCameraSettingAutoFocusType2UidValue is the baseline. Any settings with greater uid value means that it has
2185 been added in later versions */
2186 if(aDisabledSettings[index].iUid > KUidECamEventCameraSettingAutoFocusType2UidValue)
2188 aDisabledSettings.Remove(index);
2196 Retrieves the state for automatic size selection option. Default value is EFalse.
2198 @return ETrue if the automatic selection is switched on. Default value is EFalse.
2200 EXPORT_C TBool CCamera::CCameraAdvancedSettings::AutomaticSizeSelectionChangeOn() const
2202 return iImpl->AutomaticSizeSelectionChangeOn();
2206 Allow camera to proactively change image size due external factors.
2207 Default value is EFalse. Triggers a KUidECamEventCameraSettingAutomaticSizeSelection event notification.
2210 whether the option should be switched on
2212 EXPORT_C void CCamera::CCameraAdvancedSettings::SetAutomaticSizeSelectionChangeOn(TBool aSetOn)
2214 iImpl->SetAutomaticSizeSelectionChangeOn(aSetOn);
2218 Retrieves the timeout values camera supported by the camera when in continuous auto focus mode.
2219 Timeouts are in microseconds.
2222 An empty array to hold timeout values.
2225 a reference to TValueInfo, which establishes the type of the returned data.
2227 @leave KErrNoMemory Out of memory.
2229 @note When camera device doesn't support this, empty array may be returned and TValueInfo may be ENotActive;
2230 corresponding getter/setters for this feature should not be used in such a case.
2232 EXPORT_C void CCamera::CCameraAdvancedSettings::GetSupportedContinuousAutoFocusTimeoutsL(RArray<TInt>& aTimeouts, TValueInfo& aInfo) const
2234 iImpl->GetSupportedContinuousAutoFocusTimeoutsL(aTimeouts, aInfo);
2238 Gets the current value for continuous autofocus timeout. Timeouts are in microseconds.
2240 @return the timeout value in microseconds.
2241 Negative value returned means error case (system wide error code) and positive value means current value for
2242 continuous autofocus timeout.
2244 EXPORT_C TInt CCamera::CCameraAdvancedSettings::ContinuousAutoFocusTimeout() const
2246 return iImpl->ContinuousAutoFocusTimeout();
2250 Sets the current value for continuous autofocus timeout. Timeouts are in microseconds.
2251 All MCameraObserver2 clients of the camera receive a KUidECamEventCameraSettingsContinuousAutoFocusTimeout
2252 event notification when timeout value is changed.
2255 the timeout value in microseconds.
2257 EXPORT_C void CCamera::CCameraAdvancedSettings::SetContinuousAutoFocusTimeout(TInt aTimeout)
2259 iImpl->SetContinuousAutoFocusTimeout(aTimeout);
2263 Gets all supported stabilization effects on the camera.
2265 @return an integer - a bitfield of all supported TStabilizationEffect values.
2267 EXPORT_C CCamera::CCameraAdvancedSettings::TStabilizationEffect CCamera::CCameraAdvancedSettings::StabilizationEffect() const
2269 return iImpl->StabilizationEffect();
2273 Gets the current stabilization effect on the camera.
2275 @return a TStabilizationEffect value.
2277 EXPORT_C TInt CCamera::CCameraAdvancedSettings::SupportedStabilizationEffects() const
2279 return iImpl->SupportedStabilizationEffects();
2283 Sets a specific stabilization effect on the camera.
2284 When a value is set, MCameraObserver2 clients for that camera will receive a
2285 KUidECamEventCameraSettingsStabilizationEffect event notification.
2288 stabilization effect selection of type TStabilizationEffect.
2290 EXPORT_C void CCamera::CCameraAdvancedSettings::SetStabilizationEffect(CCamera::CCameraAdvancedSettings::TStabilizationEffect aEffect)
2292 iImpl->SetStabilizationEffect(aEffect);
2296 Gets all supported stabilization algorithm values on the camera.
2298 @return an integer - a bitfield of all supported TStabilizationAlgorithmComplexity values.
2301 EXPORT_C TInt CCamera::CCameraAdvancedSettings::SupportedStabilizationComplexityValues() const
2303 return iImpl->SupportedStabilizationComplexityValues();
2307 Gets current active stabilization algorithm selection on the camera.
2309 @return a TStabilizationAlgorithmComplexity value.
2311 EXPORT_C CCamera::CCameraAdvancedSettings::TStabilizationAlgorithmComplexity CCamera::CCameraAdvancedSettings::StabilizationComplexity() const
2313 return iImpl->StabilizationComplexity();
2317 Sets a specific stabilization algorithm on the camera.
2318 When a value is set, MCameraObserver2 clients for that camera will receive a
2319 KUidECamEventSettingsStabilizationAlgorithmComplexity event notification.
2322 stabilization effect selection of type TStabilizationAlgorithmComplexity.
2324 EXPORT_C void CCamera::CCameraAdvancedSettings::SetStabilizationComplexity(CCamera::CCameraAdvancedSettings::TStabilizationAlgorithmComplexity aComplexity)
2326 iImpl->SetStabilizationComplexity(aComplexity);
2330 Gets the units in which the white balance is measured on the camera.
2331 @note The methods used to get or set these differ depending on the supported unit type.
2332 It is expected that a camera will support only a single type or none.
2334 @return a value of TWBUnits type.
2336 EXPORT_C CCamera::CCameraAdvancedSettings::TWBUnits CCamera::CCameraAdvancedSettings::SupportedWBUnits() const
2338 return iImpl->SupportedWBUnits();
2342 Get white balance value represented as a RGB triplet.
2347 a reference to TRgb object which will contain the current white balance.
2349 EXPORT_C void CCamera::CCameraAdvancedSettings::GetWBRgbValue(TRgb& aValue) const
2351 iImpl->GetWBRgbValue(aValue);
2355 Set white balance value using a RGB triplet.
2356 Change in value causes an event notification KUidECamEventCameraSettingsWBValue
2357 to be sent to all MCameraObserver2 clients of this camera.
2360 a const reference to TRgb object, which contains the new white balance.
2364 EXPORT_C void CCamera::CCameraAdvancedSettings::SetWBRgbValue(const TRgb& aValue)
2366 iImpl->SetWBRgbValue(aValue);
2370 Get the white balance values, as temperature measured in Kelvin, supported on the camera.
2372 @param aWBColorTemperatures
2373 A reference to an empty array of TInt which would be populated by the implementation with
2374 the specific supported values.
2377 a reference to TValueInfo, which establishes the type of the returned data.
2379 @note When camera device doesn't support this, empty array may be returned and TValueInfo may be ENotActive;
2380 corresponding getter/setters for this feature should not be used in such a case.
2382 EXPORT_C void CCamera::CCameraAdvancedSettings::GetWBSupportedColorTemperaturesL(RArray<TInt>& aWBColorTemperatures, TValueInfo& aInfo) const
2384 iImpl->GetWBSupportedColorTemperaturesL(aWBColorTemperatures, aInfo);
2388 Get the white balance as a temperature in Kelvin
2390 @return current white balance value as a temperature in Kelvins.
2391 Negative value returned means error case (system wide error code) and positive value means current value for
2392 white balance as a temperature in Kelvin.
2394 EXPORT_C TInt CCamera::CCameraAdvancedSettings::WBColorTemperature() const
2396 return iImpl->WBColorTemperature();
2400 Set the white balance as a temperature in Kelvin
2402 @param aColorTemperature
2403 white balance value as a temperature in Kelvins.
2405 EXPORT_C void CCamera::CCameraAdvancedSettings::SetWBColorTemperature(TInt aColorTemperature)
2407 iImpl->SetWBColorTemperature(aColorTemperature);
2411 Checks whether the flash is ready.
2414 A reference to a boolean set by the implementation to ETrue if the flash is ready,
2417 @return KErrNotSupported if the implementation of this method is not supported.
2419 EXPORT_C TInt CCamera::CCameraAdvancedSettings::IsFlashReady(TBool& aReady) const
2424 return iImpl2->IsFlashReady(aReady);
2426 return KErrNotSupported;
2430 Get the number of focus steps for current focus mode.
2432 @param aFocusModeSteps
2433 A reference to an empty array of TInt which would be populated by the implementation with
2434 the specific supported values.
2437 a reference to TValueInfo, which establishes the type of the returned data.
2439 @leave KErrNotSupported if the implementation of this method is not supported. May also leave as a result of other system errors.
2441 @note When camera device doesn't support this, empty array may be returned and TValueInfo may be ENotActive;
2442 corresponding getter/setters for this feature should not be used in such a case.
2444 EXPORT_C void CCamera::CCameraAdvancedSettings::GetCurrentFocusModeStepsL(RArray<TInt>& aFocusModeSteps, TValueInfo& aInfo) const
2448 iImpl2->GetCurrentFocusModeStepsL(aFocusModeSteps, aInfo);
2452 User::Leave(KErrNotSupported);
2457 Gets all supported ISO types on the device.
2459 @param aSupportedISORateTypes
2460 A reference to an integer which is a bitfield of all supported TISORateType values. EISONone means feature is not supported.
2462 @leave KErrNotSupported if the implementation of this method is not present. May leave as a result of some other error.
2464 @note When concrete implementation is provided, but camera device does not support this feature, then aSupportedISORateTypes retrieves EISONone.
2467 EXPORT_C void CCamera::CCameraAdvancedSettings::GetSupportedISORateTypeL(TInt& aSupportedISORateTypes) const
2471 iImpl3->GetSupportedISORateTypeL(aSupportedISORateTypes);
2475 User::Leave(KErrNotSupported);
2480 Set the type of ISO rate and the exposure parameter or value specified.
2483 The type of ISO rate to be set.
2486 Depending on the value of aISORateType, possible values of aParam are one of the following:-
2487 The value of ISO rate to be used in case of manual type of ISO rate (EISOManual).
2489 Redundant parameter in case of unprioritised type of auto ISO (EISOAutoUnPrioritised). It is left to the camera hardware/firmware
2490 to decide how the ISO rate is selected. No priority regarding exposure is specified.
2492 Highest ISO rate to be picked by the camera while deciding for the best exposure in case of ISO prioritised
2493 type of auto ISO (EISOAutoISOPrioritised). ISO rate closest to this (and lower) may be used so that best possible exposure is achieved.
2495 Slowest shutter speed to be picked by the camera while deciding for the best exposure in case of shutter speed
2496 prioritised type of auto ISO (EISOAutoShutterSpeedPrioritised). After using this shutter speed, ISO rate is chosen by the camera to achieve
2497 proper exposure. Shutter speed closest to this (and faster) may be used so that best possible exposure is achieved.
2499 Minimum aperture opening (deepest depth of field) to be picked by the camera while deciding
2500 for the best exposure in case of aperture prioritised type of auto ISO (EISOAutoAperturePrioritised). After using this aperture opening, ISO
2501 rate is chosen by the camera to achieve proper exposure. Aperture opening closest to this (and wider) may be
2502 used to achieve best possible exposure.
2504 @leave KErrNotSupported if the implementation of this method is not present.
2506 @note Triggers KUidECamEventCameraSettingIsoRateType to all MCameraObserver2 clients of the camera.
2507 HandleEvent is used to report the result or any possible error. New setter functions leave only when
2508 implementation is not there.
2511 EXPORT_C void CCamera::CCameraAdvancedSettings::SetISORateL(CCamera::CCameraAdvancedSettings::TISORateType aISORateType, TInt aParam)
2515 iImpl3->SetISORate(aISORateType, aParam);
2519 User::Leave(KErrNotSupported);
2524 Get the type of ISO rate, exposure parameter and value set.
2527 A reference to the type of ISO rate set. EISONone means feature is not supported.
2530 Depending on the value of aISORateType, possible values of aParam are one of the following:-
2531 A reference to the redundant parameter in case of manual type of ISO rate(EISOManual)
2533 A reference to the redundant parameter in case of unprioritised type of auto ISO(EISOAutoUnPrioritised)
2535 A reference to the highest ISO rate that may be picked up in case of ISO prioritised type of auto ISO(EISOAutoISOPrioritised)
2537 A reference to the slowest shutter speed that may be picked up in case of shutter speed prioritised type of auto ISO(EISOAutoShutterSpeedPrioritised)
2539 A reference to the minimum aperture opening that may be picked up in case of aperture prioritised type of auto ISO(EISOAutoAperturePrioritised)
2542 A reference to the value of ISO rate currently being used, if camera device is capable of doing that.
2543 Otherwise KErrNotFound is retrieved indicating the incapability of camera.
2545 @leave KErrNotSupported if the implementation of this method is not present.
2546 May leave as a result of some other error.
2548 @note When concrete implementation is provided, but camera device does not support this feature, then aISORateType retrieves EISONone.
2550 @note Since camera hardware may be incapable of providing the actual ISO value when one of the auto ISO type has
2551 been set, then, in these cases, the 3rd argument is retrieved as KErrNotFound.
2554 EXPORT_C void CCamera::CCameraAdvancedSettings::GetISORateL(CCamera::CCameraAdvancedSettings::TISORateType& aISORateType, TInt& aParam, TInt& aISORate) const
2558 iImpl3->GetISORateL(aISORateType, aParam, aISORate);
2562 User::Leave(KErrNotSupported);
2567 Provide reference screen for orientation information.
2569 @param aScreenDevice
2570 A reference to the screen device.
2572 @leave KErrNotSupported if the implementation of this method is not present.
2574 @note Triggers KUidECamEventCameraSettingReferenceScreen to all MCameraObserver2 clients of the camera.
2575 HandleEvent is used to report the result or any possible error. New setter functions leave only when
2576 implementation is not there.
2579 EXPORT_C void CCamera::CCameraAdvancedSettings::SetReferenceScreenL(CWsScreenDevice& aScreenDevice)
2583 iImpl3->SetReferenceScreen(aScreenDevice);
2587 User::Leave(KErrNotSupported);
2592 Get the digital zoom steps for the still image when a particular image format and size are specified.
2594 @param aDigitalZoomSteps
2595 A reference to an empty array of TInt to hold digital zoom step values for still image and multiplied by
2596 KECamFineResolutionFactor to retain precision. If list returned is empty, this means feature is not supported.
2599 A reference to TValueInfo, which establishes the type of the returned data.
2602 A value providing the size index which must be in the range 0 to TCameraInfo::iNumImageSizesSupported-1
2606 A value providing the image format which must be one of the formats supported. (see
2607 TCameraInfo::iImageFormatsSupported)
2609 @param aIsInfluencePossible
2610 If True, signals that digital zoom step values may be influenced by some hardware factor like stabilization etc.
2611 If False, no influence possible.
2613 @leave KErrNotSupported if the implementation of this method is not present.
2614 KErrNoMemory if out of memory. May leave as a result of some other error.
2616 @note This method retrieves the supported digital zoom steps irrespective of any stabilization influence.
2617 In case of stabilization etc. influence, the setting function should set the best possible digital zoom value
2618 and return error KErrECamDigitalZoomLimited along with dedicated event.
2620 @note When concrete implementation is provided, but camera device does not support this feature, empty array may be returned and
2621 TValueInfo may be ENotActive; corresponding getter/setters for this feature should not be used in such a case.
2624 EXPORT_C void CCamera::CCameraAdvancedSettings::GetDigitalZoomStepsForStillL(RArray<TInt>& aDigitalZoomSteps, TValueInfo& aInfo,
2625 TInt aSizeIndex, CCamera::TFormat aFormat, TBool& aIsInfluencePossible) const
2629 iImpl3->GetDigitalZoomStepsForStillL(aDigitalZoomSteps, aInfo, aSizeIndex, aFormat, aIsInfluencePossible);
2633 User::Leave(KErrNotSupported);
2638 Get the digital zoom steps for the video when a particular video frame format, size and rate are specified.
2640 @param aDigitalZoomSteps
2641 A reference to an empty array of TInt to hold digital zoom step values for video and multiplied by
2642 KECamFineResolutionFactor to retain precision. If list returned is empty, this means feature is not supported.
2645 A reference to TValueInfo, which establishes the type of the returned data.
2647 @param aFrameRateIndex
2648 A value providing the rate index must be in the range 0 to TCameraInfo::iNumVideoFrameRatesSupported-1
2652 A value providing the size index which must be in the range 0 to TCameraInfo::iNumVideoFrameSizesSupported-1
2656 A value providing the format which must be one of the video frame formats supported. (see
2657 TCameraInfo::iVideoFrameFormatsSupported)
2659 @param aIsInfluencePossible
2660 If True, signals that digital zoom step values may be influenced by some hardware factor like stabilization etc.
2661 If False, no influence possible.
2666 @leave KErrNotSupported if the implementation of this method is not present.
2667 KErrNoMemory if out of memory. May leave as a result of some other error.
2669 @note This method retrieves the supported digital zoom steps irrespective of any stabilization influence.
2670 In case of stabilization etc. influence, the setting function should set the best possible digital zoom value
2671 and return error KErrECamDigitalZoomLimited along with dedicated event.
2673 @note When concrete implementation is provided, but camera device does not support this feature, empty array may be returned and
2674 TValueInfo may be ENotActive; corresponding getter/setters for this feature should not be used in such a case.
2677 EXPORT_C void CCamera::CCameraAdvancedSettings::GetDigitalZoomStepsForVideoL(RArray<TInt>& aDigitalZoomSteps, TValueInfo& aInfo,
2678 TInt aFrameRateIndex, TInt aSizeIndex, CCamera::TFormat aFormat, TBool& aIsInfluencePossible,
2679 CCamera::TExposure aExposure) const
2683 iImpl3->GetDigitalZoomStepsForVideoL(aDigitalZoomSteps, aInfo, aFrameRateIndex, aSizeIndex, aFormat, aIsInfluencePossible, aExposure);
2687 User::Leave(KErrNotSupported);
2692 Retrieves the pre capture warnings supported for a given camera mode
2695 Desired camera mode for which the supported pre capture warnings may be retrieved.
2697 @param aPreCaptureWarningSupported
2698 A bitfield of all supported TPreCaptureWarning to be issued in the given camera mode.
2699 If no pre capture warning supported for the given camera mode, EPCWNone is retrieved.
2701 @leave May leave with any error.
2704 EXPORT_C void CCamera::CCameraAdvancedSettings::GetPreCaptureWarningSupportedL(CCamera::CCameraAdvancedSettings::TCameraMode aCameraMode, TInt& aPreCaptureWarningSupported) const
2708 iImpl3->GetPreCaptureWarningSupportedL(aCameraMode, aPreCaptureWarningSupported);
2710 /* if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
2711 application is not prepared to receive extra added enum values. So, any extra enum value passed
2712 from the implementation will be filtered at this point.
2713 To receive extra added enum values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
2714 to create camera object. In this case, application is assumed to be prepared to receive unrecognised enum values */
2715 if(iOwner.CameraVersion() == KCameraDefaultVersion)
2717 aPreCaptureWarningSupported &= KBaselinedPreCaptureWarning;
2722 User::Leave(KErrNotSupported);
2727 Subscribe in order to receive event which indicates warnings on occurrence of some specific unfavourable
2728 conditions before image/video capture.
2730 @param aPreCaptureWarning
2731 A bitfield specifying all the TPreCaptureWarning types to be subscribed for.
2733 @leave KErrNotSupported if the implementation of this method or the feature is not supported.
2734 May also leave as a result of other errors.
2736 @note When any of the subscribed warnings (represented by aPreCaptureWarning) get generated by the camera device,
2737 event KUidECamEventCameraSettingPreCaptureWarning is issued. TECAMEvent2 class should be used in order to
2738 provide the status of every PreCaptureWarning.
2741 EXPORT_C void CCamera::CCameraAdvancedSettings::SubscribeToPreCaptureWarningL(TInt aPreCaptureWarning)
2745 iImpl3->SubscribeToPreCaptureWarningL(aPreCaptureWarning);
2749 User::Leave(KErrNotSupported);
2754 Unsubscribe so that further events are not received when warnings get issued.
2756 @leave KErrNotSupported if the implementation of this method or the feature is not supported.
2757 May also leave as a result of other errors.
2760 EXPORT_C void CCamera::CCameraAdvancedSettings::UnSubscribePreCaptureWarningL()
2764 iImpl3->UnSubscribePreCaptureWarningL();
2768 User::Leave(KErrNotSupported);
2773 Get the status of every warnings defined.
2775 @param aPreCaptureWarning
2776 A reference to the integer - bitfield representing all the TPreCaptureWarning types issued.
2778 @leave KErrNotSupported if the implementation of this method or the feature is not supported.
2779 May also leave as a result of other errors.
2781 @note This method may be called after receiving the event KUidECamEventCameraSettingPreCaptureWarning OR
2782 user may also opt for polling on this.
2785 EXPORT_C void CCamera::CCameraAdvancedSettings::GetPreCaptureWarningL(TInt& aPreCaptureWarning) const
2789 iImpl3->GetPreCaptureWarningL(aPreCaptureWarning);
2791 /* if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
2792 application is not prepared to receive extra added enum values. So, any extra enum value passed
2793 from the implementation will be filtered at this point.
2794 To receive extra added enum values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
2795 to create camera object. In this case, application is assumed to be prepared to receive unrecognised enum values */
2796 if(iOwner.CameraVersion() == KCameraDefaultVersion)
2798 aPreCaptureWarning &= KBaselinedPreCaptureWarning;
2803 User::Leave(KErrNotSupported);
2808 Retrieve the different supported AF assistant light.
2810 @param aSupportedAFAssistantLight
2811 A reference to integer - bitfield indicating the supported AF assistant light.
2812 If EAFAssistantLightOff, this means AF assistant light is not supported.
2813 If EAFAssistantLightManualOn, then manual AF assistant light is supported.
2814 If EAFAssistantLightAuto, auto assistant light is supported.
2815 If combination of EAFAssistantLightManualOn||EAFAssistantLightAuto , then both manual and Auto assistant light are supported.
2817 @leave KErrNotSupported if the implementation of this method is not supported.
2818 May also leave as a result of other errors.
2820 @note When concrete implementation is provided, but camera device does not support this feature,
2821 then aSupportedAFAssistantLight retrieves EAFAssistantLightOff. Corresponding getter/setters for this feature should not be called then.
2824 EXPORT_C void CCamera::CCameraAdvancedSettings::GetSupportedAFAssistantLightL(TInt& aSupportedAFAssistantLight) const
2828 iImpl3->GetSupportedAFAssistantLightL(aSupportedAFAssistantLight);
2832 User::Leave(KErrNotSupported);
2837 Get the type ( and state) of AF assistant light currently set.
2839 @param aAFAssistantLight
2840 A reference to AF assistant light.
2841 If EAFAssistantLightOff, then manual and auto assistant light are switched off.
2842 If EAFAssistantLightManualOn, manual assistant light is switched on.
2843 If EAFAssistantLightAuto, AF assistant light is set to auto.
2845 @leave KErrNotSupported if the implementation of this method or the feature is not supported.
2846 May also leave as a result of other errors.
2849 EXPORT_C void CCamera::CCameraAdvancedSettings::GetAFAssistantLightL(CCamera::CCameraAdvancedSettings::TAFAssistantLight& aAFAssistantLight) const
2853 iImpl3->GetAFAssistantLightL(aAFAssistantLight);
2857 User::Leave(KErrNotSupported);
2862 Set a particular type ( and state) of AF assistant light.
2864 @param aAFAssistantLight
2865 Type of AF assistant light to be set.
2866 If EAFAssistantLightOff, switch off the manual or auto assistant light.
2867 If EAFAssistantLightManualOn, manually switch on the assistant light.
2868 If EAFAssistantLightAuto, camera will automatically switch it on/off as per the conditions.
2870 @leave KErrNotSupported if the implementation of this method is not present.
2872 @note Triggers KUidECamEventCameraSettingAFAssistantLight to all MCameraObserver2 clients of the camera.
2873 HandleEvent is used to report the result or any possible error. New setter functions leave only when
2874 implementation is not there.
2877 EXPORT_C void CCamera::CCameraAdvancedSettings::SetAFAssistantLightL(CCamera::CCameraAdvancedSettings::TAFAssistantLight aAFAssistantLight)
2881 iImpl3->SetAFAssistantLight(aAFAssistantLight);
2885 User::Leave(KErrNotSupported);
2890 Retrieves the supported continuous zoom types.
2892 @param aSupportedContinuousZoomType
2893 Retrieves a bitfield of TUint which indicates the supported continuous zoom type as given by
2894 CCamera::CCameraAdvancedSettings::TContinuousZoomType
2896 @leave May leave with any error code.
2901 EXPORT_C void CCamera::CCameraAdvancedSettings::GetSupportedContinuousZoomTypeL(TUint& aSupportedContinuousZoomType) const
2905 iImpl4->GetSupportedContinuousZoomTypeL(aSupportedContinuousZoomType);
2909 User::Leave(KErrNotSupported);
2914 Retrieves the minimum, current and maximum focal length in millimeters. This information is useful to find out
2915 which zoom directions can be used on the fly.
2917 @param aMinFocalLength
2918 Minimum focal length if positive.
2919 Error value if negative (for example, KErrNotFound if information not available).
2921 @param aCurrentFocalLength
2922 Current focal length if positive.
2923 Error value if negative (for example, KErrNotFound if information not available).
2925 @param aMaxFocalLength
2926 Maximum focal length if positive.
2927 Error value if negative (for example, KErrNotFound if information not available).
2929 @leave May leave with any error code.
2934 EXPORT_C void CCamera::CCameraAdvancedSettings::GetFocalLengthInfoL(TInt& aMinFocalLength, TInt& aCurrentFocalLength, TInt& aMaxFocalLength) const
2938 iImpl4->GetFocalLengthInfoL(aMinFocalLength, aCurrentFocalLength, aMaxFocalLength);
2942 User::Leave(KErrNotSupported);
2947 Retrieves the total number of operation preferences supported by the implementation. Operation preferences are
2948 specified in terms of performance vectors, that is, speed, quality, low memory consumption and low power consumption.
2950 @param aNumOperationPreferenceSupported
2951 Retrieves the number of operation preferences supported.
2953 @leave May leave with any error code.
2958 EXPORT_C void CCamera::CCameraAdvancedSettings::GetNumOperationPreferenceL(TUint& aNumOperationPreferenceSupported) const
2962 iImpl4->GetNumOperationPreferenceL(aNumOperationPreferenceSupported);
2966 User::Leave(KErrNotSupported);
2971 Enumerate the available operation preferences.
2973 @param aOperationPreferenceIndex
2974 A particular index which represents an operation preference. The level of different performance vectors may be known
2975 through other arguments. This varies from 0 to n-1, where n is given by GetNumOperationPreferenceL(n).
2978 A TPerformanceLevel which specifies the speed level related to the index aOperationPreferenceIndex.
2980 @param aQualityLevel
2981 A TPerformanceLevel which specifies the quality level related to the index aOperationPreferenceIndex.
2983 @param aLowMemoryConsumptionLevel
2984 A TPerformanceLevel which specifies the low memory consumption level related to the index aOperationPreferenceIndex.
2985 The lower the memory consumption, the higher the level.
2987 @param aLowPowerConsumptionLevel
2988 A TPerformanceLevel which specifies the low power consumption level related to the index aOperationPreferenceIndex.
2989 The lower the power consumption, the higher the level.
2991 @note It is up to the implementation how the performance levels are achieved. For example, shutter opening, JPEQ quality
2992 and parallel buffering in case of streamed image output can be controlled in order to provide the desired
2995 @leave May leave with any error code.
3000 EXPORT_C void CCamera::CCameraAdvancedSettings::EnumerateOperationPreferenceL(TUint aOperationPreferenceIndex, CCamera::
3001 CCameraAdvancedSettings::TPerformanceLevel& aSpeedLevel, CCamera::CCameraAdvancedSettings::
3002 TPerformanceLevel& aQualityLevel, CCamera::CCameraAdvancedSettings::TPerformanceLevel&
3003 aLowMemoryConsumptionLevel, CCamera::CCameraAdvancedSettings::TPerformanceLevel& aLowPowerConsumptionLevel) const
3008 iImpl4->EnumerateOperationPreferenceL(aOperationPreferenceIndex, aSpeedLevel, aQualityLevel,
3009 aLowMemoryConsumptionLevel, aLowPowerConsumptionLevel);
3013 User::Leave(KErrNotSupported);
3018 Set a particular operation preference.
3020 @param aOperationPreferenceIndex
3021 An index which reveals a set of levels to be used for performance vectors, that is, speed, quality, low memory
3022 consumption and low power consumption.
3024 @leave KErrNotSupported If the implementation of this method is not present.
3026 @note Event KUidECamEventCameraSettingOperationPreference is used to notify clients about setting an operation preference.
3031 EXPORT_C void CCamera::CCameraAdvancedSettings::SetOperationPreferenceL(TUint aOperationPreferenceIndex)
3035 iImpl4->SetOperationPreference(aOperationPreferenceIndex);
3039 User::Leave(KErrNotSupported);
3044 Get the current operation preference being used.
3046 @param aOperationPreferenceIndex
3047 Currently used operation preference index.
3049 @leave May leave with any error code.
3054 EXPORT_C void CCamera::CCameraAdvancedSettings::GetOperationPreferenceL(TInt& aOperationPreferenceIndex) const
3058 iImpl4->GetOperationPreferenceL(aOperationPreferenceIndex);
3062 User::Leave(KErrNotSupported);
3067 Retrieves the event uids which the underlying implementation supports. Client may use these event notifications as
3068 milestones in their application.
3070 @param aSupportedEvents
3071 Retrieves as array of TUid. Every member of the array represents a supported event uid. These events are ECAM
3074 @leave May leave with any error code.
3076 @note This method may retrieve unrecognized events which may be introduced later on.
3081 EXPORT_C void CCamera::CCameraAdvancedSettings::GetSupportedEventsL(RArray<TUid>& aSupportedEvents) const
3085 iImpl4->GetSupportedEventsL(aSupportedEvents);
3089 User::Leave(KErrNotSupported);
3094 Retrieves the indirect feature changes which occur because of a particular requested feature change.
3095 Since the camera setting operation is asynchronous in nature, changing a particular camera feature, in certain cases,
3096 involves indirectly changing another feature. In order to notify the ECam client about this indirect feature change,
3097 event KUidECamEvent2IndirectFeatureChange is issued. After this notification, the client may use this method to retrieve
3098 the full list of indirect feature changes.
3100 @param aRequestedSetting
3101 The actual requested feature change. This uid is supposed to be ECAM component wide and not restricted to
3102 advanced camera settings.
3104 @param aIndirectFeatureChanges
3105 An array of uids which retrieves the indirect feature changes. These uids are supposed to be ECAM component wide
3106 and not restricted to advanced camera settings.
3108 @leave May leave with any error code.
3113 EXPORT_C void CCamera::CCameraAdvancedSettings::GetIndirectFeatureChangesL(TUid aRequestedSetting, RArray<TUid>& aIndirectFeatureChanges) const
3117 iImpl4->GetIndirectFeatureChangesL(aRequestedSetting, aIndirectFeatureChanges);
3121 User::Leave(KErrNotSupported);
3126 Creates an instance of a CCameraContinuousZoom object and returns it to the client. Ownership of the object is passed to the client.
3129 Reference to a continuous zoom observer which will be used to issue callbacks to the client.
3131 @param aContinuousZoomType
3132 The continuous zoom type with which the continuous zoom object will be initialised.
3134 @param aContinuousZoom
3135 Retrieves pointer to the continuous zoom object. Client assumes ownership of the object.
3137 @note Client must not delete the continuous zoom object if CCameraContinuousZoom::StartContinuousZoomL() has been called as MContinuousZoomObserver callbacks
3138 are still expected by the implementation. Clients should therefore only delete the object once the MContinuousZoomObserver::ContinuousZoomCompleted()
3139 callback has been received or has explicitly stopped the continuous zoom via StopContinuousZoom().
3144 EXPORT_C void CCamera::CCameraAdvancedSettings::CreateContinuousZoomL(MContinuousZoomObserver& aObserver, TContinuousZoomType aContinuousZoomType, CCameraContinuousZoom*& aContinuousZoom)
3148 MImplementationFactory* implFactory = NULL;
3150 iImpl4->CreateContinuousZoomImplFactoryL(implFactory);
3152 CleanupReleasePushL(*implFactory);
3153 CCameraContinuousZoom* zoom = CCameraContinuousZoom::CreateL(aObserver, aContinuousZoomType, *implFactory);
3154 CleanupStack::Pop(implFactory);
3156 implFactory->Release();
3157 aContinuousZoom = zoom;
3161 User::Leave(KErrNotSupported);
3166 Register the ECAM component wide events in order to decide which events the client needs to be notified about.
3167 Previously registered events will be overridden and not augmented.
3170 This is of type TECAMEventFilterScheme.
3171 If EECAMEventFilterSchemeBlackList, the client will not be notified only for the events packed in the array 'aEvents'.
3172 If EECAMEventFilterSchemeWhiteList, the client will be notified only for the events packed in the array 'aEvents'.
3175 An array of events provided by the client. Helps in filtering the events for notification purposes. An empty array
3176 indicates that there are no events to register for a particular filtering scheme as given by aEventFilter.
3178 @leave May leave with any error code.
3180 @note Method RegisterEvents if called with EECAMEventFilterSchemeBlackList will wipe away any white listed events set
3181 previously and make them inactive.
3186 void CCamera::CCameraAdvancedSettings::RegisterEventsL(TECAMEventFilterScheme /*aEventFilter*/, const RArray<TUid>& /*aEvents*/)
3188 User::Leave(KErrNotSupported);
3192 Retrieve the list of ECAM component wide events for a particular event filtering scheme.
3195 This is of type TECAMEventFilterScheme.
3196 If EECAMEventFilterSchemeBlackList, retrieve the events which are not supposed to be used for notification.
3197 If EECAMEventFilterSchemeWhiteList, retrieve the events which are supposed to be used for notification.
3200 An array of events given to the clients. Helps in filtering the events for notification purposes. An empty array
3201 indicates that no events have been registered so far.
3204 Retrieved TValueInfo.
3205 This will be ENotActive if no event has been yet registered under the 'aEventFilter' filter scheme.
3206 This will be EDiscreteSteps if some events have been registered under the 'aEventFilter' filter scheme.
3208 @leave May leave with any error code.
3210 @note There should be consistency in the information retrieved when GetRegisteredEvents is consecutively called,
3211 first for blacklisted events and secondly, for white listed events. Only one of them should be used at a time and
3212 hence, for the other one, aInfo will be ENotActive.
3217 void CCamera::CCameraAdvancedSettings::GetRegisterEventsL(TECAMEventFilterScheme /*aEventFilter*/, RArray<TUid>& /*aEvents*/, TValueInfo& /*aInfo*/) const
3219 User::Leave(KErrNotSupported);
3223 Retrieves the supported flicker removal values.
3225 @param aSupportedFlickerRemovalValue
3226 A bitfield of all supported TFlickerRemoval to be provided to the client.
3228 @leave May leave with any error code.
3233 void CCamera::CCameraAdvancedSettings::GetSupportedFlickerRemovalValueL(TUint& /*aSupportedFlickerRemovalValue*/) const
3235 User::Leave(KErrNotSupported);
3239 Get the current flicker removal value being used.
3241 @param aFlickerRemovalValue
3242 Currently used TFlickerRemoval value.
3244 @leave May leave with any error code.
3249 void CCamera::CCameraAdvancedSettings::GetFlickerRemovalValueL(CCamera::CCameraAdvancedSettings::TFlickerRemoval& /*aFlickerRemovalValue*/) const
3251 User::Leave(KErrNotSupported);
3255 Set the flicker removal value.
3257 @param aFlickerRemovalValue
3258 The TFlickerRemoval value to be set.
3260 @leave KErrNotSupported If the implementation of this method is not present.
3262 @note Event KUidECamEventCameraSettingFlickerRemovalValue is used to notify clients about the flicker removal value
3268 void CCamera::CCameraAdvancedSettings::SetFlickerRemovalValueL(CCamera::CCameraAdvancedSettings::TFlickerRemoval /*aFlickerRemovalValue*/)
3270 User::Leave(KErrNotSupported);
3274 Retrieves the supported neutral density filter.
3276 @param aSupportedNDFilter
3277 A bitfield of all supported TNDFilter to be provided to the client.
3279 @leave May leave with any error code.
3284 void CCamera::CCameraAdvancedSettings::GetSupportedNDFilterL(TUint& /*aSupportedNDFilter*/) const
3286 User::Leave(KErrNotSupported);
3290 Get the current neutral density filter being used.
3293 Currently used TNDFilter.
3295 @leave May leave with any error code.
3300 void CCamera::CCameraAdvancedSettings::GetNDFilterL(CCamera::CCameraAdvancedSettings::TNDFilter& /*aNDFilter*/) const
3302 User::Leave(KErrNotSupported);
3306 Set the neutral density filter.
3309 The TNDFilter value to be set.
3311 @leave KErrNotSupported If the implementation of this method is not present.
3313 @note Event KUidECamEventCameraSettingNDFilter is used to notify clients about the neutral density setting operation.
3318 void CCamera::CCameraAdvancedSettings::SetNDFilterL(CCamera::CCameraAdvancedSettings::TNDFilter /*aNDFilter*/)
3320 User::Leave(KErrNotSupported);
3324 Get the type of LED effect being used for a particular LED event.
3327 The TLEDEvent for which the current LED effect has to be retrieved.
3330 The TLEDEffect which is being used for the given LED event.
3331 If this is TLEDEffectCustom, then a custom LED effect would have been separately specified by the client.
3333 @leave May leave with any error code.
3338 void CCamera::CCameraAdvancedSettings::GetLEDEffectL(CCamera::CCameraAdvancedSettings::TLEDEvent /*aLEDEvent*/,
3339 CCamera::CCameraAdvancedSettings::TLEDEffect& /*aLEDEffect*/) const
3341 User::Leave(KErrNotSupported);
3345 Set the LED effect for a particular LED event.
3348 The TLEDEvent for which the LED effect has to be set.
3351 The TLEDEffect which has to be set for the given LED event. It should not be TLEDEffectCustom.
3352 Use the method SetLEDCustomEffectL() to provide the custom LED effect.
3354 @leave KErrNotSupported If the implementation of this method is not present.
3356 @note Event KUidECamEventCameraSettingLEDEffect is used to notify clients about the LED effect setting operation.
3358 @note The event will provide error code KErrArgument if TLEDEffectCustom is used as the TLEDEffect. Use the method
3359 SetLEDCustomEffectL() to provide the custom LED effect.
3364 void CCamera::CCameraAdvancedSettings::SetLEDEffectL(CCamera::CCameraAdvancedSettings::TLEDEvent /*aLEDEvent*/,
3365 CCamera::CCameraAdvancedSettings::TLEDEffect /*aLEDEffect*/)
3367 User::Leave(KErrNotSupported);
3371 Set the custom LED effect for a particular LED event.
3374 The TLEDEvent for which the custom LED effect has to be set.
3376 @param aLEDSpecialEffectSteps
3377 An array of custom LED special effect steps. Every member of this array is of type TECamLEDSpecialEffectStep.
3378 The array as a whole constitues a custom LED effect.
3380 @leave KErrNotSupported If the implementation of this method is not present.
3382 @note Event KUidECamEventCameraSettingLEDCustomEffect is used to notify clients about the LED effect setting operation.
3384 @note Successful setting of a custom LED effect means that the GetLEDEffectL will retrieve TLEDEffectCustom for the
3390 void CCamera::CCameraAdvancedSettings::SetLEDCustomEffectL(CCamera::CCameraAdvancedSettings::TLEDEvent /*aLEDEvent*/,
3391 const RArray<CCamera::CCameraAdvancedSettings::TECamLEDSpecialEffectStep>& /*aLEDSpecialEffectSteps*/)
3393 User::Leave(KErrNotSupported);
3397 Reserve method which are less strict than existing Reserve methods and hence, expects implementation to be considerate towards camera access/control.
3399 @param aMaxTimeToWait
3400 Maximum specified time for the client to hold the camera control before releasing (KUidECamEvent2CameraRequestTimedTakeOver)
3401 or being forcefully overtaken (KUidECamEvent2CameraRequestForcedTimedTakeOver).
3404 ETrue indicates that if the requester's priority is greater than the current reserver's, then
3405 KUidECamEvent2CameraRequestForcedTimedTakeOver will be issued to the current reserver. Otherwise,
3406 KUidECamEvent2CameraRequestTimedTakeOver will be issued.
3408 EFalse indicates that KUidECamEvent2CameraRequestTimedTakeOver will be issued to the current reserver.
3410 @leave KErrNotSupported If the implementation of this method is not present.
3412 @note Event KUidECamEventNewReserveComplete notifies the client who made the new Reserve request.
3413 Error value KErrECamHighPriorityReserveRequesterExists indicates another such reserve request is outstanding
3414 and has higher priority than this one.
3415 Error value KErrCancel indicates a new reserve requester with a higher priority than the current requester has
3416 been made and that the current requester has been cancelled.
3418 @note Event KUidECamEvent2CameraRequestForcedTimedTakeOver notifies the current reserver client about its camera control
3419 being forcefully overtaken after a specified time period.
3421 @note Event KUidECamEvent2CameraRequestTimedTakeOver notifies the current reserver client about a request to release its
3422 camera control within a specified time period.
3427 void CCamera::CCameraAdvancedSettings::ReserveL(const TTimeIntervalMicroSeconds32& /*aMaxTimeToWait*/, TBool /*aKickOut*/)
3429 User::Leave(KErrNotSupported);
3433 Sets the priority of the client. The client issues this call when it receives the notification
3434 KUidECamEvent2CameraSettingChangeClientPriority. The target priority is also supplied with this notification as iParam.
3437 The target priority.
3439 @note For example, a higher priority client is currently holding the camera and a lower priority legacy
3440 application is continuously requesting to get hold of it. After receiving a number of repeated requests by the
3441 same legacy client, the supportive ECam implementation issues the notification
3442 KUidECamEvent2CameraSettingChangeClientPriority. After receiving this notification, the client issues this method
3443 SetClientPriorityL(TInt aPriority).
3445 @leave May leave with any error code.
3450 void CCamera::CCameraAdvancedSettings::SetClientPriorityL(TInt /*aPriority*/)
3452 User::Leave(KErrNotSupported);
3456 Restores the priority of the client. The client issues this call when it receives the notification
3457 KUidECamEventCameraSettingRestoreClientPriority. ECam's responsibility is to save the original priority of the client.
3459 @note Once the legacy client has released the camera (after changing its priority), implementation will notify the
3460 client to restore its priority by event KUidECamEventCameraSettingRestoreClientPriority. After receiving this
3461 notification, the client issues this method RestoreClientPriorityL().
3463 @leave May leave with any error code.
3468 void CCamera::CCameraAdvancedSettings::RestoreClientPriorityL()
3470 User::Leave(KErrNotSupported);
3474 Retrieves the supported manual gain for a particular color channel.
3476 @param aSupportedManualGain
3477 An array of manual gain. The TInt represent the unit in 'db' and multiplied by KECamFineResolutionFactor. Empty
3478 array indicates that feature is not supported.
3480 @param aColorChannel
3481 The TColorChannel for which the supported manual gain values have to be retrieved.
3483 @leave May leave with any error code.
3488 void CCamera::CCameraAdvancedSettings::GetSupportedManualGainL(RArray<TInt>& /*aSupportedManualGain*/,
3489 CCamera::CCameraAdvancedSettings::TColorChannel /*aColorChannel*/) const
3491 User::Leave(KErrNotSupported);
3495 Get the current manual gain value to be used for a particular color channel.
3498 Currently used manual gain value. The TInt represents the unit in 'db' and multiplied by KECamFineResolutionFactor.
3500 @param aColorChannel
3501 The color channel for which the manual gain value has to be used.
3503 @leave May leave with any error code.
3508 void CCamera::CCameraAdvancedSettings::GetManualGainL(TInt& /*aManualGain*/,
3509 CCamera::CCameraAdvancedSettings::TColorChannel /*aColorChannel*/) const
3511 User::Leave(KErrNotSupported);
3515 Set the manual gain value for a particular color channel.
3518 The manual gain value to be set. The TInt represents the unit in 'db' and multiplied by KECamFineResolutionFactor.
3520 @param aColorChannel
3521 Represents the color channel for which the manual gain value has to be set.
3523 @leave KErrNotSupported if the implementation of this method is not present.
3525 @note Event KUidECamEvent2CameraSettingManualGain is used to notify clients about the manual gain setting operation.
3527 @note The client will be expected to use either RBG color channel or YUV color channel in order to apply manual gain.
3528 If the client sets manual gain values for both the color space, it is up to the implementation to decide which
3534 void CCamera::CCameraAdvancedSettings::SetManualGainL(TInt /*aManualGain*/,
3535 CCamera::CCameraAdvancedSettings::TColorChannel /*aColorChannel*/)
3537 User::Leave(KErrNotSupported);
3541 Control the white balance lock. It can be either locked or unlocked.
3542 The white balance can be locked after aiming at a white or grey card. This helps in using the same white balance
3543 setting for the next image shots.
3546 ETrue instructs to lock the white balance.
3547 EFalse instructs to unlock the white balance.
3549 @leave KErrNotSupported If the implementation of this method is not present.
3551 @note Event KUidECamEventCameraSettingLockWhiteBalance is used to notify clients about setting the state
3552 of white balance lock.
3557 void CCamera::CCameraAdvancedSettings::SetWhiteBalanceLockL(TBool /*aEnableLock*/)
3559 User::Leave(KErrNotSupported);
3563 Get the current state for the white balance lock.
3566 A TBool specifies whether the white balance has been locked or unlocked.
3567 ETrue indicates that the white balance has been locked.
3568 EFalse indicates that the white balance has been unlocked.
3570 @leave May leave with any error code.
3575 void CCamera::CCameraAdvancedSettings::GetWhiteBalanceLockStateL(TBool& /*aIsLocked*/) const
3577 User::Leave(KErrNotSupported);
3581 Instructs the implementation to continuously save the current state before releasing the camera or being overtaken.
3583 @param aLatestCameraState
3584 A RWriteStream reference which will be used by the implementation to continuously save the latest camera state.
3586 @note The RWriteStream gives the implementation the facility to seek and overwrite any incorrectly updated state (in
3587 the event of power failure, for example). Given stream sink shall support repositioning.
3589 @note The ECam client should be careful not to use the saved state for a particular camera in order to restore a
3590 different camera later on. Though the implementation will be expected to take care of such things since the
3591 content of the files are only meaningful for the implementation.
3593 @note The RWriteStream reference is not valid across the process.
3595 @leave May leave with any error code.
3600 void CCamera::CCameraAdvancedSettings::EnableStateSavingL(RWriteStream& /*aLatestCameraState*/)
3602 User::Leave(KErrNotSupported);
3606 Instructs the implementation to stop saving the current state in the RWriteStream& as given by
3607 EnableStateSavingL(RWriteStream& aLatestCameraState).
3609 @leave May leave with any error code.
3614 void CCamera::CCameraAdvancedSettings::DisableStateSavingL()
3616 User::Leave(KErrNotSupported);
3620 Instructs the implementation to resume from the last saved state. This may be used after reserving the camera.
3622 @param aLatestCameraState
3623 A RReadStream reference which will be used by the implementation to restore the latest saved camera state information.
3625 @note The RReadStream gives the implementation the facility to seek and overwrite any incorrectly updated state (in
3626 the event of power failure, for example).
3628 @note The ECam client should be careful not to use the saved state for a particular camera in order to restore a
3629 different camera later on. Though the implementation will be expected to take care of such things since the
3630 content of the files are only meaningful for the implementation.
3632 @note The RReadStream reference is not valid across the process.
3634 @leave May leave with any error code.
3639 void CCamera::CCameraAdvancedSettings::RestoreLatestStateL(RReadStream& /*aLatestCameraState*/)
3641 User::Leave(KErrNotSupported);
3645 Instructs the implementation to save the current state which will be used by the client as a custom user state.
3646 The state saving will be done only once when this call is issued. Many such custom state could be created by the
3649 @param aCustomCameraState
3650 A RWriteStream reference which will be used by the implementation to save the current camera state as a milestone.
3652 @note The ECam client should be careful not to use the saved state for a particular camera in order to restore a
3653 different camera later on. Though the implementation will be expected to take care of such things since the
3654 content of the files are only meaningful for the implementation.
3656 @note The RWriteStream reference is not valid across the process.
3658 @leave May leave with any error code.
3663 void CCamera::CCameraAdvancedSettings::SaveCameraStateL(RWriteStream& /*aCustomCameraState*/)
3665 User::Leave(KErrNotSupported);
3669 Instructs the implementation to stop saving the custom state in the RWriteStream& as given by
3670 SaveCameraStateL(RWriteStream& aCustomCameraState).
3672 @leave May leave with any error code.
3677 void CCamera::CCameraAdvancedSettings::DisableCameraStateSavingL(RWriteStream& /*aCustomCameraState*/)
3679 User::Leave(KErrNotSupported);
3683 Instructs the implementation to restore a custom saved state.
3684 The camera can be restored in any of the custom camera states saved earlier.
3686 @param aCustomCameraState
3687 A RReadStream reference which will be used by the implementation to restore a custom camera state
3688 which was saved earlier.
3690 @note The ECam client should be careful not to use the saved state for a particular camera in order to restore a
3691 different camera later on. Though the implementation will be expected to take care of such things since the
3692 content of the files are only meaningful for the implementation.
3694 @note The RReadStream reference is not valid across the process.
3696 @leave May leave with any error code.
3701 void CCamera::CCameraAdvancedSettings::RestoreCameraStateL(RReadStream& /*aCustomCameraState*/)
3703 User::Leave(KErrNotSupported);
3707 Constructor for the TECamLEDSpecialEffectStep class.
3708 Sets the size and version of this class.
3710 CCamera::CCameraAdvancedSettings::TECamLEDSpecialEffectStep::TECamLEDSpecialEffectStep()
3712 iSize = sizeof(CCamera::CCameraAdvancedSettings::TECamLEDSpecialEffectStep);
3713 iVersion = KECamLEDSpecialEffectStepCurrentVersion;
3714 iBlinkingFrequency = 0;
3721 Returns the size of the class. Used for extensibility by deriving from this base class and adding new member variables.
3722 Intended to be used for implementation of methods where this class reference is passed as function arguments.
3723 Implementation of such methods can find out whether the actual class passed is the base or the derived one. For example, if a new application
3724 is made to run on an old implementation, an error may occur once the old implementation detects this by getting
3725 the size information of the T class passed. Also, if an old application is made to run on a new implementation, this can be
3726 correctly handled if the derived class variables handling is done in a proper 'if-else' statement.
3728 @return The size of the class.
3730 @note The size will be modified when the T-class gets updated.
3732 TUint CCamera::CCameraAdvancedSettings::TECamLEDSpecialEffectStep::Size() const
3738 Returns the version of the class. Used for extensibility specially when the class members are not added but the Reserved
3739 members get used at a later stage.
3741 @return The version of the class.
3743 @note The version will be modified when the T-class gets updated.
3745 TUint CCamera::CCameraAdvancedSettings::TECamLEDSpecialEffectStep::Version() const
3751 Constructor for the TContinuousZoomSupportInfo class.
3752 Sets the size and version of this class.
3754 EXPORT_C CCamera::CCameraAdvancedSettings::TContinuousZoomSupportInfo::TContinuousZoomSupportInfo()
3756 iSize = sizeof(CCamera::CCameraAdvancedSettings::TContinuousZoomSupportInfo);
3757 iVersion = KContinuousZoomSupportInfoCurrentVersion;
3761 Returns the size of the class. Used for extensibility by deriving from this base class and adding new member variables.
3762 Intended to be used for implementation of methods where this class reference is passed as function arguments.
3763 Implementation of such methods can find out whether the actual class passed is the base or the derived one. For example, if a new application
3764 is made to run on an old implementation, an error may occur once the old implementation detects this by getting
3765 the size information of the T class passed. Also, if an old application is made to run on a new implementation, this can be
3766 correctly handled if the derived class variables handling is done in a proper 'if-else' statement.
3768 @return The size of the class.
3770 @note The size will be modified when the T-class gets updated.
3772 EXPORT_C TUint CCamera::CCameraAdvancedSettings::TContinuousZoomSupportInfo::Size() const
3778 Returns the version of the class. Used for extensibility specially when the class members are not added but the Reserved
3779 members get used at a later stage.
3781 @return The version of the class.
3783 @note The version will be modified when the T-class gets updated.
3785 EXPORT_C TUint CCamera::CCameraAdvancedSettings::TContinuousZoomSupportInfo::Version() const
3791 Constructor for the TContinuousZoomParameters class.
3792 Sets the size and version of this class.
3794 EXPORT_C CCamera::CCameraAdvancedSettings::TContinuousZoomParameters::TContinuousZoomParameters()
3796 iSize = sizeof(CCamera::CCameraAdvancedSettings::TContinuousZoomParameters);
3797 iVersion = KContinuousZoomParametersCurrentVersion;
3801 Returns the size of the class. Used for extensibility by deriving from this base class and adding new member variables.
3802 Intended to be used for implementation of methods where this class reference is passed as function arguments.
3803 Implementation of such methods can find out whether the actual class passed is the base or the derived one. For example, if a new application
3804 is made to run on an old implementation, an error may occur once the old implementation detects this by getting
3805 the size information of the T class passed. Also, if an old application is made to run on a new implementation, this can be
3806 correctly handled if the derived class variables handling is done in a proper 'if-else' statement.
3808 @return The size of the class.
3810 @note The size will be modified when the T-class gets updated.
3812 EXPORT_C TUint CCamera::CCameraAdvancedSettings::TContinuousZoomParameters::Size() const
3818 Returns the version of the class. Used for extensibility specially when the class members are not added but the Reserved
3819 members get used at a later stage.
3821 @return The version of the class.
3823 @note The version will be modified when the T-class gets updated.
3825 EXPORT_C TUint CCamera::CCameraAdvancedSettings::TContinuousZoomParameters::Version() const
3832 Factory function that creates a new continuous zoom object.
3835 Continuous zoom observer which is passed to the implementation so it can provide callbacks to the client.
3837 @param aContinuousZoomType
3838 The continuous zoom type that the implementation will be initialised with.
3841 A constant reference to the MImplementationFactory derived object.
3843 @leave KErrNoMemory if out of memory; also any system wide error.
3845 @return A pointer to a fully constructed continuous zoom object.
3847 CCamera::CCameraContinuousZoom* CCamera::CCameraContinuousZoom::CreateL(MContinuousZoomObserver& aObserver, CCamera::CCameraAdvancedSettings::TContinuousZoomType aContinuousZoomType, const MImplementationFactory& aImplFactory)
3849 CCameraContinuousZoom* self = new (ELeave) CCameraContinuousZoom();
3850 CleanupStack::PushL(self);
3851 self->ConstructL(aObserver, aContinuousZoomType, aImplFactory);
3852 CleanupStack::Pop(self);
3857 CCameraContinuousZoom Constructor.
3859 CCamera::CCameraContinuousZoom::CCameraContinuousZoom()
3865 CCameraContinuousZoom second phase constructor.
3867 Function used to initialise internal state of the object.
3870 Continuous zoom observer which is passed to the implementation so it can provide callbacks to the client.
3872 @param aContinuousZoomType
3873 The continuous zoom type that the implementation will be initialised with.
3876 A constant reference to the MImplementationFactory derived object.
3878 @leave KErrNoMemory Out of memory.
3880 void CCamera::CCameraContinuousZoom::ConstructL(MContinuousZoomObserver& aObserver, CCamera::CCameraAdvancedSettings::TContinuousZoomType aContinuousZoomType, const MImplementationFactory& aImplFactory)
3882 TAny* implPtr = NULL;
3883 TInt zoomTypeValue = static_cast<TInt>(aContinuousZoomType);
3884 TECamImplFactoryParam param(zoomTypeValue);
3886 User::LeaveIfError(aImplFactory.GetImpl1(implPtr, KECamMCameraContinuousZoomUid, param));
3888 iImpl = static_cast<MCameraContinuousZoom*>(implPtr);
3890 iImpl->SetContinuousZoomObserverAndHandle(aObserver, this);
3896 EXPORT_C CCamera::CCameraContinuousZoom::~CCameraContinuousZoom()
3905 Starts the continuous zoom operation. Clients wil receive MContinuousZoomObserver::ContinuousZoomProgress() callback for intermediate
3906 zoom factors achieved. Depending on the implementation, the client may or may not receive this callback for every intermediate zoom factor.
3907 Upon completion, the client will receive MContinuousZoomObserver::ContinuousZoomComplete() callback.
3909 @param aContinuousZoomParameters
3910 The desired parameters to be used for the continuous zoom operation.
3912 @note If the implementation does not support re-configuring of zoom parameters whilst an existing continuous zoom operation is active then
3913 StartContinuousZoomL() will leave with KErrInUse.
3915 @note If client has selected EDirectionTele zoom direction and the current zoom factor is greater than the target zoom factor, StartContinuousZoomL()
3916 will leave with KErrArgument. Similarly, StartContinuousZoomL() will also leave with KErrArgument if client has selected EDirectionWide zoom
3917 direction and current zoom factor is less than target zoom factor.
3919 @leave May leave with any error code.
3921 EXPORT_C void CCamera::CCameraContinuousZoom::StartContinuousZoomL(CCamera::CCameraAdvancedSettings::TContinuousZoomParameters aContinuousZoomParameters)
3923 iImpl->StartContinuousZoomL(aContinuousZoomParameters);
3927 Stop any exisiting continuous zoom operation.
3928 Since this method is synchronous, no callback shall be issued for the concerned continuous zoom operation.
3930 EXPORT_C void CCamera::CCameraContinuousZoom::StopContinuousZoom()
3932 iImpl->StopContinuousZoom();
3936 Retrieves information about the supported settings related to continuous zoom support.
3938 @param aContinuousZoomInfo
3939 The information of supported continuous zoom functionality.
3941 @leave May leave with any error code.
3943 EXPORT_C void CCamera::CCameraContinuousZoom::GetContinuousZoomSupportInfoL(CCamera::CCameraAdvancedSettings::TContinuousZoomSupportInfo& aContinuousZoomInfo) const
3945 iImpl->GetContinuousZoomSupportInfoL(aContinuousZoomInfo);
3949 Retrieves the unique id of the continuous zoom object.
3950 This is used to identify the continuous zoom handle returned to clients via the MContinuousZoomObserver callback.
3953 The unique id of this Continuous Zoom object.
3955 EXPORT_C void CCamera::CCameraContinuousZoom::GetContinuousZoomId(TInt& aZoomId) const
3957 iImpl->GetContinuousZoomId(aZoomId);