os/mm/imagingandcamerafws/camerafw/Include/MCameraSnapshot.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/mm/imagingandcamerafws/camerafw/Include/MCameraSnapshot.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,310 @@
     1.4 +// Copyright (c) 2005-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 + @publishedPartner
    1.22 + @prototype
    1.23 +*/
    1.24 +
    1.25 +#ifndef MCAMERASNAPSHOT_H
    1.26 +#define MCAMERASNAPSHOT_H
    1.27 +
    1.28 +#include <ecam/camerasnapshot.h> 
    1.29 +#include <ecam/ecamcommonuidif.hrh>
    1.30 +
    1.31 +class TRgb;
    1.32 +
    1.33 +/** 
    1.34 +This is the UID which is used to obtain the MCameraSnapshot interface, 
    1.35 +via a call to CCamera::CustomInterface(), which provides implementation of the M-class interface. 
    1.36 +
    1.37 +@see KECamMCameraSnapshotUidValue
    1.38 +*/   
    1.39 +static const TUid KECamMCameraSnapshotUid = {KECamMCameraSnapshotUidValue};
    1.40 +
    1.41 +/** 
    1.42 +This is the UID which is used to obtain the MCameraSnapshot2 interface, 
    1.43 +via a call to CCamera::CustomInterface(), which provides implementation of the M-class interface. 
    1.44 +
    1.45 +@see KECamMCameraSnapshot2UidValue
    1.46 +*/   
    1.47 +static const TUid KECamMCameraSnapshot2Uid = {KECamMCameraSnapshot2UidValue};
    1.48 +
    1.49 +/**
    1.50 +This is a mixin class to be implemented by providers of the extension API for the camera snapshot.
    1.51 +
    1.52 +@note This class is intended for sub classing by licensees only.
    1.53 +
    1.54 +@see CCamera::CCameraSnapshot
    1.55 +
    1.56 +@publishedPartner
    1.57 +@prototype
    1.58 +*/
    1.59 +
    1.60 +class MCameraSnapshot
    1.61 +	{
    1.62 +	
    1.63 +public:	
    1.64 +	/**
    1.65 +	@publishedPartner
    1.66 +	@released
    1.67 +	
    1.68 +	Gets a list of camera formats for which the ECam implementation supports snapshots.
    1.69 +
    1.70 +	@return	Bit field containing the supported camera formats as CCamera::TFormat values.
    1.71 +	*/
    1.72 +	virtual TUint32 SupportedFormats()=0;
    1.73 +			
    1.74 +	/**
    1.75 +	@deprecated Use void MCameraSnapshot2::PrepareSnapshotL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters);
    1.76 +
    1.77 +	Sets the properties of the snapshot data including the background colour and the position of the snapshot.
    1.78 +
    1.79 +	@param 	aFormat
    1.80 +			The image format that the snapshot must have.
    1.81 +	@param 	aPosition
    1.82 +			The top left corner position (in pixels) which determines the layout of the snapshot image  
    1.83 +			within the dimensions provided by the aSize parameter when the snapshot has been scaled 
    1.84 +			maintaining its aspect ratio. See also SetPositionL().
    1.85 +	@param 	aSize
    1.86 +			The size of the snapshot in pixels.
    1.87 +	@param 	aBgColor
    1.88 +			The background colour to be used if the snapshot has been scaled (maintaining its aspect ratio)
    1.89 +			and does not fully fill the dimension provided by the aSize parameter. See also SetBgColorL().
    1.90 +	@param 	aMaintainAspectRatio
    1.91 +			Set to ETrue if the aspect ratio of the snapshot image must be maintained when scaling down.
    1.92 +
    1.93 +	@leave  KErrNotSupported if the specified image format is not supported; also any system wide error.
    1.94 +	*/
    1.95 +    virtual void PrepareSnapshotL(CCamera::TFormat aFormat, const TPoint& aPosition, const TSize& aSize, const TRgb& aBgColor, TBool aMaintainAspectRatio)=0;
    1.96 +    
    1.97 +	/**
    1.98 +	@deprecated Use void MCameraSnapshot2::PrepareSnapshotL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters);
    1.99 +
   1.100 +	Sets the properties of the snapshot data, excluding the background colour and the position of the snapshot.
   1.101 +	This method can be used when the client wishes to determine the layout and background colour after the
   1.102 +	snapshot image has been generated. See also SetPositionL() and SetBgColorL().
   1.103 +
   1.104 +	@param 	aFormat
   1.105 +			The image format that the snapshot must have.
   1.106 +	@param 	aSize
   1.107 +			The size of the snapshot in pixels.
   1.108 +	@param 	aMaintainAspectRatio
   1.109 +			Set to ETrue if the aspect ratio of the snapshot image must be maintained when scaling down.
   1.110 +
   1.111 +	@leave  KErrNotSupported if the specified image format is not supported; also any system wide error.
   1.112 +	*/
   1.113 +	virtual void PrepareSnapshotL(CCamera::TFormat aFormat, const TSize& aSize, TBool aMaintainAspectRatio)=0;
   1.114 +	
   1.115 +	/**
   1.116 +	@deprecated Use void MCameraSnapshot2::SetSnapshotParametersL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters);
   1.117 +
   1.118 +	Sets the background colour to be used if the snapshot has been scaled (maintaining its aspect ratio)
   1.119 +	and does not fully fill the snapshot size as specified in PrepareSnapshot().
   1.120 +
   1.121 +	@param 	aBgColor
   1.122 +			The new background colour.
   1.123 +
   1.124 +	@leave  KErrNotSupported if the specified image format is not supported; also any system wide error.
   1.125 +	*/		
   1.126 +	virtual void SetBgColorL(const TRgb& aBgColor)=0; 
   1.127 +	
   1.128 +	/**
   1.129 +	@deprecated Use void MCameraSnapshot2::SetSnapshotParametersL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters);
   1.130 +
   1.131 +	Sets the top left corner position (in pixels), where the snapshot should be laid out after scaling
   1.132 +	down (maintaining its aspect ratio). The position is within the dimensions provided by the snapshot 
   1.133 +	size specified in PrepareSnapshot().
   1.134 +	
   1.135 +	@param 	aPosition
   1.136 +			The top left corner position in pixels of the snapshot.  		
   1.137 +	
   1.138 +	@leave  KErrNotSupported if the specified image format is not supported; also any system wide error.
   1.139 +	*/
   1.140 +	virtual void SetPositionL(const TPoint& aPosition)=0;
   1.141 +	
   1.142 +	/**
   1.143 +	@deprecated Use void MCameraSnapshot2::GetSnapshotStatusL(CCamera::CCameraSnapshot::TSnapshotState& aSnapshotState) const;
   1.144 +
   1.145 +	Determines if the snapshot feature is active.
   1.146 +
   1.147 +	@return	ETrue, if StartSnapshot() has been called, otherwise EFalse.
   1.148 +	*/
   1.149 +    virtual TBool IsSnapshotActive() const=0;
   1.150 +
   1.151 +	/**
   1.152 +	@deprecated Use void MCameraSnapshot2::EnableSnapshotL();
   1.153 +
   1.154 +	Activates the snapshot feature. Calls to this method when the snapshot feature is already active
   1.155 +	will be ignored. 
   1.156 +
   1.157 +	The client will not receive snapshot notifications until the snapshot feature is activated. 
   1.158 +	*/
   1.159 +    virtual void StartSnapshot()=0;
   1.160 +
   1.161 +	/**
   1.162 +	@deprecated Use void MCameraSnapshot2::DisableSnapshotL();
   1.163 +	
   1.164 +	Deactivates the snapshot feature if it is active. 
   1.165 +
   1.166 +	Once the snapshot has been deactivated, the client will no longer receive notifications about snapshots.
   1.167 +	*/
   1.168 +	virtual void StopSnapshot()=0;
   1.169 +        	
   1.170 +	/**
   1.171 +	@deprecated Use callbacks: MCaptureImageObserver::ClientSnapshotForImageReady and MCaptureVideoObserver::
   1.172 +				ClientSnapshotReady
   1.173 +	
   1.174 +	Returns the snapshot data from ECam implementation to the client. 
   1.175 +
   1.176 +	The data is returned in an MCameraBuffer object. In the case where the driving mode returns more 
   1.177 +	than one image (burst mode, bracket mode, etc.) the buffer contains several snapshots which may 
   1.178 +	be returned in any order. The aFrameIndexOrder array provides the image sequence numbers in the 
   1.179 +	order in which the snapshots for those images are returned within the MCameraBuffer.
   1.180 +
   1.181 +	@param 	aFrameIndexOrder
   1.182 +			A reference to an array that will receive the image sequence numbers in the order to which  
   1.183 +			the snapshots within MCameraBuffer relate.
   1.184 +
   1.185 +	@return	A reference to an MCameraBuffer which will contain the returned snapshot image data.
   1.186 +		
   1.187 +	@leave	KErrNoMemory if the ECam implementation has not been able to create the camera buffer;
   1.188 +			also any system wide error.
   1.189 +	*/
   1.190 +	virtual MCameraBuffer& SnapshotDataL(RArray<TInt>& aFrameIndexOrder)=0;
   1.191 +
   1.192 +	/**
   1.193 +	Destroys the object of this class on the ECam implementation. 
   1.194 +	This function is called from the destructor of CCamera::CCameraSnapshot.
   1.195 +	*/
   1.196 +	virtual void Release()=0;
   1.197 +	    
   1.198 +	};
   1.199 +	
   1.200 +/**
   1.201 +This is a mixin class to be implemented by providers of the extension API for the extra features for camera snapshot.
   1.202 +
   1.203 +@see CCamera::CCameraSnapshot
   1.204 +
   1.205 +@publishedPartner
   1.206 +@prototype
   1.207 +*/
   1.208 +
   1.209 +class MCameraSnapshot2
   1.210 +	{
   1.211 +	
   1.212 +public:	
   1.213 +	/** 
   1.214 +	Releases the interface. 
   1.215 +	*/
   1.216 +	virtual void Release()=0;
   1.217 +	
   1.218 +	/**
   1.219 +	Sets the client viewfinder on which the client snapshot will be displayed.
   1.220 +	
   1.221 +	@param aClientViewFinderId
   1.222 +		   The client viewfinder on which this client snapshot will be displayed.
   1.223 +	*/
   1.224 +	virtual void SetClientViewFinderId(TInt aClientViewFinderId)=0;
   1.225 +	
   1.226 +	/**
   1.227 +	Retrieves the concrete factory handle for the histogram implementation in order to 
   1.228 +	use it specifically for a given snapshot.
   1.229 +		   
   1.230 +	@param aImplFactoryPtr
   1.231 +		   The concrete factory handle for the histogram implementation specific to the given snapshot.
   1.232 +		   
   1.233 +	@leave  May leave with any error code.
   1.234 +	*/
   1.235 +	virtual void CreateHistogramImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const=0;
   1.236 +	
   1.237 +	/**
   1.238 +	Sets the properties of the snapshot. ECam implementation may use a different size than that specified by this method. 
   1.239 +	
   1.240 +	@param  aSnapshotParameters
   1.241 +			The snaspshot parameters.
   1.242 +	
   1.243 +	@leave  May leave with any error code.
   1.244 +	
   1.245 +	@note   This method is used to provide snapshot parameters.
   1.246 +	*/
   1.247 +	virtual void PrepareSnapshotL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters)=0;
   1.248 +	
   1.249 +	/**
   1.250 +	Retrieves the snapshot parameters. ECam implementation may use a different size than that provided by this method.
   1.251 +	
   1.252 +	@param  aSnapshotParameters
   1.253 +			Retrieves the currently used snapshot parameters.
   1.254 +	
   1.255 +	@leave  May leave with any error code.
   1.256 +	
   1.257 +	@note   This method is used to retrieve snapshot parameters.
   1.258 +	*/
   1.259 +	virtual void GetSnapshotParametersL(CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters)=0;
   1.260 +	
   1.261 +	/**
   1.262 +	Sets/updates the snapshot parameters.
   1.263 +	
   1.264 +	@param  aSnapshotParameters
   1.265 +			The desired snapshot parameters.
   1.266 +			
   1.267 +	@leave  May leave with any error code.
   1.268 +	
   1.269 +	@note   This method is used to set/update snapshot parameters.
   1.270 +	*/
   1.271 +	virtual void SetSnapshotParametersL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters)=0; 
   1.272 +
   1.273 +	/**
   1.274 +	Retrieves the current status for the snapshot.
   1.275 +	
   1.276 +	@param  aSnapshotState
   1.277 +			Retrieves information about the current snapshot state.
   1.278 +		
   1.279 +	@leave  May leave with any error code.
   1.280 +
   1.281 +	@note   This method is used to retrieve the snapshot status.
   1.282 +	*/
   1.283 +	virtual void GetSnapshotStatusL(CCamera::CCameraSnapshot::TSnapshotState& aSnapshotState) const=0;
   1.284 +	
   1.285 +	/**
   1.286 +	The method specifies the frames to be used from video captured data in order to create snapshot for video.
   1.287 +
   1.288 +	@param  aSnapshotVideoFrames
   1.289 +			A TSnapshotVideoFrames used to specify the desired frames to be used for creating snapshots for video. 
   1.290 +			
   1.291 +	@leave  May leave with any error code.
   1.292 +	*/
   1.293 +	virtual void SelectSnapshotVideoFramesL(CCamera::CCameraSnapshot::TSnapshotVideoFrames aSnapshotVideoFrames)=0;
   1.294 +	
   1.295 +	/**
   1.296 +	Activates the snapshot feature. Calls to this method when the snapshot feature is already active will be ignored. 
   1.297 +
   1.298 +	The client will not receive snapshot notifications until the snapshot feature is activated. 
   1.299 +
   1.300 +	Implementation shall use the observers: MCaptureImageObserver and MCaptureVideoObserver. Snapshot notifications will 
   1.301 +	be send	to the clients via these observers and not through events.
   1.302 +	*/
   1.303 +	virtual void EnableSnapshot()=0;
   1.304 +	
   1.305 +	/**
   1.306 +	Deactivates the snapshot feature if it is active. 
   1.307 +
   1.308 +	Once the snapshot has been deactivated, the client will no longer receive notifications about snapshots.
   1.309 +	*/
   1.310 +	virtual void DisableSnapshot()=0;
   1.311 +	};
   1.312 +	
   1.313 +#endif // MCAMERASNAPSHOT_H