os/mm/imagingandcamerafws/camerafw/Include/MCameraOverlay.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/mm/imagingandcamerafws/camerafw/Include/MCameraOverlay.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,264 @@
     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 + @released
    1.23 +*/
    1.24 +
    1.25 +#ifndef MCAMERAOVERLAY_H
    1.26 +#define MCAMERAOVERLAY_H
    1.27 +
    1.28 +#include <ecam/cameraoverlay.h>
    1.29 +#include <ecam/ecamcommonuidif.hrh>
    1.30 +
    1.31 +/** 
    1.32 +This is the UID which is used to obtain the MCameraOverlay interface, 
    1.33 +via a call to CCamera::CustomInterface(), which provides implementation of the M-class interface.
    1.34 +
    1.35 +@see KECamMCameraOverlayUidValue
    1.36 + */   
    1.37 +static const TUid KECamMCameraOverlayUid = {KECamMCameraOverlayUidValue};
    1.38 +
    1.39 +/** 
    1.40 +This is the UID which is used to obtain the MCameraOverlay2 interface, 
    1.41 +via a call to CCamera::CustomInterface(), which provides implementation of the M-class interface.
    1.42 +
    1.43 +@see KECamMCameraOverlay2UidValue
    1.44 +
    1.45 +@publishedPartner
    1.46 +@prototype
    1.47 +*/   
    1.48 +static const TUid KECamMCameraOverlay2Uid = {KECamMCameraOverlay2UidValue};
    1.49 +
    1.50 +
    1.51 +/**
    1.52 +This is a mixin class to be implemented by providers of the camera extension API for image overlays.
    1.53 +
    1.54 +@note This class is intended for sub classing by licensees only.
    1.55 +
    1.56 +@see CCamera::CCameraOverlay
    1.57 +
    1.58 +@publishedPartner
    1.59 +@released
    1.60 +*/
    1.61 +class MCameraOverlay
    1.62 +	{
    1.63 +public:		
    1.64 +	/**
    1.65 +	Creates an image overlay object on the ECam implementation, returning a handle to the newly created object.
    1.66 +
    1.67 +	@param	aParameters
    1.68 +			The parameters characterizing the overlay to be created. 
    1.69 +	@param	aBitmap
    1.70 +			The image that is to become the overlay.
    1.71 +			By default this is set to NULL, allowing the client to provide the image at some point after 
    1.72 +			the overlay object has been created, by using SetOverlayBitmapL().
    1.73 +
    1.74 +	@leave	KErrNoMemory if out of memory; also any system wide error.
    1.75 +	
    1.76 +	@leave  KErrArgument if the member variables in TOverlayParameters are such that they create mutual exclusion.		
    1.77 +	
    1.78 +	@return The overlay handle.
    1.79 +	*/
    1.80 +    virtual TUint CreateOverlayL(const CCamera::CCameraOverlay::TOverlayParameters& aParameters, CFbsBitmap* aBitmap)=0;
    1.81 +
    1.82 +	/**
    1.83 +	Allows the overlay image data to be changed for a specified overlay.
    1.84 +	Use this function to set the overlay image data if it was not specified when the overlay
    1.85 +	was created using CreateOverlayL().
    1.86 +
    1.87 +	@param	aOverlayHandle
    1.88 +			The handle of the overlay whose overlay image data is to be changed.
    1.89 +	@param	aBitmap
    1.90 +			The new image data for the overlay.
    1.91 +		
    1.92 +	@leave	KErrArgument if aOverlayHandle is out of range; also any system wide error.
    1.93 +	
    1.94 +	@note   Once this method is called, overlay size should not be changed for the given overlay. Hence, 
    1.95 +			SetOverlayParametersL should not be called after this method. 
    1.96 +	*/
    1.97 +    virtual void SetOverlayBitmapL(TUint aOverlayHandle, const CFbsBitmap* aBitmap)=0;
    1.98 +    
    1.99 +	/**
   1.100 +	Gets the overlay image data for a specified overlay.
   1.101 +
   1.102 +	@param	aOverlayHandle
   1.103 +			The handle of the overlay whose overlay image data is to be obtained.
   1.104 +	@param	aBitmap
   1.105 +			A CFbsBitmap that will receive the returned image data for the overlay.
   1.106 +	
   1.107 +	@leave	KErrArgument if aOverlayHandle is out of range; also any system wide error.
   1.108 +	
   1.109 +	@leave  KErrNotSupported if a sharing client (which did not create the given overlay) tries to retrieve the overlay 
   1.110 +			bitmap and the implementation may not be interested in providing the overlay.
   1.111 +	
   1.112 +	@note   The ECam implementation will transfer the ownership of the aBitmap to the client.
   1.113 +	*/
   1.114 +    virtual void GetOverlayBitmapL(TUint aOverlayHandle, CFbsBitmap* aBitmap)=0;
   1.115 +    
   1.116 +	/**
   1.117 +	Gets the parameters that characterize a given overlay. 
   1.118 +
   1.119 +	@param	aOverlayHandle
   1.120 +			The handle of the overlay whose parameters are required.
   1.121 +	@param	aInfo
   1.122 +			Reference to TOverlayParameters object that will contain the returned overlay parameters.
   1.123 +			
   1.124 +	@leave	KErrArgument if aOverlayHandle is out of range; also any system wide error.
   1.125 +	*/
   1.126 +	virtual void GetOverlayParametersL(TUint aOverlayHandle, CCamera::CCameraOverlay::TOverlayParameters& aInfo)=0;
   1.127 +	
   1.128 +	/**
   1.129 +	Sets new parameters that characterize a given overlay.
   1.130 +
   1.131 +	@param	aOverlayHandle
   1.132 +			The handle of the overlay whose parameters are to be changed.
   1.133 +	@param	aParameters
   1.134 +			The new overlay parameters.
   1.135 +	
   1.136 +	@leave	KErrNotSupported if TOverlayCameraMode passed in TOverlayParameters is not supported; 
   1.137 +			also any system wide error.
   1.138 +			
   1.139 +	@leave  KErrArgument if the member variables in TOverlayParameters are such that they create mutual exclusion.
   1.140 +	*/
   1.141 +	virtual void SetOverlayParametersL(TUint aOverlayHandle, const CCamera::CCameraOverlay::TOverlayParameters& aParameters)=0;
   1.142 +	
   1.143 +	/**
   1.144 +	Releases the specified overlay handle.
   1.145 +
   1.146 +	@note 	If the handle specified in aOverlayHandle is invalid (out of range) the function 
   1.147 +			call is ignored and no error is reported.
   1.148 +
   1.149 +	@param	aOverlayHandle	
   1.150 +			The handle of the overlay that is to be released.
   1.151 +	*/
   1.152 +	virtual void ReleaseOverlay(TUint aOverlayHandle)=0;
   1.153 +	
   1.154 +	/**
   1.155 +	Releases and destroys all overlay handles on the ECam implementation. 
   1.156 +	This function is called from the destructor of CCamera::CCameraOverlay.
   1.157 +	*/
   1.158 +	virtual void Release()=0;
   1.159 +	
   1.160 +	/**
   1.161 +	Gets information on the overlay functionality supported by the ECam implementation.
   1.162 +
   1.163 +	@param	aInfo
   1.164 +			A reference to a TOverlaySupportInfo object that will receive the overlay support information.
   1.165 +	*/
   1.166 +    virtual void GetOverlaySupport(CCamera::CCameraOverlay::TOverlaySupportInfo& aInfo)=0;
   1.167 +    
   1.168 +	/**
   1.169 +	Gets all the overlay handles maintained by the ECam implementation, in order of their Z-Value.
   1.170 +	
   1.171 +	@param 	aOverlayHandles
   1.172 +			Returned list, in Z-Value order, of all the overlay handles maintained on the ECam implementation.
   1.173 +			The topmost overlay is the first element of the array. 
   1.174 +
   1.175 +	@leave	KErrNoMemory if out of memory; also any system wide error.		
   1.176 +	*/
   1.177 +	virtual void GetAllOverlaysInZOrderL(RArray<TUint>& aOverlayHandles)=0;
   1.178 +	
   1.179 +	/**
   1.180 +	Sets Z-Order of all the overlay handles known by this CCameraOverlay object.
   1.181 +	
   1.182 +	@param 	aOverlayHandles
   1.183 +			The overlay handles in aOverlayHandles array. This must be the complete current set 
   1.184 +			of handles known to this CCameraOverlay object. The client specifies the desired 
   1.185 +			order by placing the topmost overlay in the first element of the array.
   1.186 +			
   1.187 +	@leave	KErrNoMemory if out of memory; also any system wide error.		
   1.188 +	*/
   1.189 +	virtual void SetAllOverlaysInZOrderL(const RArray<TUint>& aOverlayHandles)=0;
   1.190 +	};
   1.191 +	
   1.192 +
   1.193 +/**
   1.194 +This is a mixin class to be implemented by providers of the camera extension API for extra features for image overlays.
   1.195 +
   1.196 +@see CCamera::CCameraOverlay
   1.197 +
   1.198 +@publishedPartner
   1.199 +@prototype
   1.200 +*/
   1.201 +class MCameraOverlay2
   1.202 +	{
   1.203 +public:		
   1.204 +	/** 
   1.205 +	Releases the interface. 
   1.206 +	*/
   1.207 +	virtual void Release()=0;
   1.208 +	
   1.209 +	/**
   1.210 +	Allows the overlay image data to be changed for a specified overlay. Ownership of the bitmap is passed to the 
   1.211 +	implementation.
   1.212 +	Use this function to set the overlay image data if it was not specified when the overlay was created using 
   1.213 +	CreateOverlayL().
   1.214 +
   1.215 +	@param	aOverlayHandle
   1.216 +			The handle of the overlay whose overlay image data is to be changed.
   1.217 +	@param	aBitmap
   1.218 +			The new image data for the overlay.
   1.219 +		
   1.220 +	@leave  May leave with any error code.
   1.221 +
   1.222 +	@note   If required, implementation is free to modify the overlay bitmap passed to it.
   1.223 +	
   1.224 +	@note   SetOverlayParametersL should not be called after this method for the given overlay since it may change the 
   1.225 +			overlay parameters considerably. In such a case, SetOverlayParametersL may leave with error KErrArgument.
   1.226 +	*/
   1.227 +	virtual void SetModifiableOverlayBitmapL(TUint aOverlayHandle, CFbsBitmap* aBitmap)=0;
   1.228 +	
   1.229 +	/**
   1.230 +	Gets all the overlay handles maintained by the ECam implementation, in order of their z-value, for a particular camera mode.
   1.231 +	If for viewfinder, then the handle number is used to get z-value for the viewfinder whose handle number is passed.
   1.232 +	
   1.233 +	@param  aOverlayCameraMode
   1.234 +			The specific camera mode whose overlays' z-value information is required.
   1.235 +			
   1.236 +	@param  aViewFinderHandle
   1.237 +			The specific viewfinder handle, if overlays' z-value information is required for viewfinder camera mode.
   1.238 +	
   1.239 +	@param 	aOverlayHandles
   1.240 +			Returned list, in z-value order, of all the overlay handles maintained on the ECam implementation.
   1.241 +			The topmost overlay is the first element of the array. 
   1.242 +
   1.243 +	@leave  May leave with any error code.
   1.244 +	*/
   1.245 +	virtual void GetAllOverlaysInZOrderL(CCamera::CCameraOverlay::TOverlayCameraMode aOverlayCameraMode, TInt aViewFinderHandle, RArray<TUint>& aOverlayHandles) const=0;
   1.246 +	
   1.247 +	/**
   1.248 +	Sets all the overlay handles maintained by the ECam implementation, in order of their z-value, for a particular camera mode.
   1.249 +	If for viewfinder, then the handle number is used to set the z-value for the viewfinder whose handle number is passed.
   1.250 +	
   1.251 +	@param  aOverlayCameraMode
   1.252 +			The specific camera mode whose overlays' z-value is to be set.
   1.253 +			
   1.254 +	@param  aViewFinderHandle
   1.255 +			The specific viewfinder handle, if overlays' z-value is required to be set for viewfinder camera mode.
   1.256 +	
   1.257 +	@param 	aOverlayHandles
   1.258 +			The overlay handles in aOverlayHandles array. This must be the complete current set 
   1.259 +			of handles known to this CCameraOverlay object for the given camera mode (and for given viewfinder, if applicable). 
   1.260 +			The client specifies the desired order by placing the topmost overlay in the first element of the array.
   1.261 +
   1.262 +	@leave  May leave with any error code.
   1.263 +	*/
   1.264 +	virtual void SetAllOverlaysInZOrderL(CCamera::CCameraOverlay::TOverlayCameraMode aOverlayCameraMode, TInt aViewFinderHandle, const RArray<TUint>& aOverlayHandles)=0;
   1.265 +	};
   1.266 +
   1.267 +#endif // MCAMERAOVERLAY_H
   1.268 \ No newline at end of file