sl@0: // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @publishedPartner sl@0: @released sl@0: */ sl@0: sl@0: #ifndef ECAMADVSETTINGSINTF_H sl@0: #define ECAMADVSETTINGSINTF_H sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: /** This is the UID which is used to obtain the interface MCameraPresets, via the sl@0: CCamera::CustomInterface() call, which provides implementation of the M-class interface. sl@0: */ sl@0: static const TUid KECamMCameraPresetsUid = {KECamMCameraPresetsUidValue}; sl@0: sl@0: /** sl@0: This is the UID which is used to obtain the interface MCameraPresets2, via the sl@0: CCamera::CustomInterface() call, which provides implementation of the M-class interface. sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: static const TUid KECamMCameraPresets2Uid = {KECamMCameraPresets2UidValue}; sl@0: sl@0: /** This is the UID which is used to obtain the interface MCameraAdvancedSettings, via the sl@0: CCamera::CustomInterface() call, which provides implementation of the M-class interface. */ sl@0: static const TUid KECamMCameraAdvancedSettingsUid = {KECamMCameraAdvancedSettingsUidValue}; sl@0: sl@0: /** This is the UID which is used to obtain the interface MCameraAdvancedSettings2, via the sl@0: CCamera::CustomInterface() call, which provides implementation of the M-class interface. */ sl@0: static const TUid KECamMCameraAdvancedSettings2Uid = {KECamMCameraAdvancedSettings2UidValue}; sl@0: sl@0: /** sl@0: This is the UID which is used to obtain the interface MCameraAdvancedSettings3, via the sl@0: CCamera::CustomInterface() call, which provides implementation of the M-class interface. sl@0: */ sl@0: static const TUid KECamMCameraAdvancedSettings3Uid = {KECamMCameraAdvancedSettings3UidValue}; sl@0: sl@0: /** sl@0: This is the UID which is used to obtain the interface MCameraAdvancedSettings4, via the sl@0: CCamera::CustomInterface() call, which provides implementation of the M-class interface. sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: static const TUid KECamMCameraAdvancedSettings4Uid = {KECamMCameraAdvancedSettings4UidValue}; sl@0: sl@0: /** sl@0: This is the UID which is used to obtain the interface MCameraContinuousZoom, via the sl@0: CCamera::CCameraAdvancedSettings::CreateContinuousZoomImpl() call, which provides sl@0: implementation of the M-class interface. sl@0: @internalTechnology sl@0: @prototype sl@0: */ sl@0: static const TUid KECamMCameraContinuousZoomUid = {KECamMCameraContinuousZoomUidValue}; sl@0: sl@0: /** sl@0: Mixin class for implementation by providers of the Advanced Settings Camera Extension API. sl@0: CCamera advanced settings class exposes an API for controlling individually sl@0: digital camera advanced settings. These settings directly relate to the sl@0: image acquisition phase both for still images and video. sl@0: sl@0: @publishedPartner sl@0: @released sl@0: */ sl@0: class MCameraAdvancedSettings sl@0: { sl@0: sl@0: public: sl@0: sl@0: /** sl@0: Releases the interface. sl@0: */ sl@0: virtual void Release()=0; sl@0: sl@0: /** sl@0: Gets the type of this camera. sl@0: @see TCameraType sl@0: sl@0: @return a TCameraType value. sl@0: */ sl@0: virtual CCamera::CCameraAdvancedSettings::TCameraType CameraType() const=0; sl@0: sl@0: /** sl@0: Get the type of a specific camera denoted by its index. A pluggable camera sl@0: may not necessarily be physically present. The type denotes whether the slot allocated sl@0: to that index is for pluggable or onboard camera. sl@0: sl@0: @param aCameraIndex sl@0: An integer in the range of [0: CCamera::CamerasAvailable()-1]. sl@0: sl@0: @return the TCameraType value for the specific camera. sl@0: If the index is out of range, the return value is ECameraUnknown. sl@0: */ sl@0: virtual CCamera::CCameraAdvancedSettings::TCameraType CameraType(TInt aCameraIndex) const=0; sl@0: sl@0: /** sl@0: Checks whether the current camera is present. sl@0: sl@0: @return Whether the camera is currently present. sl@0: ETrue if camera is present, EFalse otherwise. sl@0: For example ECameraOnBoard (built-in) cameras are always present. sl@0: */ sl@0: virtual TBool IsCameraPresent() const=0; sl@0: sl@0: /** sl@0: Checks whether the camera, denoted by its index, is currently present. sl@0: The index uniquely identifies the camera on the device. sl@0: sl@0: @param aCameraIndex sl@0: An integer in the range of [0:CCamera::CamerasAvailable()-1] specifying the sl@0: camera device to use sl@0: sl@0: @return Whether the camera is currently present. sl@0: ETrue if camera is present, EFalse otherwise. sl@0: For example built-in (ECameraOnBoard) cameras sl@0: are always present. sl@0: */ sl@0: virtual TBool IsCameraPresent(TInt aCameraIndex) const=0; sl@0: sl@0: /** sl@0: Gets current camera index. The index uniquely identifies the camera on the device. sl@0: sl@0: @return camera index in the inclusive range of [0:CCamera::CamerasAvailable() - 1]. sl@0: */ sl@0: virtual TInt CameraIndex() const=0; sl@0: sl@0: /** sl@0: Gets all of the supported stabilization modes on the device. The result is a bitfield sl@0: of the valid TStabilizationMode flags. sl@0: sl@0: @return a bitfield of all supported stabilization modes. sl@0: */ sl@0: virtual TInt SupportedStabilizationModes() const=0; sl@0: sl@0: /** sl@0: Gets current stabilization mode on the device. sl@0: The result is a valid TStabilizationMode value. sl@0: sl@0: @return current stabilization mode of type TStabilizationMode. sl@0: */ sl@0: virtual CCamera::CCameraAdvancedSettings::TStabilizationMode StabilizationMode() const=0; sl@0: sl@0: /** sl@0: Sets a specific stabilization mode on the device. sl@0: sl@0: Stabilization mode change fires a KUidECamEventCameraSettingStabilizationMode sl@0: event to all MCameraObserver2 clients of this specific camera. sl@0: sl@0: @param aStabilizationMode sl@0: new stabilization mode of TStabilizationMode type. sl@0: */ sl@0: virtual void SetStabilizationMode(CCamera::CCameraAdvancedSettings::TStabilizationMode aStabilizationMode)=0; sl@0: sl@0: /** sl@0: Gets all of the supported focus modes on the device. The result is a bitfield sl@0: of the valid TFocusMode flags. sl@0: sl@0: @return a bitfield of all supported focus modes. sl@0: */ sl@0: virtual TInt SupportedFocusModes() const=0; sl@0: sl@0: /** sl@0: Gets current focus mode on the device. sl@0: The result is a valid TFocusMode value. sl@0: sl@0: @return current focus mode. sl@0: */ sl@0: virtual CCamera::CCameraAdvancedSettings::TFocusMode FocusMode() const=0; sl@0: sl@0: /** sl@0: Sets a specific focus mode on the device. sl@0: Focus mode change fires a KUidECamEventCameraSettingFocusMode event sl@0: to all MCameraObserver2 clients of the camera. sl@0: sl@0: @param aFocusMode sl@0: new focus mode of TFocusMode type. sl@0: */ sl@0: virtual void SetFocusMode(CCamera::CCameraAdvancedSettings::TFocusMode aFocusMode)=0; sl@0: sl@0: /** sl@0: Gets all supported focus ranges on the device. sl@0: sl@0: @return an integer - a bitfield of all supported TFocusRange values. sl@0: */ sl@0: virtual TInt SupportedFocusRanges() const=0; sl@0: sl@0: /** sl@0: Gets current focus range on the device. sl@0: sl@0: @return the current TFocusRange value. sl@0: */ sl@0: virtual CCamera::CCameraAdvancedSettings::TFocusRange FocusRange() const=0; sl@0: sl@0: /** sl@0: Sets a specific focus range on the device. sl@0: The focus range change fires both, KUidECamEventCameraSettingFocusRange and sl@0: KUidECamEventCameraSettingFocusRange2 event to all MCameraObserver2 clients of the camera. sl@0: @see KUidECamEventCameraSettingFocusRange sl@0: sl@0: @param aFocusRange sl@0: newly selected focus range. sl@0: */ sl@0: virtual void SetFocusRange(CCamera::CCameraAdvancedSettings::TFocusRange aFocusRange)=0; sl@0: sl@0: /** sl@0: Gets all supported auto focus types on the device. sl@0: sl@0: @return an integer - a bitfield of all supported TAutoFocusType values. sl@0: */ sl@0: virtual TInt SupportedAutoFocusTypes() const=0; sl@0: sl@0: /** sl@0: Gets current auto focus type on the device. sl@0: sl@0: @return a CCamera::TAutoFocusType value. sl@0: */ sl@0: virtual CCamera::CCameraAdvancedSettings::TAutoFocusType AutoFocusType() const=0; sl@0: sl@0: /** sl@0: Sets a specific auto focus type on the device. sl@0: The focus type change fires both, KUidECamEventCameraSettingAutoFocusType and sl@0: KUidECamEventCameraSettingAutoFocusType2 event to all MCameraObserver2 clients of the camera. sl@0: @see KUidECamEventCameraSettingAutoFocusType sl@0: sl@0: @param aAutoFocusType sl@0: Autofocus selection. sl@0: */ sl@0: virtual void SetAutoFocusType(CCamera::CCameraAdvancedSettings::TAutoFocusType aAutoFocusType)=0; sl@0: sl@0: /** sl@0: Gets all supported auto focus areas on the device. sl@0: sl@0: @return an integer - a bitfield of al supported TAutoFocusArea values. sl@0: */ sl@0: virtual TInt SupportedAutoFocusAreas() const=0; sl@0: sl@0: /** sl@0: Gets current chosen auto focus area on the device. sl@0: sl@0: @return a CCamera::TAutoFocusArea value. sl@0: */ sl@0: virtual CCamera::CCameraAdvancedSettings::TAutoFocusArea AutoFocusArea() const=0; sl@0: sl@0: /** sl@0: Sets a specific auto focus area on the device. sl@0: Focus area change fires a KUidECamEventCameraSettingAutoFocusArea event sl@0: to all MCameraObserver2 clients of the camera. sl@0: sl@0: @param aAutoFocusArea sl@0: Autofocus area selection. sl@0: */ sl@0: virtual void SetAutoFocusArea(CCamera::CCameraAdvancedSettings::TAutoFocusArea aAutoFocusArea)=0; sl@0: sl@0: /** sl@0: Get focus distance in millimetres. sl@0: sl@0: @return the current focus distance in millimetres, directly from user setting of lenses. sl@0: */ sl@0: virtual TInt FocusDistance() const=0; sl@0: sl@0: /** sl@0: Set focus distance in millimetres. Focus distance change fires a KUidECamEventCameraSettingFocusDistance event sl@0: to all MCameraObserver2 clients of the camera. sl@0: sl@0: @param aDistance sl@0: the current value in millimetres, directly from user setting of lenses. sl@0: */ sl@0: virtual void SetFocusDistance(TInt aDistance)=0; sl@0: sl@0: /** sl@0: Get minimum focus distance in millimetres. sl@0: sl@0: @return the minimum (35 camera equivalent) focal length of a device. sl@0: @note Current Focal length is calculated as sl@0: focalLength = opticalZoom * minFocalLength; sl@0: */ sl@0: virtual TInt GetMinFocalLength() const=0; sl@0: sl@0: /** sl@0: Gets the set of camera supported ISO rates. sl@0: sl@0: @param aSupportedIsoRates sl@0: an array of integers which gets filled in with the supported ISO rates. sl@0: sl@0: @note When camera device is incapable of revealing the ISO rates supported, it has to be assumed that sl@0: camera will work only on the parmanently set value. If this value is not known, empty array should be sl@0: returned, and the corresponding getter/setters for this feature for this feature should not be used. sl@0: */ sl@0: virtual void GetSupportedIsoRatesL(RArray& aSupportedIsoRates) const=0; sl@0: sl@0: /** sl@0: Gets current ISO rate. sl@0: sl@0: @return current ISO rate as a TInt value. sl@0: sl@0: @note In case there is an error, a negative error value from system wide error should be returned. sl@0: */ sl@0: virtual TInt IsoRate() const=0; sl@0: sl@0: /** sl@0: Set current ISO rate for the camera. sl@0: Triggers a KUidECamEventCameraSettingIsoRate event to all MCameraObserver2 clients of the camera. sl@0: sl@0: @param aRate sl@0: required new ISO rate. sl@0: */ sl@0: virtual void SetIsoRate(TInt aRate)=0; sl@0: sl@0: /** sl@0: Gets the current discrete aperture steps (F-stops) supported by the device. sl@0: sl@0: @param aFStops sl@0: A reference to an empty array of TInt which would be populated by the implementation with sl@0: the specific supported values. If the array is empty on return, sl@0: the camera supports all integer values in the aperture range. Each value is multiplied by sl@0: a factor of KECamFineResolutionFactor. sl@0: sl@0: @param aInfo sl@0: a reference to TValueInfo, which establishes the type of the returned data. sl@0: sl@0: @leave KErrNoMemory Out of memory. sl@0: sl@0: @note When camera device is incapable of revealing the aperture openings supported, it has to be assumed that sl@0: camera will work only on the parmanently set value. If this value is not known, empty array should be sl@0: returned and TValueInfo should be ENotActive, and the corresponding getter/setters for this feature should not be used. sl@0: */ sl@0: virtual void GetAperturesL(RArray& aFStops, TValueInfo& aInfo) const=0; sl@0: sl@0: /** sl@0: Get current aperture value. sl@0: The default aperture value is ECAM implementation specific and could be either auto aperture or any other supported value. sl@0: sl@0: @return Current aperture value as an integer, multiplied by KECamFineResolutionFactor. sl@0: For example the function will return 280 for the actual aperture of F2.8. sl@0: sl@0: @note In case there is an error, a negative error value from system wide error should be returned. sl@0: */ sl@0: virtual TInt Aperture() const=0; sl@0: sl@0: /** sl@0: Set a new aperture value. sl@0: All MCameraObserver2 clients of the camera receive a KUidECamEventCameraSettingAperture sl@0: event notification when aperture value is changed. sl@0: sl@0: @note The aperture parameter value is an integer, multiplied by KECamFineResolutionFactor. sl@0: For example to set an aperture of F2.8, call SetAperture(280). sl@0: sl@0: @param aFStop sl@0: a new aperture value in the supported by the device range. sl@0: */ sl@0: virtual void SetAperture(TInt aFStop)=0; sl@0: sl@0: /** sl@0: Gets the set of supported shutter speeds sl@0: sl@0: @param aShutterSpeeds sl@0: a reference to an RArray of TInt representing the discrete shutter speeds supported sl@0: currently by the device. sl@0: sl@0: @param aInfo sl@0: a reference to TValueInfo, which establishes the type of the returned data. sl@0: sl@0: @return the populated array with all shutter speeds in microseconds. sl@0: sl@0: @leave KErrNoMemory Out of memory. sl@0: sl@0: @note When camera device is incapable of revealing the shutter speeds supported, it has to be assumed that sl@0: camera will work only on the parmanently set value. If this value is not known, empty array should be sl@0: returned and TValueInfo should be ENotActive, and the corresponding getter/setters for this feature should not be used. sl@0: */ sl@0: virtual void GetShutterSpeedsL(RArray& aShutterSpeeds, TValueInfo& aInfo) const=0; sl@0: sl@0: /** sl@0: Gets the current shutter speed sl@0: sl@0: @return the current shutter speed in microseconds. sl@0: sl@0: @note In case there is an error, a negative error value from system wide error should be returned. sl@0: */ sl@0: virtual TInt ShutterSpeed() const=0; sl@0: sl@0: /** sl@0: Sets the current shutter speed. When set, all MCameraObserver2 clients of the camera sl@0: receive a KUidECamEventCameraSettingShutterSpeed event sl@0: sl@0: @param aShutterSpeed sl@0: the required shutter speed in microseconds. sl@0: sl@0: */ sl@0: virtual void SetShutterSpeed(TInt aShutterSpeed)=0; sl@0: sl@0: /** sl@0: Get all supported metering modes on this device represented as bitfield of type TMeteringMode. sl@0: sl@0: @return the set of supported metering modes. sl@0: */ sl@0: virtual TInt SupportedMeteringModes() const=0; sl@0: sl@0: /** sl@0: Get current metering mode. sl@0: sl@0: @return a value of type TMeteringMode. sl@0: */ sl@0: virtual CCamera::CCameraAdvancedSettings::TMeteringMode MeteringMode() const=0; sl@0: sl@0: /** sl@0: Set the current metering mode. When set, all MCameraObserver2 clients are notified sl@0: with a KUidECamEventCameraSettingMeteringMode event. sl@0: sl@0: @param aMeteringMode sl@0: a new selection for metering mode of type TMeteringMode. sl@0: */ sl@0: virtual void SetMeteringMode(CCamera::CCameraAdvancedSettings::TMeteringMode aMeteringMode)=0; sl@0: sl@0: /** sl@0: Get all supported drive modes as bitfields of TDriveMode type. sl@0: sl@0: @return the set of supported drive modes. sl@0: */ sl@0: virtual TInt SupportedDriveModes() const=0; sl@0: sl@0: /** sl@0: Gets currently active drive mode. sl@0: sl@0: @return current drive mode. sl@0: */ sl@0: virtual CCamera::CCameraAdvancedSettings::TDriveMode DriveMode() const=0; sl@0: sl@0: /** sl@0: Set the current metering mode. When set all MCameraObserver2 clients are notified with a sl@0: KUidECamEventCameraSettingDriveMode event. sl@0: sl@0: @param aDriveMode sl@0: new selection for drive mode value of type TDriveMode. sl@0: sl@0: @note Unless reduced Latency scheme is not used (ie CaptureImageL(TInt aSequenceNumber) or PerformantStopVideoCaptureL()) sl@0: if an image/video capture is still outstanding, this method may report error KErrInUse. sl@0: */ sl@0: virtual void SetDriveMode(CCamera::CCameraAdvancedSettings::TDriveMode aDriveMode)=0; sl@0: sl@0: /** sl@0: Get all supported bracket modes as bitfields. sl@0: sl@0: @return the set of all supported bracket modes. sl@0: */ sl@0: virtual TInt SupportedBracketModes() const=0; sl@0: sl@0: /** sl@0: Get current bracket mode. sl@0: sl@0: @return the current bracket mode TBracketMode. sl@0: */ sl@0: virtual CCamera::CCameraAdvancedSettings::TBracketMode BracketMode() const=0; sl@0: sl@0: /** sl@0: Set new bracket mode. All MCameraObserver2 clients are notified with a sl@0: KUidECamEventCameraSettingBracketMode event. sl@0: sl@0: @param aBracketMode sl@0: new selection for bracket mode of type TBracketMode. sl@0: */ sl@0: virtual void SetBracketMode(CCamera::CCameraAdvancedSettings::TBracketMode aBracketMode)=0; sl@0: sl@0: /** sl@0: Get all supported bracket parameters as bitfields. sl@0: sl@0: @return the set of all currently supported bracket modes. sl@0: */ sl@0: virtual TInt SupportedBracketParameters() const=0; sl@0: sl@0: /** sl@0: Get current bracket parameter. sl@0: sl@0: @return the current bracket mode TBracketParameter. sl@0: */ sl@0: virtual CCamera::CCameraAdvancedSettings::TBracketParameter BracketParameter() const=0; sl@0: sl@0: /** sl@0: Set new bracket parameter sl@0: When set all clients are notified with a sl@0: KUidECamEventCameraSettingBracketParameter event. sl@0: sl@0: @param aBracketParameter sl@0: new selection for parameter type of type TBracketParameter. sl@0: */ sl@0: virtual void SetBracketParameter(CCamera::CCameraAdvancedSettings::TBracketParameter aBracketParameter)=0; sl@0: sl@0: /** sl@0: Get all supported bracket steps as bitfields. sl@0: sl@0: @return the set of all supported bracket modes. sl@0: */ sl@0: virtual TInt SupportedBracketSteps() const=0; sl@0: sl@0: /** sl@0: Get current bracket step. sl@0: sl@0: @return the current bracket mode TBracketStep. sl@0: */ sl@0: virtual CCamera::CCameraAdvancedSettings::TBracketStep BracketStep() const=0; sl@0: sl@0: /** sl@0: Set new bracket step. All MCameraObserver2 clients are notified with sl@0: KUidECamEventCameraSettingBracketStep. sl@0: sl@0: @param aBracketStep sl@0: new selection for step of type TBracketStep. sl@0: */ sl@0: virtual void SetBracketStep(CCamera::CCameraAdvancedSettings::TBracketStep aBracketStep)=0; sl@0: sl@0: /** sl@0: Gets the settings for which frames to merge. Valid only in EDriveModeBracketMerge mode. sl@0: @note there must be at least two images to merge. All are assumed to form a sequence and sl@0: are identified using the first frame index and number of frames e.g. to merge two frames - one sl@0: on and one +1, when in EBracketMode3Image, one sets the start index to 1 and frames to two. sl@0: @note It is very much TBracketMode setting dependent. sl@0: sl@0: @param aStartIndex sl@0: the index of the start frame, starts from 0. sl@0: sl@0: @param aFrames sl@0: the number of frames to be merged. sl@0: */ sl@0: virtual void GetBracketMerge(TInt& aStartIndex, TInt& aFrames) const=0; sl@0: sl@0: /** sl@0: Sets the settings for which frames to merge. Valid only in EDriveModeBracketMerge mode. sl@0: @note there must be at least two images to merge. All are assumed to form a sequence and sl@0: are identified using the first frame index and number of frames e.g. to merge two frames - one sl@0: on and one +1, when in EBracketMode3Image, one sets the start index to 1 and frames to 2. sl@0: MCameraObserver2 clients are notified with a KUidECamEventBracketMerge event. sl@0: sl@0: @note It is very TBracketMode setting dependent. sl@0: sl@0: @param aStartIndex sl@0: the index of the start frame, starts from 0. sl@0: sl@0: @param aFrames sl@0: the number of frames to be merged. sl@0: */ sl@0: virtual void SetBracketMerge(TInt aStartIndex, TInt aFrames)=0; sl@0: sl@0: /** sl@0: Get camera all supported flash modes CCamera::TFlash sl@0: sl@0: @return the set of all supported flash modes as bitfields in an integer. sl@0: */ sl@0: virtual TInt SupportedFlashModes() const=0; sl@0: sl@0: /** sl@0: Gets the currently set flash mode. sl@0: sl@0: @return The currently set flash mode. sl@0: */ sl@0: virtual CCamera::TFlash FlashMode() const=0; sl@0: sl@0: /** sl@0: Sets the flash mode. sl@0: sl@0: Triggers a KUidECamEventCameraSettingFlashMode event to all camera sl@0: MCameraObserver2 clients. sl@0: sl@0: @param aMode sl@0: The required flash mode. sl@0: */ sl@0: virtual void SetFlashMode(CCamera::TFlash aMode)=0; sl@0: sl@0: /** sl@0: Gets whether the flash red eye reduction is switched on. sl@0: sl@0: @return The present state - ETrue for switched on and EFalse for switched off. sl@0: */ sl@0: virtual TBool RedEyeReduceOn() const=0; sl@0: sl@0: /** sl@0: Sets the flash red eye reduction on or off. sl@0: sl@0: Triggers a KUidECamEventCameraSettingFlashRedEyeReduce event to all camera sl@0: MCameraObserver2 clients. sl@0: sl@0: @param aState sl@0: The required state ETrue for switching it on and EFalse for switching it off. sl@0: */ sl@0: virtual void SetRedEyeReduceOn(TBool aState)=0; sl@0: sl@0: /** sl@0: Get flash compensation steps as integers multiplied by KECamFineResolutionFactor. sl@0: For example 0.5 EV is 50. sl@0: sl@0: @param aFlashCompensationSteps sl@0: an RArray of integers which is populated on return to reflect the supported sl@0: flash compensation steps. sl@0: sl@0: @param aInfo sl@0: an TValueInfo reference, which establishes the organization of the returned data. sl@0: sl@0: @see TValueInfo sl@0: sl@0: @leave KErrNoMemory Out of memory. sl@0: sl@0: @note When camera device doesn't support this, empty array should be returned and TValueInfo should be ENotActive, sl@0: and the corresponding getter/setters for this feature should not be used. sl@0: When camera device is incapable of revealing the flash compensation steps supported, sl@0: it has to be assumed that camera will work only on the parmanently set value. If this value is not known, empty sl@0: array should be returned and TValueInfo should be ENotActive, and the corresponding getter/setters for this feature should not be used. sl@0: */ sl@0: virtual void GetFlashCompensationStepsL(RArray& aFlashCompensationSteps, TValueInfo& aInfo) const=0; sl@0: sl@0: /** sl@0: @deprecated Use TInt GetFlashCompensationStep(TInt& aFlashCompensationStep); sl@0: sl@0: Get current flash power compensation step. sl@0: sl@0: @return current flash compensation step. sl@0: */ sl@0: virtual TInt FlashCompensationStep() const=0; sl@0: sl@0: /** sl@0: Get current flash power compensation step. sl@0: sl@0: @param aFlashCompensationStep sl@0: Reference to the current flash power compensation step. sl@0: sl@0: @return system wide error code. sl@0: */ sl@0: virtual TInt GetFlashCompensationStep(TInt& aFlashCompensationStep) const=0; sl@0: sl@0: /** sl@0: Set current flash compensation step as an integer multiplied by KECamFineResolutionFactor. sl@0: For example to set a compensation of -0.3 EV, one should use a parameter with value -30. sl@0: All clients receive a KUidECamEventCameraSettingFlashCompensationStep event, when the value has changed. sl@0: sl@0: @param aFlashCompensationStep sl@0: a new value for the flash compensation step. sl@0: */ sl@0: virtual void SetFlashCompensationStep(TInt aFlashCompensationStep)=0; sl@0: sl@0: /** sl@0: Get current flash power compensation range measured in a already selected compensation step. sl@0: @note This range may change if a different compensation step is selected. sl@0: For example if flash compensation range is in the range -1EV 1.5EV and the selected flash compensation sl@0: step is selected to be 0.3 EV, the result of this call will be sl@0: aNegativeCompensation = -3 and aPositiveCompensation = 5. sl@0: as there can be only three full steps for negative compensation (1/0.3) and five for flash power boost (1.5/0.3). sl@0: In this way developers, having pre-selected a step value from the supported set, would need to provide sl@0: just the multplier (in steps) and the direction (the sign). Steps are always assumed integers. sl@0: sl@0: @param aNegativeCompensation sl@0: reference to an integer returning the maximum number of steps available for negative compensation. sl@0: sl@0: @param aPositiveCompensation sl@0: reference to an integer returning the maximum number of steps available for positive compensation. sl@0: */ sl@0: virtual void GetFlashCompensationRangeInSteps(TInt& aNegativeCompensation, TInt& aPositiveCompensation) const=0; sl@0: sl@0: /** sl@0: @deprecated Use TInt GetFlashCompensation(TInt& aFlashCompensation); sl@0: sl@0: Get the current flash compensation value as integer steps. Positive values boost flash power, sl@0: negative reduce flash power. The change is not cumulative i.e. the change is stateless. sl@0: Each call assumes no previous compensation has been performed i.e. that there is a zero compensation. sl@0: sl@0: @note if returned value is 2 (compensation steps) and the current flash compensation step is 0.3 EV, sl@0: then the actual compensation effect will be 0.6 EV. sl@0: sl@0: @return the current number compensation steps as an integer. sl@0: */ sl@0: virtual TInt FlashCompensation() const=0; sl@0: sl@0: /** sl@0: Get the current flash compensation value as integer steps. Positive values boost flash power, sl@0: negative reduce flash power. The change is not cumulative i.e. the change is stateless. sl@0: Each call assumes no previous compensation has been performed i.e. that there is a zero compensation. sl@0: sl@0: @note if retrieved value is 2 (compensation steps) and the current flash compensation step is 0.3 EV, sl@0: then the actual compensation effect will be 0.6 EV. sl@0: sl@0: @param aFlashCompensation sl@0: Reference to the current number of compensation steps as an integer. sl@0: sl@0: @return system wide error code. sl@0: */ sl@0: virtual TInt GetFlashCompensation(TInt& aFlashCompensation) const=0; sl@0: sl@0: /** sl@0: Set the current flash compensation value as integer steps. sl@0: Positive values increase power, negative reduce power. The change is not cumulative i.e. the change is stateless. sl@0: Each call assumes no previous compensation has been performed i.e. that there is a zero compensation. sl@0: Triggers a KUidECamEventCameraSettingFlashCompensation event. sl@0: sl@0: @param aFlashCompensationSteps sl@0: a required compensation steps - negative value reduce the flash power sl@0: positive boosts up the flash power. sl@0: */ sl@0: virtual void SetFlashCompensation(TInt aFlashCompensationSteps)=0; sl@0: sl@0: /** sl@0: Check whether there is an external flash source. sl@0: sl@0: @return ETrue if an external flash source is present, EFalse otherwise sl@0: */ sl@0: virtual TBool IsExternalFlashPresent() const=0; sl@0: sl@0: /** sl@0: Gets the current discrete manual flash power levels supported by the device in range 0-100 sl@0: as a percentage of maximum power level. sl@0: sl@0: @param aManualFlashPowerLevels sl@0: An empty array of TInt which would be populated by the implementation with sl@0: the specific supported values. If the array is empty on return, sl@0: the camera does not support this functionality. sl@0: @param aInfo sl@0: a reference to TValueInfo, which establishes the type of the returned data. sl@0: sl@0: @leave KErrNoMemory Out of memory. sl@0: sl@0: @note When camera device doesn't support this, empty array should be returned and TValueInfo should be ENotActive, sl@0: and the corresponding getter/setters for this feature should not be used. sl@0: When camera device is incapable of revealing the manual flash power levels supported, sl@0: it has to be assumed that camera will work only on the parmanently set value. If this value is not known, empty sl@0: array should be returned and TValueInfo should be ENotActive, and the corresponding getter/setters for this feature should not be used. sl@0: */ sl@0: virtual void GetManualFlashPowerLevelsL(RArray& aManualFlashPowerLevels, TValueInfo& aInfo) const=0; sl@0: sl@0: /** sl@0: Gets the current manual flash power level on the device. sl@0: sl@0: @return the current manual flash power level as a value in the range [0:100]. sl@0: sl@0: @note In case there is an error, a negative error value from system wide error should be returned. sl@0: */ sl@0: virtual TInt ManualFlashPowerLevel() const=0; sl@0: sl@0: /** sl@0: Sets the current manual flash power level on the device. sl@0: Triggers a KUidECamEventCameraSettingFlashManualPower event to all MCameraObserver2 clients. sl@0: sl@0: @param aManualFlashPowerLevel sl@0: one of the values returned in GetManualFlashPowerLevelsL(). sl@0: */ sl@0: virtual void SetManualFlashPowerLevel(TInt aManualFlashPowerLevel)=0; sl@0: sl@0: /** sl@0: Get Supported exposure modes - bitfields of CCamera::TExposure sl@0: sl@0: @return the set of supported exposure modes. sl@0: */ sl@0: virtual TInt SupportedExposureModes() const=0; sl@0: sl@0: /** sl@0: Gets the currently set exposure setting value. sl@0: sl@0: @return The currently set exposure setting value. sl@0: */ sl@0: virtual CCamera::TExposure ExposureMode() const=0; sl@0: sl@0: /** sl@0: Sets the exposure mode of the device. sl@0: sl@0: Triggers a KUidECamEventCameraSettingExposureMode event to all MCameraObserver2 clients. sl@0: sl@0: @param aExposureMode sl@0: The required exposure adjustment. sl@0: */ sl@0: virtual void SetExposureMode(CCamera::TExposure aExposureMode)=0; sl@0: sl@0: /** sl@0: Get exposure compensation steps as integers multiplied by KECamFineResolutionFactor. sl@0: For example 0.3 EV is 30. sl@0: sl@0: @param aExposureCompensationSteps sl@0: an RArray of integers which is populated to reflect the supported sl@0: exposure compensation steps, all values have been multiplied by KECamFineResolutionFactor before sl@0: truncated to integers. sl@0: sl@0: @param aInfo sl@0: a reference to TValueInfo, which establishes the type of the returned data. sl@0: sl@0: @leave KErrNoMemory Out of memory. May also leave as a result of other system errors. sl@0: sl@0: @note When camera device doesn't support this, empty array should be returned and TValueInfo should be ENotActive, sl@0: and the corresponding getter/setters for this feature should not be used. sl@0: When camera device is incapable of revealing the exposure compensation steps supported, sl@0: it has to be assumed that camera will work only on the parmanently set value. If this value is not known, empty sl@0: array should be returned and TValueInfo should be ENotActive, and the corresponding getter/setters for this feature should not be used. sl@0: */ sl@0: virtual void GetExposureCompensationStepsL(RArray& aExposureCompensationSteps, TValueInfo& aInfo) const=0; sl@0: sl@0: /** sl@0: @deprecated Use TInt GetExposureCompensationStep(TInt& aExposureCompensationStep); sl@0: sl@0: Get current exposure compensation step. sl@0: sl@0: @return current exposure compensation step. sl@0: */ sl@0: virtual TInt ExposureCompensationStep() const=0; sl@0: sl@0: /** sl@0: Get current exposure compensation step. sl@0: sl@0: @param aExposureCompensationStep sl@0: Reference to the current exposure compensation step. sl@0: sl@0: @return system wide error code. sl@0: */ sl@0: virtual TInt GetExposureCompensationStep(TInt& aExposureCompensationStep) const=0; sl@0: sl@0: /** sl@0: Set current exposure compensation step as an integer multiplied by KECamFineResolutionFactor. sl@0: All MCameraObserver2 clients receive a KUidECamEventCameraSettingExposureCompensationStep event, sl@0: when the value has changed. sl@0: sl@0: @param aExposureCompensationStep sl@0: a new value for the exposure compensation step. sl@0: */ sl@0: virtual void SetExposureCompensationStep(TInt aExposureCompensationStep)=0; sl@0: sl@0: /** sl@0: Get current exposure compensation range in steps. It depends on the previously sl@0: selected exposure compensation step. sl@0: sl@0: @param aNegativeCompensation sl@0: reference to an integer returning the maximum number of steps sl@0: available for negative compensation. sl@0: sl@0: @param aPositiveCompensation sl@0: reference to an integer returning the maximum number of steps sl@0: available for positive compensation. sl@0: sl@0: @see GetFlashCompensationRangeInSteps() sl@0: */ sl@0: virtual void GetExposureCompensationRangeInSteps(TInt& aNegativeCompensation, TInt& aPositiveCompensation) const=0; sl@0: sl@0: /** sl@0: @deprecated Use TInt GetExposureCompensation(TInt& aExposureCompensation); sl@0: sl@0: Get the current exposure compensation value as integer steps. Positive values increase exposure times, sl@0: negative reduce exposure times. The change is not cumulative i.e. the change is stateless. sl@0: Each call assumes no previous compensation has been performed i.e. that there is a zero compensation. sl@0: sl@0: @note if returned value is 2 (compensation steps) and the current exposure compensation step is 0.3 EV, sl@0: then the actual compensation effect will be 0.6 EV. sl@0: sl@0: @return current number compensation steps as an integer. sl@0: */ sl@0: virtual TInt ExposureCompensation() const=0; sl@0: sl@0: /** sl@0: Get the current exposure compensation value as integer steps. Positive values increase exposure times, sl@0: negative reduce exposure times. The change is not cumulative i.e. the change is stateless. sl@0: Each call assumes no previous compensation has been performed i.e. that there is a zero compensation. sl@0: sl@0: @note if retrieved value is 2 (compensation steps) and the current exposure compensation step is 0.3 EV, sl@0: then the actual compensation effect will be 0.6 EV. sl@0: sl@0: @param aExposureCompensation sl@0: Reference to the current number of compensation steps as an integer. sl@0: sl@0: @return system wide error code. sl@0: */ sl@0: virtual TInt GetExposureCompensation(TInt& aExposureCompensation) const=0; sl@0: sl@0: /** sl@0: Set the current exposure compensation value as integer steps. sl@0: Triggers a KUidECamEventCameraSettingExposureCompensation event to all MCameraObserver2 clients. sl@0: sl@0: @param aExposureCompensationSteps sl@0: a required compensation value negative value reduce the exposure time sl@0: positive increases the exposure time. sl@0: sl@0: */ sl@0: virtual void SetExposureCompensation(TInt aExposureCompensationSteps)=0; sl@0: sl@0: /** sl@0: Gets camera supported set of white balance adjustments. sl@0: sl@0: @return bitfield of all supported CCamera::TWhiteBalance values. sl@0: */ sl@0: virtual TInt SupportedWhiteBalanceModes() const=0; sl@0: sl@0: /** sl@0: Gets the current white balance value. sl@0: sl@0: @return The current white balance value. sl@0: */ sl@0: virtual CCamera::TWhiteBalance WhiteBalanceMode() const=0; sl@0: sl@0: /** sl@0: Sets the white balance adjustment of the device. sl@0: sl@0: No effect if this is not supported, see TCameraInfo::iWhiteBalanceModesSupported. sl@0: Triggers a KUidECamEventCameraSettingWhiteBalanceMode event to all MCameraObserver2 clients. sl@0: sl@0: @param aWhiteBalanceMode sl@0: The required white balance mode. sl@0: */ sl@0: virtual void SetWhiteBalanceMode(CCamera::TWhiteBalance aWhiteBalanceMode)=0; sl@0: sl@0: /** sl@0: Gets the current state for aperture and exposure lock. sl@0: sl@0: @return ETrue if aperture and exposure values are locked together, sl@0: EFalse if these are not locked. sl@0: */ sl@0: virtual TBool ApertureExposureLockOn() const=0; sl@0: sl@0: /** sl@0: Sets the current state for aperture and exposure lock. sl@0: Triggers a KUidECamEventAELock event to all MCameraObserver2 clients. sl@0: sl@0: @param aAELock sl@0: a value whether to lock exposure and aperture together. sl@0: */ sl@0: virtual void SetApertureExposureLockOn(TBool aAELock)=0; sl@0: sl@0: /** sl@0: Gets the current state for button clicking sound effect. sl@0: sl@0: @return boolean, ETrue to switch clicking sound on, EFalse sound off sl@0: */ sl@0: virtual TBool ShootClickOn() const=0; sl@0: sl@0: /** sl@0: Sets the button clicking sound effect on /off. Triggers a KUidECamEventSoundClick event sl@0: to all MCameraObserver2 clients. sl@0: sl@0: @param aShootClickOn sl@0: boolean, ETrue to switch clicking sound on, EFalse sound is switched off. sl@0: */ sl@0: virtual void SetShootClickOn(TBool aShootClickOn)=0; sl@0: sl@0: /** sl@0: Get camera supported timer values. Active only when drive mode EDriveModeTimed. sl@0: Time is in microseconds. As time interval is expected to be relatively short, sl@0: integer value is considered sufficient. sl@0: sl@0: @param aTimerIntervals sl@0: an RArray of integers which is populated to reflect the supported sl@0: timer interval steps. sl@0: sl@0: @param aInfo sl@0: an TValueInfo reference, which establishes the organization of sl@0: the returned data. sl@0: sl@0: @see TValueInfo sl@0: sl@0: @note When camera device doesn't support this, empty array should be returned and TValueInfo should be ENotActive, sl@0: and the corresponding getter/setters for this feature should not be used. sl@0: */ sl@0: virtual void GetTimerIntervalsL(RArray& aTimerIntervals, TValueInfo& aInfo) const=0; sl@0: sl@0: /** sl@0: Get current timer value. Active only when drive mode is EDriveModeTimed. sl@0: Timer resolution is in microseconds. sl@0: sl@0: @return current time interval value. sl@0: sl@0: @note In case there is an error, a negative error value from system wide error should be returned. sl@0: */ sl@0: virtual TInt TimerInterval() const=0; sl@0: sl@0: /** sl@0: Set current timer value. Active only when drive mode EDriveModeTimed. sl@0: This is the time interval (delay) in microseconds between user pressing the button and image is taken. sl@0: The setting of the value triggers a KUidECamEventCameraSettingTimerInterval event sl@0: to all MCameraObserver2 clients. sl@0: sl@0: @param aTimerInterval sl@0: The selected timer interval in microseconds sl@0: */ sl@0: virtual void SetTimerInterval(TInt aTimerInterval)=0; sl@0: sl@0: /** sl@0: Get camera supported time lapse period range. Active only when drive mode EDriveModeTimeLapse. sl@0: The time lapse is denoted as the uniform time period between consecutive frames. sl@0: sl@0: @param aTimeLapseMin sl@0: The minimum time value. sl@0: sl@0: @param aTimeLapseMax sl@0: The maximum time value. sl@0: */ sl@0: virtual void GetTimeLapsePeriodRange(TTime& aTimeLapseMin, TTime& aTimeLapseMax) const=0; sl@0: sl@0: /** sl@0: Get current time lapse value. Active only when drive mode EDriveModeTimeLapse. sl@0: The time lapse is denoted as the uniform time period sl@0: between consecutive frames and operation is configurable by its start, end and a fixed interval. sl@0: @param aStart sl@0: the start of the timelapse period sl@0: @param aEnd sl@0: the end of the timelapse period; start < end. sl@0: @param aInterval sl@0: the set parameter between two successive snapshots. sl@0: */ sl@0: virtual void GetTimeLapse(TTime& aStart, TTime& aEnd, TTime& aInterval) const=0; sl@0: sl@0: /** sl@0: Set current time lapse value. Active only when drive mode EDriveModeTimeLapse. sl@0: The time lapse is denoted as the uniform time period between consecutive frames. sl@0: Setting triggers a KUidECamEventCameraSettingTimeLapse event to all MCameraObserver2 camera clients. sl@0: sl@0: @param aStart sl@0: the start of the timelapse period. sl@0: @param aEnd sl@0: the end of the timelapse period; start < end. sl@0: @param aInterval sl@0: the set parameter between two successive snapshots. sl@0: */ sl@0: virtual void SetTimeLapse(const TTime& aStart, const TTime& aEnd, const TTime& aInterval)=0; sl@0: sl@0: /** sl@0: Get current picture orientation. sl@0: sl@0: @return a TPictureOrientation value. sl@0: */ sl@0: virtual CCamera::CCameraAdvancedSettings::TPictureOrientation PictureOrientation() const=0; sl@0: sl@0: /** sl@0: Set a new picture orientation sl@0: This triggers a KUidECamEventCameraSettingPictureOrientation event to all MCameraObserver2 clients. sl@0: sl@0: @param aOrientation sl@0: a value of TPictureOrientation denoting the new orientation. sl@0: */ sl@0: virtual void SetPictureOrientation(CCamera::CCameraAdvancedSettings::TPictureOrientation aOrientation)=0; sl@0: sl@0: /** sl@0: Get supported pixel aspect ratio. sl@0: sl@0: @return a bitfield of all supported TPixelAspectRatio values. sl@0: */ sl@0: virtual TInt SupportedPixelAspectRatios() const=0; sl@0: /** sl@0: Get current pixel aspect ratio. sl@0: sl@0: @return a TPixelAspectRatio value. sl@0: */ sl@0: virtual CCamera::CCameraAdvancedSettings::TPixelAspectRatio PixelAspectRatio() const=0; sl@0: sl@0: /** sl@0: Set a new pixel aspect ratio. sl@0: This triggers a KUidECamEventPixelAspectRatio event to all MCameraObserver2 clients. sl@0: sl@0: @param aPixelAspectRatio sl@0: a value of TPixelAspectRatio denoting the new pixel aspect ratio. sl@0: */ sl@0: virtual void SetPixelAspectRatio(CCamera::CCameraAdvancedSettings::TPixelAspectRatio aPixelAspectRatio)=0; sl@0: sl@0: /** sl@0: Get supported YUV ranges. sl@0: sl@0: @return a bitfileld of all supported TYuvRange values. sl@0: */ sl@0: virtual TInt SupportedYuvRanges() const=0; sl@0: sl@0: /** sl@0: Get the current YUV range. sl@0: sl@0: @return a TYuvRange value. sl@0: */ sl@0: virtual CCamera::CCameraAdvancedSettings::TYuvRange YuvRange() const=0; sl@0: sl@0: /** sl@0: Set a new YUV range. sl@0: This triggers a KUidECamEventYuvRange event to all MCameraObserver2 clients. sl@0: sl@0: @param aYuvRange sl@0: a value of TYuvRange denoting the new YUV range. sl@0: */ sl@0: virtual void SetYuvRange(CCamera::CCameraAdvancedSettings::TYuvRange aYuvRange)=0; sl@0: sl@0: /** sl@0: Get the number of images captured normally under EDriveModeBurst condition. sl@0: @note: due to memory or image size limitations the actual number may be less. sl@0: sl@0: @return the number of images set to capture in burst mode. sl@0: */ sl@0: virtual TInt BurstImages() const=0; sl@0: sl@0: /** sl@0: Set the number of images captured normally under EDriveModeBurst condition. sl@0: Triggers a KUidECamEventBurstImages event to all MCameraObserver2 clients. sl@0: @note: due to memory or image size limitations the actual number may be less. sl@0: sl@0: @param aImages sl@0: the number of images set to capture in burst mode. sl@0: sl@0: @note Unless reduced Latency scheme is not used (ie CaptureImageL(TInt aSequenceNumber) or PerformantStopVideoCaptureL()) sl@0: if an image/video capture is still outstanding, this method may report error KErrInUse. sl@0: */ sl@0: virtual void SetBurstImages(TInt aImages)=0; sl@0: sl@0: /** sl@0: Gets the optical zoom levels. sl@0: sl@0: @param aOpticalZoomSteps sl@0: Array to hold optical zoom values multiplied by KECamFineResolutionFactor to retain precision. sl@0: So that if zoom is not supported the array will return a single element of value sl@0: KECamFineResolutionFactor. sl@0: sl@0: @param aInfo sl@0: a reference to TValueInfo, which establishes the type of the returned data. sl@0: sl@0: @note Such approach allows for support for both linear and non-linear zoom steps. sl@0: When camera device doesn't support this, empty array should be returned and TValueInfo should be ENotActive, sl@0: and the corresponding getter/setters for this feature should not be used. sl@0: sl@0: @leave KErrNoMemory Out of memory. May also leave as a result of other system errors. sl@0: */ sl@0: virtual void GetOpticalZoomStepsL(RArray& aOpticalZoomSteps, TValueInfo& aInfo) const=0; sl@0: sl@0: /** sl@0: Gets the currently set zoom value. sl@0: sl@0: @return The currently set optical zoom value. The value is multiplied by sl@0: KECamFineResolutionFactor to retain precision. sl@0: sl@0: @note In case there is an error, a negative error value from system wide error should be returned. sl@0: */ sl@0: virtual TInt OpticalZoom() const=0; sl@0: sl@0: /** sl@0: Sets the zoom using a specific value. Triggers a KUidECamEventCameraSettingOpticalZoom sl@0: event to all MCameraObserver2 clients. sl@0: sl@0: @param aOpticalZoom sl@0: Required zoom value. sl@0: */ sl@0: virtual void SetOpticalZoom(TInt aOpticalZoom)=0; sl@0: sl@0: /** sl@0: Gets the digital zoom levels. sl@0: sl@0: @param aDigitalZoomSteps sl@0: Array to hold digital zoom values multiplied by KECamFineResolutionFactor to retain precision. sl@0: So that if zoom is not supported the array will return a single element of value sl@0: KECamFineResolutionFactor. sl@0: sl@0: @param aInfo sl@0: a reference to TValueInfo, which establishes the type of the returned data. sl@0: sl@0: @note Such approach allows for support for both linear and non-linear zoom steps. sl@0: When camera device doesn't support this, empty array should be returned and TValueInfo should be ENotActive sl@0: and the corresponding getter/setters for this feature should not be used. sl@0: sl@0: @leave KErrNoMemory Out of memory. May also leave as a result of other system errors. sl@0: */ sl@0: virtual void GetDigitalZoomStepsL(RArray& aDigitalZoomSteps, TValueInfo& aInfo) const=0; sl@0: sl@0: /** sl@0: Gets the currently set digital zoom value. sl@0: sl@0: @return The currently set digital zoom value. The value is multiplied by sl@0: KECamFineResolutionFactor to retain precision. sl@0: sl@0: @note In case there is an error, a negative error value from system wide error should be returned. sl@0: */ sl@0: virtual TInt DigitalZoom() const=0; sl@0: sl@0: /** sl@0: Sets the digital zoom value. Triggers a KUidECamEventCameraSettingDigitalZoom event sl@0: to all MCameraObserver2 clients. sl@0: sl@0: @param aDigitalZoom sl@0: Required zoom value. sl@0: sl@0: */ sl@0: virtual void SetDigitalZoom(TInt aDigitalZoom)=0; sl@0: sl@0: /** sl@0: Checks whether exposure value is locked or not. sl@0: sl@0: @return whether exposure value is locked or not. sl@0: ETrue if locked, EFalse otherwise. sl@0: */ sl@0: virtual TBool ExposureLockOn() const=0; sl@0: sl@0: /** sl@0: Sets exposure lock state. Triggers a KUidECamEventCameraSettingExposureLock event sl@0: to all MCameraObserver2 clients. sl@0: sl@0: @param aState sl@0: Required new state. sl@0: */ sl@0: virtual void SetExposureLockOn(TBool aState)=0; sl@0: sl@0: /** sl@0: Checks whether AutoFocus value is locked or not. sl@0: sl@0: @return whether AutoFocus value is locked or not. sl@0: ETrue if locked, EFalse otherwise. sl@0: */ sl@0: virtual TBool AutoFocusLockOn() const=0; sl@0: sl@0: /** sl@0: Sets autofocus lock state. Triggers a KUidECamEventCameraSettingAutoFocusLock event sl@0: to all MCameraObserver2 clients. sl@0: sl@0: @param aState sl@0: Required new state. sl@0: */ sl@0: virtual void SetAutoFocusLockOn(TBool aState)=0; sl@0: sl@0: /** sl@0: Gets an array of all the advanced settings parameters supported by the device. sl@0: These are identified by UIDs and relate to the set or subset of it of all defined settings UIDs. sl@0: sl@0: @param aSettings sl@0: An empty array of TUids which would be populated by the implementation with sl@0: the UIDs of the supported parameters. If the array is empty on return, sl@0: the camera does not support any settings. sl@0: sl@0: @leave KErrNoMemory Out of memory. May also leave as a result of other system errors. sl@0: */ sl@0: virtual void GetSupportedSettingsL(RArray& aSettings) const=0; sl@0: sl@0: /** sl@0: Gets an array of all the advanced settings parameters currently active on the device. sl@0: These are identified by UIDs and relate to the set or subset of it of all supported sl@0: settings UIDs. sl@0: sl@0: @param aActiveSettings sl@0: An empty array of TUids which would be populated by the implementation with sl@0: the active setting UIDs. If the array is empty on return, sl@0: the camera does not support any settings. sl@0: sl@0: @leave KErrNoMemory Out of memory. May also leave as a result of other system errors. sl@0: */ sl@0: virtual void GetActiveSettingsL(RArray& aActiveSettings) const=0; sl@0: sl@0: /** sl@0: Gets an array of all the advanced settings parameters currently disabled on the device. sl@0: These are identified by UIDs and relate to the set or subset of it of all supported sl@0: settings UIDs. sl@0: sl@0: @param aDisabledSettings sl@0: An empty array of TUids which would be populated by the implementation with sl@0: the disabled setting UIDs. If the array is empty on return, sl@0: the camera does not support any settings. sl@0: sl@0: @leave KErrNoMemory Out of memory. May also leave as a result of other system errors. sl@0: */ sl@0: virtual void GetDisabledSettingsL(RArray& aDisabledSettings) const=0; sl@0: sl@0: /** sl@0: Retrieves the state for automatic size selection option. Default value is EFalse. sl@0: sl@0: @return ETrue if the automatic selection is switched on. Default value is EFalse. sl@0: */ sl@0: virtual TBool AutomaticSizeSelectionChangeOn() const=0; sl@0: sl@0: /** sl@0: Allow camera to proactively change image size due external factors. sl@0: Default value is EFalse. Triggers a KUidECamEventCameraSettingAutomaticSizeSelection event notification. sl@0: @param aSetOn sl@0: whether the option should be switched on sl@0: */ sl@0: virtual void SetAutomaticSizeSelectionChangeOn(TBool aSetOn)=0; sl@0: sl@0: /** sl@0: Retrieves the timeout values camera supported by the camera when in continuous auto focus mode. sl@0: Timeouts are in microseconds. sl@0: sl@0: @param aTimeouts sl@0: An empty array to hold timeout values. sl@0: sl@0: @param aInfo sl@0: a reference to TValueInfo, which establishes the type of the returned data. sl@0: sl@0: @leave KErrNoMemory Out of memory. May also leave as a result of other system errors. sl@0: sl@0: @note When camera device doesn't support this, empty array should be returned and TValueInfo should be ENotActive sl@0: and the corresponding getter/setters for this feature should not be used. sl@0: */ sl@0: virtual void GetSupportedContinuousAutoFocusTimeoutsL(RArray& aTimeouts, TValueInfo& aInfo) const=0; sl@0: sl@0: /** sl@0: Gets the current value for continuous autofocus timeout. Timeouts are in microseconds. sl@0: sl@0: @return the timeout value in microseconds. sl@0: sl@0: @note In case there is an error, a negative error value from system wide error should be returned. sl@0: */ sl@0: virtual TInt ContinuousAutoFocusTimeout() const=0; sl@0: sl@0: /** sl@0: Sets new value for continuous autofocus timeout. Timeouts are in microseconds. sl@0: All MCameraObserver2 clients of the camera receive a sl@0: KUidECamEventCameraSettingsContinuousAutoFocusTimeout sl@0: event notification when timeout value is changed. sl@0: sl@0: @param aTimeout sl@0: a new timeout value in microseconds. sl@0: */ sl@0: virtual void SetContinuousAutoFocusTimeout(TInt aTimeout)=0; sl@0: sl@0: /** sl@0: Gets all supported stabilization effects on the device. sl@0: sl@0: @return an integer - a bitfield of all supported TStabilizationEffect values. sl@0: */ sl@0: virtual TInt SupportedStabilizationEffects() const=0; sl@0: sl@0: /** sl@0: Gets current active stabilization effect on the device. sl@0: sl@0: @return a TStabilizationEffect value. sl@0: */ sl@0: virtual CCamera::CCameraAdvancedSettings::TStabilizationEffect StabilizationEffect() const=0; sl@0: sl@0: /** sl@0: Sets a specific stabilization effect on the device. sl@0: When a value is set, MCameraObserver2 clients for that camera will receive a sl@0: KUidECamEventCameraSettingsStabilizationEffect event notification. sl@0: sl@0: @param aEffect sl@0: stabilization effect selection of type TStabilizationEffect. sl@0: */ sl@0: virtual void SetStabilizationEffect(CCamera::CCameraAdvancedSettings::TStabilizationEffect aEffect)=0; sl@0: sl@0: /** sl@0: Gets all supported stabilization algorithm values on the device. sl@0: sl@0: @return an integer - a bitfield of all supported TStabilizationAlgorithmComplexity values. sl@0: */ sl@0: virtual TInt SupportedStabilizationComplexityValues() const=0; sl@0: sl@0: /** sl@0: Gets current active stabilization algorithm selection on the device. sl@0: sl@0: @return a TStabilizationAlgorithmComplexity value. sl@0: */ sl@0: virtual CCamera::CCameraAdvancedSettings::TStabilizationAlgorithmComplexity StabilizationComplexity() const=0; sl@0: sl@0: /** sl@0: Sets a specific stabilization algorithm on the device. sl@0: When a value is set, MCameraObserver2 clients for that camera will receive a sl@0: KUidECamEventSettingsStabilizationAlgorithmComplexity event notification. sl@0: sl@0: @param aComplexity sl@0: stabilization effect selection of type TStabilizationAlgorithmComplexity. sl@0: */ sl@0: virtual void SetStabilizationComplexity(CCamera::CCameraAdvancedSettings::TStabilizationAlgorithmComplexity aComplexity)=0; sl@0: sl@0: /** sl@0: Gets the units in which the white balance is measured on the device. The methods used to get sl@0: or set these differ depending on the supported unit type. sl@0: It is expected that a device will support only a single type or none. sl@0: sl@0: @return a value of TWBUnits type. sl@0: */ sl@0: virtual CCamera::CCameraAdvancedSettings::TWBUnits SupportedWBUnits() const=0; sl@0: sl@0: /** sl@0: Get white balance value represented as a RGB triplet (TRgb) sl@0: sl@0: @param aValue sl@0: a reference to TRgb object which will contain the current white balance. sl@0: */ sl@0: virtual void GetWBRgbValue(TRgb& aValue) const=0; sl@0: sl@0: /** sl@0: Set white balance value using a RGB triplet (TRgb). sl@0: Change in value causes an event notification KUidECamEventCameraSettingsWBValue sl@0: to be sent to all MCameraObserver2 clients of this camera. sl@0: sl@0: @param aValue sl@0: a const reference to TRgb object, which contains the new white balance. sl@0: */ sl@0: virtual void SetWBRgbValue(const TRgb& aValue)=0; sl@0: sl@0: /** sl@0: Get the white balance values, as temperature measured in Kelvin, supported on the device. sl@0: sl@0: @param aWBColorTemperatures sl@0: A reference to an empty array of TInt which would be populated by the implementation with sl@0: the specific supported values. sl@0: sl@0: @param aInfo sl@0: a reference to TValueInfo, which establishes the type of the returned data. sl@0: sl@0: @note When camera device doesn't support this, empty array should be returned and TValueInfo should be ENotActive, sl@0: and the corresponding getter/setters for this feature should not be used. sl@0: */ sl@0: virtual void GetWBSupportedColorTemperaturesL(RArray& aWBColorTemperatures, TValueInfo& aInfo) const=0; sl@0: sl@0: /** sl@0: Get the white balance as a temperature in Kelvin. sl@0: sl@0: @return current white balance value as a temperature in Kelvins. sl@0: sl@0: @note In case there is an error, a negative error value from system wide error should be returned. sl@0: */ sl@0: virtual TInt WBColorTemperature() const=0; sl@0: sl@0: /** sl@0: Set white balance value using a temperature, measured in Kelvin. sl@0: Change in value causes an event notification KUidECamEventCameraSettingsWBValue sl@0: to be sent to all MCameraObserver2 clients of this camera. sl@0: sl@0: @param aWBColorTemperature sl@0: the new white balance value in Kelvin. sl@0: */ sl@0: virtual void SetWBColorTemperature(TInt aWBColorTemperature)=0; sl@0: }; sl@0: sl@0: sl@0: /** sl@0: Mixin class for implementation by providers of some enhanced functionalities of the sl@0: Advanced Settings Camera Extension API. sl@0: sl@0: @publishedPartner sl@0: @released sl@0: */ sl@0: class MCameraAdvancedSettings2 sl@0: { sl@0: sl@0: public: sl@0: /** sl@0: Releases the interface. sl@0: */ sl@0: virtual void Release()=0; sl@0: sl@0: /** sl@0: Checks whether the flash is ready. sl@0: sl@0: @param aReady sl@0: A reference to a boolean set by the implementation to ETrue if the flash is ready, sl@0: EFalse otherwise. sl@0: sl@0: @return KErrNotSupported if the implementation of this method is not supported. sl@0: */ sl@0: virtual TInt IsFlashReady(TBool& aReady) const=0; sl@0: sl@0: /** sl@0: Get the number of focus steps for current focus mode. sl@0: sl@0: @param aFocusModeSteps sl@0: A reference to an empty array of TInt which would be populated by the implementation with sl@0: the specific supported values. sl@0: sl@0: @param aInfo sl@0: a reference to TValueInfo, which establishes the type of the returned data. sl@0: sl@0: @leave KErrNotSupported if the implementation of this method is not supported. May also leave as a result of other system errors. sl@0: sl@0: @note When camera device doesn't support this, empty array should be returned and TValueInfo should be ENotActive, sl@0: and the corresponding getter/setters for this feature should not be used. sl@0: */ sl@0: virtual void GetCurrentFocusModeStepsL(RArray& aFocusModeSteps, TValueInfo& aInfo) const=0; sl@0: }; sl@0: sl@0: /** sl@0: Mixin class for implementation by providers of 'some of the enhanced functionalities' of the sl@0: Advanced Settings Camera Extension API. sl@0: sl@0: @publishedPartner sl@0: @released sl@0: */ sl@0: class MCameraAdvancedSettings3 sl@0: { sl@0: sl@0: public: sl@0: /** sl@0: Releases the interface. sl@0: */ sl@0: virtual void Release()=0; sl@0: sl@0: /** sl@0: Gets all supported ISO types on the device. sl@0: sl@0: @param aSupportedISORateTypes sl@0: A reference to an integer which is a bitfield of all supported TISORateType values. sl@0: EISONone means feature is not supported. sl@0: sl@0: @leave May leave as a result of some error. sl@0: */ sl@0: virtual void GetSupportedISORateTypeL(TInt& aSupportedISORateTypes) const=0; sl@0: sl@0: /** sl@0: Set the type of ISO rate and the exposure parameter or value specified. sl@0: sl@0: @param aISORateType sl@0: The type of ISO rate to be set. sl@0: sl@0: @param aParam sl@0: Depending on the value of aISORateType, possible values of aParam are one of the following:- sl@0: The value of ISO rate to be used in case of manual type of ISO rate (EISOManual). sl@0: OR sl@0: Redundant parameter in case of unprioritised type of auto ISO (EISOAutoUnPrioritised). It is left to the camera hardware/firmware sl@0: to decide how the ISO rate is selected. No priority regarding exposure is specified. sl@0: OR sl@0: Highest ISO rate to be picked by the camera while deciding for the best exposure in case of ISO prioritised sl@0: type of auto ISO (EISOAutoISOPrioritised). ISO rate closest to this (and lower) may be used so that best possible exposure is achieved. sl@0: OR sl@0: Slowest shutter speed to be picked by the camera while deciding for the best exposure in case of shutter speed sl@0: prioritised type of auto ISO (EISOAutoShutterSpeedPrioritised). After using this shutter speed, ISO rate is chosen by the camera to achieve sl@0: proper exposure. Shutter speed closest to this (and faster) may be used so that best possible exposure is achieved. sl@0: OR sl@0: Minimum aperture opening (deepest depth of field) to be picked by the camera while deciding sl@0: for the best exposure in case of aperture prioritised type of auto ISO (EISOAutoAperturePrioritised). After using this aperture opening, ISO sl@0: rate is chosen by the camera to achieve proper exposure. Aperture opening closest to this (and wider) may be sl@0: used to achieve best possible exposure. sl@0: sl@0: @note Triggers KUidECamEventCameraSettingIsoRateType to all MCameraObserver2 clients of the camera. sl@0: Uses HandleEvent to report the result or any possible error. sl@0: */ sl@0: virtual void SetISORate(CCamera::CCameraAdvancedSettings::TISORateType aISORateType, TInt aParam)=0; sl@0: sl@0: /** sl@0: Get the type of ISO rate, exposure parameter and value set. sl@0: sl@0: @param aISORateType sl@0: A reference to the type of ISO rate set. EISONone means feature is not supported. sl@0: sl@0: @param aParam sl@0: Depending on the value of aISORateType, possible values of aParam are one of the following:- sl@0: A reference to the redundant parameter in case of manual type of ISO rate(EISOManual) sl@0: OR sl@0: A reference to the redundant parameter in case of unprioritised type of auto ISO(EISOAutoUnPrioritised) sl@0: OR sl@0: A reference to the highest ISO rate that may be picked up in case of ISO prioritised type of auto ISO(EISOAutoISOPrioritised) sl@0: OR sl@0: A reference to the slowest shutter speed that may be picked up in case of shutter speed prioritised type of auto ISO(EISOAutoShutterSpeedPrioritised) sl@0: OR sl@0: A reference to the minimum aperture opening that may be picked up in case of aperture prioritised type of auto ISO(EISOAutoAperturePrioritised) sl@0: sl@0: @param aISORate sl@0: A reference to the value of ISO rate currently being used, if camera device is capable of doing that. sl@0: Otherwise KErrNotFound should be retrieved indicating the incapability of camera. sl@0: sl@0: @leave May leave as a result of some other error. sl@0: sl@0: @note Since camera hardware may be incapable of providing the actual ISO value when one of the auto ISO type has sl@0: been set, then, in these cases, the 3rd argument should be retrieved as KErrNotFound. sl@0: */ sl@0: virtual void GetISORateL(CCamera::CCameraAdvancedSettings::TISORateType& aISORateType, TInt& aParam, TInt& aISORate) const=0; sl@0: sl@0: /** sl@0: Provide reference screen for orientation information. sl@0: sl@0: @param aScreenDevice sl@0: A reference to the screen device. sl@0: sl@0: @note For consistency, when DSA view finder runs, it also provides a screen device. So, the DSA view finder's internal implementation sl@0: should call this method with the screen device passed ( 2nd argument to DSA view finder) to avoid disparity in knowing the refeence screen. sl@0: Triggers KUidECamEventCameraSettingReferenceScreen to all MCameraObserver2 clients of the camera. sl@0: Uses HandleEvent to report the result or any possible error. sl@0: */ sl@0: virtual void SetReferenceScreen(CWsScreenDevice& aScreenDevice)=0; sl@0: sl@0: /** sl@0: Get the digital zoom steps for the still image when a particular image format and size are specified. sl@0: sl@0: @param aDigitalZoomSteps sl@0: A reference to an empty array of TInt to hold digital zoom step values for still image and multiplied by sl@0: KECamFineResolutionFactor to retain precision. If list returned is empty, this means feature is not supported. sl@0: sl@0: @param aInfo sl@0: A reference to TValueInfo, which establishes the type of the returned data. sl@0: sl@0: @param aSizeIndex sl@0: A value providing the size index which must be in the range 0 to TCameraInfo::iNumImageSizesSupported-1 sl@0: inclusive. sl@0: sl@0: @param aFormat sl@0: A value providing the image format which must be one of the formats supported. (see sl@0: TCameraInfo::iImageFormatsSupported) sl@0: sl@0: @param aIsInfluencePossible sl@0: If True, signals that digital zoom step values may be influenced by some hardware factor like stabilization etc. sl@0: If False, no influence possible. sl@0: sl@0: @leave KErrNoMemory Out of memory. May leave with any other error code. sl@0: sl@0: @note This method retrieves the supported digital zoom steps irrespective of any stabilization influence. sl@0: In case of stabilization etc. influence, the setting function should set the best possible digital zoom value sl@0: and return error KErrECamDigitalZoomLimited along with dedicated event. sl@0: sl@0: @note When camera device doesn't support this feature, empty array should be returned and TValueInfo should be ENotActive, sl@0: and the corresponding getter/setters for this feature should not be used. sl@0: sl@0: @note Implementation recommendation for old methods which are used to retrieve the supported digital zoom values, is sl@0: to provide only safe values suitable in every cases. sl@0: */ sl@0: virtual void GetDigitalZoomStepsForStillL(RArray& aDigitalZoomSteps, TValueInfo& aInfo, TInt aSizeIndex, sl@0: CCamera::TFormat aFormat, TBool& aIsInfluencePossible) const=0; sl@0: sl@0: /** sl@0: Get the digital zoom steps for the video when a particular video frame format, size and rate are specified. sl@0: sl@0: @param aDigitalZoomSteps sl@0: A reference to an empty array of TInt to hold digital zoom step values for video and multiplied by sl@0: KECamFineResolutionFactor to retain precision. If list returned is empty, this means feature is not supported. sl@0: sl@0: @param aInfo sl@0: A reference to TValueInfo, which establishes the type of the returned data. sl@0: sl@0: @param aFrameRateIndex sl@0: A value providing the rate index must be in the range 0 to TCameraInfo::iNumVideoFrameRatesSupported-1 sl@0: inclusive. sl@0: sl@0: @param aSizeIndex sl@0: A value providing the size index which must be in the range 0 to TCameraInfo::iNumVideoFrameSizesSupported-1 sl@0: inclusive. sl@0: sl@0: @param aFormat sl@0: A value providing the format which must be one of the video frame formats supported. (see sl@0: TCameraInfo::iVideoFrameFormatsSupported) sl@0: sl@0: @param aIsInfluencePossible sl@0: If True, signals that digital zoom step values may be influenced by some hardware factor like stabilization etc. sl@0: If False, no influence possible. sl@0: sl@0: @param aExposure sl@0: The exposure mode. sl@0: sl@0: @leave KErrNoMemory Out of memory. May leave with any other error code. sl@0: sl@0: @note This method retrieves the supported digital zoom steps irrespective of any stabilization influence. sl@0: In case of stabilization etc. influence, the setting function should set the best possible digital zoom value sl@0: and return error KErrECamDigitalZoomLimited along with dedicated event. sl@0: sl@0: @note When camera device doesn't support this, empty array should be returned and TValueInfo should be ENotActive, sl@0: and the corresponding getter/setters for this feature should not be used. sl@0: sl@0: @note Implementation recommendation for old methods which are used to retrieve the supported digital zoom values, is sl@0: to provide only safe values suitable in every cases. sl@0: */ sl@0: virtual void GetDigitalZoomStepsForVideoL(RArray& aDigitalZoomSteps, TValueInfo& aInfo, TInt aFrameRateIndex, sl@0: TInt aSizeIndex, CCamera::TFormat aFormat, TBool& aIsInfluencePossible, CCamera::TExposure aExposure) const=0; sl@0: /** sl@0: Retrieves the pre capture warnings supported for a given camera mode sl@0: sl@0: @param aCameraMode sl@0: Desired camera mode for which the supported pre capture warnings may be retrieved. sl@0: sl@0: @param aPreCaptureWarningSupported sl@0: A bitfield of all supported TPreCaptureWarning to be issued in the given camera mode. sl@0: If no pre capture warning supported for the given camera mode, EPCWNone is retrieved. sl@0: sl@0: @leave May leave with any error. sl@0: */ sl@0: virtual void GetPreCaptureWarningSupportedL(CCamera::CCameraAdvancedSettings::TCameraMode aCameraMode, TInt& aPreCaptureWarningSupported) const=0; sl@0: sl@0: /** sl@0: Subscribe in order to receive event which indicates warnings on occurrence of some specific unfavourable sl@0: conditions before image/video capture. sl@0: sl@0: @param aPreCaptureWarning sl@0: A bitfield specifying all the TPreCaptureWarning types to be subscribed for. sl@0: sl@0: @note When any of the subscribed warnings (represented by aPreCaptureWarning) get generated by the camera device, sl@0: event KUidECamEventCameraSettingPreCaptureWarning is issued. TECAMEvent2 class should be used in order to sl@0: provide the status of every PreCaptureWarning. sl@0: sl@0: @leave May leave with any error. sl@0: */ sl@0: virtual void SubscribeToPreCaptureWarningL(TInt aPreCaptureWarning)=0; sl@0: sl@0: /** sl@0: Unsubscribe so that further events are not received when warnings get issued. sl@0: sl@0: @leave May leave with any error. sl@0: */ sl@0: virtual void UnSubscribePreCaptureWarningL()=0; sl@0: sl@0: /** sl@0: Get the status of every warnings defined. sl@0: sl@0: @param aPreCaptureWarning sl@0: A reference to the integer - bitfield representing all the TPreCaptureWarning types issued. sl@0: sl@0: @leave May leave with any error. sl@0: sl@0: @note This method may be called after receiving the event KUidECamEventCameraSettingPreCaptureWarning OR sl@0: user may also opt for polling on this. sl@0: */ sl@0: virtual void GetPreCaptureWarningL(TInt& aPreCaptureWarning) const=0; sl@0: sl@0: /** sl@0: Retrieve the different supported AF assistant light. sl@0: sl@0: @param aSupportedAFAssistantLight sl@0: A reference to integer - bitfield indicating the supported AF assistant light. sl@0: If EAFAssistantLightOff, this means AF assistant light is not supported. sl@0: If EAFAssistantLightManualOn, then manual AF assistant light is supported. sl@0: If EAFAssistantLightAuto, auto assistant light is supported. sl@0: If combination of EAFAssistantLightManualOn||EAFAssistantLightAuto , then both manual and Auto assistant light are supported. sl@0: sl@0: @leave May leave with any error. sl@0: */ sl@0: virtual void GetSupportedAFAssistantLightL(TInt& aSupportedAFAssistantLight) const=0; sl@0: sl@0: /** sl@0: Get the type ( and state) of AF assistant light currently set. sl@0: sl@0: @param aAFAssistantLight sl@0: A reference to AF assistant light. sl@0: If EAFAssistantLightOff, then manual and auto assistant light are switched off. sl@0: If EAFAssistantLightManualOn, manual assistant light is switched on. sl@0: If EAFAssistantLightAuto, AF assistant light is set to auto. sl@0: sl@0: @leave May leave with any error. sl@0: */ sl@0: virtual void GetAFAssistantLightL(CCamera::CCameraAdvancedSettings::TAFAssistantLight& aAFAssistantLight) const=0; sl@0: sl@0: /** sl@0: Set a particular type ( and state) of AF assistant light. sl@0: sl@0: @param aAFAssistantLight sl@0: Type of AF assistant light to be set. sl@0: If EAFAssistantLightOff, switch off the manual or auto assistant light. sl@0: If EAFAssistantLightManualOn, manually switch on the assistant light. sl@0: If EAFAssistantLightAuto, camera will automatically switch it on/off as per the conditions. sl@0: sl@0: @note Triggers KUidECamEventCameraSettingAFAssistantLight to all MCameraObserver2 clients of the camera. sl@0: Uses HandleEvent to report the result or any possible error. sl@0: */ sl@0: virtual void SetAFAssistantLight(CCamera::CCameraAdvancedSettings::TAFAssistantLight aAFAssistantLight)=0; sl@0: }; sl@0: sl@0: /** sl@0: Mixin class for implementation by providers of 'advanced camera feature extensions' of the sl@0: Advanced Settings Camera Extension API. sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class MCameraAdvancedSettings4 sl@0: { sl@0: sl@0: public: sl@0: /** sl@0: Releases the interface. sl@0: */ sl@0: virtual void Release()=0; sl@0: sl@0: /** sl@0: Retrieves the supported continuous zoom types. sl@0: sl@0: @param aSupportedContinuousZoomType sl@0: Retrieves a bitfield of TUint which indicates the supported continuous zoom type as given by sl@0: CCamera::CCameraAdvancedSettings::TContinuousZoomType sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void GetSupportedContinuousZoomTypeL(TUint& aSupportedContinuousZoomType) const=0; sl@0: sl@0: /** sl@0: Retrieves the minimum, current and maximum focal length in millimeters. This information is useful to find out sl@0: which zoom directions can be used on the fly. sl@0: sl@0: @param aMinFocalLength sl@0: Minimum focal length if positive. sl@0: Error value if negative (for example, KErrNotFound if information not available). sl@0: sl@0: @param aCurrentFocalLength sl@0: Current focal length if positive. sl@0: Error value if negative (for example, KErrNotFound if information not available). sl@0: sl@0: @param aMaxFocalLength sl@0: Maximum focal length if positive. sl@0: Error value if negative (for example, KErrNotFound if information not available). sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void GetFocalLengthInfoL(TInt& aMinFocalLength, TInt& aCurrentFocalLength, TInt& aMaxFocalLength) const=0; sl@0: sl@0: /** sl@0: Retrieves the total number of operation preferences supported by the implementation. Operation preferences are sl@0: specified in terms of performance vectors, that is, speed, quality, low memory consumption and low power consumption. sl@0: sl@0: @param aNumOperationPreferenceSupported sl@0: Retrieves the number of operation preferences supported. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void GetNumOperationPreferenceL(TUint& aNumOperationPreferenceSupported) const=0; sl@0: sl@0: /** sl@0: Enumerate the available operation preferences. sl@0: sl@0: @param aOperationPreferenceIndex sl@0: A particular index which represents an operation preference. The level of different performance vectors may be known sl@0: through other arguments. This varies from 0 to n-1, where n is given by GetNumOperationPreferenceL(n). sl@0: sl@0: @param aSpeedLevel sl@0: A TPerformanceLevel which specifies the speed level related to the index aOperationPreferenceIndex. sl@0: sl@0: @param aQualityLevel sl@0: A TPerformanceLevel which specifies the quality level related to the index aOperationPreferenceIndex. sl@0: sl@0: @param aLowMemoryConsumptionLevel sl@0: A TPerformanceLevel which specifies the low memory consumption level related to the index aOperationPreferenceIndex. sl@0: The lower the memory consumption, the higher the level. sl@0: sl@0: @param aLowPowerConsumptionLevel sl@0: A TPerformanceLevel which specifies the low power consumption level related to the index aOperationPreferenceIndex. sl@0: The lower the power consumption, the higher the level. sl@0: sl@0: @note It is up to the implementation how the performance levels are achieved. For example, shutter opening, JPEQ quality sl@0: and parallel buffering in case of streamed image output can be controlled in order to provide the desired sl@0: performance. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void EnumerateOperationPreferenceL(TUint aOperationPreferenceIndex, CCamera::CCameraAdvancedSettings:: sl@0: TPerformanceLevel& aSpeedLevel, CCamera::CCameraAdvancedSettings::TPerformanceLevel& aQualityLevel, sl@0: CCamera::CCameraAdvancedSettings::TPerformanceLevel& aLowMemoryConsumptionLevel, sl@0: CCamera::CCameraAdvancedSettings::TPerformanceLevel& aLowPowerConsumptionLevel) const=0; sl@0: sl@0: /** sl@0: Set a particular operation preference. sl@0: sl@0: @param aOperationPreferenceIndex sl@0: An index which reveals a set of levels to be used for performance vectors, that is, speed, quality, low memory sl@0: consumption and low power consumption. sl@0: sl@0: @note Event KUidECamEventCameraSettingOperationPreference is used to notify clients about setting an operation preference. sl@0: */ sl@0: virtual void SetOperationPreference(TUint aOperationPreferenceIndex)=0; sl@0: sl@0: /** sl@0: Get the current operation preference being used. sl@0: sl@0: @param aOperationPreferenceIndex sl@0: Currently used operation preference index. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void GetOperationPreferenceL(TInt& aOperationPreferenceIndex) const=0; sl@0: sl@0: /** sl@0: Retrieves the event uids which the underlying implementation supports. The client may use these events notifications as sl@0: milestones in their application. sl@0: sl@0: @param aSupportedEvents sl@0: Retrieves as array of TUid. Every member of the array represents a supported event uid. These events are ECAM sl@0: component wide. sl@0: sl@0: @leave May leave with any error code. sl@0: sl@0: @note This method may retrieve unrecognized events which may be introduced later on. sl@0: */ sl@0: virtual void GetSupportedEventsL(RArray& aSupportedEvents) const=0; sl@0: sl@0: /** sl@0: Retrieves the indirect feature changes which occur because of a particular requested feature change. sl@0: Since the camera setting operation is asynchronous in nature, changing a particular camera feature, in certain cases, sl@0: involves indirectly changing another feature. In order to notify the ECam client about this indirect feature change, sl@0: event KUidECamEvent2IndirectFeatureChange is issued. After this notification, the client may use this method to retrieve sl@0: the full list of indirect feature changes. sl@0: sl@0: @param aRequestedSetting sl@0: The actual requested feature change. This uid is supposed to be ECAM component wide and not restricted to sl@0: advanced camera settings. sl@0: sl@0: @param aIndirectFeatureChanges sl@0: An array of uids which retrieves the indirect feature changes. These uids are supposed to be ECAM component wide sl@0: and not restricted to advanced camera settings. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void GetIndirectFeatureChangesL(TUid aRequestedSetting, RArray& aIndirectFeatureChanges) const=0; sl@0: sl@0: /** sl@0: Retrieves the concrete factory handle for the continuous zoom implementation. sl@0: sl@0: @param aImplFactoryPtr sl@0: The concrete factory handle for the continuous zoom implementation. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void CreateContinuousZoomImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const=0; sl@0: }; sl@0: sl@0: /** sl@0: Mixin class for implementation by providers of the Presets Camera Extension API. sl@0: sl@0: This API is used to simplify user - camera interaction by allowing simultaneous sl@0: setting of various advanced camera hardware settings using a single parameter. sl@0: sl@0: A preset is identified by a single UID and relates to a known predefined outcome. sl@0: For example the 'Night' Preset is used to set the camera into a night mode sl@0: so that the user can take photos in dark conditions. sl@0: sl@0: The settings associated with a particular preset and their specific values and ranges sl@0: are specific to each type of camera hardware and are therefore not defined by the API. sl@0: sl@0: @publishedPartner sl@0: @released sl@0: */ sl@0: class MCameraPresets sl@0: { sl@0: sl@0: public: sl@0: sl@0: /** sl@0: Releases the interface. sl@0: */ sl@0: virtual void Release()=0; sl@0: sl@0: /** sl@0: Gets the presets supported by the device. These are identified by UIDs sl@0: and relate to a known expected outcome. sl@0: The settings associated with a particular preset and their specific values and ranges are sl@0: specific to each type of camera hardware and are therefore not defined by the API. sl@0: sl@0: @param aPresets sl@0: An empty array of TUids which the API implementation must populate with the specific supported preset values. If the array is empty on return, sl@0: the camera does not support presets. sl@0: sl@0: @leave KErrNoMemory Out of memory. May also leave as a result of other system errors. sl@0: */ sl@0: virtual void GetSupportedPresetsL(RArray& aPresets) const=0; sl@0: sl@0: /** sl@0: Sets a specific preset supported by the camera. sl@0: All clients, implementing the MCameraObserver2 interface will receive a notification sl@0: with the UID of the specific preset, signalling a new preset has been selected. sl@0: sl@0: @param aPreset sl@0: The UID of the new requested preset. sl@0: sl@0: @note A particular preset is only active if it was established (through a call to sl@0: MCameraPresets ::SetPreset()) as the most recent operation affecting camera settings. sl@0: If some other camera setting is changed after calling MCameraPresets ::SetPreset() sl@0: then the preset is no longer active. sl@0: */ sl@0: virtual void SetPreset(TUid aPreset)=0; sl@0: sl@0: /** sl@0: Gets the preset that was established by the last call to MCameraPresets ::SetPreset() sl@0: sl@0: @return The UID of the preset. If there is no active preset then the sl@0: returned value is KNullUid. sl@0: sl@0: @note A particular preset is only active if it was established (through a call to sl@0: MCameraPresets ::SetPreset()) as the most recent operation affecting camera settings. sl@0: If some other camera setting is changed after calling MCameraPresets ::SetPreset() sl@0: then the preset is no longer active. sl@0: */ sl@0: virtual TUid Preset() const=0; sl@0: sl@0: /** sl@0: Gets all settings affected by the current preset. All settings that are related to sl@0: the preset in question will be included in the list, including any whose values sl@0: have not changed as a result of applying the preset. sl@0: sl@0: @param aSettings sl@0: An empty array of TUids which the API implementation must populate with the specific settings. sl@0: sl@0: @leave KErrNoMemory Out of memory. May also leave as a result of other system errors. sl@0: */ sl@0: virtual void GetAffectedSettingsL(RArray& aSettings) const=0; sl@0: sl@0: /** sl@0: Gets all settings associated with a specific preset. This function does not require a preset to have been set prior the call as in sl@0: GetAffectedSettingsL() function. sl@0: The returned array will contain the UIDs of all settings which are associated and sl@0: potentially affected by that particular preset. sl@0: sl@0: @param aPreset sl@0: the UID of the preset in question. sl@0: sl@0: @param aSettings sl@0: An empty array of TUids which would be populated by the implementation with sl@0: the UIDs of the settings associated with that preset. sl@0: sl@0: @leave KErrArgument if the preset UID is not recognised sl@0: @leave KErrNoMemory Out of memory. May also leave as a result of other system errors. sl@0: */ sl@0: virtual void GetAssociatedSettingsL(TUid aPreset, RArray& aSettings) const=0; sl@0: }; sl@0: sl@0: /** sl@0: Mixin class for implementation of extra methods of the Presets Camera Extension API. sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class MCameraPresets2 sl@0: { sl@0: sl@0: public: sl@0: sl@0: /** sl@0: Releases the interface. sl@0: */ sl@0: virtual void Release()=0; sl@0: sl@0: /** sl@0: Retrieves those settings for which ranges have been restricted in order to let the camera work in a given preset mode. sl@0: The client will be notified of range restrictions through uid KUidECamEventRangeRestricted. After receiving this sl@0: notification, the client may use this method to retrieve those settings whose ranges have been restricted. sl@0: sl@0: @param aRangeRestrictedSettings sl@0: An array of uid which represents those settings whose ranges have been restricted. These settings are ECam sl@0: component wide. For each of the settings, the client can query about the restricted range as per the usual way. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void GetRangeRestrictedSettingsL(RArray& aRangeRestrictedSettings) const=0; sl@0: sl@0: /** sl@0: Retrieves those settings which have been restricted (settings no longer supported) in order to let the camera work in a given preset mode. sl@0: The client will be notified of feature restrictions through uid KUidECamEventFeatureRestricted. After receiving this sl@0: notification, the client may use this method to retrieve these settings. sl@0: sl@0: @param aFeatureRestrictedSettings sl@0: An array of uid which represents those settings which have been restricted. These settings are ECam sl@0: component wide. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void GetFeatureRestrictedSettingsL(RArray& aFeatureRestrictedSettings) const=0; sl@0: sl@0: /** sl@0: Retrieves information about whether the preset unlock feature is supported or not. Unlocking the preset helps in making some sl@0: further changes in the setting after the camera works in a particular preset mode sl@0: sl@0: @param aUnlockSupported sl@0: ETrue indicates preset unlock feature is supported. sl@0: EFalse indicates preset lock feature is not supported. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void IsPresetUnlockSupportedL(TBool& aUnlockSupported) const=0; sl@0: sl@0: /** sl@0: Locks the preset for any further setting changes. sl@0: sl@0: @note Event KUidECamEventPresetLocked is used to notify clients that the preset has been locked. sl@0: */ sl@0: virtual void LockPreset()=0; sl@0: sl@0: /** sl@0: Unlocks the preset to apply further setting changes. sl@0: sl@0: @note Event KUidECamEventPresetUnlocked is used to notify clients that the preset has been unlocked. sl@0: */ sl@0: virtual void UnlockPreset()=0; sl@0: }; sl@0: sl@0: /** sl@0: Mixin class for implementation of extra methods of the Continuous Zoom API. sl@0: sl@0: @internalTechnology sl@0: @prototype sl@0: */ sl@0: class MCameraContinuousZoom sl@0: { sl@0: public: sl@0: sl@0: /** sl@0: Passes both the continuous zoom observer and pointer to the continuous zoom class to the implementation so callbacks sl@0: can be sent to the client along with the continuous zoom handle. sl@0: sl@0: @param aObserver sl@0: The reference to the continuous zoom observer. sl@0: sl@0: @param aContinuousZoomHandle sl@0: The pointer to the continuous zoom class object. sl@0: sl@0: @see MContinuousZoomObserver sl@0: */ sl@0: virtual void SetContinuousZoomObserverAndHandle(MContinuousZoomObserver& aObserver, CCamera::CCameraContinuousZoom* aContinuousZoomHandle)=0; sl@0: sl@0: /** sl@0: Starts the continuous zoom operation. Clients will receive MContinuousZoomObserver::ContinuousZoomProgress() callback for intermediate zoom factors sl@0: achieved. It is up to the implementation to choose the zoom factors for which it will issue this callback. Implementation will not use this callback to notify sl@0: reaching the target zoom factor. This will be done via MContinuousZoomObserver::ContinuousZoomComplete() callback. sl@0: sl@0: @param aContinuousZoomParameters sl@0: The desired parameters to be used for the continuous zoom operation. sl@0: sl@0: @note If the implementation does not support re-configuring of zoom parameters whilst an existing continuous zoom operation is active then sl@0: StartContinuousZoomL() will leave with KErrInUse. sl@0: sl@0: @note If client has selected EDirectionTele zoom direction and the current zoom factor is greater than the target zoom factor, StartContinuousZoomL() sl@0: will leave with KErrArgument. Similarly, StartContinuousZoomL() will also leave with KErrArgument if client has selected EDirectionWide zoom sl@0: direction and current zoom factor is less than target zoom factor. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void StartContinuousZoomL(CCamera::CCameraAdvancedSettings::TContinuousZoomParameters aContinuousZoomParameters)=0; sl@0: sl@0: /** sl@0: Stop any exisiting continuous zoom operation. sl@0: Since this method is synchronous, no callback shall be issued for the concerned continuous zoom operation. sl@0: */ sl@0: virtual void StopContinuousZoom()=0; sl@0: sl@0: /** sl@0: Retrieves information about the supported settings related to continuous zoom support. sl@0: sl@0: @param aContinuousZoomInfo sl@0: The information of supported continuous zoom functionality. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void GetContinuousZoomSupportInfoL(CCamera::CCameraAdvancedSettings::TContinuousZoomSupportInfo& aContinuousZoomInfo) const=0; sl@0: sl@0: /** sl@0: Retrieves the unique id of the continuous zoom object. sl@0: This is used to identify the continuous zoom handle returned to clients via the MContinuousZoomObserver callback. sl@0: sl@0: @param aZoomId sl@0: The unique id of this Continuous Zoom object. sl@0: */ sl@0: virtual void GetContinuousZoomId(TInt& aZoomId) const=0; sl@0: sl@0: /** sl@0: Releases the interface. sl@0: */ sl@0: virtual void Release()=0; sl@0: }; sl@0: sl@0: #endif // ECAMADVSETTINGSINTF_H