Update contrib.
1 // Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
24 #ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
25 #include <ecamuidsconst.hrh>
28 Event indicating continuous zoom progess. This event is used for StartContinuousZoomL feature. This is a part of class
29 CCamera::CCameraAdvancedSettings. This event should be packed in TECAMEvent2 class.
31 This TUid is available from the following methods only to the API clients using CCamera::New2L() or CCamera::
33 void CCamera::CCameraAdvancedSettings::GetSupportedSettingsL(RArray<TUid>& aSettings) const;
34 void CCamera::CCameraAdvancedSettings::GetActiveSettingsL(RArray<TUid>& aActiveSettings) const;
35 void CCamera::CCameraAdvancedSettings::GetDisabledSettingsL(RArray<TUid>& aDisabledSettings) const;
37 Note: TECAMEvent2::iParam represents percentage continuous zoom completion.
39 @note If zoom direction is EZoomDirectionWide, percentage completion will target minimum possible value as 100%.
40 @note If zoom direction is EZoomDirectionTele, percentage completion will target maximum possible value as 100%.
45 static const TUid KUidECamEvent2CameraSettingContinuousZoomPercentageCompletion = {KUidECamEvent2CameraSettingContinuousZoomPercentageCompletionUidValue};
48 Notifies that unrequested feature changes have occurred. The method GetIndirectFeatureChangesL() is called to
49 retrieve the list of unrequested feature changes. The unrequested feature changes are ECAM component wide.
51 This TUid is available from the following methods only to the API clients using CCamera::New2L() or CCamera::NewDuplicate2L():
52 void CCamera::CCameraAdvancedSettings::GetSupportedSettingsL(RArray<TUid>& aSettings) const;
53 void CCamera::CCameraAdvancedSettings::GetActiveSettingsL(RArray<TUid>& aActiveSettings) const;
54 void CCamera::CCameraAdvancedSettings::GetDisabledSettingsL(RArray<TUid>& aDisabledSettings) const;
56 Note: TECAMEvent2::iParam represents the TInt used to obtain a uid which represents the requested feature change.
61 static const TUid KUidECamEvent2IndirectFeatureChange = {KUidECamEvent2IndirectFeatureChangeUidValue};
64 Event indicating auto aperture is being used.
65 This event should be packed in TECAMEvent2 class.
67 This TUid is available from the following methods only to the API clients using CCamera::New2L() or CCamera::
69 void CCamera::CCameraAdvancedSettings::GetSupportedSettingsL(RArray<TUid>& aSettings) const;
70 void CCamera::CCameraAdvancedSettings::GetActiveSettingsL(RArray<TUid>& aActiveSettings) const;
71 void CCamera::CCameraAdvancedSettings::GetDisabledSettingsL(RArray<TUid>& aDisabledSettings) const;
73 Note: TECAMEvent2::iParam represents actual value of aperture being used if camera is capable of. Otherwise, KErrNotFound will be retrieved.
74 Note: This event is also used if exposure is set to CCamera::EExposureAuto or CCamera::EExposureShutterPriority.
80 static const TUid KUidECamEvent2CameraSettingAutoAperture = {KUidECamEvent2CameraSettingAutoApertureUidValue};
82 /** Specifies whether the camera is reserved or not.
83 The enumeration list may be extended in future.
88 enum TECamReserveStatus
90 /** Camera Status unknown */
92 /** Camera is reserved */
94 /** Camera is unreserved */
98 /** Mixin base class for camera clients to handle the notification of Reserve status.
100 Client must implement MReserveObserver in order to handle the notifications and take appropriate steps accordingly.
102 @note By the time client gets unreserved status via callback, the camera may be on its way getting reserved by another client who
103 might be continuously polling for it.
104 So, there is no guarantee that the client will be able to reserve it. But it is guaranteed that the client will
105 receive the notification about change in reserve status.
110 class MReserveObserver
114 This notification is send to provide the reserve status for the camera.
117 The camera index for which the Reserve status has to be provided.
119 @param aReserveStatus
120 The reserve status for the camera.
125 @note If error is not KErrNone, then the client is expected to destroy the CCameraStatusWatch retrieved through
126 TReservedInfo::SubscribeReserveInfoL and re-subscribe if desired.
128 virtual void ReserveStatus(TInt iCameraIndex, TECamReserveStatus aReserveStatus, TInt aErrorCode) =0;
131 class CCameraStatusWatch;
137 Client uses it to asynchronously receive the reserve status of a camera index through MReserveObserver
142 IMPORT_C static void SubscribeReserveInfoL(MReserveObserver& aReserveObserver, TInt aCameraIndex, CCameraStatusWatch*& aCameraStatusWatch);
146 This class is used to provide extra buffer informations through a custom interface.
148 @see MCameraImageBuffer
153 class MCameraBuffer2 : public MCameraBuffer
157 Retrieves an array of uids which represents the class identifier used for buffer extension.
159 @param aInterfaceUids
160 An array of uids which represents the class identifier.
162 @return The error code.
164 virtual TInt GetInterfaceUids(RArray<TUid>& aInterfaceUids) = 0;
167 Gets a custom interface for extra buffer information.
170 The Uid of the particular interface function required for buffer information.
173 The client has to cast the custom interface pointer to the appropriate type.
175 @return The error code.
177 virtual TInt CustomInterface(TUid aInterface, TAny*& aPtrInterface) = 0;
180 #endif // ECAM__CONST_H