1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/imagingandcamerafws/camerafw/Include/ecamconst.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,180 @@
1.4 +// Copyright (c) 2002-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 +#ifndef ECAM__CONST_H
1.25 +#define ECAM__CONST_H
1.26 +
1.27 +#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
1.28 +#include <ecamuidsconst.hrh>
1.29 +#endif
1.30 +/**
1.31 +Event indicating continuous zoom progess. This event is used for StartContinuousZoomL feature. This is a part of class
1.32 +CCamera::CCameraAdvancedSettings. This event should be packed in TECAMEvent2 class.
1.33 +
1.34 +This TUid is available from the following methods only to the API clients using CCamera::New2L() or CCamera::
1.35 +NewDuplicate2L():
1.36 +void CCamera::CCameraAdvancedSettings::GetSupportedSettingsL(RArray<TUid>& aSettings) const;
1.37 +void CCamera::CCameraAdvancedSettings::GetActiveSettingsL(RArray<TUid>& aActiveSettings) const;
1.38 +void CCamera::CCameraAdvancedSettings::GetDisabledSettingsL(RArray<TUid>& aDisabledSettings) const;
1.39 +
1.40 +Note: TECAMEvent2::iParam represents percentage continuous zoom completion.
1.41 +
1.42 +@note If zoom direction is EZoomDirectionWide, percentage completion will target minimum possible value as 100%.
1.43 +@note If zoom direction is EZoomDirectionTele, percentage completion will target maximum possible value as 100%.
1.44 +
1.45 +@publishedPartner
1.46 +@prototype
1.47 +*/
1.48 +static const TUid KUidECamEvent2CameraSettingContinuousZoomPercentageCompletion = {KUidECamEvent2CameraSettingContinuousZoomPercentageCompletionUidValue};
1.49 +
1.50 +/**
1.51 +Notifies that unrequested feature changes have occurred. The method GetIndirectFeatureChangesL() is called to
1.52 +retrieve the list of unrequested feature changes. The unrequested feature changes are ECAM component wide.
1.53 +
1.54 +This TUid is available from the following methods only to the API clients using CCamera::New2L() or CCamera::NewDuplicate2L():
1.55 +void CCamera::CCameraAdvancedSettings::GetSupportedSettingsL(RArray<TUid>& aSettings) const;
1.56 +void CCamera::CCameraAdvancedSettings::GetActiveSettingsL(RArray<TUid>& aActiveSettings) const;
1.57 +void CCamera::CCameraAdvancedSettings::GetDisabledSettingsL(RArray<TUid>& aDisabledSettings) const;
1.58 +
1.59 +Note: TECAMEvent2::iParam represents the TInt used to obtain a uid which represents the requested feature change.
1.60 +
1.61 +@publishedPartner
1.62 +@prototype
1.63 +*/
1.64 +static const TUid KUidECamEvent2IndirectFeatureChange = {KUidECamEvent2IndirectFeatureChangeUidValue};
1.65 +
1.66 +/**
1.67 +Event indicating auto aperture is being used.
1.68 +This event should be packed in TECAMEvent2 class.
1.69 +
1.70 +This TUid is available from the following methods only to the API clients using CCamera::New2L() or CCamera::
1.71 +NewDuplicate2L():
1.72 +void CCamera::CCameraAdvancedSettings::GetSupportedSettingsL(RArray<TUid>& aSettings) const;
1.73 +void CCamera::CCameraAdvancedSettings::GetActiveSettingsL(RArray<TUid>& aActiveSettings) const;
1.74 +void CCamera::CCameraAdvancedSettings::GetDisabledSettingsL(RArray<TUid>& aDisabledSettings) const;
1.75 +
1.76 +Note: TECAMEvent2::iParam represents actual value of aperture being used if camera is capable of. Otherwise, KErrNotFound will be retrieved.
1.77 +Note: This event is also used if exposure is set to CCamera::EExposureAuto or CCamera::EExposureShutterPriority.
1.78 +
1.79 +
1.80 +@publishedPartner
1.81 +@prototype
1.82 +*/
1.83 +static const TUid KUidECamEvent2CameraSettingAutoAperture = {KUidECamEvent2CameraSettingAutoApertureUidValue};
1.84 +
1.85 +/** Specifies whether the camera is reserved or not.
1.86 + The enumeration list may be extended in future.
1.87 +
1.88 +@publishedPartner
1.89 +@prototype
1.90 +*/
1.91 +enum TECamReserveStatus
1.92 + {
1.93 + /** Camera Status unknown */
1.94 + ECameraStatusUnknown,
1.95 + /** Camera is reserved */
1.96 + ECameraReserved,
1.97 + /** Camera is unreserved */
1.98 + ECameraUnReserved
1.99 + };
1.100 +
1.101 +/** Mixin base class for camera clients to handle the notification of Reserve status.
1.102 +
1.103 +Client must implement MReserveObserver in order to handle the notifications and take appropriate steps accordingly.
1.104 +
1.105 +@note By the time client gets unreserved status via callback, the camera may be on its way getting reserved by another client who
1.106 + might be continuously polling for it.
1.107 + So, there is no guarantee that the client will be able to reserve it. But it is guaranteed that the client will
1.108 + receive the notification about change in reserve status.
1.109 +
1.110 +@publishedPartner
1.111 +@prototype
1.112 +*/
1.113 +class MReserveObserver
1.114 + {
1.115 +public:
1.116 + /**
1.117 + This notification is send to provide the reserve status for the camera.
1.118 +
1.119 + @param aCameraIndex
1.120 + The camera index for which the Reserve status has to be provided.
1.121 +
1.122 + @param aReserveStatus
1.123 + The reserve status for the camera.
1.124 +
1.125 + @param aErrorCode
1.126 + The error value.
1.127 +
1.128 + @note If error is not KErrNone, then the client is expected to destroy the CCameraStatusWatch retrieved through
1.129 + TReservedInfo::SubscribeReserveInfoL and re-subscribe if desired.
1.130 + */
1.131 + virtual void ReserveStatus(TInt iCameraIndex, TECamReserveStatus aReserveStatus, TInt aErrorCode) =0;
1.132 + };
1.133 +
1.134 +class CCameraStatusWatch;
1.135 +
1.136 +/**
1.137 +@publishedPartner
1.138 +@prototype
1.139 +
1.140 +Client uses it to asynchronously receive the reserve status of a camera index through MReserveObserver
1.141 +*/
1.142 +class TReservedInfo
1.143 + {
1.144 +public:
1.145 + IMPORT_C static void SubscribeReserveInfoL(MReserveObserver& aReserveObserver, TInt aCameraIndex, CCameraStatusWatch*& aCameraStatusWatch);
1.146 + };
1.147 +
1.148 +/**
1.149 +This class is used to provide extra buffer informations through a custom interface.
1.150 +
1.151 +@see MCameraImageBuffer
1.152 +
1.153 +@publishedPartner
1.154 +@prototype
1.155 +*/
1.156 +class MCameraBuffer2 : public MCameraBuffer
1.157 + {
1.158 +public:
1.159 + /**
1.160 + Retrieves an array of uids which represents the class identifier used for buffer extension.
1.161 +
1.162 + @param aInterfaceUids
1.163 + An array of uids which represents the class identifier.
1.164 +
1.165 + @return The error code.
1.166 + */
1.167 + virtual TInt GetInterfaceUids(RArray<TUid>& aInterfaceUids) = 0;
1.168 +
1.169 + /**
1.170 + Gets a custom interface for extra buffer information.
1.171 +
1.172 + @param aInterface
1.173 + The Uid of the particular interface function required for buffer information.
1.174 +
1.175 + @param aPtrInterface
1.176 + The client has to cast the custom interface pointer to the appropriate type.
1.177 +
1.178 + @return The error code.
1.179 + */
1.180 + virtual TInt CustomInterface(TUid aInterface, TAny*& aPtrInterface) = 0;
1.181 + };
1.182 +
1.183 +#endif // ECAM__CONST_H