1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/imagingandcamerafws/camerafw/Include/ecamdef.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,163 @@
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 + @internalTechnology
1.22 + @released
1.23 +*/
1.24 +#ifndef ECAM_DEF_H
1.25 +#define ECAM_DEF_H
1.26 +
1.27 +#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
1.28 +#include <ecamuidsconst.hrh>
1.29 +#include <ecamuidsdef.hrh>
1.30 +#endif
1.31 +/**
1.32 +Viewfinder fading effect has been set.
1.33 +This event should be packed in TECAMEvent2 class.
1.34 +
1.35 +Note: TECAMEvent2::iParam represents viewfinder handle.
1.36 +
1.37 +@internalTechnology
1.38 +*/
1.39 +static const TUid KUidECamEvent2ViewFinderFadingEffect = {KUidECamEvent2ViewFinderFadingEffectUidValue};
1.40 +
1.41 +/**
1.42 +Event providing focussing feedback. The focussing feedback will be provided whenever the focussing state changes for the
1.43 +selected spot combination.
1.44 +This event should be packed in TECAMEvent2 class.
1.45 +Note: TECAMEvent2::iParam represents bitfield of chosen spots which are in focus.
1.46 +Note: TECAMEvent2::iParam1 represents bitfield of chosen spots which are not in focus.
1.47 +
1.48 +@internalTechnology
1.49 +*/
1.50 +static const TUid KECamEvent2ImageCaptureControlFocussingInformation = {KECamEvent2ImageCaptureControlFocussingInformationUidValue};
1.51 +
1.52 +/**
1.53 +Focussing spot combination. This event tells about completion of the setting operation for the spot combination.
1.54 +This event should be packed in TECAMEvent2 class.
1.55 +
1.56 +@note static_cast<CCamera::CCameraAdvancedSettings::TFocusMode>(TECAMEvent2::iParam) represents the focus mode for
1.57 + which the spot combination has to be set for receiving focussing feedback.
1.58 +
1.59 +@internalTechnology
1.60 +*/
1.61 +static const TUid KUidECamEvent2ImageCaptureControlSpotCombination = {KUidECamEvent2ImageCaptureControlSpotCombinationUidValue};
1.62 +
1.63 +/**
1.64 +Viewfinder magnification has been set.
1.65 +This event should be packed in TECAMEvent2 class.
1.66 +
1.67 +Note: TECAMEvent2::iParam represents viewfinder handle.
1.68 +
1.69 +@internalTechnology
1.70 +*/
1.71 +static const TUid KUidECamEvent2ViewFinderMagnification = {KUidECamEvent2ViewFinderMagnificationUidValue};
1.72 +
1.73 +/**
1.74 +Notifies the current camera reserver that the camera control will be forcefully overtaken by another requesting client
1.75 +after a specific time interval.
1.76 +
1.77 +This TUid is available from the following methods only to the API clients using CCamera::New2L() or CCamera::NewDuplicate2L():
1.78 +void CCamera::CCameraAdvancedSettings::GetSupportedSettingsL(RArray<TUid>& aSettings) const;
1.79 +void CCamera::CCameraAdvancedSettings::GetActiveSettingsL(RArray<TUid>& aActiveSettings) const;
1.80 +void CCamera::CCameraAdvancedSettings::GetDisabledSettingsL(RArray<TUid>& aDisabledSettings) const;
1.81 +
1.82 +@note TTimeIntervalMicroSeconds32(TECAMEvent2::iParam) represents the maximum time to wait.
1.83 + TECAMEvent2::iParam needs to be passed as argument in order to construct the TTimeIntervalMicroSeconds32 object.
1.84 +
1.85 +Note: TECAMEvent2::iParam1 represents the priority of the requestor client to whom the camera control will be forcibly
1.86 +passed after a specific time interval.
1.87 +
1.88 +@internalTechnology
1.89 +*/
1.90 +static const TUid KUidECamEvent2CameraRequestForcedTimedTakeOver = {KUidECamEvent2CameraRequestForcedTimedTakeOverUidValue};
1.91 +
1.92 +/**
1.93 +Notifies the current camera reserver that another client is requesting for camera control in a specific time interval.
1.94 +
1.95 +This TUid is available from the following methods only to the API clients using CCamera::New2L() or CCamera::NewDuplicate2L():
1.96 +void CCamera::CCameraAdvancedSettings::GetSupportedSettingsL(RArray<TUid>& aSettings) const;
1.97 +void CCamera::CCameraAdvancedSettings::GetActiveSettingsL(RArray<TUid>& aActiveSettings) const;
1.98 +void CCamera::CCameraAdvancedSettings::GetDisabledSettingsL(RArray<TUid>& aDisabledSettings) const;
1.99 +
1.100 +@note TTimeIntervalMicroSeconds32(TECAMEvent2::iParam) represents the maximum requested time within which the current
1.101 + reserver may release the camera if it wishes to do so.
1.102 + TECAMEvent2::iParam needs to be passed as argument in order to construct the TTimeIntervalMicroSeconds32 object.
1.103 +
1.104 +Note: TECAMEvent2::iParam1 represents the priority of the requestor client to whom the camera control will be passed
1.105 +should the current reserver wish to do so.
1.106 +
1.107 +@internalTechnology
1.108 +*/
1.109 +static const TUid KUidECamEvent2CameraRequestTimedTakeOver = {KUidECamEvent2CameraRequestTimedTakeOverUidValue};
1.110 +
1.111 +/**
1.112 +Notifies the manual gain setting completion for the particular channel.
1.113 +
1.114 +This TUid is available from the following methods only to the API clients using CCamera::New2L() or CCamera::NewDuplicate2L():
1.115 +void CCamera::CCameraAdvancedSettings::GetSupportedSettingsL(RArray<TUid>& aSettings) const;
1.116 +void CCamera::CCameraAdvancedSettings::GetActiveSettingsL(RArray<TUid>& aActiveSettings) const;
1.117 +void CCamera::CCameraAdvancedSettings::GetDisabledSettingsL(RArray<TUid>& aDisabledSettings) const;
1.118 +
1.119 +Note: TECAMEvent2::iParam represents the specific channel for which the manual gain value has been set.
1.120 +
1.121 +@internalTechnology
1.122 +*/
1.123 +static const TUid KUidECamEvent2CameraSettingManualGain = {KUidECamEvent2CameraSettingManualGainUidValue};
1.124 +
1.125 +/**
1.126 +Retrieves the optimal focussing feedback while using manual focus. This will be issued as a result of setting operation
1.127 +CCamera::CCameraAdvancedSettings::SetFocusDistance(TInt aDistance).
1.128 +
1.129 +This TUid is available from the following methods only to the API clients using CCamera::New2L() or CCamera::NewDuplicate2L():
1.130 +void CCamera::CCameraAdvancedSettings::GetSupportedSettingsL(RArray<TUid>& aSettings) const;
1.131 +void CCamera::CCameraAdvancedSettings::GetActiveSettingsL(RArray<TUid>& aActiveSettings) const;
1.132 +void CCamera::CCameraAdvancedSettings::GetDisabledSettingsL(RArray<TUid>& aDisabledSettings) const;
1.133 +
1.134 +@note If TECAMEvent2::iParam > 1, information is unavailable; if TECAMEvent2::iParam < 0, error case.
1.135 + Otherwise, static_cast<TBool>(TECAMEvent2::iParam) retrieves whether optimal focussing has been achieved or not.
1.136 +
1.137 +@internalTechnology
1.138 +*/
1.139 +static const TUid KUidECamEvent2CameraSettingFocusDistance = {KUidECamEvent2CameraSettingFocusDistanceUidValue};
1.140 +
1.141 +/**
1.142 +Instructs the client to change its priority in order to allow the legacy client to get hold of the camera. Client should
1.143 +restore their priority when they receive the notification 'KUidECamEventCameraSettingRestoreClientPriority'.
1.144 +
1.145 +This TUid is available from the following methods only to the API clients using CCamera::New2L() or CCamera::NewDuplicate2L():
1.146 +void CCamera::CCameraAdvancedSettings::GetSupportedSettingsL(RArray<TUid>& aSettings) const;
1.147 +void CCamera::CCameraAdvancedSettings::GetActiveSettingsL(RArray<TUid>& aActiveSettings) const;
1.148 +void CCamera::CCameraAdvancedSettings::GetDisabledSettingsL(RArray<TUid>& aDisabledSettings) const;
1.149 +
1.150 +Note: TECAMEvent2::iParam represents the target priority to which the client should set itself using the method SetClientPriorityL()
1.151 +
1.152 +@internalTechnology
1.153 +*/
1.154 +static const TUid KUidECamEvent2CameraSettingChangeClientPriority = {KUidECamEvent2CameraSettingChangeClientPriorityUidValue};
1.155 +
1.156 +/**
1.157 +Event indicating image enhancement setting has been applied.
1.158 +This event should be packed in TECAMEvent2 class.
1.159 +
1.160 +Note: TECAMEvent2::iParam represents viewfinder handle.
1.161 +
1.162 +@internalTechnology
1.163 +*/
1.164 +static const TUid KUidECamEvent2ViewFinderImageEnhancement = {KUidECamEvent2ViewFinderImageEnhancementUidValue};
1.165 +
1.166 +#endif // ECAM_DEF_H