sl@0: // Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @publishedPartner sl@0: @released sl@0: */ sl@0: #ifndef ECAM__CONST_H sl@0: #define ECAM__CONST_H sl@0: sl@0: #ifdef SYMBIAN_ENABLE_SPLIT_HEADERS sl@0: #include sl@0: #endif sl@0: /** sl@0: Event indicating continuous zoom progess. This event is used for StartContinuousZoomL feature. This is a part of class sl@0: CCamera::CCameraAdvancedSettings. This event should be packed in TECAMEvent2 class. sl@0: sl@0: This TUid is available from the following methods only to the API clients using CCamera::New2L() or CCamera:: sl@0: NewDuplicate2L(): sl@0: void CCamera::CCameraAdvancedSettings::GetSupportedSettingsL(RArray& aSettings) const; sl@0: void CCamera::CCameraAdvancedSettings::GetActiveSettingsL(RArray& aActiveSettings) const; sl@0: void CCamera::CCameraAdvancedSettings::GetDisabledSettingsL(RArray& aDisabledSettings) const; sl@0: sl@0: Note: TECAMEvent2::iParam represents percentage continuous zoom completion. sl@0: sl@0: @note If zoom direction is EZoomDirectionWide, percentage completion will target minimum possible value as 100%. sl@0: @note If zoom direction is EZoomDirectionTele, percentage completion will target maximum possible value as 100%. sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: static const TUid KUidECamEvent2CameraSettingContinuousZoomPercentageCompletion = {KUidECamEvent2CameraSettingContinuousZoomPercentageCompletionUidValue}; sl@0: sl@0: /** sl@0: Notifies that unrequested feature changes have occurred. The method GetIndirectFeatureChangesL() is called to sl@0: retrieve the list of unrequested feature changes. The unrequested feature changes are ECAM component wide. sl@0: sl@0: This TUid is available from the following methods only to the API clients using CCamera::New2L() or CCamera::NewDuplicate2L(): sl@0: void CCamera::CCameraAdvancedSettings::GetSupportedSettingsL(RArray& aSettings) const; sl@0: void CCamera::CCameraAdvancedSettings::GetActiveSettingsL(RArray& aActiveSettings) const; sl@0: void CCamera::CCameraAdvancedSettings::GetDisabledSettingsL(RArray& aDisabledSettings) const; sl@0: sl@0: Note: TECAMEvent2::iParam represents the TInt used to obtain a uid which represents the requested feature change. sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: static const TUid KUidECamEvent2IndirectFeatureChange = {KUidECamEvent2IndirectFeatureChangeUidValue}; sl@0: sl@0: /** sl@0: Event indicating auto aperture is being used. sl@0: This event should be packed in TECAMEvent2 class. sl@0: sl@0: This TUid is available from the following methods only to the API clients using CCamera::New2L() or CCamera:: sl@0: NewDuplicate2L(): sl@0: void CCamera::CCameraAdvancedSettings::GetSupportedSettingsL(RArray& aSettings) const; sl@0: void CCamera::CCameraAdvancedSettings::GetActiveSettingsL(RArray& aActiveSettings) const; sl@0: void CCamera::CCameraAdvancedSettings::GetDisabledSettingsL(RArray& aDisabledSettings) const; sl@0: sl@0: Note: TECAMEvent2::iParam represents actual value of aperture being used if camera is capable of. Otherwise, KErrNotFound will be retrieved. sl@0: Note: This event is also used if exposure is set to CCamera::EExposureAuto or CCamera::EExposureShutterPriority. sl@0: sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: static const TUid KUidECamEvent2CameraSettingAutoAperture = {KUidECamEvent2CameraSettingAutoApertureUidValue}; sl@0: sl@0: /** Specifies whether the camera is reserved or not. sl@0: The enumeration list may be extended in future. sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: enum TECamReserveStatus sl@0: { sl@0: /** Camera Status unknown */ sl@0: ECameraStatusUnknown, sl@0: /** Camera is reserved */ sl@0: ECameraReserved, sl@0: /** Camera is unreserved */ sl@0: ECameraUnReserved sl@0: }; sl@0: sl@0: /** Mixin base class for camera clients to handle the notification of Reserve status. sl@0: sl@0: Client must implement MReserveObserver in order to handle the notifications and take appropriate steps accordingly. sl@0: sl@0: @note By the time client gets unreserved status via callback, the camera may be on its way getting reserved by another client who sl@0: might be continuously polling for it. sl@0: So, there is no guarantee that the client will be able to reserve it. But it is guaranteed that the client will sl@0: receive the notification about change in reserve status. sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class MReserveObserver sl@0: { sl@0: public: sl@0: /** sl@0: This notification is send to provide the reserve status for the camera. sl@0: sl@0: @param aCameraIndex sl@0: The camera index for which the Reserve status has to be provided. sl@0: sl@0: @param aReserveStatus sl@0: The reserve status for the camera. sl@0: sl@0: @param aErrorCode sl@0: The error value. sl@0: sl@0: @note If error is not KErrNone, then the client is expected to destroy the CCameraStatusWatch retrieved through sl@0: TReservedInfo::SubscribeReserveInfoL and re-subscribe if desired. sl@0: */ sl@0: virtual void ReserveStatus(TInt iCameraIndex, TECamReserveStatus aReserveStatus, TInt aErrorCode) =0; sl@0: }; sl@0: sl@0: class CCameraStatusWatch; sl@0: sl@0: /** sl@0: @publishedPartner sl@0: @prototype sl@0: sl@0: Client uses it to asynchronously receive the reserve status of a camera index through MReserveObserver sl@0: */ sl@0: class TReservedInfo sl@0: { sl@0: public: sl@0: IMPORT_C static void SubscribeReserveInfoL(MReserveObserver& aReserveObserver, TInt aCameraIndex, CCameraStatusWatch*& aCameraStatusWatch); sl@0: }; sl@0: sl@0: /** sl@0: This class is used to provide extra buffer informations through a custom interface. sl@0: sl@0: @see MCameraImageBuffer sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class MCameraBuffer2 : public MCameraBuffer sl@0: { sl@0: public: sl@0: /** sl@0: Retrieves an array of uids which represents the class identifier used for buffer extension. sl@0: sl@0: @param aInterfaceUids sl@0: An array of uids which represents the class identifier. sl@0: sl@0: @return The error code. sl@0: */ sl@0: virtual TInt GetInterfaceUids(RArray& aInterfaceUids) = 0; sl@0: sl@0: /** sl@0: Gets a custom interface for extra buffer information. sl@0: sl@0: @param aInterface sl@0: The Uid of the particular interface function required for buffer information. sl@0: sl@0: @param aPtrInterface sl@0: The client has to cast the custom interface pointer to the appropriate type. sl@0: sl@0: @return The error code. sl@0: */ sl@0: virtual TInt CustomInterface(TUid aInterface, TAny*& aPtrInterface) = 0; sl@0: }; sl@0: sl@0: #endif // ECAM__CONST_H