os/mm/imagingandcamerafws/camerafw/Include/ecamconst.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
/**
sl@0
    17
 @file
sl@0
    18
 @publishedPartner
sl@0
    19
 @released
sl@0
    20
*/
sl@0
    21
#ifndef ECAM__CONST_H
sl@0
    22
#define ECAM__CONST_H
sl@0
    23
sl@0
    24
#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
    25
#include <ecamuidsconst.hrh>
sl@0
    26
#endif
sl@0
    27
/** 
sl@0
    28
Event indicating continuous zoom progess. This event is used for StartContinuousZoomL feature. This is a part of class 
sl@0
    29
CCamera::CCameraAdvancedSettings. This event should be packed in TECAMEvent2 class. 
sl@0
    30
sl@0
    31
This TUid is available from the following methods only to the API clients using CCamera::New2L() or CCamera::
sl@0
    32
NewDuplicate2L():
sl@0
    33
void CCamera::CCameraAdvancedSettings::GetSupportedSettingsL(RArray<TUid>& aSettings) const;
sl@0
    34
void CCamera::CCameraAdvancedSettings::GetActiveSettingsL(RArray<TUid>& aActiveSettings) const;
sl@0
    35
void CCamera::CCameraAdvancedSettings::GetDisabledSettingsL(RArray<TUid>& aDisabledSettings) const;
sl@0
    36
sl@0
    37
Note: TECAMEvent2::iParam represents percentage continuous zoom completion.
sl@0
    38
sl@0
    39
@note  If zoom direction is EZoomDirectionWide, percentage completion will target minimum possible value as 100%.
sl@0
    40
@note  If zoom direction is EZoomDirectionTele, percentage completion will target maximum possible value as 100%.
sl@0
    41
sl@0
    42
@publishedPartner
sl@0
    43
@prototype
sl@0
    44
*/
sl@0
    45
static const TUid  KUidECamEvent2CameraSettingContinuousZoomPercentageCompletion  = {KUidECamEvent2CameraSettingContinuousZoomPercentageCompletionUidValue};
sl@0
    46
sl@0
    47
/**
sl@0
    48
Notifies that unrequested feature changes have occurred. The method GetIndirectFeatureChangesL() is called to
sl@0
    49
retrieve the list of unrequested feature changes. The unrequested feature changes are ECAM component wide.
sl@0
    50
sl@0
    51
This TUid is available from the following methods only to the API clients using CCamera::New2L() or CCamera::NewDuplicate2L():
sl@0
    52
void CCamera::CCameraAdvancedSettings::GetSupportedSettingsL(RArray<TUid>& aSettings) const;
sl@0
    53
void CCamera::CCameraAdvancedSettings::GetActiveSettingsL(RArray<TUid>& aActiveSettings) const;
sl@0
    54
void CCamera::CCameraAdvancedSettings::GetDisabledSettingsL(RArray<TUid>& aDisabledSettings) const;
sl@0
    55
sl@0
    56
Note: TECAMEvent2::iParam represents the TInt used to obtain a uid which represents the requested feature change.
sl@0
    57
sl@0
    58
@publishedPartner
sl@0
    59
@prototype
sl@0
    60
*/
sl@0
    61
static const TUid KUidECamEvent2IndirectFeatureChange  = {KUidECamEvent2IndirectFeatureChangeUidValue};
sl@0
    62
sl@0
    63
/**
sl@0
    64
Event indicating auto aperture is being used.
sl@0
    65
This event should be packed in TECAMEvent2 class.
sl@0
    66
sl@0
    67
This TUid is available from the following methods only to the API clients using CCamera::New2L() or CCamera::
sl@0
    68
NewDuplicate2L():
sl@0
    69
void CCamera::CCameraAdvancedSettings::GetSupportedSettingsL(RArray<TUid>& aSettings) const;
sl@0
    70
void CCamera::CCameraAdvancedSettings::GetActiveSettingsL(RArray<TUid>& aActiveSettings) const;
sl@0
    71
void CCamera::CCameraAdvancedSettings::GetDisabledSettingsL(RArray<TUid>& aDisabledSettings) const;
sl@0
    72
sl@0
    73
Note: TECAMEvent2::iParam represents actual value of aperture being used if camera is capable of. Otherwise, KErrNotFound will be retrieved.
sl@0
    74
Note: This event is also used if exposure is set to CCamera::EExposureAuto or CCamera::EExposureShutterPriority.
sl@0
    75
sl@0
    76
sl@0
    77
@publishedPartner
sl@0
    78
@prototype
sl@0
    79
*/
sl@0
    80
static const TUid  KUidECamEvent2CameraSettingAutoAperture  = {KUidECamEvent2CameraSettingAutoApertureUidValue};
sl@0
    81
sl@0
    82
/** Specifies whether the camera is reserved or not.
sl@0
    83
	The enumeration list may be extended in future.
sl@0
    84
	
sl@0
    85
@publishedPartner
sl@0
    86
@prototype
sl@0
    87
*/
sl@0
    88
enum TECamReserveStatus
sl@0
    89
	{
sl@0
    90
	/** Camera Status unknown */
sl@0
    91
	ECameraStatusUnknown,
sl@0
    92
	/** Camera is reserved */
sl@0
    93
	ECameraReserved,
sl@0
    94
	/** Camera is unreserved */
sl@0
    95
	ECameraUnReserved
sl@0
    96
	};
sl@0
    97
sl@0
    98
/** Mixin base class for camera clients to handle the notification of Reserve status.
sl@0
    99
sl@0
   100
Client must implement MReserveObserver in order to handle the notifications and take appropriate steps accordingly. 
sl@0
   101
sl@0
   102
@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
   103
	   might be continuously polling for it.
sl@0
   104
	   So, there is no guarantee that the client will be able to reserve it. But it is guaranteed that the client will
sl@0
   105
	   receive the notification about change in reserve status. 
sl@0
   106
sl@0
   107
@publishedPartner
sl@0
   108
@prototype
sl@0
   109
*/
sl@0
   110
class MReserveObserver
sl@0
   111
	{
sl@0
   112
public:
sl@0
   113
	/**
sl@0
   114
	This notification is send to provide the reserve status for the camera. 
sl@0
   115
	
sl@0
   116
	@param aCameraIndex
sl@0
   117
		   The camera index for which the Reserve status has to be provided.
sl@0
   118
		   
sl@0
   119
	@param aReserveStatus
sl@0
   120
		   The reserve status for the camera.
sl@0
   121
		   
sl@0
   122
	@param aErrorCode
sl@0
   123
		   The error value. 
sl@0
   124
		   
sl@0
   125
	@note  If error is not KErrNone, then the client is expected to destroy the CCameraStatusWatch retrieved through 
sl@0
   126
		   TReservedInfo::SubscribeReserveInfoL and re-subscribe if desired.
sl@0
   127
	*/
sl@0
   128
	virtual void ReserveStatus(TInt iCameraIndex, TECamReserveStatus aReserveStatus, TInt aErrorCode) =0;
sl@0
   129
	};
sl@0
   130
sl@0
   131
class CCameraStatusWatch;
sl@0
   132
sl@0
   133
/**
sl@0
   134
@publishedPartner
sl@0
   135
@prototype
sl@0
   136
sl@0
   137
Client uses it to asynchronously receive the reserve status of a camera index through MReserveObserver
sl@0
   138
*/
sl@0
   139
class TReservedInfo
sl@0
   140
	{
sl@0
   141
public:
sl@0
   142
	IMPORT_C static void SubscribeReserveInfoL(MReserveObserver& aReserveObserver, TInt aCameraIndex, CCameraStatusWatch*& aCameraStatusWatch); 
sl@0
   143
	};
sl@0
   144
sl@0
   145
/**
sl@0
   146
This class is used to provide extra buffer informations through a custom interface.
sl@0
   147
sl@0
   148
@see MCameraImageBuffer
sl@0
   149
sl@0
   150
@publishedPartner
sl@0
   151
@prototype
sl@0
   152
*/
sl@0
   153
class MCameraBuffer2 : public MCameraBuffer
sl@0
   154
	{
sl@0
   155
public:
sl@0
   156
	/**
sl@0
   157
	Retrieves an array of uids which represents the class identifier used for buffer extension.
sl@0
   158
	
sl@0
   159
	@param aInterfaceUids
sl@0
   160
		   An array of uids which represents the class identifier.
sl@0
   161
		   
sl@0
   162
	@return The error code.
sl@0
   163
	*/
sl@0
   164
	virtual TInt GetInterfaceUids(RArray<TUid>& aInterfaceUids) = 0;
sl@0
   165
	
sl@0
   166
	/**
sl@0
   167
	Gets a custom interface for extra buffer information. 
sl@0
   168
sl@0
   169
	@param aInterface
sl@0
   170
		   The Uid of the particular interface function required for buffer information.
sl@0
   171
		   
sl@0
   172
	@param aPtrInterface
sl@0
   173
		   The client has to cast the custom interface pointer to the appropriate type.	
sl@0
   174
sl@0
   175
	@return The error code.
sl@0
   176
	*/
sl@0
   177
	virtual TInt CustomInterface(TUid aInterface, TAny*& aPtrInterface) = 0;
sl@0
   178
	};
sl@0
   179
	
sl@0
   180
#endif // ECAM__CONST_H