os/mm/imagingandcamerafws/camerafw/Include/MCameraOverlay.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2005-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
sl@0
    22
#ifndef MCAMERAOVERLAY_H
sl@0
    23
#define MCAMERAOVERLAY_H
sl@0
    24
sl@0
    25
#include <ecam/cameraoverlay.h>
sl@0
    26
#include <ecam/ecamcommonuidif.hrh>
sl@0
    27
sl@0
    28
/** 
sl@0
    29
This is the UID which is used to obtain the MCameraOverlay interface, 
sl@0
    30
via a call to CCamera::CustomInterface(), which provides implementation of the M-class interface.
sl@0
    31
sl@0
    32
@see KECamMCameraOverlayUidValue
sl@0
    33
 */   
sl@0
    34
static const TUid KECamMCameraOverlayUid = {KECamMCameraOverlayUidValue};
sl@0
    35
sl@0
    36
/** 
sl@0
    37
This is the UID which is used to obtain the MCameraOverlay2 interface, 
sl@0
    38
via a call to CCamera::CustomInterface(), which provides implementation of the M-class interface.
sl@0
    39
sl@0
    40
@see KECamMCameraOverlay2UidValue
sl@0
    41
sl@0
    42
@publishedPartner
sl@0
    43
@prototype
sl@0
    44
*/   
sl@0
    45
static const TUid KECamMCameraOverlay2Uid = {KECamMCameraOverlay2UidValue};
sl@0
    46
sl@0
    47
sl@0
    48
/**
sl@0
    49
This is a mixin class to be implemented by providers of the camera extension API for image overlays.
sl@0
    50
sl@0
    51
@note This class is intended for sub classing by licensees only.
sl@0
    52
sl@0
    53
@see CCamera::CCameraOverlay
sl@0
    54
sl@0
    55
@publishedPartner
sl@0
    56
@released
sl@0
    57
*/
sl@0
    58
class MCameraOverlay
sl@0
    59
	{
sl@0
    60
public:		
sl@0
    61
	/**
sl@0
    62
	Creates an image overlay object on the ECam implementation, returning a handle to the newly created object.
sl@0
    63
sl@0
    64
	@param	aParameters
sl@0
    65
			The parameters characterizing the overlay to be created. 
sl@0
    66
	@param	aBitmap
sl@0
    67
			The image that is to become the overlay.
sl@0
    68
			By default this is set to NULL, allowing the client to provide the image at some point after 
sl@0
    69
			the overlay object has been created, by using SetOverlayBitmapL().
sl@0
    70
sl@0
    71
	@leave	KErrNoMemory if out of memory; also any system wide error.
sl@0
    72
	
sl@0
    73
	@leave  KErrArgument if the member variables in TOverlayParameters are such that they create mutual exclusion.		
sl@0
    74
	
sl@0
    75
	@return The overlay handle.
sl@0
    76
	*/
sl@0
    77
    virtual TUint CreateOverlayL(const CCamera::CCameraOverlay::TOverlayParameters& aParameters, CFbsBitmap* aBitmap)=0;
sl@0
    78
sl@0
    79
	/**
sl@0
    80
	Allows the overlay image data to be changed for a specified overlay.
sl@0
    81
	Use this function to set the overlay image data if it was not specified when the overlay
sl@0
    82
	was created using CreateOverlayL().
sl@0
    83
sl@0
    84
	@param	aOverlayHandle
sl@0
    85
			The handle of the overlay whose overlay image data is to be changed.
sl@0
    86
	@param	aBitmap
sl@0
    87
			The new image data for the overlay.
sl@0
    88
		
sl@0
    89
	@leave	KErrArgument if aOverlayHandle is out of range; also any system wide error.
sl@0
    90
	
sl@0
    91
	@note   Once this method is called, overlay size should not be changed for the given overlay. Hence, 
sl@0
    92
			SetOverlayParametersL should not be called after this method. 
sl@0
    93
	*/
sl@0
    94
    virtual void SetOverlayBitmapL(TUint aOverlayHandle, const CFbsBitmap* aBitmap)=0;
sl@0
    95
    
sl@0
    96
	/**
sl@0
    97
	Gets the overlay image data for a specified overlay.
sl@0
    98
sl@0
    99
	@param	aOverlayHandle
sl@0
   100
			The handle of the overlay whose overlay image data is to be obtained.
sl@0
   101
	@param	aBitmap
sl@0
   102
			A CFbsBitmap that will receive the returned image data for the overlay.
sl@0
   103
	
sl@0
   104
	@leave	KErrArgument if aOverlayHandle is out of range; also any system wide error.
sl@0
   105
	
sl@0
   106
	@leave  KErrNotSupported if a sharing client (which did not create the given overlay) tries to retrieve the overlay 
sl@0
   107
			bitmap and the implementation may not be interested in providing the overlay.
sl@0
   108
	
sl@0
   109
	@note   The ECam implementation will transfer the ownership of the aBitmap to the client.
sl@0
   110
	*/
sl@0
   111
    virtual void GetOverlayBitmapL(TUint aOverlayHandle, CFbsBitmap* aBitmap)=0;
sl@0
   112
    
sl@0
   113
	/**
sl@0
   114
	Gets the parameters that characterize a given overlay. 
sl@0
   115
sl@0
   116
	@param	aOverlayHandle
sl@0
   117
			The handle of the overlay whose parameters are required.
sl@0
   118
	@param	aInfo
sl@0
   119
			Reference to TOverlayParameters object that will contain the returned overlay parameters.
sl@0
   120
			
sl@0
   121
	@leave	KErrArgument if aOverlayHandle is out of range; also any system wide error.
sl@0
   122
	*/
sl@0
   123
	virtual void GetOverlayParametersL(TUint aOverlayHandle, CCamera::CCameraOverlay::TOverlayParameters& aInfo)=0;
sl@0
   124
	
sl@0
   125
	/**
sl@0
   126
	Sets new parameters that characterize a given overlay.
sl@0
   127
sl@0
   128
	@param	aOverlayHandle
sl@0
   129
			The handle of the overlay whose parameters are to be changed.
sl@0
   130
	@param	aParameters
sl@0
   131
			The new overlay parameters.
sl@0
   132
	
sl@0
   133
	@leave	KErrNotSupported if TOverlayCameraMode passed in TOverlayParameters is not supported; 
sl@0
   134
			also any system wide error.
sl@0
   135
			
sl@0
   136
	@leave  KErrArgument if the member variables in TOverlayParameters are such that they create mutual exclusion.
sl@0
   137
	*/
sl@0
   138
	virtual void SetOverlayParametersL(TUint aOverlayHandle, const CCamera::CCameraOverlay::TOverlayParameters& aParameters)=0;
sl@0
   139
	
sl@0
   140
	/**
sl@0
   141
	Releases the specified overlay handle.
sl@0
   142
sl@0
   143
	@note 	If the handle specified in aOverlayHandle is invalid (out of range) the function 
sl@0
   144
			call is ignored and no error is reported.
sl@0
   145
sl@0
   146
	@param	aOverlayHandle	
sl@0
   147
			The handle of the overlay that is to be released.
sl@0
   148
	*/
sl@0
   149
	virtual void ReleaseOverlay(TUint aOverlayHandle)=0;
sl@0
   150
	
sl@0
   151
	/**
sl@0
   152
	Releases and destroys all overlay handles on the ECam implementation. 
sl@0
   153
	This function is called from the destructor of CCamera::CCameraOverlay.
sl@0
   154
	*/
sl@0
   155
	virtual void Release()=0;
sl@0
   156
	
sl@0
   157
	/**
sl@0
   158
	Gets information on the overlay functionality supported by the ECam implementation.
sl@0
   159
sl@0
   160
	@param	aInfo
sl@0
   161
			A reference to a TOverlaySupportInfo object that will receive the overlay support information.
sl@0
   162
	*/
sl@0
   163
    virtual void GetOverlaySupport(CCamera::CCameraOverlay::TOverlaySupportInfo& aInfo)=0;
sl@0
   164
    
sl@0
   165
	/**
sl@0
   166
	Gets all the overlay handles maintained by the ECam implementation, in order of their Z-Value.
sl@0
   167
	
sl@0
   168
	@param 	aOverlayHandles
sl@0
   169
			Returned list, in Z-Value order, of all the overlay handles maintained on the ECam implementation.
sl@0
   170
			The topmost overlay is the first element of the array. 
sl@0
   171
sl@0
   172
	@leave	KErrNoMemory if out of memory; also any system wide error.		
sl@0
   173
	*/
sl@0
   174
	virtual void GetAllOverlaysInZOrderL(RArray<TUint>& aOverlayHandles)=0;
sl@0
   175
	
sl@0
   176
	/**
sl@0
   177
	Sets Z-Order of all the overlay handles known by this CCameraOverlay object.
sl@0
   178
	
sl@0
   179
	@param 	aOverlayHandles
sl@0
   180
			The overlay handles in aOverlayHandles array. This must be the complete current set 
sl@0
   181
			of handles known to this CCameraOverlay object. The client specifies the desired 
sl@0
   182
			order by placing the topmost overlay in the first element of the array.
sl@0
   183
			
sl@0
   184
	@leave	KErrNoMemory if out of memory; also any system wide error.		
sl@0
   185
	*/
sl@0
   186
	virtual void SetAllOverlaysInZOrderL(const RArray<TUint>& aOverlayHandles)=0;
sl@0
   187
	};
sl@0
   188
	
sl@0
   189
sl@0
   190
/**
sl@0
   191
This is a mixin class to be implemented by providers of the camera extension API for extra features for image overlays.
sl@0
   192
sl@0
   193
@see CCamera::CCameraOverlay
sl@0
   194
sl@0
   195
@publishedPartner
sl@0
   196
@prototype
sl@0
   197
*/
sl@0
   198
class MCameraOverlay2
sl@0
   199
	{
sl@0
   200
public:		
sl@0
   201
	/** 
sl@0
   202
	Releases the interface. 
sl@0
   203
	*/
sl@0
   204
	virtual void Release()=0;
sl@0
   205
	
sl@0
   206
	/**
sl@0
   207
	Allows the overlay image data to be changed for a specified overlay. Ownership of the bitmap is passed to the 
sl@0
   208
	implementation.
sl@0
   209
	Use this function to set the overlay image data if it was not specified when the overlay was created using 
sl@0
   210
	CreateOverlayL().
sl@0
   211
sl@0
   212
	@param	aOverlayHandle
sl@0
   213
			The handle of the overlay whose overlay image data is to be changed.
sl@0
   214
	@param	aBitmap
sl@0
   215
			The new image data for the overlay.
sl@0
   216
		
sl@0
   217
	@leave  May leave with any error code.
sl@0
   218
sl@0
   219
	@note   If required, implementation is free to modify the overlay bitmap passed to it.
sl@0
   220
	
sl@0
   221
	@note   SetOverlayParametersL should not be called after this method for the given overlay since it may change the 
sl@0
   222
			overlay parameters considerably. In such a case, SetOverlayParametersL may leave with error KErrArgument.
sl@0
   223
	*/
sl@0
   224
	virtual void SetModifiableOverlayBitmapL(TUint aOverlayHandle, CFbsBitmap* aBitmap)=0;
sl@0
   225
	
sl@0
   226
	/**
sl@0
   227
	Gets all the overlay handles maintained by the ECam implementation, in order of their z-value, for a particular camera mode.
sl@0
   228
	If for viewfinder, then the handle number is used to get z-value for the viewfinder whose handle number is passed.
sl@0
   229
	
sl@0
   230
	@param  aOverlayCameraMode
sl@0
   231
			The specific camera mode whose overlays' z-value information is required.
sl@0
   232
			
sl@0
   233
	@param  aViewFinderHandle
sl@0
   234
			The specific viewfinder handle, if overlays' z-value information is required for viewfinder camera mode.
sl@0
   235
	
sl@0
   236
	@param 	aOverlayHandles
sl@0
   237
			Returned list, in z-value order, of all the overlay handles maintained on the ECam implementation.
sl@0
   238
			The topmost overlay is the first element of the array. 
sl@0
   239
sl@0
   240
	@leave  May leave with any error code.
sl@0
   241
	*/
sl@0
   242
	virtual void GetAllOverlaysInZOrderL(CCamera::CCameraOverlay::TOverlayCameraMode aOverlayCameraMode, TInt aViewFinderHandle, RArray<TUint>& aOverlayHandles) const=0;
sl@0
   243
	
sl@0
   244
	/**
sl@0
   245
	Sets all the overlay handles maintained by the ECam implementation, in order of their z-value, for a particular camera mode.
sl@0
   246
	If for viewfinder, then the handle number is used to set the z-value for the viewfinder whose handle number is passed.
sl@0
   247
	
sl@0
   248
	@param  aOverlayCameraMode
sl@0
   249
			The specific camera mode whose overlays' z-value is to be set.
sl@0
   250
			
sl@0
   251
	@param  aViewFinderHandle
sl@0
   252
			The specific viewfinder handle, if overlays' z-value is required to be set for viewfinder camera mode.
sl@0
   253
	
sl@0
   254
	@param 	aOverlayHandles
sl@0
   255
			The overlay handles in aOverlayHandles array. This must be the complete current set 
sl@0
   256
			of handles known to this CCameraOverlay object for the given camera mode (and for given viewfinder, if applicable). 
sl@0
   257
			The client specifies the desired order by placing the topmost overlay in the first element of the array.
sl@0
   258
sl@0
   259
	@leave  May leave with any error code.
sl@0
   260
	*/
sl@0
   261
	virtual void SetAllOverlaysInZOrderL(CCamera::CCameraOverlay::TOverlayCameraMode aOverlayCameraMode, TInt aViewFinderHandle, const RArray<TUint>& aOverlayHandles)=0;
sl@0
   262
	};
sl@0
   263
sl@0
   264
#endif // MCAMERAOVERLAY_H