sl@0: // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @publishedPartner sl@0: @released sl@0: */ sl@0: #ifndef ECAMADVSETTINGS_CONST_H sl@0: #define ECAMADVSETTINGS_CONST_H sl@0: sl@0: #include sl@0: #ifdef SYMBIAN_ENABLE_SPLIT_HEADERS sl@0: #include sl@0: #endif sl@0: sl@0: sl@0: /** sl@0: Notifies the client that continuous zoom limit has been reached. 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: @publishedPartner sl@0: @prototype sl@0: */ sl@0: static const TUid KUidECamEventCameraSettingContinuousZoomReachedLimit = {KUidECamEventCameraSettingContinuousZoomReachedLimitUidValue}; sl@0: sl@0: /** sl@0: Notifies the client about the setting of performance operation preference. 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: @publishedPartner sl@0: @prototype sl@0: */ sl@0: static const TUid KUidECamEventCameraSettingOperationPreference = {KUidECamEventCameraSettingOperationPreferenceUidValue}; sl@0: sl@0: sl@0: sl@0: /** sl@0: Used to for video telephony. sl@0: sl@0: This uid value is available from the 'supported' or 'getter' methods only to the API clients using CCamera::New2L() or sl@0: CCamera::NewDuplicate2L(). sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: static const TUid KUidECamPresetVideoTelephony = {KUidECamPresetVideoTelephonyUidValue}; sl@0: sl@0: /** sl@0: Used to clarify that camera is not under any preset mode. Possible scenario: client sets camera in a particular preset sl@0: mode and then makes some setting changes on top of it. Then theoretically camera is out of that preset. Hence, sl@0: KUidECamPresetNone will be used in such cases. sl@0: sl@0: This uid value is available from the 'supported' or 'getter' methods only to the API clients using CCamera::New2L() or sl@0: CCamera::NewDuplicate2L(). sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: static const TUid KUidECamPresetNone = {KUidECamPresetNoneUidValue}; sl@0: sl@0: /** Notifications related to presets */ sl@0: /** sl@0: Used to notify clients about possible range restrictions, when camera works under a particular preset mode. sl@0: This is not a particular preset uid. sl@0: sl@0: @note Call CCamera::CCameraPresets::GetRangeRestrictedSettingsL(RArray& aRangeRestrictedSettings) to retrieve sl@0: the list of settings whose range have been restricted. sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: static const TUid KUidECamEventRangeRestricted = {KUidECamEventRangeRestrictedUidValue}; sl@0: sl@0: /** sl@0: Used to notify clients about possible feature restrictions, when camera works under a particular preset mode. sl@0: This is not a particular preset uid. sl@0: sl@0: @note Call CCamera::CCameraPresets::GetFeatureRestrictedSettingsL(RArray& aFeatureRestrictedSettings) to retrieve sl@0: the list of settings which have been restricted. sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: static const TUid KUidECamEventFeatureRestricted = {KUidECamEventFeatureRestrictedUidValue}; sl@0: sl@0: /** sl@0: Used to notify clients that locking of the preset operation has completed, when camera works under a particular preset mode. sl@0: This is not a particular preset uid. sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: static const TUid KUidECamEventPresetLocked = {KUidECamEventPresetLockedUidValue}; sl@0: sl@0: /** sl@0: Used to notify clients that unlocking of the preset operation has completed, when camera works under a particular preset mode. sl@0: This is not a particular preset uid. sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: static const TUid KUidECamEventPresetUnlocked = {KUidECamEventPresetUnlockedUidValue}; sl@0: sl@0: sl@0: #endif // ECAMADVSETTINGS_CONST_H sl@0: sl@0: sl@0: