1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/imagingandcamerafws/camerafw/Include/ECam/ecamadvsettingsintf.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,2138 @@
1.4 +// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +/**
1.20 + @file
1.21 + @publishedPartner
1.22 + @released
1.23 +*/
1.24 +
1.25 +#ifndef ECAMADVSETTINGSINTF_H
1.26 +#define ECAMADVSETTINGSINTF_H
1.27 +
1.28 +#include <ecamadvsettings.h>
1.29 +#include <ecam/ecamimageprocessingintf.h>
1.30 +#include <ecam/ecamadvsettingsintfuids.hrh>
1.31 +
1.32 +/** This is the UID which is used to obtain the interface MCameraPresets, via the
1.33 +CCamera::CustomInterface() call, which provides implementation of the M-class interface.
1.34 + */
1.35 +static const TUid KECamMCameraPresetsUid = {KECamMCameraPresetsUidValue};
1.36 +
1.37 +/**
1.38 +This is the UID which is used to obtain the interface MCameraPresets2, via the
1.39 +CCamera::CustomInterface() call, which provides implementation of the M-class interface.
1.40 +@publishedPartner
1.41 +@prototype
1.42 +*/
1.43 +static const TUid KECamMCameraPresets2Uid = {KECamMCameraPresets2UidValue};
1.44 +
1.45 +/** This is the UID which is used to obtain the interface MCameraAdvancedSettings, via the
1.46 +CCamera::CustomInterface() call, which provides implementation of the M-class interface. */
1.47 +static const TUid KECamMCameraAdvancedSettingsUid = {KECamMCameraAdvancedSettingsUidValue};
1.48 +
1.49 +/** This is the UID which is used to obtain the interface MCameraAdvancedSettings2, via the
1.50 +CCamera::CustomInterface() call, which provides implementation of the M-class interface. */
1.51 +static const TUid KECamMCameraAdvancedSettings2Uid = {KECamMCameraAdvancedSettings2UidValue};
1.52 +
1.53 +/**
1.54 +This is the UID which is used to obtain the interface MCameraAdvancedSettings3, via the
1.55 +CCamera::CustomInterface() call, which provides implementation of the M-class interface.
1.56 +*/
1.57 +static const TUid KECamMCameraAdvancedSettings3Uid = {KECamMCameraAdvancedSettings3UidValue};
1.58 +
1.59 +/**
1.60 +This is the UID which is used to obtain the interface MCameraAdvancedSettings4, via the
1.61 +CCamera::CustomInterface() call, which provides implementation of the M-class interface.
1.62 +@publishedPartner
1.63 +@prototype
1.64 +*/
1.65 +static const TUid KECamMCameraAdvancedSettings4Uid = {KECamMCameraAdvancedSettings4UidValue};
1.66 +
1.67 +/**
1.68 +This is the UID which is used to obtain the interface MCameraContinuousZoom, via the
1.69 +CCamera::CCameraAdvancedSettings::CreateContinuousZoomImpl() call, which provides
1.70 +implementation of the M-class interface.
1.71 +@internalTechnology
1.72 +@prototype
1.73 +*/
1.74 +static const TUid KECamMCameraContinuousZoomUid = {KECamMCameraContinuousZoomUidValue};
1.75 +
1.76 +/**
1.77 +Mixin class for implementation by providers of the Advanced Settings Camera Extension API.
1.78 +CCamera advanced settings class exposes an API for controlling individually
1.79 +digital camera advanced settings. These settings directly relate to the
1.80 +image acquisition phase both for still images and video.
1.81 +
1.82 +@publishedPartner
1.83 +@released
1.84 +*/
1.85 +class MCameraAdvancedSettings
1.86 + {
1.87 +
1.88 +public:
1.89 +
1.90 + /**
1.91 + Releases the interface.
1.92 + */
1.93 + virtual void Release()=0;
1.94 +
1.95 + /**
1.96 + Gets the type of this camera.
1.97 + @see TCameraType
1.98 +
1.99 + @return a TCameraType value.
1.100 + */
1.101 + virtual CCamera::CCameraAdvancedSettings::TCameraType CameraType() const=0;
1.102 +
1.103 + /**
1.104 + Get the type of a specific camera denoted by its index. A pluggable camera
1.105 + may not necessarily be physically present. The type denotes whether the slot allocated
1.106 + to that index is for pluggable or onboard camera.
1.107 +
1.108 + @param aCameraIndex
1.109 + An integer in the range of [0: CCamera::CamerasAvailable()-1].
1.110 +
1.111 + @return the TCameraType value for the specific camera.
1.112 + If the index is out of range, the return value is ECameraUnknown.
1.113 + */
1.114 + virtual CCamera::CCameraAdvancedSettings::TCameraType CameraType(TInt aCameraIndex) const=0;
1.115 +
1.116 + /**
1.117 + Checks whether the current camera is present.
1.118 +
1.119 + @return Whether the camera is currently present.
1.120 + ETrue if camera is present, EFalse otherwise.
1.121 + For example ECameraOnBoard (built-in) cameras are always present.
1.122 + */
1.123 + virtual TBool IsCameraPresent() const=0;
1.124 +
1.125 + /**
1.126 + Checks whether the camera, denoted by its index, is currently present.
1.127 + The index uniquely identifies the camera on the device.
1.128 +
1.129 + @param aCameraIndex
1.130 + An integer in the range of [0:CCamera::CamerasAvailable()-1] specifying the
1.131 + camera device to use
1.132 +
1.133 + @return Whether the camera is currently present.
1.134 + ETrue if camera is present, EFalse otherwise.
1.135 + For example built-in (ECameraOnBoard) cameras
1.136 + are always present.
1.137 + */
1.138 + virtual TBool IsCameraPresent(TInt aCameraIndex) const=0;
1.139 +
1.140 + /**
1.141 + Gets current camera index. The index uniquely identifies the camera on the device.
1.142 +
1.143 + @return camera index in the inclusive range of [0:CCamera::CamerasAvailable() - 1].
1.144 + */
1.145 + virtual TInt CameraIndex() const=0;
1.146 +
1.147 + /**
1.148 + Gets all of the supported stabilization modes on the device. The result is a bitfield
1.149 + of the valid TStabilizationMode flags.
1.150 +
1.151 + @return a bitfield of all supported stabilization modes.
1.152 + */
1.153 + virtual TInt SupportedStabilizationModes() const=0;
1.154 +
1.155 + /**
1.156 + Gets current stabilization mode on the device.
1.157 + The result is a valid TStabilizationMode value.
1.158 +
1.159 + @return current stabilization mode of type TStabilizationMode.
1.160 + */
1.161 + virtual CCamera::CCameraAdvancedSettings::TStabilizationMode StabilizationMode() const=0;
1.162 +
1.163 + /**
1.164 + Sets a specific stabilization mode on the device.
1.165 +
1.166 + Stabilization mode change fires a KUidECamEventCameraSettingStabilizationMode
1.167 + event to all MCameraObserver2 clients of this specific camera.
1.168 +
1.169 + @param aStabilizationMode
1.170 + new stabilization mode of TStabilizationMode type.
1.171 + */
1.172 + virtual void SetStabilizationMode(CCamera::CCameraAdvancedSettings::TStabilizationMode aStabilizationMode)=0;
1.173 +
1.174 + /**
1.175 + Gets all of the supported focus modes on the device. The result is a bitfield
1.176 + of the valid TFocusMode flags.
1.177 +
1.178 + @return a bitfield of all supported focus modes.
1.179 + */
1.180 + virtual TInt SupportedFocusModes() const=0;
1.181 +
1.182 + /**
1.183 + Gets current focus mode on the device.
1.184 + The result is a valid TFocusMode value.
1.185 +
1.186 + @return current focus mode.
1.187 + */
1.188 + virtual CCamera::CCameraAdvancedSettings::TFocusMode FocusMode() const=0;
1.189 +
1.190 + /**
1.191 + Sets a specific focus mode on the device.
1.192 + Focus mode change fires a KUidECamEventCameraSettingFocusMode event
1.193 + to all MCameraObserver2 clients of the camera.
1.194 +
1.195 + @param aFocusMode
1.196 + new focus mode of TFocusMode type.
1.197 + */
1.198 + virtual void SetFocusMode(CCamera::CCameraAdvancedSettings::TFocusMode aFocusMode)=0;
1.199 +
1.200 + /**
1.201 + Gets all supported focus ranges on the device.
1.202 +
1.203 + @return an integer - a bitfield of all supported TFocusRange values.
1.204 + */
1.205 + virtual TInt SupportedFocusRanges() const=0;
1.206 +
1.207 + /**
1.208 + Gets current focus range on the device.
1.209 +
1.210 + @return the current TFocusRange value.
1.211 + */
1.212 + virtual CCamera::CCameraAdvancedSettings::TFocusRange FocusRange() const=0;
1.213 +
1.214 + /**
1.215 + Sets a specific focus range on the device.
1.216 + The focus range change fires both, KUidECamEventCameraSettingFocusRange and
1.217 + KUidECamEventCameraSettingFocusRange2 event to all MCameraObserver2 clients of the camera.
1.218 + @see KUidECamEventCameraSettingFocusRange
1.219 +
1.220 + @param aFocusRange
1.221 + newly selected focus range.
1.222 + */
1.223 + virtual void SetFocusRange(CCamera::CCameraAdvancedSettings::TFocusRange aFocusRange)=0;
1.224 +
1.225 + /**
1.226 + Gets all supported auto focus types on the device.
1.227 +
1.228 + @return an integer - a bitfield of all supported TAutoFocusType values.
1.229 + */
1.230 + virtual TInt SupportedAutoFocusTypes() const=0;
1.231 +
1.232 + /**
1.233 + Gets current auto focus type on the device.
1.234 +
1.235 + @return a CCamera::TAutoFocusType value.
1.236 + */
1.237 + virtual CCamera::CCameraAdvancedSettings::TAutoFocusType AutoFocusType() const=0;
1.238 +
1.239 + /**
1.240 + Sets a specific auto focus type on the device.
1.241 + The focus type change fires both, KUidECamEventCameraSettingAutoFocusType and
1.242 + KUidECamEventCameraSettingAutoFocusType2 event to all MCameraObserver2 clients of the camera.
1.243 + @see KUidECamEventCameraSettingAutoFocusType
1.244 +
1.245 + @param aAutoFocusType
1.246 + Autofocus selection.
1.247 + */
1.248 + virtual void SetAutoFocusType(CCamera::CCameraAdvancedSettings::TAutoFocusType aAutoFocusType)=0;
1.249 +
1.250 + /**
1.251 + Gets all supported auto focus areas on the device.
1.252 +
1.253 + @return an integer - a bitfield of al supported TAutoFocusArea values.
1.254 + */
1.255 + virtual TInt SupportedAutoFocusAreas() const=0;
1.256 +
1.257 + /**
1.258 + Gets current chosen auto focus area on the device.
1.259 +
1.260 + @return a CCamera::TAutoFocusArea value.
1.261 + */
1.262 + virtual CCamera::CCameraAdvancedSettings::TAutoFocusArea AutoFocusArea() const=0;
1.263 +
1.264 + /**
1.265 + Sets a specific auto focus area on the device.
1.266 + Focus area change fires a KUidECamEventCameraSettingAutoFocusArea event
1.267 + to all MCameraObserver2 clients of the camera.
1.268 +
1.269 + @param aAutoFocusArea
1.270 + Autofocus area selection.
1.271 + */
1.272 + virtual void SetAutoFocusArea(CCamera::CCameraAdvancedSettings::TAutoFocusArea aAutoFocusArea)=0;
1.273 +
1.274 + /**
1.275 + Get focus distance in millimetres.
1.276 +
1.277 + @return the current focus distance in millimetres, directly from user setting of lenses.
1.278 + */
1.279 + virtual TInt FocusDistance() const=0;
1.280 +
1.281 + /**
1.282 + Set focus distance in millimetres. Focus distance change fires a KUidECamEventCameraSettingFocusDistance event
1.283 + to all MCameraObserver2 clients of the camera.
1.284 +
1.285 + @param aDistance
1.286 + the current value in millimetres, directly from user setting of lenses.
1.287 + */
1.288 + virtual void SetFocusDistance(TInt aDistance)=0;
1.289 +
1.290 + /**
1.291 + Get minimum focus distance in millimetres.
1.292 +
1.293 + @return the minimum (35 camera equivalent) focal length of a device.
1.294 + @note Current Focal length is calculated as
1.295 + focalLength = opticalZoom * minFocalLength;
1.296 + */
1.297 + virtual TInt GetMinFocalLength() const=0;
1.298 +
1.299 + /**
1.300 + Gets the set of camera supported ISO rates.
1.301 +
1.302 + @param aSupportedIsoRates
1.303 + an array of integers which gets filled in with the supported ISO rates.
1.304 +
1.305 + @note When camera device is incapable of revealing the ISO rates supported, it has to be assumed that
1.306 + camera will work only on the parmanently set value. If this value is not known, empty array should be
1.307 + returned, and the corresponding getter/setters for this feature for this feature should not be used.
1.308 + */
1.309 + virtual void GetSupportedIsoRatesL(RArray<TInt>& aSupportedIsoRates) const=0;
1.310 +
1.311 + /**
1.312 + Gets current ISO rate.
1.313 +
1.314 + @return current ISO rate as a TInt value.
1.315 +
1.316 + @note In case there is an error, a negative error value from system wide error should be returned.
1.317 + */
1.318 + virtual TInt IsoRate() const=0;
1.319 +
1.320 + /**
1.321 + Set current ISO rate for the camera.
1.322 + Triggers a KUidECamEventCameraSettingIsoRate event to all MCameraObserver2 clients of the camera.
1.323 +
1.324 + @param aRate
1.325 + required new ISO rate.
1.326 + */
1.327 + virtual void SetIsoRate(TInt aRate)=0;
1.328 +
1.329 + /**
1.330 + Gets the current discrete aperture steps (F-stops) supported by the device.
1.331 +
1.332 + @param aFStops
1.333 + A reference to an empty array of TInt which would be populated by the implementation with
1.334 + the specific supported values. If the array is empty on return,
1.335 + the camera supports all integer values in the aperture range. Each value is multiplied by
1.336 + a factor of KECamFineResolutionFactor.
1.337 +
1.338 + @param aInfo
1.339 + a reference to TValueInfo, which establishes the type of the returned data.
1.340 +
1.341 + @leave KErrNoMemory Out of memory.
1.342 +
1.343 + @note When camera device is incapable of revealing the aperture openings supported, it has to be assumed that
1.344 + camera will work only on the parmanently set value. If this value is not known, empty array should be
1.345 + returned and TValueInfo should be ENotActive, and the corresponding getter/setters for this feature should not be used.
1.346 + */
1.347 + virtual void GetAperturesL(RArray<TInt>& aFStops, TValueInfo& aInfo) const=0;
1.348 +
1.349 + /**
1.350 + Get current aperture value.
1.351 + The default aperture value is ECAM implementation specific and could be either auto aperture or any other supported value.
1.352 +
1.353 + @return Current aperture value as an integer, multiplied by KECamFineResolutionFactor.
1.354 + For example the function will return 280 for the actual aperture of F2.8.
1.355 +
1.356 + @note In case there is an error, a negative error value from system wide error should be returned.
1.357 + */
1.358 + virtual TInt Aperture() const=0;
1.359 +
1.360 + /**
1.361 + Set a new aperture value.
1.362 + All MCameraObserver2 clients of the camera receive a KUidECamEventCameraSettingAperture
1.363 + event notification when aperture value is changed.
1.364 +
1.365 + @note The aperture parameter value is an integer, multiplied by KECamFineResolutionFactor.
1.366 + For example to set an aperture of F2.8, call SetAperture(280).
1.367 +
1.368 + @param aFStop
1.369 + a new aperture value in the supported by the device range.
1.370 + */
1.371 + virtual void SetAperture(TInt aFStop)=0;
1.372 +
1.373 + /**
1.374 + Gets the set of supported shutter speeds
1.375 +
1.376 + @param aShutterSpeeds
1.377 + a reference to an RArray of TInt representing the discrete shutter speeds supported
1.378 + currently by the device.
1.379 +
1.380 + @param aInfo
1.381 + a reference to TValueInfo, which establishes the type of the returned data.
1.382 +
1.383 + @return the populated array with all shutter speeds in microseconds.
1.384 +
1.385 + @leave KErrNoMemory Out of memory.
1.386 +
1.387 + @note When camera device is incapable of revealing the shutter speeds supported, it has to be assumed that
1.388 + camera will work only on the parmanently set value. If this value is not known, empty array should be
1.389 + returned and TValueInfo should be ENotActive, and the corresponding getter/setters for this feature should not be used.
1.390 + */
1.391 + virtual void GetShutterSpeedsL(RArray<TInt>& aShutterSpeeds, TValueInfo& aInfo) const=0;
1.392 +
1.393 + /**
1.394 + Gets the current shutter speed
1.395 +
1.396 + @return the current shutter speed in microseconds.
1.397 +
1.398 + @note In case there is an error, a negative error value from system wide error should be returned.
1.399 + */
1.400 + virtual TInt ShutterSpeed() const=0;
1.401 +
1.402 + /**
1.403 + Sets the current shutter speed. When set, all MCameraObserver2 clients of the camera
1.404 + receive a KUidECamEventCameraSettingShutterSpeed event
1.405 +
1.406 + @param aShutterSpeed
1.407 + the required shutter speed in microseconds.
1.408 +
1.409 + */
1.410 + virtual void SetShutterSpeed(TInt aShutterSpeed)=0;
1.411 +
1.412 + /**
1.413 + Get all supported metering modes on this device represented as bitfield of type TMeteringMode.
1.414 +
1.415 + @return the set of supported metering modes.
1.416 + */
1.417 + virtual TInt SupportedMeteringModes() const=0;
1.418 +
1.419 + /**
1.420 + Get current metering mode.
1.421 +
1.422 + @return a value of type TMeteringMode.
1.423 + */
1.424 + virtual CCamera::CCameraAdvancedSettings::TMeteringMode MeteringMode() const=0;
1.425 +
1.426 + /**
1.427 + Set the current metering mode. When set, all MCameraObserver2 clients are notified
1.428 + with a KUidECamEventCameraSettingMeteringMode event.
1.429 +
1.430 + @param aMeteringMode
1.431 + a new selection for metering mode of type TMeteringMode.
1.432 + */
1.433 + virtual void SetMeteringMode(CCamera::CCameraAdvancedSettings::TMeteringMode aMeteringMode)=0;
1.434 +
1.435 + /**
1.436 + Get all supported drive modes as bitfields of TDriveMode type.
1.437 +
1.438 + @return the set of supported drive modes.
1.439 + */
1.440 + virtual TInt SupportedDriveModes() const=0;
1.441 +
1.442 + /**
1.443 + Gets currently active drive mode.
1.444 +
1.445 + @return current drive mode.
1.446 + */
1.447 + virtual CCamera::CCameraAdvancedSettings::TDriveMode DriveMode() const=0;
1.448 +
1.449 + /**
1.450 + Set the current metering mode. When set all MCameraObserver2 clients are notified with a
1.451 + KUidECamEventCameraSettingDriveMode event.
1.452 +
1.453 + @param aDriveMode
1.454 + new selection for drive mode value of type TDriveMode.
1.455 +
1.456 + @note Unless reduced Latency scheme is not used (ie CaptureImageL(TInt aSequenceNumber) or PerformantStopVideoCaptureL())
1.457 + if an image/video capture is still outstanding, this method may report error KErrInUse.
1.458 + */
1.459 + virtual void SetDriveMode(CCamera::CCameraAdvancedSettings::TDriveMode aDriveMode)=0;
1.460 +
1.461 + /**
1.462 + Get all supported bracket modes as bitfields.
1.463 +
1.464 + @return the set of all supported bracket modes.
1.465 + */
1.466 + virtual TInt SupportedBracketModes() const=0;
1.467 +
1.468 + /**
1.469 + Get current bracket mode.
1.470 +
1.471 + @return the current bracket mode TBracketMode.
1.472 + */
1.473 + virtual CCamera::CCameraAdvancedSettings::TBracketMode BracketMode() const=0;
1.474 +
1.475 + /**
1.476 + Set new bracket mode. All MCameraObserver2 clients are notified with a
1.477 + KUidECamEventCameraSettingBracketMode event.
1.478 +
1.479 + @param aBracketMode
1.480 + new selection for bracket mode of type TBracketMode.
1.481 + */
1.482 + virtual void SetBracketMode(CCamera::CCameraAdvancedSettings::TBracketMode aBracketMode)=0;
1.483 +
1.484 + /**
1.485 + Get all supported bracket parameters as bitfields.
1.486 +
1.487 + @return the set of all currently supported bracket modes.
1.488 + */
1.489 + virtual TInt SupportedBracketParameters() const=0;
1.490 +
1.491 + /**
1.492 + Get current bracket parameter.
1.493 +
1.494 + @return the current bracket mode TBracketParameter.
1.495 + */
1.496 + virtual CCamera::CCameraAdvancedSettings::TBracketParameter BracketParameter() const=0;
1.497 +
1.498 + /**
1.499 + Set new bracket parameter
1.500 + When set all clients are notified with a
1.501 + KUidECamEventCameraSettingBracketParameter event.
1.502 +
1.503 + @param aBracketParameter
1.504 + new selection for parameter type of type TBracketParameter.
1.505 + */
1.506 + virtual void SetBracketParameter(CCamera::CCameraAdvancedSettings::TBracketParameter aBracketParameter)=0;
1.507 +
1.508 + /**
1.509 + Get all supported bracket steps as bitfields.
1.510 +
1.511 + @return the set of all supported bracket modes.
1.512 + */
1.513 + virtual TInt SupportedBracketSteps() const=0;
1.514 +
1.515 + /**
1.516 + Get current bracket step.
1.517 +
1.518 + @return the current bracket mode TBracketStep.
1.519 + */
1.520 + virtual CCamera::CCameraAdvancedSettings::TBracketStep BracketStep() const=0;
1.521 +
1.522 + /**
1.523 + Set new bracket step. All MCameraObserver2 clients are notified with
1.524 + KUidECamEventCameraSettingBracketStep.
1.525 +
1.526 + @param aBracketStep
1.527 + new selection for step of type TBracketStep.
1.528 + */
1.529 + virtual void SetBracketStep(CCamera::CCameraAdvancedSettings::TBracketStep aBracketStep)=0;
1.530 +
1.531 + /**
1.532 + Gets the settings for which frames to merge. Valid only in EDriveModeBracketMerge mode.
1.533 + @note there must be at least two images to merge. All are assumed to form a sequence and
1.534 + are identified using the first frame index and number of frames e.g. to merge two frames - one
1.535 + on and one +1, when in EBracketMode3Image, one sets the start index to 1 and frames to two.
1.536 + @note It is very much TBracketMode setting dependent.
1.537 +
1.538 + @param aStartIndex
1.539 + the index of the start frame, starts from 0.
1.540 +
1.541 + @param aFrames
1.542 + the number of frames to be merged.
1.543 + */
1.544 + virtual void GetBracketMerge(TInt& aStartIndex, TInt& aFrames) const=0;
1.545 +
1.546 + /**
1.547 + Sets the settings for which frames to merge. Valid only in EDriveModeBracketMerge mode.
1.548 + @note there must be at least two images to merge. All are assumed to form a sequence and
1.549 + are identified using the first frame index and number of frames e.g. to merge two frames - one
1.550 + on and one +1, when in EBracketMode3Image, one sets the start index to 1 and frames to 2.
1.551 + MCameraObserver2 clients are notified with a KUidECamEventBracketMerge event.
1.552 +
1.553 + @note It is very TBracketMode setting dependent.
1.554 +
1.555 + @param aStartIndex
1.556 + the index of the start frame, starts from 0.
1.557 +
1.558 + @param aFrames
1.559 + the number of frames to be merged.
1.560 + */
1.561 + virtual void SetBracketMerge(TInt aStartIndex, TInt aFrames)=0;
1.562 +
1.563 + /**
1.564 + Get camera all supported flash modes CCamera::TFlash
1.565 +
1.566 + @return the set of all supported flash modes as bitfields in an integer.
1.567 + */
1.568 + virtual TInt SupportedFlashModes() const=0;
1.569 +
1.570 + /**
1.571 + Gets the currently set flash mode.
1.572 +
1.573 + @return The currently set flash mode.
1.574 + */
1.575 + virtual CCamera::TFlash FlashMode() const=0;
1.576 +
1.577 + /**
1.578 + Sets the flash mode.
1.579 +
1.580 + Triggers a KUidECamEventCameraSettingFlashMode event to all camera
1.581 + MCameraObserver2 clients.
1.582 +
1.583 + @param aMode
1.584 + The required flash mode.
1.585 + */
1.586 + virtual void SetFlashMode(CCamera::TFlash aMode)=0;
1.587 +
1.588 + /**
1.589 + Gets whether the flash red eye reduction is switched on.
1.590 +
1.591 + @return The present state - ETrue for switched on and EFalse for switched off.
1.592 + */
1.593 + virtual TBool RedEyeReduceOn() const=0;
1.594 +
1.595 + /**
1.596 + Sets the flash red eye reduction on or off.
1.597 +
1.598 + Triggers a KUidECamEventCameraSettingFlashRedEyeReduce event to all camera
1.599 + MCameraObserver2 clients.
1.600 +
1.601 + @param aState
1.602 + The required state ETrue for switching it on and EFalse for switching it off.
1.603 + */
1.604 + virtual void SetRedEyeReduceOn(TBool aState)=0;
1.605 +
1.606 + /**
1.607 + Get flash compensation steps as integers multiplied by KECamFineResolutionFactor.
1.608 + For example 0.5 EV is 50.
1.609 +
1.610 + @param aFlashCompensationSteps
1.611 + an RArray of integers which is populated on return to reflect the supported
1.612 + flash compensation steps.
1.613 +
1.614 + @param aInfo
1.615 + an TValueInfo reference, which establishes the organization of the returned data.
1.616 +
1.617 + @see TValueInfo
1.618 +
1.619 + @leave KErrNoMemory Out of memory.
1.620 +
1.621 + @note When camera device doesn't support this, empty array should be returned and TValueInfo should be ENotActive,
1.622 + and the corresponding getter/setters for this feature should not be used.
1.623 + When camera device is incapable of revealing the flash compensation steps supported,
1.624 + it has to be assumed that camera will work only on the parmanently set value. If this value is not known, empty
1.625 + array should be returned and TValueInfo should be ENotActive, and the corresponding getter/setters for this feature should not be used.
1.626 + */
1.627 + virtual void GetFlashCompensationStepsL(RArray<TInt>& aFlashCompensationSteps, TValueInfo& aInfo) const=0;
1.628 +
1.629 + /**
1.630 + @deprecated Use TInt GetFlashCompensationStep(TInt& aFlashCompensationStep);
1.631 +
1.632 + Get current flash power compensation step.
1.633 +
1.634 + @return current flash compensation step.
1.635 + */
1.636 + virtual TInt FlashCompensationStep() const=0;
1.637 +
1.638 + /**
1.639 + Get current flash power compensation step.
1.640 +
1.641 + @param aFlashCompensationStep
1.642 + Reference to the current flash power compensation step.
1.643 +
1.644 + @return system wide error code.
1.645 + */
1.646 + virtual TInt GetFlashCompensationStep(TInt& aFlashCompensationStep) const=0;
1.647 +
1.648 + /**
1.649 + Set current flash compensation step as an integer multiplied by KECamFineResolutionFactor.
1.650 + For example to set a compensation of -0.3 EV, one should use a parameter with value -30.
1.651 + All clients receive a KUidECamEventCameraSettingFlashCompensationStep event, when the value has changed.
1.652 +
1.653 + @param aFlashCompensationStep
1.654 + a new value for the flash compensation step.
1.655 + */
1.656 + virtual void SetFlashCompensationStep(TInt aFlashCompensationStep)=0;
1.657 +
1.658 + /**
1.659 + Get current flash power compensation range measured in a already selected compensation step.
1.660 + @note This range may change if a different compensation step is selected.
1.661 + For example if flash compensation range is in the range -1EV 1.5EV and the selected flash compensation
1.662 + step is selected to be 0.3 EV, the result of this call will be
1.663 + aNegativeCompensation = -3 and aPositiveCompensation = 5.
1.664 + as there can be only three full steps for negative compensation (1/0.3) and five for flash power boost (1.5/0.3).
1.665 + In this way developers, having pre-selected a step value from the supported set, would need to provide
1.666 + just the multplier (in steps) and the direction (the sign). Steps are always assumed integers.
1.667 +
1.668 + @param aNegativeCompensation
1.669 + reference to an integer returning the maximum number of steps available for negative compensation.
1.670 +
1.671 + @param aPositiveCompensation
1.672 + reference to an integer returning the maximum number of steps available for positive compensation.
1.673 + */
1.674 + virtual void GetFlashCompensationRangeInSteps(TInt& aNegativeCompensation, TInt& aPositiveCompensation) const=0;
1.675 +
1.676 + /**
1.677 + @deprecated Use TInt GetFlashCompensation(TInt& aFlashCompensation);
1.678 +
1.679 + Get the current flash compensation value as integer steps. Positive values boost flash power,
1.680 + negative reduce flash power. The change is not cumulative i.e. the change is stateless.
1.681 + Each call assumes no previous compensation has been performed i.e. that there is a zero compensation.
1.682 +
1.683 + @note if returned value is 2 (compensation steps) and the current flash compensation step is 0.3 EV,
1.684 + then the actual compensation effect will be 0.6 EV.
1.685 +
1.686 + @return the current number compensation steps as an integer.
1.687 + */
1.688 + virtual TInt FlashCompensation() const=0;
1.689 +
1.690 + /**
1.691 + Get the current flash compensation value as integer steps. Positive values boost flash power,
1.692 + negative reduce flash power. The change is not cumulative i.e. the change is stateless.
1.693 + Each call assumes no previous compensation has been performed i.e. that there is a zero compensation.
1.694 +
1.695 + @note if retrieved value is 2 (compensation steps) and the current flash compensation step is 0.3 EV,
1.696 + then the actual compensation effect will be 0.6 EV.
1.697 +
1.698 + @param aFlashCompensation
1.699 + Reference to the current number of compensation steps as an integer.
1.700 +
1.701 + @return system wide error code.
1.702 + */
1.703 + virtual TInt GetFlashCompensation(TInt& aFlashCompensation) const=0;
1.704 +
1.705 + /**
1.706 + Set the current flash compensation value as integer steps.
1.707 + Positive values increase power, negative reduce power. The change is not cumulative i.e. the change is stateless.
1.708 + Each call assumes no previous compensation has been performed i.e. that there is a zero compensation.
1.709 + Triggers a KUidECamEventCameraSettingFlashCompensation event.
1.710 +
1.711 + @param aFlashCompensationSteps
1.712 + a required compensation steps - negative value reduce the flash power
1.713 + positive boosts up the flash power.
1.714 + */
1.715 + virtual void SetFlashCompensation(TInt aFlashCompensationSteps)=0;
1.716 +
1.717 + /**
1.718 + Check whether there is an external flash source.
1.719 +
1.720 + @return ETrue if an external flash source is present, EFalse otherwise
1.721 + */
1.722 + virtual TBool IsExternalFlashPresent() const=0;
1.723 +
1.724 + /**
1.725 + Gets the current discrete manual flash power levels supported by the device in range 0-100
1.726 + as a percentage of maximum power level.
1.727 +
1.728 + @param aManualFlashPowerLevels
1.729 + An empty array of TInt which would be populated by the implementation with
1.730 + the specific supported values. If the array is empty on return,
1.731 + the camera does not support this functionality.
1.732 + @param aInfo
1.733 + a reference to TValueInfo, which establishes the type of the returned data.
1.734 +
1.735 + @leave KErrNoMemory Out of memory.
1.736 +
1.737 + @note When camera device doesn't support this, empty array should be returned and TValueInfo should be ENotActive,
1.738 + and the corresponding getter/setters for this feature should not be used.
1.739 + When camera device is incapable of revealing the manual flash power levels supported,
1.740 + it has to be assumed that camera will work only on the parmanently set value. If this value is not known, empty
1.741 + array should be returned and TValueInfo should be ENotActive, and the corresponding getter/setters for this feature should not be used.
1.742 + */
1.743 + virtual void GetManualFlashPowerLevelsL(RArray<TInt>& aManualFlashPowerLevels, TValueInfo& aInfo) const=0;
1.744 +
1.745 + /**
1.746 + Gets the current manual flash power level on the device.
1.747 +
1.748 + @return the current manual flash power level as a value in the range [0:100].
1.749 +
1.750 + @note In case there is an error, a negative error value from system wide error should be returned.
1.751 + */
1.752 + virtual TInt ManualFlashPowerLevel() const=0;
1.753 +
1.754 + /**
1.755 + Sets the current manual flash power level on the device.
1.756 + Triggers a KUidECamEventCameraSettingFlashManualPower event to all MCameraObserver2 clients.
1.757 +
1.758 + @param aManualFlashPowerLevel
1.759 + one of the values returned in GetManualFlashPowerLevelsL().
1.760 + */
1.761 + virtual void SetManualFlashPowerLevel(TInt aManualFlashPowerLevel)=0;
1.762 +
1.763 + /**
1.764 + Get Supported exposure modes - bitfields of CCamera::TExposure
1.765 +
1.766 + @return the set of supported exposure modes.
1.767 + */
1.768 + virtual TInt SupportedExposureModes() const=0;
1.769 +
1.770 + /**
1.771 + Gets the currently set exposure setting value.
1.772 +
1.773 + @return The currently set exposure setting value.
1.774 + */
1.775 + virtual CCamera::TExposure ExposureMode() const=0;
1.776 +
1.777 + /**
1.778 + Sets the exposure mode of the device.
1.779 +
1.780 + Triggers a KUidECamEventCameraSettingExposureMode event to all MCameraObserver2 clients.
1.781 +
1.782 + @param aExposureMode
1.783 + The required exposure adjustment.
1.784 + */
1.785 + virtual void SetExposureMode(CCamera::TExposure aExposureMode)=0;
1.786 +
1.787 + /**
1.788 + Get exposure compensation steps as integers multiplied by KECamFineResolutionFactor.
1.789 + For example 0.3 EV is 30.
1.790 +
1.791 + @param aExposureCompensationSteps
1.792 + an RArray of integers which is populated to reflect the supported
1.793 + exposure compensation steps, all values have been multiplied by KECamFineResolutionFactor before
1.794 + truncated to integers.
1.795 +
1.796 + @param aInfo
1.797 + a reference to TValueInfo, which establishes the type of the returned data.
1.798 +
1.799 + @leave KErrNoMemory Out of memory. May also leave as a result of other system errors.
1.800 +
1.801 + @note When camera device doesn't support this, empty array should be returned and TValueInfo should be ENotActive,
1.802 + and the corresponding getter/setters for this feature should not be used.
1.803 + When camera device is incapable of revealing the exposure compensation steps supported,
1.804 + it has to be assumed that camera will work only on the parmanently set value. If this value is not known, empty
1.805 + array should be returned and TValueInfo should be ENotActive, and the corresponding getter/setters for this feature should not be used.
1.806 + */
1.807 + virtual void GetExposureCompensationStepsL(RArray<TInt>& aExposureCompensationSteps, TValueInfo& aInfo) const=0;
1.808 +
1.809 + /**
1.810 + @deprecated Use TInt GetExposureCompensationStep(TInt& aExposureCompensationStep);
1.811 +
1.812 + Get current exposure compensation step.
1.813 +
1.814 + @return current exposure compensation step.
1.815 + */
1.816 + virtual TInt ExposureCompensationStep() const=0;
1.817 +
1.818 + /**
1.819 + Get current exposure compensation step.
1.820 +
1.821 + @param aExposureCompensationStep
1.822 + Reference to the current exposure compensation step.
1.823 +
1.824 + @return system wide error code.
1.825 + */
1.826 + virtual TInt GetExposureCompensationStep(TInt& aExposureCompensationStep) const=0;
1.827 +
1.828 + /**
1.829 + Set current exposure compensation step as an integer multiplied by KECamFineResolutionFactor.
1.830 + All MCameraObserver2 clients receive a KUidECamEventCameraSettingExposureCompensationStep event,
1.831 + when the value has changed.
1.832 +
1.833 + @param aExposureCompensationStep
1.834 + a new value for the exposure compensation step.
1.835 + */
1.836 + virtual void SetExposureCompensationStep(TInt aExposureCompensationStep)=0;
1.837 +
1.838 + /**
1.839 + Get current exposure compensation range in steps. It depends on the previously
1.840 + selected exposure compensation step.
1.841 +
1.842 + @param aNegativeCompensation
1.843 + reference to an integer returning the maximum number of steps
1.844 + available for negative compensation.
1.845 +
1.846 + @param aPositiveCompensation
1.847 + reference to an integer returning the maximum number of steps
1.848 + available for positive compensation.
1.849 +
1.850 + @see GetFlashCompensationRangeInSteps()
1.851 + */
1.852 + virtual void GetExposureCompensationRangeInSteps(TInt& aNegativeCompensation, TInt& aPositiveCompensation) const=0;
1.853 +
1.854 + /**
1.855 + @deprecated Use TInt GetExposureCompensation(TInt& aExposureCompensation);
1.856 +
1.857 + Get the current exposure compensation value as integer steps. Positive values increase exposure times,
1.858 + negative reduce exposure times. The change is not cumulative i.e. the change is stateless.
1.859 + Each call assumes no previous compensation has been performed i.e. that there is a zero compensation.
1.860 +
1.861 + @note if returned value is 2 (compensation steps) and the current exposure compensation step is 0.3 EV,
1.862 + then the actual compensation effect will be 0.6 EV.
1.863 +
1.864 + @return current number compensation steps as an integer.
1.865 + */
1.866 + virtual TInt ExposureCompensation() const=0;
1.867 +
1.868 + /**
1.869 + Get the current exposure compensation value as integer steps. Positive values increase exposure times,
1.870 + negative reduce exposure times. The change is not cumulative i.e. the change is stateless.
1.871 + Each call assumes no previous compensation has been performed i.e. that there is a zero compensation.
1.872 +
1.873 + @note if retrieved value is 2 (compensation steps) and the current exposure compensation step is 0.3 EV,
1.874 + then the actual compensation effect will be 0.6 EV.
1.875 +
1.876 + @param aExposureCompensation
1.877 + Reference to the current number of compensation steps as an integer.
1.878 +
1.879 + @return system wide error code.
1.880 + */
1.881 + virtual TInt GetExposureCompensation(TInt& aExposureCompensation) const=0;
1.882 +
1.883 + /**
1.884 + Set the current exposure compensation value as integer steps.
1.885 + Triggers a KUidECamEventCameraSettingExposureCompensation event to all MCameraObserver2 clients.
1.886 +
1.887 + @param aExposureCompensationSteps
1.888 + a required compensation value negative value reduce the exposure time
1.889 + positive increases the exposure time.
1.890 +
1.891 + */
1.892 + virtual void SetExposureCompensation(TInt aExposureCompensationSteps)=0;
1.893 +
1.894 + /**
1.895 + Gets camera supported set of white balance adjustments.
1.896 +
1.897 + @return bitfield of all supported CCamera::TWhiteBalance values.
1.898 + */
1.899 + virtual TInt SupportedWhiteBalanceModes() const=0;
1.900 +
1.901 + /**
1.902 + Gets the current white balance value.
1.903 +
1.904 + @return The current white balance value.
1.905 + */
1.906 + virtual CCamera::TWhiteBalance WhiteBalanceMode() const=0;
1.907 +
1.908 + /**
1.909 + Sets the white balance adjustment of the device.
1.910 +
1.911 + No effect if this is not supported, see TCameraInfo::iWhiteBalanceModesSupported.
1.912 + Triggers a KUidECamEventCameraSettingWhiteBalanceMode event to all MCameraObserver2 clients.
1.913 +
1.914 + @param aWhiteBalanceMode
1.915 + The required white balance mode.
1.916 + */
1.917 + virtual void SetWhiteBalanceMode(CCamera::TWhiteBalance aWhiteBalanceMode)=0;
1.918 +
1.919 + /**
1.920 + Gets the current state for aperture and exposure lock.
1.921 +
1.922 + @return ETrue if aperture and exposure values are locked together,
1.923 + EFalse if these are not locked.
1.924 + */
1.925 + virtual TBool ApertureExposureLockOn() const=0;
1.926 +
1.927 + /**
1.928 + Sets the current state for aperture and exposure lock.
1.929 + Triggers a KUidECamEventAELock event to all MCameraObserver2 clients.
1.930 +
1.931 + @param aAELock
1.932 + a value whether to lock exposure and aperture together.
1.933 + */
1.934 + virtual void SetApertureExposureLockOn(TBool aAELock)=0;
1.935 +
1.936 + /**
1.937 + Gets the current state for button clicking sound effect.
1.938 +
1.939 + @return boolean, ETrue to switch clicking sound on, EFalse sound off
1.940 + */
1.941 + virtual TBool ShootClickOn() const=0;
1.942 +
1.943 + /**
1.944 + Sets the button clicking sound effect on /off. Triggers a KUidECamEventSoundClick event
1.945 + to all MCameraObserver2 clients.
1.946 +
1.947 + @param aShootClickOn
1.948 + boolean, ETrue to switch clicking sound on, EFalse sound is switched off.
1.949 + */
1.950 + virtual void SetShootClickOn(TBool aShootClickOn)=0;
1.951 +
1.952 + /**
1.953 + Get camera supported timer values. Active only when drive mode EDriveModeTimed.
1.954 + Time is in microseconds. As time interval is expected to be relatively short,
1.955 + integer value is considered sufficient.
1.956 +
1.957 + @param aTimerIntervals
1.958 + an RArray of integers which is populated to reflect the supported
1.959 + timer interval steps.
1.960 +
1.961 + @param aInfo
1.962 + an TValueInfo reference, which establishes the organization of
1.963 + the returned data.
1.964 +
1.965 + @see TValueInfo
1.966 +
1.967 + @note When camera device doesn't support this, empty array should be returned and TValueInfo should be ENotActive,
1.968 + and the corresponding getter/setters for this feature should not be used.
1.969 + */
1.970 + virtual void GetTimerIntervalsL(RArray<TInt>& aTimerIntervals, TValueInfo& aInfo) const=0;
1.971 +
1.972 + /**
1.973 + Get current timer value. Active only when drive mode is EDriveModeTimed.
1.974 + Timer resolution is in microseconds.
1.975 +
1.976 + @return current time interval value.
1.977 +
1.978 + @note In case there is an error, a negative error value from system wide error should be returned.
1.979 + */
1.980 + virtual TInt TimerInterval() const=0;
1.981 +
1.982 + /**
1.983 + Set current timer value. Active only when drive mode EDriveModeTimed.
1.984 + This is the time interval (delay) in microseconds between user pressing the button and image is taken.
1.985 + The setting of the value triggers a KUidECamEventCameraSettingTimerInterval event
1.986 + to all MCameraObserver2 clients.
1.987 +
1.988 + @param aTimerInterval
1.989 + The selected timer interval in microseconds
1.990 + */
1.991 + virtual void SetTimerInterval(TInt aTimerInterval)=0;
1.992 +
1.993 + /**
1.994 + Get camera supported time lapse period range. Active only when drive mode EDriveModeTimeLapse.
1.995 + The time lapse is denoted as the uniform time period between consecutive frames.
1.996 +
1.997 + @param aTimeLapseMin
1.998 + The minimum time value.
1.999 +
1.1000 + @param aTimeLapseMax
1.1001 + The maximum time value.
1.1002 + */
1.1003 + virtual void GetTimeLapsePeriodRange(TTime& aTimeLapseMin, TTime& aTimeLapseMax) const=0;
1.1004 +
1.1005 + /**
1.1006 + Get current time lapse value. Active only when drive mode EDriveModeTimeLapse.
1.1007 + The time lapse is denoted as the uniform time period
1.1008 + between consecutive frames and operation is configurable by its start, end and a fixed interval.
1.1009 + @param aStart
1.1010 + the start of the timelapse period
1.1011 + @param aEnd
1.1012 + the end of the timelapse period; start < end.
1.1013 + @param aInterval
1.1014 + the set parameter between two successive snapshots.
1.1015 + */
1.1016 + virtual void GetTimeLapse(TTime& aStart, TTime& aEnd, TTime& aInterval) const=0;
1.1017 +
1.1018 + /**
1.1019 + Set current time lapse value. Active only when drive mode EDriveModeTimeLapse.
1.1020 + The time lapse is denoted as the uniform time period between consecutive frames.
1.1021 + Setting triggers a KUidECamEventCameraSettingTimeLapse event to all MCameraObserver2 camera clients.
1.1022 +
1.1023 + @param aStart
1.1024 + the start of the timelapse period.
1.1025 + @param aEnd
1.1026 + the end of the timelapse period; start < end.
1.1027 + @param aInterval
1.1028 + the set parameter between two successive snapshots.
1.1029 + */
1.1030 + virtual void SetTimeLapse(const TTime& aStart, const TTime& aEnd, const TTime& aInterval)=0;
1.1031 +
1.1032 + /**
1.1033 + Get current picture orientation.
1.1034 +
1.1035 + @return a TPictureOrientation value.
1.1036 + */
1.1037 + virtual CCamera::CCameraAdvancedSettings::TPictureOrientation PictureOrientation() const=0;
1.1038 +
1.1039 + /**
1.1040 + Set a new picture orientation
1.1041 + This triggers a KUidECamEventCameraSettingPictureOrientation event to all MCameraObserver2 clients.
1.1042 +
1.1043 + @param aOrientation
1.1044 + a value of TPictureOrientation denoting the new orientation.
1.1045 + */
1.1046 + virtual void SetPictureOrientation(CCamera::CCameraAdvancedSettings::TPictureOrientation aOrientation)=0;
1.1047 +
1.1048 + /**
1.1049 + Get supported pixel aspect ratio.
1.1050 +
1.1051 + @return a bitfield of all supported TPixelAspectRatio values.
1.1052 + */
1.1053 + virtual TInt SupportedPixelAspectRatios() const=0;
1.1054 + /**
1.1055 + Get current pixel aspect ratio.
1.1056 +
1.1057 + @return a TPixelAspectRatio value.
1.1058 + */
1.1059 + virtual CCamera::CCameraAdvancedSettings::TPixelAspectRatio PixelAspectRatio() const=0;
1.1060 +
1.1061 + /**
1.1062 + Set a new pixel aspect ratio.
1.1063 + This triggers a KUidECamEventPixelAspectRatio event to all MCameraObserver2 clients.
1.1064 +
1.1065 + @param aPixelAspectRatio
1.1066 + a value of TPixelAspectRatio denoting the new pixel aspect ratio.
1.1067 + */
1.1068 + virtual void SetPixelAspectRatio(CCamera::CCameraAdvancedSettings::TPixelAspectRatio aPixelAspectRatio)=0;
1.1069 +
1.1070 + /**
1.1071 + Get supported YUV ranges.
1.1072 +
1.1073 + @return a bitfileld of all supported TYuvRange values.
1.1074 + */
1.1075 + virtual TInt SupportedYuvRanges() const=0;
1.1076 +
1.1077 + /**
1.1078 + Get the current YUV range.
1.1079 +
1.1080 + @return a TYuvRange value.
1.1081 + */
1.1082 + virtual CCamera::CCameraAdvancedSettings::TYuvRange YuvRange() const=0;
1.1083 +
1.1084 + /**
1.1085 + Set a new YUV range.
1.1086 + This triggers a KUidECamEventYuvRange event to all MCameraObserver2 clients.
1.1087 +
1.1088 + @param aYuvRange
1.1089 + a value of TYuvRange denoting the new YUV range.
1.1090 + */
1.1091 + virtual void SetYuvRange(CCamera::CCameraAdvancedSettings::TYuvRange aYuvRange)=0;
1.1092 +
1.1093 + /**
1.1094 + Get the number of images captured normally under EDriveModeBurst condition.
1.1095 + @note: due to memory or image size limitations the actual number may be less.
1.1096 +
1.1097 + @return the number of images set to capture in burst mode.
1.1098 + */
1.1099 + virtual TInt BurstImages() const=0;
1.1100 +
1.1101 + /**
1.1102 + Set the number of images captured normally under EDriveModeBurst condition.
1.1103 + Triggers a KUidECamEventBurstImages event to all MCameraObserver2 clients.
1.1104 + @note: due to memory or image size limitations the actual number may be less.
1.1105 +
1.1106 + @param aImages
1.1107 + the number of images set to capture in burst mode.
1.1108 +
1.1109 + @note Unless reduced Latency scheme is not used (ie CaptureImageL(TInt aSequenceNumber) or PerformantStopVideoCaptureL())
1.1110 + if an image/video capture is still outstanding, this method may report error KErrInUse.
1.1111 + */
1.1112 + virtual void SetBurstImages(TInt aImages)=0;
1.1113 +
1.1114 + /**
1.1115 + Gets the optical zoom levels.
1.1116 +
1.1117 + @param aOpticalZoomSteps
1.1118 + Array to hold optical zoom values multiplied by KECamFineResolutionFactor to retain precision.
1.1119 + So that if zoom is not supported the array will return a single element of value
1.1120 + KECamFineResolutionFactor.
1.1121 +
1.1122 + @param aInfo
1.1123 + a reference to TValueInfo, which establishes the type of the returned data.
1.1124 +
1.1125 + @note Such approach allows for support for both linear and non-linear zoom steps.
1.1126 + When camera device doesn't support this, empty array should be returned and TValueInfo should be ENotActive,
1.1127 + and the corresponding getter/setters for this feature should not be used.
1.1128 +
1.1129 + @leave KErrNoMemory Out of memory. May also leave as a result of other system errors.
1.1130 + */
1.1131 + virtual void GetOpticalZoomStepsL(RArray<TInt>& aOpticalZoomSteps, TValueInfo& aInfo) const=0;
1.1132 +
1.1133 + /**
1.1134 + Gets the currently set zoom value.
1.1135 +
1.1136 + @return The currently set optical zoom value. The value is multiplied by
1.1137 + KECamFineResolutionFactor to retain precision.
1.1138 +
1.1139 + @note In case there is an error, a negative error value from system wide error should be returned.
1.1140 + */
1.1141 + virtual TInt OpticalZoom() const=0;
1.1142 +
1.1143 + /**
1.1144 + Sets the zoom using a specific value. Triggers a KUidECamEventCameraSettingOpticalZoom
1.1145 + event to all MCameraObserver2 clients.
1.1146 +
1.1147 + @param aOpticalZoom
1.1148 + Required zoom value.
1.1149 + */
1.1150 + virtual void SetOpticalZoom(TInt aOpticalZoom)=0;
1.1151 +
1.1152 + /**
1.1153 + Gets the digital zoom levels.
1.1154 +
1.1155 + @param aDigitalZoomSteps
1.1156 + Array to hold digital zoom values multiplied by KECamFineResolutionFactor to retain precision.
1.1157 + So that if zoom is not supported the array will return a single element of value
1.1158 + KECamFineResolutionFactor.
1.1159 +
1.1160 + @param aInfo
1.1161 + a reference to TValueInfo, which establishes the type of the returned data.
1.1162 +
1.1163 + @note Such approach allows for support for both linear and non-linear zoom steps.
1.1164 + When camera device doesn't support this, empty array should be returned and TValueInfo should be ENotActive
1.1165 + and the corresponding getter/setters for this feature should not be used.
1.1166 +
1.1167 + @leave KErrNoMemory Out of memory. May also leave as a result of other system errors.
1.1168 + */
1.1169 + virtual void GetDigitalZoomStepsL(RArray<TInt>& aDigitalZoomSteps, TValueInfo& aInfo) const=0;
1.1170 +
1.1171 + /**
1.1172 + Gets the currently set digital zoom value.
1.1173 +
1.1174 + @return The currently set digital zoom value. The value is multiplied by
1.1175 + KECamFineResolutionFactor to retain precision.
1.1176 +
1.1177 + @note In case there is an error, a negative error value from system wide error should be returned.
1.1178 + */
1.1179 + virtual TInt DigitalZoom() const=0;
1.1180 +
1.1181 + /**
1.1182 + Sets the digital zoom value. Triggers a KUidECamEventCameraSettingDigitalZoom event
1.1183 + to all MCameraObserver2 clients.
1.1184 +
1.1185 + @param aDigitalZoom
1.1186 + Required zoom value.
1.1187 +
1.1188 + */
1.1189 + virtual void SetDigitalZoom(TInt aDigitalZoom)=0;
1.1190 +
1.1191 + /**
1.1192 + Checks whether exposure value is locked or not.
1.1193 +
1.1194 + @return whether exposure value is locked or not.
1.1195 + ETrue if locked, EFalse otherwise.
1.1196 + */
1.1197 + virtual TBool ExposureLockOn() const=0;
1.1198 +
1.1199 + /**
1.1200 + Sets exposure lock state. Triggers a KUidECamEventCameraSettingExposureLock event
1.1201 + to all MCameraObserver2 clients.
1.1202 +
1.1203 + @param aState
1.1204 + Required new state.
1.1205 + */
1.1206 + virtual void SetExposureLockOn(TBool aState)=0;
1.1207 +
1.1208 + /**
1.1209 + Checks whether AutoFocus value is locked or not.
1.1210 +
1.1211 + @return whether AutoFocus value is locked or not.
1.1212 + ETrue if locked, EFalse otherwise.
1.1213 + */
1.1214 + virtual TBool AutoFocusLockOn() const=0;
1.1215 +
1.1216 + /**
1.1217 + Sets autofocus lock state. Triggers a KUidECamEventCameraSettingAutoFocusLock event
1.1218 + to all MCameraObserver2 clients.
1.1219 +
1.1220 + @param aState
1.1221 + Required new state.
1.1222 + */
1.1223 + virtual void SetAutoFocusLockOn(TBool aState)=0;
1.1224 +
1.1225 + /**
1.1226 + Gets an array of all the advanced settings parameters supported by the device.
1.1227 + These are identified by UIDs and relate to the set or subset of it of all defined settings UIDs.
1.1228 +
1.1229 + @param aSettings
1.1230 + An empty array of TUids which would be populated by the implementation with
1.1231 + the UIDs of the supported parameters. If the array is empty on return,
1.1232 + the camera does not support any settings.
1.1233 +
1.1234 + @leave KErrNoMemory Out of memory. May also leave as a result of other system errors.
1.1235 + */
1.1236 + virtual void GetSupportedSettingsL(RArray<TUid>& aSettings) const=0;
1.1237 +
1.1238 + /**
1.1239 + Gets an array of all the advanced settings parameters currently active on the device.
1.1240 + These are identified by UIDs and relate to the set or subset of it of all supported
1.1241 + settings UIDs.
1.1242 +
1.1243 + @param aActiveSettings
1.1244 + An empty array of TUids which would be populated by the implementation with
1.1245 + the active setting UIDs. If the array is empty on return,
1.1246 + the camera does not support any settings.
1.1247 +
1.1248 + @leave KErrNoMemory Out of memory. May also leave as a result of other system errors.
1.1249 + */
1.1250 + virtual void GetActiveSettingsL(RArray<TUid>& aActiveSettings) const=0;
1.1251 +
1.1252 + /**
1.1253 + Gets an array of all the advanced settings parameters currently disabled on the device.
1.1254 + These are identified by UIDs and relate to the set or subset of it of all supported
1.1255 + settings UIDs.
1.1256 +
1.1257 + @param aDisabledSettings
1.1258 + An empty array of TUids which would be populated by the implementation with
1.1259 + the disabled setting UIDs. If the array is empty on return,
1.1260 + the camera does not support any settings.
1.1261 +
1.1262 + @leave KErrNoMemory Out of memory. May also leave as a result of other system errors.
1.1263 + */
1.1264 + virtual void GetDisabledSettingsL(RArray<TUid>& aDisabledSettings) const=0;
1.1265 +
1.1266 + /**
1.1267 + Retrieves the state for automatic size selection option. Default value is EFalse.
1.1268 +
1.1269 + @return ETrue if the automatic selection is switched on. Default value is EFalse.
1.1270 + */
1.1271 + virtual TBool AutomaticSizeSelectionChangeOn() const=0;
1.1272 +
1.1273 + /**
1.1274 + Allow camera to proactively change image size due external factors.
1.1275 + Default value is EFalse. Triggers a KUidECamEventCameraSettingAutomaticSizeSelection event notification.
1.1276 + @param aSetOn
1.1277 + whether the option should be switched on
1.1278 + */
1.1279 + virtual void SetAutomaticSizeSelectionChangeOn(TBool aSetOn)=0;
1.1280 +
1.1281 + /**
1.1282 + Retrieves the timeout values camera supported by the camera when in continuous auto focus mode.
1.1283 + Timeouts are in microseconds.
1.1284 +
1.1285 + @param aTimeouts
1.1286 + An empty array to hold timeout values.
1.1287 +
1.1288 + @param aInfo
1.1289 + a reference to TValueInfo, which establishes the type of the returned data.
1.1290 +
1.1291 + @leave KErrNoMemory Out of memory. May also leave as a result of other system errors.
1.1292 +
1.1293 + @note When camera device doesn't support this, empty array should be returned and TValueInfo should be ENotActive
1.1294 + and the corresponding getter/setters for this feature should not be used.
1.1295 + */
1.1296 + virtual void GetSupportedContinuousAutoFocusTimeoutsL(RArray<TInt>& aTimeouts, TValueInfo& aInfo) const=0;
1.1297 +
1.1298 + /**
1.1299 + Gets the current value for continuous autofocus timeout. Timeouts are in microseconds.
1.1300 +
1.1301 + @return the timeout value in microseconds.
1.1302 +
1.1303 + @note In case there is an error, a negative error value from system wide error should be returned.
1.1304 + */
1.1305 + virtual TInt ContinuousAutoFocusTimeout() const=0;
1.1306 +
1.1307 + /**
1.1308 + Sets new value for continuous autofocus timeout. Timeouts are in microseconds.
1.1309 + All MCameraObserver2 clients of the camera receive a
1.1310 + KUidECamEventCameraSettingsContinuousAutoFocusTimeout
1.1311 + event notification when timeout value is changed.
1.1312 +
1.1313 + @param aTimeout
1.1314 + a new timeout value in microseconds.
1.1315 + */
1.1316 + virtual void SetContinuousAutoFocusTimeout(TInt aTimeout)=0;
1.1317 +
1.1318 + /**
1.1319 + Gets all supported stabilization effects on the device.
1.1320 +
1.1321 + @return an integer - a bitfield of all supported TStabilizationEffect values.
1.1322 + */
1.1323 + virtual TInt SupportedStabilizationEffects() const=0;
1.1324 +
1.1325 + /**
1.1326 + Gets current active stabilization effect on the device.
1.1327 +
1.1328 + @return a TStabilizationEffect value.
1.1329 + */
1.1330 + virtual CCamera::CCameraAdvancedSettings::TStabilizationEffect StabilizationEffect() const=0;
1.1331 +
1.1332 + /**
1.1333 + Sets a specific stabilization effect on the device.
1.1334 + When a value is set, MCameraObserver2 clients for that camera will receive a
1.1335 + KUidECamEventCameraSettingsStabilizationEffect event notification.
1.1336 +
1.1337 + @param aEffect
1.1338 + stabilization effect selection of type TStabilizationEffect.
1.1339 + */
1.1340 + virtual void SetStabilizationEffect(CCamera::CCameraAdvancedSettings::TStabilizationEffect aEffect)=0;
1.1341 +
1.1342 + /**
1.1343 + Gets all supported stabilization algorithm values on the device.
1.1344 +
1.1345 + @return an integer - a bitfield of all supported TStabilizationAlgorithmComplexity values.
1.1346 + */
1.1347 + virtual TInt SupportedStabilizationComplexityValues() const=0;
1.1348 +
1.1349 + /**
1.1350 + Gets current active stabilization algorithm selection on the device.
1.1351 +
1.1352 + @return a TStabilizationAlgorithmComplexity value.
1.1353 + */
1.1354 + virtual CCamera::CCameraAdvancedSettings::TStabilizationAlgorithmComplexity StabilizationComplexity() const=0;
1.1355 +
1.1356 + /**
1.1357 + Sets a specific stabilization algorithm on the device.
1.1358 + When a value is set, MCameraObserver2 clients for that camera will receive a
1.1359 + KUidECamEventSettingsStabilizationAlgorithmComplexity event notification.
1.1360 +
1.1361 + @param aComplexity
1.1362 + stabilization effect selection of type TStabilizationAlgorithmComplexity.
1.1363 + */
1.1364 + virtual void SetStabilizationComplexity(CCamera::CCameraAdvancedSettings::TStabilizationAlgorithmComplexity aComplexity)=0;
1.1365 +
1.1366 + /**
1.1367 + Gets the units in which the white balance is measured on the device. The methods used to get
1.1368 + or set these differ depending on the supported unit type.
1.1369 + It is expected that a device will support only a single type or none.
1.1370 +
1.1371 + @return a value of TWBUnits type.
1.1372 + */
1.1373 + virtual CCamera::CCameraAdvancedSettings::TWBUnits SupportedWBUnits() const=0;
1.1374 +
1.1375 + /**
1.1376 + Get white balance value represented as a RGB triplet (TRgb)
1.1377 +
1.1378 + @param aValue
1.1379 + a reference to TRgb object which will contain the current white balance.
1.1380 + */
1.1381 + virtual void GetWBRgbValue(TRgb& aValue) const=0;
1.1382 +
1.1383 + /**
1.1384 + Set white balance value using a RGB triplet (TRgb).
1.1385 + Change in value causes an event notification KUidECamEventCameraSettingsWBValue
1.1386 + to be sent to all MCameraObserver2 clients of this camera.
1.1387 +
1.1388 + @param aValue
1.1389 + a const reference to TRgb object, which contains the new white balance.
1.1390 + */
1.1391 + virtual void SetWBRgbValue(const TRgb& aValue)=0;
1.1392 +
1.1393 + /**
1.1394 + Get the white balance values, as temperature measured in Kelvin, supported on the device.
1.1395 +
1.1396 + @param aWBColorTemperatures
1.1397 + A reference to an empty array of TInt which would be populated by the implementation with
1.1398 + the specific supported values.
1.1399 +
1.1400 + @param aInfo
1.1401 + a reference to TValueInfo, which establishes the type of the returned data.
1.1402 +
1.1403 + @note When camera device doesn't support this, empty array should be returned and TValueInfo should be ENotActive,
1.1404 + and the corresponding getter/setters for this feature should not be used.
1.1405 + */
1.1406 + virtual void GetWBSupportedColorTemperaturesL(RArray<TInt>& aWBColorTemperatures, TValueInfo& aInfo) const=0;
1.1407 +
1.1408 + /**
1.1409 + Get the white balance as a temperature in Kelvin.
1.1410 +
1.1411 + @return current white balance value as a temperature in Kelvins.
1.1412 +
1.1413 + @note In case there is an error, a negative error value from system wide error should be returned.
1.1414 + */
1.1415 + virtual TInt WBColorTemperature() const=0;
1.1416 +
1.1417 + /**
1.1418 + Set white balance value using a temperature, measured in Kelvin.
1.1419 + Change in value causes an event notification KUidECamEventCameraSettingsWBValue
1.1420 + to be sent to all MCameraObserver2 clients of this camera.
1.1421 +
1.1422 + @param aWBColorTemperature
1.1423 + the new white balance value in Kelvin.
1.1424 + */
1.1425 + virtual void SetWBColorTemperature(TInt aWBColorTemperature)=0;
1.1426 + };
1.1427 +
1.1428 +
1.1429 +/**
1.1430 +Mixin class for implementation by providers of some enhanced functionalities of the
1.1431 +Advanced Settings Camera Extension API.
1.1432 +
1.1433 +@publishedPartner
1.1434 +@released
1.1435 +*/
1.1436 +class MCameraAdvancedSettings2
1.1437 + {
1.1438 +
1.1439 +public:
1.1440 + /**
1.1441 + Releases the interface.
1.1442 + */
1.1443 + virtual void Release()=0;
1.1444 +
1.1445 + /**
1.1446 + Checks whether the flash is ready.
1.1447 +
1.1448 + @param aReady
1.1449 + A reference to a boolean set by the implementation to ETrue if the flash is ready,
1.1450 + EFalse otherwise.
1.1451 +
1.1452 + @return KErrNotSupported if the implementation of this method is not supported.
1.1453 + */
1.1454 + virtual TInt IsFlashReady(TBool& aReady) const=0;
1.1455 +
1.1456 + /**
1.1457 + Get the number of focus steps for current focus mode.
1.1458 +
1.1459 + @param aFocusModeSteps
1.1460 + A reference to an empty array of TInt which would be populated by the implementation with
1.1461 + the specific supported values.
1.1462 +
1.1463 + @param aInfo
1.1464 + a reference to TValueInfo, which establishes the type of the returned data.
1.1465 +
1.1466 + @leave KErrNotSupported if the implementation of this method is not supported. May also leave as a result of other system errors.
1.1467 +
1.1468 + @note When camera device doesn't support this, empty array should be returned and TValueInfo should be ENotActive,
1.1469 + and the corresponding getter/setters for this feature should not be used.
1.1470 + */
1.1471 + virtual void GetCurrentFocusModeStepsL(RArray<TInt>& aFocusModeSteps, TValueInfo& aInfo) const=0;
1.1472 + };
1.1473 +
1.1474 +/**
1.1475 +Mixin class for implementation by providers of 'some of the enhanced functionalities' of the
1.1476 +Advanced Settings Camera Extension API.
1.1477 +
1.1478 +@publishedPartner
1.1479 +@released
1.1480 +*/
1.1481 +class MCameraAdvancedSettings3
1.1482 + {
1.1483 +
1.1484 +public:
1.1485 + /**
1.1486 + Releases the interface.
1.1487 + */
1.1488 + virtual void Release()=0;
1.1489 +
1.1490 + /**
1.1491 + Gets all supported ISO types on the device.
1.1492 +
1.1493 + @param aSupportedISORateTypes
1.1494 + A reference to an integer which is a bitfield of all supported TISORateType values.
1.1495 + EISONone means feature is not supported.
1.1496 +
1.1497 + @leave May leave as a result of some error.
1.1498 + */
1.1499 + virtual void GetSupportedISORateTypeL(TInt& aSupportedISORateTypes) const=0;
1.1500 +
1.1501 + /**
1.1502 + Set the type of ISO rate and the exposure parameter or value specified.
1.1503 +
1.1504 + @param aISORateType
1.1505 + The type of ISO rate to be set.
1.1506 +
1.1507 + @param aParam
1.1508 + Depending on the value of aISORateType, possible values of aParam are one of the following:-
1.1509 + The value of ISO rate to be used in case of manual type of ISO rate (EISOManual).
1.1510 + OR
1.1511 + Redundant parameter in case of unprioritised type of auto ISO (EISOAutoUnPrioritised). It is left to the camera hardware/firmware
1.1512 + to decide how the ISO rate is selected. No priority regarding exposure is specified.
1.1513 + OR
1.1514 + Highest ISO rate to be picked by the camera while deciding for the best exposure in case of ISO prioritised
1.1515 + type of auto ISO (EISOAutoISOPrioritised). ISO rate closest to this (and lower) may be used so that best possible exposure is achieved.
1.1516 + OR
1.1517 + Slowest shutter speed to be picked by the camera while deciding for the best exposure in case of shutter speed
1.1518 + prioritised type of auto ISO (EISOAutoShutterSpeedPrioritised). After using this shutter speed, ISO rate is chosen by the camera to achieve
1.1519 + proper exposure. Shutter speed closest to this (and faster) may be used so that best possible exposure is achieved.
1.1520 + OR
1.1521 + Minimum aperture opening (deepest depth of field) to be picked by the camera while deciding
1.1522 + for the best exposure in case of aperture prioritised type of auto ISO (EISOAutoAperturePrioritised). After using this aperture opening, ISO
1.1523 + rate is chosen by the camera to achieve proper exposure. Aperture opening closest to this (and wider) may be
1.1524 + used to achieve best possible exposure.
1.1525 +
1.1526 + @note Triggers KUidECamEventCameraSettingIsoRateType to all MCameraObserver2 clients of the camera.
1.1527 + Uses HandleEvent to report the result or any possible error.
1.1528 + */
1.1529 + virtual void SetISORate(CCamera::CCameraAdvancedSettings::TISORateType aISORateType, TInt aParam)=0;
1.1530 +
1.1531 + /**
1.1532 + Get the type of ISO rate, exposure parameter and value set.
1.1533 +
1.1534 + @param aISORateType
1.1535 + A reference to the type of ISO rate set. EISONone means feature is not supported.
1.1536 +
1.1537 + @param aParam
1.1538 + Depending on the value of aISORateType, possible values of aParam are one of the following:-
1.1539 + A reference to the redundant parameter in case of manual type of ISO rate(EISOManual)
1.1540 + OR
1.1541 + A reference to the redundant parameter in case of unprioritised type of auto ISO(EISOAutoUnPrioritised)
1.1542 + OR
1.1543 + A reference to the highest ISO rate that may be picked up in case of ISO prioritised type of auto ISO(EISOAutoISOPrioritised)
1.1544 + OR
1.1545 + A reference to the slowest shutter speed that may be picked up in case of shutter speed prioritised type of auto ISO(EISOAutoShutterSpeedPrioritised)
1.1546 + OR
1.1547 + A reference to the minimum aperture opening that may be picked up in case of aperture prioritised type of auto ISO(EISOAutoAperturePrioritised)
1.1548 +
1.1549 + @param aISORate
1.1550 + A reference to the value of ISO rate currently being used, if camera device is capable of doing that.
1.1551 + Otherwise KErrNotFound should be retrieved indicating the incapability of camera.
1.1552 +
1.1553 + @leave May leave as a result of some other error.
1.1554 +
1.1555 + @note Since camera hardware may be incapable of providing the actual ISO value when one of the auto ISO type has
1.1556 + been set, then, in these cases, the 3rd argument should be retrieved as KErrNotFound.
1.1557 + */
1.1558 + virtual void GetISORateL(CCamera::CCameraAdvancedSettings::TISORateType& aISORateType, TInt& aParam, TInt& aISORate) const=0;
1.1559 +
1.1560 + /**
1.1561 + Provide reference screen for orientation information.
1.1562 +
1.1563 + @param aScreenDevice
1.1564 + A reference to the screen device.
1.1565 +
1.1566 + @note For consistency, when DSA view finder runs, it also provides a screen device. So, the DSA view finder's internal implementation
1.1567 + should call this method with the screen device passed ( 2nd argument to DSA view finder) to avoid disparity in knowing the refeence screen.
1.1568 + Triggers KUidECamEventCameraSettingReferenceScreen to all MCameraObserver2 clients of the camera.
1.1569 + Uses HandleEvent to report the result or any possible error.
1.1570 + */
1.1571 + virtual void SetReferenceScreen(CWsScreenDevice& aScreenDevice)=0;
1.1572 +
1.1573 + /**
1.1574 + Get the digital zoom steps for the still image when a particular image format and size are specified.
1.1575 +
1.1576 + @param aDigitalZoomSteps
1.1577 + A reference to an empty array of TInt to hold digital zoom step values for still image and multiplied by
1.1578 + KECamFineResolutionFactor to retain precision. If list returned is empty, this means feature is not supported.
1.1579 +
1.1580 + @param aInfo
1.1581 + A reference to TValueInfo, which establishes the type of the returned data.
1.1582 +
1.1583 + @param aSizeIndex
1.1584 + A value providing the size index which must be in the range 0 to TCameraInfo::iNumImageSizesSupported-1
1.1585 + inclusive.
1.1586 +
1.1587 + @param aFormat
1.1588 + A value providing the image format which must be one of the formats supported. (see
1.1589 + TCameraInfo::iImageFormatsSupported)
1.1590 +
1.1591 + @param aIsInfluencePossible
1.1592 + If True, signals that digital zoom step values may be influenced by some hardware factor like stabilization etc.
1.1593 + If False, no influence possible.
1.1594 +
1.1595 + @leave KErrNoMemory Out of memory. May leave with any other error code.
1.1596 +
1.1597 + @note This method retrieves the supported digital zoom steps irrespective of any stabilization influence.
1.1598 + In case of stabilization etc. influence, the setting function should set the best possible digital zoom value
1.1599 + and return error KErrECamDigitalZoomLimited along with dedicated event.
1.1600 +
1.1601 + @note When camera device doesn't support this feature, empty array should be returned and TValueInfo should be ENotActive,
1.1602 + and the corresponding getter/setters for this feature should not be used.
1.1603 +
1.1604 + @note Implementation recommendation for old methods which are used to retrieve the supported digital zoom values, is
1.1605 + to provide only safe values suitable in every cases.
1.1606 + */
1.1607 + virtual void GetDigitalZoomStepsForStillL(RArray<TInt>& aDigitalZoomSteps, TValueInfo& aInfo, TInt aSizeIndex,
1.1608 + CCamera::TFormat aFormat, TBool& aIsInfluencePossible) const=0;
1.1609 +
1.1610 + /**
1.1611 + Get the digital zoom steps for the video when a particular video frame format, size and rate are specified.
1.1612 +
1.1613 + @param aDigitalZoomSteps
1.1614 + A reference to an empty array of TInt to hold digital zoom step values for video and multiplied by
1.1615 + KECamFineResolutionFactor to retain precision. If list returned is empty, this means feature is not supported.
1.1616 +
1.1617 + @param aInfo
1.1618 + A reference to TValueInfo, which establishes the type of the returned data.
1.1619 +
1.1620 + @param aFrameRateIndex
1.1621 + A value providing the rate index must be in the range 0 to TCameraInfo::iNumVideoFrameRatesSupported-1
1.1622 + inclusive.
1.1623 +
1.1624 + @param aSizeIndex
1.1625 + A value providing the size index which must be in the range 0 to TCameraInfo::iNumVideoFrameSizesSupported-1
1.1626 + inclusive.
1.1627 +
1.1628 + @param aFormat
1.1629 + A value providing the format which must be one of the video frame formats supported. (see
1.1630 + TCameraInfo::iVideoFrameFormatsSupported)
1.1631 +
1.1632 + @param aIsInfluencePossible
1.1633 + If True, signals that digital zoom step values may be influenced by some hardware factor like stabilization etc.
1.1634 + If False, no influence possible.
1.1635 +
1.1636 + @param aExposure
1.1637 + The exposure mode.
1.1638 +
1.1639 + @leave KErrNoMemory Out of memory. May leave with any other error code.
1.1640 +
1.1641 + @note This method retrieves the supported digital zoom steps irrespective of any stabilization influence.
1.1642 + In case of stabilization etc. influence, the setting function should set the best possible digital zoom value
1.1643 + and return error KErrECamDigitalZoomLimited along with dedicated event.
1.1644 +
1.1645 + @note When camera device doesn't support this, empty array should be returned and TValueInfo should be ENotActive,
1.1646 + and the corresponding getter/setters for this feature should not be used.
1.1647 +
1.1648 + @note Implementation recommendation for old methods which are used to retrieve the supported digital zoom values, is
1.1649 + to provide only safe values suitable in every cases.
1.1650 + */
1.1651 + virtual void GetDigitalZoomStepsForVideoL(RArray<TInt>& aDigitalZoomSteps, TValueInfo& aInfo, TInt aFrameRateIndex,
1.1652 + TInt aSizeIndex, CCamera::TFormat aFormat, TBool& aIsInfluencePossible, CCamera::TExposure aExposure) const=0;
1.1653 + /**
1.1654 + Retrieves the pre capture warnings supported for a given camera mode
1.1655 +
1.1656 + @param aCameraMode
1.1657 + Desired camera mode for which the supported pre capture warnings may be retrieved.
1.1658 +
1.1659 + @param aPreCaptureWarningSupported
1.1660 + A bitfield of all supported TPreCaptureWarning to be issued in the given camera mode.
1.1661 + If no pre capture warning supported for the given camera mode, EPCWNone is retrieved.
1.1662 +
1.1663 + @leave May leave with any error.
1.1664 + */
1.1665 + virtual void GetPreCaptureWarningSupportedL(CCamera::CCameraAdvancedSettings::TCameraMode aCameraMode, TInt& aPreCaptureWarningSupported) const=0;
1.1666 +
1.1667 + /**
1.1668 + Subscribe in order to receive event which indicates warnings on occurrence of some specific unfavourable
1.1669 + conditions before image/video capture.
1.1670 +
1.1671 + @param aPreCaptureWarning
1.1672 + A bitfield specifying all the TPreCaptureWarning types to be subscribed for.
1.1673 +
1.1674 + @note When any of the subscribed warnings (represented by aPreCaptureWarning) get generated by the camera device,
1.1675 + event KUidECamEventCameraSettingPreCaptureWarning is issued. TECAMEvent2 class should be used in order to
1.1676 + provide the status of every PreCaptureWarning.
1.1677 +
1.1678 + @leave May leave with any error.
1.1679 + */
1.1680 + virtual void SubscribeToPreCaptureWarningL(TInt aPreCaptureWarning)=0;
1.1681 +
1.1682 + /**
1.1683 + Unsubscribe so that further events are not received when warnings get issued.
1.1684 +
1.1685 + @leave May leave with any error.
1.1686 + */
1.1687 + virtual void UnSubscribePreCaptureWarningL()=0;
1.1688 +
1.1689 + /**
1.1690 + Get the status of every warnings defined.
1.1691 +
1.1692 + @param aPreCaptureWarning
1.1693 + A reference to the integer - bitfield representing all the TPreCaptureWarning types issued.
1.1694 +
1.1695 + @leave May leave with any error.
1.1696 +
1.1697 + @note This method may be called after receiving the event KUidECamEventCameraSettingPreCaptureWarning OR
1.1698 + user may also opt for polling on this.
1.1699 + */
1.1700 + virtual void GetPreCaptureWarningL(TInt& aPreCaptureWarning) const=0;
1.1701 +
1.1702 + /**
1.1703 + Retrieve the different supported AF assistant light.
1.1704 +
1.1705 + @param aSupportedAFAssistantLight
1.1706 + A reference to integer - bitfield indicating the supported AF assistant light.
1.1707 + If EAFAssistantLightOff, this means AF assistant light is not supported.
1.1708 + If EAFAssistantLightManualOn, then manual AF assistant light is supported.
1.1709 + If EAFAssistantLightAuto, auto assistant light is supported.
1.1710 + If combination of EAFAssistantLightManualOn||EAFAssistantLightAuto , then both manual and Auto assistant light are supported.
1.1711 +
1.1712 + @leave May leave with any error.
1.1713 + */
1.1714 + virtual void GetSupportedAFAssistantLightL(TInt& aSupportedAFAssistantLight) const=0;
1.1715 +
1.1716 + /**
1.1717 + Get the type ( and state) of AF assistant light currently set.
1.1718 +
1.1719 + @param aAFAssistantLight
1.1720 + A reference to AF assistant light.
1.1721 + If EAFAssistantLightOff, then manual and auto assistant light are switched off.
1.1722 + If EAFAssistantLightManualOn, manual assistant light is switched on.
1.1723 + If EAFAssistantLightAuto, AF assistant light is set to auto.
1.1724 +
1.1725 + @leave May leave with any error.
1.1726 + */
1.1727 + virtual void GetAFAssistantLightL(CCamera::CCameraAdvancedSettings::TAFAssistantLight& aAFAssistantLight) const=0;
1.1728 +
1.1729 + /**
1.1730 + Set a particular type ( and state) of AF assistant light.
1.1731 +
1.1732 + @param aAFAssistantLight
1.1733 + Type of AF assistant light to be set.
1.1734 + If EAFAssistantLightOff, switch off the manual or auto assistant light.
1.1735 + If EAFAssistantLightManualOn, manually switch on the assistant light.
1.1736 + If EAFAssistantLightAuto, camera will automatically switch it on/off as per the conditions.
1.1737 +
1.1738 + @note Triggers KUidECamEventCameraSettingAFAssistantLight to all MCameraObserver2 clients of the camera.
1.1739 + Uses HandleEvent to report the result or any possible error.
1.1740 + */
1.1741 + virtual void SetAFAssistantLight(CCamera::CCameraAdvancedSettings::TAFAssistantLight aAFAssistantLight)=0;
1.1742 + };
1.1743 +
1.1744 +/**
1.1745 +Mixin class for implementation by providers of 'advanced camera feature extensions' of the
1.1746 +Advanced Settings Camera Extension API.
1.1747 +
1.1748 +@publishedPartner
1.1749 +@prototype
1.1750 +*/
1.1751 +class MCameraAdvancedSettings4
1.1752 + {
1.1753 +
1.1754 +public:
1.1755 + /**
1.1756 + Releases the interface.
1.1757 + */
1.1758 + virtual void Release()=0;
1.1759 +
1.1760 + /**
1.1761 + Retrieves the supported continuous zoom types.
1.1762 +
1.1763 + @param aSupportedContinuousZoomType
1.1764 + Retrieves a bitfield of TUint which indicates the supported continuous zoom type as given by
1.1765 + CCamera::CCameraAdvancedSettings::TContinuousZoomType
1.1766 +
1.1767 + @leave May leave with any error code.
1.1768 + */
1.1769 + virtual void GetSupportedContinuousZoomTypeL(TUint& aSupportedContinuousZoomType) const=0;
1.1770 +
1.1771 + /**
1.1772 + Retrieves the minimum, current and maximum focal length in millimeters. This information is useful to find out
1.1773 + which zoom directions can be used on the fly.
1.1774 +
1.1775 + @param aMinFocalLength
1.1776 + Minimum focal length if positive.
1.1777 + Error value if negative (for example, KErrNotFound if information not available).
1.1778 +
1.1779 + @param aCurrentFocalLength
1.1780 + Current focal length if positive.
1.1781 + Error value if negative (for example, KErrNotFound if information not available).
1.1782 +
1.1783 + @param aMaxFocalLength
1.1784 + Maximum focal length if positive.
1.1785 + Error value if negative (for example, KErrNotFound if information not available).
1.1786 +
1.1787 + @leave May leave with any error code.
1.1788 + */
1.1789 + virtual void GetFocalLengthInfoL(TInt& aMinFocalLength, TInt& aCurrentFocalLength, TInt& aMaxFocalLength) const=0;
1.1790 +
1.1791 + /**
1.1792 + Retrieves the total number of operation preferences supported by the implementation. Operation preferences are
1.1793 + specified in terms of performance vectors, that is, speed, quality, low memory consumption and low power consumption.
1.1794 +
1.1795 + @param aNumOperationPreferenceSupported
1.1796 + Retrieves the number of operation preferences supported.
1.1797 +
1.1798 + @leave May leave with any error code.
1.1799 + */
1.1800 + virtual void GetNumOperationPreferenceL(TUint& aNumOperationPreferenceSupported) const=0;
1.1801 +
1.1802 + /**
1.1803 + Enumerate the available operation preferences.
1.1804 +
1.1805 + @param aOperationPreferenceIndex
1.1806 + A particular index which represents an operation preference. The level of different performance vectors may be known
1.1807 + through other arguments. This varies from 0 to n-1, where n is given by GetNumOperationPreferenceL(n).
1.1808 +
1.1809 + @param aSpeedLevel
1.1810 + A TPerformanceLevel which specifies the speed level related to the index aOperationPreferenceIndex.
1.1811 +
1.1812 + @param aQualityLevel
1.1813 + A TPerformanceLevel which specifies the quality level related to the index aOperationPreferenceIndex.
1.1814 +
1.1815 + @param aLowMemoryConsumptionLevel
1.1816 + A TPerformanceLevel which specifies the low memory consumption level related to the index aOperationPreferenceIndex.
1.1817 + The lower the memory consumption, the higher the level.
1.1818 +
1.1819 + @param aLowPowerConsumptionLevel
1.1820 + A TPerformanceLevel which specifies the low power consumption level related to the index aOperationPreferenceIndex.
1.1821 + The lower the power consumption, the higher the level.
1.1822 +
1.1823 + @note It is up to the implementation how the performance levels are achieved. For example, shutter opening, JPEQ quality
1.1824 + and parallel buffering in case of streamed image output can be controlled in order to provide the desired
1.1825 + performance.
1.1826 +
1.1827 + @leave May leave with any error code.
1.1828 + */
1.1829 + virtual void EnumerateOperationPreferenceL(TUint aOperationPreferenceIndex, CCamera::CCameraAdvancedSettings::
1.1830 + TPerformanceLevel& aSpeedLevel, CCamera::CCameraAdvancedSettings::TPerformanceLevel& aQualityLevel,
1.1831 + CCamera::CCameraAdvancedSettings::TPerformanceLevel& aLowMemoryConsumptionLevel,
1.1832 + CCamera::CCameraAdvancedSettings::TPerformanceLevel& aLowPowerConsumptionLevel) const=0;
1.1833 +
1.1834 + /**
1.1835 + Set a particular operation preference.
1.1836 +
1.1837 + @param aOperationPreferenceIndex
1.1838 + An index which reveals a set of levels to be used for performance vectors, that is, speed, quality, low memory
1.1839 + consumption and low power consumption.
1.1840 +
1.1841 + @note Event KUidECamEventCameraSettingOperationPreference is used to notify clients about setting an operation preference.
1.1842 + */
1.1843 + virtual void SetOperationPreference(TUint aOperationPreferenceIndex)=0;
1.1844 +
1.1845 + /**
1.1846 + Get the current operation preference being used.
1.1847 +
1.1848 + @param aOperationPreferenceIndex
1.1849 + Currently used operation preference index.
1.1850 +
1.1851 + @leave May leave with any error code.
1.1852 + */
1.1853 + virtual void GetOperationPreferenceL(TInt& aOperationPreferenceIndex) const=0;
1.1854 +
1.1855 + /**
1.1856 + Retrieves the event uids which the underlying implementation supports. The client may use these events notifications as
1.1857 + milestones in their application.
1.1858 +
1.1859 + @param aSupportedEvents
1.1860 + Retrieves as array of TUid. Every member of the array represents a supported event uid. These events are ECAM
1.1861 + component wide.
1.1862 +
1.1863 + @leave May leave with any error code.
1.1864 +
1.1865 + @note This method may retrieve unrecognized events which may be introduced later on.
1.1866 + */
1.1867 + virtual void GetSupportedEventsL(RArray<TUid>& aSupportedEvents) const=0;
1.1868 +
1.1869 + /**
1.1870 + Retrieves the indirect feature changes which occur because of a particular requested feature change.
1.1871 + Since the camera setting operation is asynchronous in nature, changing a particular camera feature, in certain cases,
1.1872 + involves indirectly changing another feature. In order to notify the ECam client about this indirect feature change,
1.1873 + event KUidECamEvent2IndirectFeatureChange is issued. After this notification, the client may use this method to retrieve
1.1874 + the full list of indirect feature changes.
1.1875 +
1.1876 + @param aRequestedSetting
1.1877 + The actual requested feature change. This uid is supposed to be ECAM component wide and not restricted to
1.1878 + advanced camera settings.
1.1879 +
1.1880 + @param aIndirectFeatureChanges
1.1881 + An array of uids which retrieves the indirect feature changes. These uids are supposed to be ECAM component wide
1.1882 + and not restricted to advanced camera settings.
1.1883 +
1.1884 + @leave May leave with any error code.
1.1885 + */
1.1886 + virtual void GetIndirectFeatureChangesL(TUid aRequestedSetting, RArray<TUid>& aIndirectFeatureChanges) const=0;
1.1887 +
1.1888 + /**
1.1889 + Retrieves the concrete factory handle for the continuous zoom implementation.
1.1890 +
1.1891 + @param aImplFactoryPtr
1.1892 + The concrete factory handle for the continuous zoom implementation.
1.1893 +
1.1894 + @leave May leave with any error code.
1.1895 + */
1.1896 + virtual void CreateContinuousZoomImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const=0;
1.1897 + };
1.1898 +
1.1899 +/**
1.1900 +Mixin class for implementation by providers of the Presets Camera Extension API.
1.1901 +
1.1902 +This API is used to simplify user - camera interaction by allowing simultaneous
1.1903 +setting of various advanced camera hardware settings using a single parameter.
1.1904 +
1.1905 +A preset is identified by a single UID and relates to a known predefined outcome.
1.1906 +For example the 'Night' Preset is used to set the camera into a night mode
1.1907 +so that the user can take photos in dark conditions.
1.1908 +
1.1909 +The settings associated with a particular preset and their specific values and ranges
1.1910 +are specific to each type of camera hardware and are therefore not defined by the API.
1.1911 +
1.1912 +@publishedPartner
1.1913 +@released
1.1914 +*/
1.1915 +class MCameraPresets
1.1916 + {
1.1917 +
1.1918 +public:
1.1919 +
1.1920 + /**
1.1921 + Releases the interface.
1.1922 + */
1.1923 + virtual void Release()=0;
1.1924 +
1.1925 + /**
1.1926 + Gets the presets supported by the device. These are identified by UIDs
1.1927 + and relate to a known expected outcome.
1.1928 + The settings associated with a particular preset and their specific values and ranges are
1.1929 + specific to each type of camera hardware and are therefore not defined by the API.
1.1930 +
1.1931 + @param aPresets
1.1932 + An empty array of TUids which the API implementation must populate with the specific supported preset values. If the array is empty on return,
1.1933 + the camera does not support presets.
1.1934 +
1.1935 + @leave KErrNoMemory Out of memory. May also leave as a result of other system errors.
1.1936 + */
1.1937 + virtual void GetSupportedPresetsL(RArray<TUid>& aPresets) const=0;
1.1938 +
1.1939 + /**
1.1940 + Sets a specific preset supported by the camera.
1.1941 + All clients, implementing the MCameraObserver2 interface will receive a notification
1.1942 + with the UID of the specific preset, signalling a new preset has been selected.
1.1943 +
1.1944 + @param aPreset
1.1945 + The UID of the new requested preset.
1.1946 +
1.1947 + @note A particular preset is only active if it was established (through a call to
1.1948 + MCameraPresets ::SetPreset()) as the most recent operation affecting camera settings.
1.1949 + If some other camera setting is changed after calling MCameraPresets ::SetPreset()
1.1950 + then the preset is no longer active.
1.1951 + */
1.1952 + virtual void SetPreset(TUid aPreset)=0;
1.1953 +
1.1954 + /**
1.1955 + Gets the preset that was established by the last call to MCameraPresets ::SetPreset()
1.1956 +
1.1957 + @return The UID of the preset. If there is no active preset then the
1.1958 + returned value is KNullUid.
1.1959 +
1.1960 + @note A particular preset is only active if it was established (through a call to
1.1961 + MCameraPresets ::SetPreset()) as the most recent operation affecting camera settings.
1.1962 + If some other camera setting is changed after calling MCameraPresets ::SetPreset()
1.1963 + then the preset is no longer active.
1.1964 + */
1.1965 + virtual TUid Preset() const=0;
1.1966 +
1.1967 + /**
1.1968 + Gets all settings affected by the current preset. All settings that are related to
1.1969 + the preset in question will be included in the list, including any whose values
1.1970 + have not changed as a result of applying the preset.
1.1971 +
1.1972 + @param aSettings
1.1973 + An empty array of TUids which the API implementation must populate with the specific settings.
1.1974 +
1.1975 + @leave KErrNoMemory Out of memory. May also leave as a result of other system errors.
1.1976 + */
1.1977 + virtual void GetAffectedSettingsL(RArray<TUid>& aSettings) const=0;
1.1978 +
1.1979 + /**
1.1980 + Gets all settings associated with a specific preset. This function does not require a preset to have been set prior the call as in
1.1981 + GetAffectedSettingsL() function.
1.1982 + The returned array will contain the UIDs of all settings which are associated and
1.1983 + potentially affected by that particular preset.
1.1984 +
1.1985 + @param aPreset
1.1986 + the UID of the preset in question.
1.1987 +
1.1988 + @param aSettings
1.1989 + An empty array of TUids which would be populated by the implementation with
1.1990 + the UIDs of the settings associated with that preset.
1.1991 +
1.1992 + @leave KErrArgument if the preset UID is not recognised
1.1993 + @leave KErrNoMemory Out of memory. May also leave as a result of other system errors.
1.1994 + */
1.1995 + virtual void GetAssociatedSettingsL(TUid aPreset, RArray<TUid>& aSettings) const=0;
1.1996 + };
1.1997 +
1.1998 +/**
1.1999 +Mixin class for implementation of extra methods of the Presets Camera Extension API.
1.2000 +
1.2001 +@publishedPartner
1.2002 +@prototype
1.2003 +*/
1.2004 +class MCameraPresets2
1.2005 + {
1.2006 +
1.2007 +public:
1.2008 +
1.2009 + /**
1.2010 + Releases the interface.
1.2011 + */
1.2012 + virtual void Release()=0;
1.2013 +
1.2014 + /**
1.2015 + Retrieves those settings for which ranges have been restricted in order to let the camera work in a given preset mode.
1.2016 + The client will be notified of range restrictions through uid KUidECamEventRangeRestricted. After receiving this
1.2017 + notification, the client may use this method to retrieve those settings whose ranges have been restricted.
1.2018 +
1.2019 + @param aRangeRestrictedSettings
1.2020 + An array of uid which represents those settings whose ranges have been restricted. These settings are ECam
1.2021 + component wide. For each of the settings, the client can query about the restricted range as per the usual way.
1.2022 +
1.2023 + @leave May leave with any error code.
1.2024 + */
1.2025 + virtual void GetRangeRestrictedSettingsL(RArray<TUid>& aRangeRestrictedSettings) const=0;
1.2026 +
1.2027 + /**
1.2028 + Retrieves those settings which have been restricted (settings no longer supported) in order to let the camera work in a given preset mode.
1.2029 + The client will be notified of feature restrictions through uid KUidECamEventFeatureRestricted. After receiving this
1.2030 + notification, the client may use this method to retrieve these settings.
1.2031 +
1.2032 + @param aFeatureRestrictedSettings
1.2033 + An array of uid which represents those settings which have been restricted. These settings are ECam
1.2034 + component wide.
1.2035 +
1.2036 + @leave May leave with any error code.
1.2037 + */
1.2038 + virtual void GetFeatureRestrictedSettingsL(RArray<TUid>& aFeatureRestrictedSettings) const=0;
1.2039 +
1.2040 + /**
1.2041 + Retrieves information about whether the preset unlock feature is supported or not. Unlocking the preset helps in making some
1.2042 + further changes in the setting after the camera works in a particular preset mode
1.2043 +
1.2044 + @param aUnlockSupported
1.2045 + ETrue indicates preset unlock feature is supported.
1.2046 + EFalse indicates preset lock feature is not supported.
1.2047 +
1.2048 + @leave May leave with any error code.
1.2049 + */
1.2050 + virtual void IsPresetUnlockSupportedL(TBool& aUnlockSupported) const=0;
1.2051 +
1.2052 + /**
1.2053 + Locks the preset for any further setting changes.
1.2054 +
1.2055 + @note Event KUidECamEventPresetLocked is used to notify clients that the preset has been locked.
1.2056 + */
1.2057 + virtual void LockPreset()=0;
1.2058 +
1.2059 + /**
1.2060 + Unlocks the preset to apply further setting changes.
1.2061 +
1.2062 + @note Event KUidECamEventPresetUnlocked is used to notify clients that the preset has been unlocked.
1.2063 + */
1.2064 + virtual void UnlockPreset()=0;
1.2065 + };
1.2066 +
1.2067 +/**
1.2068 +Mixin class for implementation of extra methods of the Continuous Zoom API.
1.2069 +
1.2070 +@internalTechnology
1.2071 +@prototype
1.2072 +*/
1.2073 +class MCameraContinuousZoom
1.2074 + {
1.2075 +public:
1.2076 +
1.2077 + /**
1.2078 + Passes both the continuous zoom observer and pointer to the continuous zoom class to the implementation so callbacks
1.2079 + can be sent to the client along with the continuous zoom handle.
1.2080 +
1.2081 + @param aObserver
1.2082 + The reference to the continuous zoom observer.
1.2083 +
1.2084 + @param aContinuousZoomHandle
1.2085 + The pointer to the continuous zoom class object.
1.2086 +
1.2087 + @see MContinuousZoomObserver
1.2088 + */
1.2089 + virtual void SetContinuousZoomObserverAndHandle(MContinuousZoomObserver& aObserver, CCamera::CCameraContinuousZoom* aContinuousZoomHandle)=0;
1.2090 +
1.2091 + /**
1.2092 + Starts the continuous zoom operation. Clients will receive MContinuousZoomObserver::ContinuousZoomProgress() callback for intermediate zoom factors
1.2093 + 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
1.2094 + reaching the target zoom factor. This will be done via MContinuousZoomObserver::ContinuousZoomComplete() callback.
1.2095 +
1.2096 + @param aContinuousZoomParameters
1.2097 + The desired parameters to be used for the continuous zoom operation.
1.2098 +
1.2099 + @note If the implementation does not support re-configuring of zoom parameters whilst an existing continuous zoom operation is active then
1.2100 + StartContinuousZoomL() will leave with KErrInUse.
1.2101 +
1.2102 + @note If client has selected EDirectionTele zoom direction and the current zoom factor is greater than the target zoom factor, StartContinuousZoomL()
1.2103 + will leave with KErrArgument. Similarly, StartContinuousZoomL() will also leave with KErrArgument if client has selected EDirectionWide zoom
1.2104 + direction and current zoom factor is less than target zoom factor.
1.2105 +
1.2106 + @leave May leave with any error code.
1.2107 + */
1.2108 + virtual void StartContinuousZoomL(CCamera::CCameraAdvancedSettings::TContinuousZoomParameters aContinuousZoomParameters)=0;
1.2109 +
1.2110 + /**
1.2111 + Stop any exisiting continuous zoom operation.
1.2112 + Since this method is synchronous, no callback shall be issued for the concerned continuous zoom operation.
1.2113 + */
1.2114 + virtual void StopContinuousZoom()=0;
1.2115 +
1.2116 + /**
1.2117 + Retrieves information about the supported settings related to continuous zoom support.
1.2118 +
1.2119 + @param aContinuousZoomInfo
1.2120 + The information of supported continuous zoom functionality.
1.2121 +
1.2122 + @leave May leave with any error code.
1.2123 + */
1.2124 + virtual void GetContinuousZoomSupportInfoL(CCamera::CCameraAdvancedSettings::TContinuousZoomSupportInfo& aContinuousZoomInfo) const=0;
1.2125 +
1.2126 + /**
1.2127 + Retrieves the unique id of the continuous zoom object.
1.2128 + This is used to identify the continuous zoom handle returned to clients via the MContinuousZoomObserver callback.
1.2129 +
1.2130 + @param aZoomId
1.2131 + The unique id of this Continuous Zoom object.
1.2132 + */
1.2133 + virtual void GetContinuousZoomId(TInt& aZoomId) const=0;
1.2134 +
1.2135 + /**
1.2136 + Releases the interface.
1.2137 + */
1.2138 + virtual void Release()=0;
1.2139 + };
1.2140 +
1.2141 +#endif // ECAMADVSETTINGSINTF_H