os/mm/imagingandcamerafws/camerafw/Include/ecamviewfinder.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) 2007-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
 @prototype
sl@0
    20
*/
sl@0
    21
#ifndef  ECAMVIEWFINDER_H
sl@0
    22
#define  ECAMVIEWFINDER_H
sl@0
    23
sl@0
    24
#include <e32base.h>
sl@0
    25
#include <gdi.h>
sl@0
    26
#include <ecamadvsettings.h>
sl@0
    27
sl@0
    28
#ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
    29
#include <ecamviewfinderdef.h>
sl@0
    30
#else
sl@0
    31
#include <ecamadvsettingsuidsconst.hrh>
sl@0
    32
#include <ecamconst.h>
sl@0
    33
#endif
sl@0
    34
sl@0
    35
class MCameraViewFinder;
sl@0
    36
class MCameraV2DirectViewFinder;
sl@0
    37
class MCameraClientViewFinder;
sl@0
    38
sl@0
    39
class MCameraDirectSnapshot;
sl@0
    40
sl@0
    41
class MHistogramV2Buffer;
sl@0
    42
sl@0
    43
/**
sl@0
    44
Specific handle used to refer to viewfinder which is started using CCamera methods.
sl@0
    45
*/
sl@0
    46
static const TInt KECamDefaultViewFinderHandle = 0;
sl@0
    47
sl@0
    48
/** 
sl@0
    49
The current Version of the TDirectSnapshotParameters class.
sl@0
    50
*/
sl@0
    51
static const TUint KECamDirectSnapshotParametersCurrentVersion = 1;
sl@0
    52
sl@0
    53
/** 
sl@0
    54
UID used to identify the CCameraV2DirectViewFinder API.
sl@0
    55
sl@0
    56
@see CCamera::CCameraV2DirectViewFinder
sl@0
    57
*/
sl@0
    58
static const TUid KECamV2DirectViewFinderUid 	= {KECamV2DirectViewFinderUidValue};
sl@0
    59
sl@0
    60
/** 
sl@0
    61
UID used to identify the CCameraClientViewFinder API.
sl@0
    62
sl@0
    63
@see CCamera::CCameraClientViewFinder
sl@0
    64
*/
sl@0
    65
static const TUid KECamClientViewFinderUid 	= {KECamClientViewFinderUidValue};
sl@0
    66
sl@0
    67
/** 
sl@0
    68
UID used to identify the CCamera::CCameraDirectSnapshot API.
sl@0
    69
This is the UID which is used to obtain the CCameraDirectSnapshot interface, 
sl@0
    70
via a call to CCamera::CustomInterface().
sl@0
    71
sl@0
    72
@see KECamDirectSnapshotUidValue
sl@0
    73
@see CCamera::CCameraDirectSnapshot
sl@0
    74
sl@0
    75
@publishedPartner
sl@0
    76
@prototype
sl@0
    77
*/
sl@0
    78
static const TUid KECamDirectSnapshotUid = {KECamDirectSnapshotUidValue};
sl@0
    79
sl@0
    80
/**
sl@0
    81
A mixin class to be implemented by the client in order to use the V2 direct view finder API CCameraV2DirectViewFinder. The
sl@0
    82
derived class methods are called by the implementation when the direct view finder operations are ready to be notified 
sl@0
    83
accordingly. Implementation shall keep track of CCameraV2DirectViewFinder object deletion. It has to ensure that a callback 
sl@0
    84
is not send should the client destroy the particular CCameraV2DirectViewFinder class object when the callback is queued to 
sl@0
    85
be send across. Ownership of CCameraV2DirectViewFinder is retained by the client.
sl@0
    86
sl@0
    87
@see CCamera::CCameraV2DirectViewFinder
sl@0
    88
*/
sl@0
    89
class MDirectViewFinderObserver
sl@0
    90
	{
sl@0
    91
public:
sl@0
    92
	/**
sl@0
    93
	Implementation sends this callback in order to notify the client when the first direct viewfinder frame gets displayed 
sl@0
    94
	after starting/resuming a particular direct viewfinder.
sl@0
    95
	
sl@0
    96
	@param  aDirectViewFinderHandle
sl@0
    97
			Reference to CCameraV2DirectViewFinder class object which refers a particular direct viewfinder.
sl@0
    98
						
sl@0
    99
	@param  aErrorCode
sl@0
   100
			Appropriate error code.
sl@0
   101
	*/
sl@0
   102
	virtual void DirectViewFinderFirstFrameDisplayed(CCamera::CCameraV2DirectViewFinder& aDirectViewFinderHandle, TInt aErrorCode)=0;
sl@0
   103
																									  
sl@0
   104
	/**
sl@0
   105
	Implementation sends this callback in order to notify the client when the direct histogram data gets displayed on the 
sl@0
   106
	screen for the first time after starting/resuming a particular direct viewfinder. If a call to CCameraV2Histogram::
sl@0
   107
	StartHistogram() is made without a previous successful call to CCameraV2Histogram::PrepareDirectHistogramL() then the
sl@0
   108
	callback returns KErrBadHandle.
sl@0
   109
	
sl@0
   110
	@param  aDirectViewFinderHandle
sl@0
   111
			Reference to CCameraV2DirectViewFinder class object which refers a particular direct viewfinder for which the 
sl@0
   112
			direct histogram data has been displayed.
sl@0
   113
	
sl@0
   114
	@param  aDirectHistogramDisplayed
sl@0
   115
			Reference to CCameraV2Histogram class object which refers a particular type of histogram being displayed.
sl@0
   116
	
sl@0
   117
	@param  aErrorCode
sl@0
   118
			Appropriate error code. 
sl@0
   119
	*/
sl@0
   120
	virtual void DirectHistogramDisplayed(CCamera::CCameraV2DirectViewFinder& aDirectViewFinderHandle, CCamera::CCameraV2Histogram& aDirectHistogramDisplayed, TInt aErrorCode)=0;
sl@0
   121
	
sl@0
   122
	/**
sl@0
   123
	Implementation sends this callback in order to notify the client about availability of the histogram data. If a call 
sl@0
   124
	to CCameraV2Histogram::StartHistogram() is made without a previous successful call to CCameraV2Histogram::
sl@0
   125
	PrepareClientHistogramL() then the callback returns KErrBadHandle.
sl@0
   126
	
sl@0
   127
	@param  aDirectViewFinderHandle
sl@0
   128
			Reference to CCameraV2DirectViewFinder class object which refers a particular direct viewfinder for which the 
sl@0
   129
			client histogram data have been generated.
sl@0
   130
	
sl@0
   131
	@param  aClientHistogramBuffer
sl@0
   132
			Pointer to MHistogramV2Buffer which retrieves a single histogram alongwith relevant information about it. The 
sl@0
   133
			ownership will be retained by the implementation. Client needs to call Release in order to indicate the 
sl@0
   134
			implementation that the buffer can be re-used. Client shall never try to delete the pointer. NULL, if error.
sl@0
   135
				
sl@0
   136
	@param  aErrorCode
sl@0
   137
			Appropriate error code. 
sl@0
   138
	
sl@0
   139
	@note   Client shall use the currently available histogram for the direct viewfinder frames until a new histogram is 
sl@0
   140
			available.
sl@0
   141
	*/
sl@0
   142
	virtual void ClientHistogramReady(CCamera::CCameraV2DirectViewFinder& aDirectViewFinderHandle, MHistogramV2Buffer* aClientHistogramBuffer, TInt aErrorCode)=0;
sl@0
   143
	
sl@0
   144
	/** 
sl@0
   145
	Implementation sends this callback as a notification of the display of direct snapshot for still images on the display
sl@0
   146
	screen.
sl@0
   147
	
sl@0
   148
	@param  aDirectViewFinderHandle
sl@0
   149
			Reference to CCameraV2DirectViewFinder class object which refers a particular direct viewfinder on which the 
sl@0
   150
			direct snapshot data for still images have been displayed.
sl@0
   151
sl@0
   152
	@param  aCaptureImageHandle
sl@0
   153
			Reference to CCameraImageCapture class object which was used to issue the capture image operation.
sl@0
   154
	
sl@0
   155
	@param  aPostCaptureControlId
sl@0
   156
			Id used to identify a particular CCameraPostImageCaptureControl object associated with the given 
sl@0
   157
			CCameraImageCapture class object. This is needed to identify the image which is represented by this snapshot.
sl@0
   158
	
sl@0
   159
	@param  aErrorCode
sl@0
   160
			Appropriate error code.
sl@0
   161
	*/
sl@0
   162
	virtual void DirectSnapshotForImageDisplayed(CCamera::CCameraV2DirectViewFinder& aDirectViewFinderHandle, CCamera::CCameraImageCapture& aCaptureImageHandle, TPostCaptureControlId aPostCaptureControlId, TInt aErrorCode)=0;
sl@0
   163
	
sl@0
   164
	/**
sl@0
   165
	Implementation sends this callback in order to notify the client about failure with the direct viewfinder.
sl@0
   166
	
sl@0
   167
	@param  aDirectViewFinderHandle
sl@0
   168
			Reference to CCameraV2DirectViewFinder class object which refers a particular direct viewfinder.
sl@0
   169
	
sl@0
   170
	@param  aErrorCode
sl@0
   171
			The reason of failure of the direct viewfinder. 
sl@0
   172
	*/
sl@0
   173
	virtual void DirectViewFinderFailed(CCamera::CCameraV2DirectViewFinder& aDirectViewFinderHandle, TInt aErrorCode)=0;
sl@0
   174
	
sl@0
   175
	/**
sl@0
   176
	Gets a custom interface for future callbacks. This method will be called by the implementation to get a new interface
sl@0
   177
	which would support future callbacks.
sl@0
   178
sl@0
   179
	@param  aInterface
sl@0
   180
		    The Uid of the particular interface function required for callbacks.
sl@0
   181
		   
sl@0
   182
	@param  aPtrInterface
sl@0
   183
		    The implementation has to type-cast the retrieved custom interface pointer to the appropriate type.	
sl@0
   184
sl@0
   185
	@return The error code.
sl@0
   186
	*/
sl@0
   187
	virtual TInt CustomInterface(TUid aInterface, TAny*& aPtrInterface)=0;
sl@0
   188
	};
sl@0
   189
sl@0
   190
/**
sl@0
   191
A mixin class to be implemented by the client in order to use the client view finder API CCameraClientViewFinder. The 
sl@0
   192
derived class methods are called by the implementation when the client view finder operations are ready to be notified 
sl@0
   193
accordingly. Implementation shall keep track of CCameraClientViewFinder object deletion. It has to ensure that a callback
sl@0
   194
is not send should the client destroy the particular CCameraClientViewFinder class object when the callback is queued to
sl@0
   195
be send across. Ownership of CCameraClientViewFinder is retained by the client.
sl@0
   196
sl@0
   197
@see CCamera::CCameraClientViewFinder
sl@0
   198
*/
sl@0
   199
class MClientViewFinderObserver
sl@0
   200
	{
sl@0
   201
public:
sl@0
   202
	/**
sl@0
   203
	Implementation sends this callback in order to notify the client about the availability of viewfinder frames.
sl@0
   204
	Viewfinder frames can be retrieved by the client using the CCameraClientViewFinder::GetViewFinderBufferL
sl@0
   205
	(MCameraBuffer2& aClientViewFinderBuffer).
sl@0
   206
	
sl@0
   207
	@param  CCameraClientViewFinder
sl@0
   208
			Reference to CCameraClientViewFinder class object which refers a particular client viewfinder.
sl@0
   209
						
sl@0
   210
	@param  aErrorCode
sl@0
   211
			Appropriate error code.
sl@0
   212
	*/
sl@0
   213
	virtual void ViewFinderBufferReady(CCamera::CCameraClientViewFinder& aClientViewFinderHandle, TInt aErrorCode)=0;
sl@0
   214
																									  
sl@0
   215
	/**
sl@0
   216
	Implementation sends this callback in order to notify the client when the direct histogram data gets displayed on the 
sl@0
   217
	screen for the first time after starting a particular client viewfinder. If a call to CCameraV2Histogram::
sl@0
   218
	StartHistogram() is made without a previous successful call to CCameraV2Histogram::PrepareDirectHistogramL() then the
sl@0
   219
	callback returns KErrBadHandle.
sl@0
   220
	
sl@0
   221
	@param  aClientViewFinderHandle
sl@0
   222
			Reference to CCameraClientViewFinder class object which refers a particular client viewfinder.
sl@0
   223
	
sl@0
   224
	@param  aDirectHistogramDisplayed
sl@0
   225
			Reference to CCameraV2Histogram class object which refers a particular type of histogram being displayed.
sl@0
   226
	
sl@0
   227
	@param  aErrorCode
sl@0
   228
			Appropriate error code. 
sl@0
   229
	*/
sl@0
   230
	virtual void DirectHistogramDisplayed(CCamera::CCameraClientViewFinder& aClientViewFinderHandle, CCamera::CCameraV2Histogram& aDirectHistogramDisplayed, TInt aErrorCode)=0;
sl@0
   231
	
sl@0
   232
	/**
sl@0
   233
	Implementation sends this callback in order to notify the client about availability of the histogram data. If a call 
sl@0
   234
	to CCameraV2Histogram::StartHistogram() is made without a previous successful call to CCameraV2Histogram::
sl@0
   235
	PrepareClientHistogramL() then the callback returns KErrBadHandle.
sl@0
   236
	
sl@0
   237
	@param  aClientViewFinderHandle
sl@0
   238
			Reference to CCameraClientViewFinder class object which refers a particular client viewfinder for which the 
sl@0
   239
			client histogram data have been generated.
sl@0
   240
	
sl@0
   241
	@param  aClientHistogramBuffer
sl@0
   242
			Pointer to MHistogramV2Buffer which retrieves a single histogram alongwith relevant information about it. The 
sl@0
   243
			ownership will be retained by the implementation. Client needs to call Release in order to indicate the 
sl@0
   244
			implementation that the buffer can be re-used. Client shall never try to delete the pointer. NULL, if error.
sl@0
   245
			
sl@0
   246
	@param  aErrorCode
sl@0
   247
			Appropriate error code. 
sl@0
   248
	
sl@0
   249
	@note   Client shall use the currently available histogram for the viewfinder frames until a new histogram is 
sl@0
   250
			available.
sl@0
   251
	*/
sl@0
   252
	virtual void ClientHistogramReady(CCamera::CCameraClientViewFinder& aClientViewFinderHandle, MHistogramV2Buffer* aClientHistogramBuffer, TInt aErrorCode)=0;
sl@0
   253
	
sl@0
   254
	/**
sl@0
   255
	Implementation sends this callback in order to notify the client about failure of image processing for the client 
sl@0
   256
	viewfinder frames.
sl@0
   257
	
sl@0
   258
	@param  aClientViewFinderHandle
sl@0
   259
			Reference to CCameraClientViewFinder class object which refers a particular client viewfinder.
sl@0
   260
	
sl@0
   261
	@param  aErrorCode
sl@0
   262
			The reason of failure of the image processing. 
sl@0
   263
	*/
sl@0
   264
	virtual void ImageProcessingFailed(CCamera::CCameraClientViewFinder& aClientViewFinderHandle, TInt aErrorCode)=0;
sl@0
   265
	
sl@0
   266
	/**
sl@0
   267
	Gets a custom interface for future callbacks. This method will be called by the implementation to get a new interface
sl@0
   268
	which would support future callbacks.
sl@0
   269
sl@0
   270
	@param  aInterface
sl@0
   271
		    The Uid of the particular interface function required for callbacks.
sl@0
   272
		   
sl@0
   273
	@param  aPtrInterface
sl@0
   274
		    The implementation has to type-cast the retrieved custom interface pointer to the appropriate type.	
sl@0
   275
sl@0
   276
	@return The error code.
sl@0
   277
	*/
sl@0
   278
	virtual TInt CustomInterface(TUid aInterface, TAny*& aPtrInterface)=0;
sl@0
   279
	};
sl@0
   280
sl@0
   281
/** 
sl@0
   282
CCamera view finder base class is used to provide features common to both client view finders and direct view finders.
sl@0
   283
sl@0
   284
@note This class is not intended for stand alone use. One of the derived class shall be used instead.
sl@0
   285
Features of this class will automatically be used when either direct view finder or client based view finder are 
sl@0
   286
created by clients.
sl@0
   287
sl@0
   288
@note   If the class methods leave, the output type parameter value is not guaranteed to be valid.
sl@0
   289
sl@0
   290
@publishedPartner
sl@0
   291
@prototype
sl@0
   292
*/
sl@0
   293
class CCameraViewFinder : public CBase
sl@0
   294
	{
sl@0
   295
	/* so can use internal factory functions etc. */
sl@0
   296
	friend class CCamera;
sl@0
   297
sl@0
   298
public:
sl@0
   299
	/** 
sl@0
   300
	Different types of available viewfinder fading.
sl@0
   301
	The enumeration list may be extended in future.
sl@0
   302
	
sl@0
   303
	@internalTechnology
sl@0
   304
	*/
sl@0
   305
	enum TViewFinderFadingType
sl@0
   306
		{
sl@0
   307
		/** Fading not supported. */
sl@0
   308
		EVFFadingTypeNone	 		 		=0x00,
sl@0
   309
		/** Fading from a single frame of color given by the client. */
sl@0
   310
		EVFFadingTypeStaticColorFading      =0x01,
sl@0
   311
		/** Fading from a single frame given by the client. */
sl@0
   312
		EVFFadingTypeStaticFrameFading      =0x02,
sl@0
   313
		/** Fading from a number of previous VF frames. */
sl@0
   314
		EVFFadingTypeCross     	 			=0x04
sl@0
   315
		};
sl@0
   316
sl@0
   317
	/** 
sl@0
   318
	Different ways to control the viewfinder fading.
sl@0
   319
	The enumeration list may be extended in future.
sl@0
   320
	
sl@0
   321
	@internalTechnology
sl@0
   322
	*/
sl@0
   323
	enum TViewFinderFadingControl
sl@0
   324
		{
sl@0
   325
		/** Fading not supported. */
sl@0
   326
		EVFFadingControlNone			= 0x00,
sl@0
   327
		/** Switch on (enable) the fading. */
sl@0
   328
		EVFFadingControlSwitchedOn		= 0x01,
sl@0
   329
		/** Switch off (disable) the fading. */
sl@0
   330
		EVFFadingControlSwitchedOff		= 0x02,
sl@0
   331
		/** Automatic fading. */
sl@0
   332
		EVFFadingControlSwitchAuto		= 0x04
sl@0
   333
		};
sl@0
   334
	
sl@0
   335
	/**
sl@0
   336
	Different directions in which the fading may appear.
sl@0
   337
	The enumeration list may be extended in future.
sl@0
   338
	
sl@0
   339
	@internalTechnology
sl@0
   340
	*/		
sl@0
   341
	enum TViewFinderFadingDirection
sl@0
   342
		{
sl@0
   343
		/** Fading not supported. */
sl@0
   344
		EVFFadingDirectionNone			= 0x00,
sl@0
   345
		/** Automatic direction or may be even custom direction decided by implementation. */
sl@0
   346
		EVFFadingDirectionAuto			= 0x01,
sl@0
   347
		/** Uniform fading. */ 
sl@0
   348
		EVFFadingDirectionUniform		= 0x02,
sl@0
   349
		/** Start to fade from up to down. */
sl@0
   350
		EVFFadingDirectionUpDown		= 0x04,
sl@0
   351
		/** Start to fade from down to up. */
sl@0
   352
		EVFFadingDirectionDownUp		= 0x08,
sl@0
   353
		/** Start to fade from left to right. */
sl@0
   354
		EVFFadingDirectionLeftRight		= 0x10,
sl@0
   355
		/** Start to fade from right to left. */
sl@0
   356
		EVFFadingDirectionRightLeft		= 0x20
sl@0
   357
		};
sl@0
   358
		
sl@0
   359
	/**
sl@0
   360
	Image enhancement options to be applied for a particular display.
sl@0
   361
	The enumeration list may be extended in future.
sl@0
   362
	
sl@0
   363
	@internalTechnology
sl@0
   364
	*/	
sl@0
   365
	enum TImageEnhancement
sl@0
   366
		{
sl@0
   367
		/** Not Supported. */
sl@0
   368
		EImageEnhancementNone 			= 0x00,
sl@0
   369
		/** Image Enhancement switches off. */
sl@0
   370
		EImageEnhancementSwitchOFF 		= 0x01,
sl@0
   371
		/** Image Enhancement switches to auto mode. */
sl@0
   372
		EImageEnhancementAuto 			= 0x02,
sl@0
   373
		/** Image Enhancement switches on. */
sl@0
   374
		EImageEnhancementSwitchOn 		= 0x04
sl@0
   375
		};
sl@0
   376
	
sl@0
   377
	/**
sl@0
   378
	Retrieves the capabilites of viewfinder fading.
sl@0
   379
	
sl@0
   380
	@internalTechnology
sl@0
   381
	*/
sl@0
   382
	class TViewFinderFadingCapabilities
sl@0
   383
		{
sl@0
   384
	public:
sl@0
   385
		IMPORT_C TViewFinderFadingCapabilities();
sl@0
   386
		
sl@0
   387
		IMPORT_C TUint Size() const;
sl@0
   388
		IMPORT_C TUint Version() const;
sl@0
   389
		
sl@0
   390
	private:
sl@0
   391
		//for future expansion
sl@0
   392
		TUint iSize:24;
sl@0
   393
		TUint iVersion:8;
sl@0
   394
		
sl@0
   395
		// reserved for future expansion
sl@0
   396
		TInt iReserved1;
sl@0
   397
		TInt iReserved2;
sl@0
   398
		
sl@0
   399
	public:
sl@0
   400
		/** Bit-field retrieving the supported fading type TViewFinderFadingType. */
sl@0
   401
		TUint iSupportedFadingType;
sl@0
   402
		/** Bit-field retrieving the supported fading control TViewFinderFadingControl. */
sl@0
   403
		TUint iSupportedFadingControl;
sl@0
   404
		/** Bit-field retrieving the supported fading direction TViewFinderFadingDirection. */
sl@0
   405
		TUint iSupportedFadingDirection;
sl@0
   406
		};
sl@0
   407
		
sl@0
   408
	/**
sl@0
   409
	Viewfinder fading effects characterizing a particular viewfinder fading.
sl@0
   410
	
sl@0
   411
	@internalTechnology
sl@0
   412
	*/
sl@0
   413
	class TViewFinderFadingEffect
sl@0
   414
		{
sl@0
   415
	public:
sl@0
   416
		IMPORT_C TViewFinderFadingEffect();
sl@0
   417
		
sl@0
   418
		IMPORT_C TUint Size() const;
sl@0
   419
		IMPORT_C TUint Version() const;
sl@0
   420
	
sl@0
   421
	private:
sl@0
   422
		//for future expansion
sl@0
   423
		TUint iSize:24;
sl@0
   424
		TUint iVersion:8; 
sl@0
   425
		
sl@0
   426
		// reserved for future expansion
sl@0
   427
		TInt iReserved1;
sl@0
   428
		TInt iReserved2;
sl@0
   429
		TInt iReserved3[6];
sl@0
   430
		
sl@0
   431
	public:
sl@0
   432
		/** The type of viewfinder fading to be used. */
sl@0
   433
		TViewFinderFadingType 		iViewFinderFadingType;
sl@0
   434
		/** The control for the viewfinder fading, that is, on/off/auto. */
sl@0
   435
		TViewFinderFadingControl 	iViewFinderFadingControl;
sl@0
   436
		/** The direction of viewfinder fading. */
sl@0
   437
		TViewFinderFadingDirection 	iViewFinderFadingDirection;
sl@0
   438
		/** The color used to fade from/to in case of static color fading. This is ignored if iViewFinderFadingType is 
sl@0
   439
		not EVFFadingTypeStaticColorFading. */
sl@0
   440
		TRgb  						iStaticFadingColor;
sl@0
   441
		/** The handle of CFbsBitmap used to obtain the frame used to fade from/to in case of static frame fading. 
sl@0
   442
		This is KECamStaticFrameFadingTypeNotUsed if iViewFinderFadingType is not EVFFadingTypeStaticFrameFading.
sl@0
   443
		This is KECamSpecialStaticFrameFormatHandle if CFBsBitmap handle is not to be used. */
sl@0
   444
		TInt						iStaticFadingFrameBitmapHandle;
sl@0
   445
		/** The number of previous frames to be saved for cross fading. 
sl@0
   446
		This is KECamCrossFadingFramesNotUsed if iViewFinderFadingType is not EVFFadingTypeCross. */
sl@0
   447
		TUint						iCrossFadingFrames;
sl@0
   448
		/** The fading time. This may be used both for auto and manual fading as per implementation. */
sl@0
   449
		TTimeIntervalMicroSeconds32 iFadingTime;
sl@0
   450
		};
sl@0
   451
sl@0
   452
public:
sl@0
   453
	
sl@0
   454
	IMPORT_C void GetViewFinderFadingCapabilitiesL(TViewFinderFadingCapabilities& aVFFadingCapabilities) const;
sl@0
   455
	IMPORT_C void GetViewFinderFadingEffectL(TViewFinderFadingEffect& aCurrentVFFadingEffect) const;
sl@0
   456
	IMPORT_C void SetViewFinderFadingEffectL(const TViewFinderFadingEffect& aVFFadingEffect);
sl@0
   457
	
sl@0
   458
	IMPORT_C void GetViewFinderHandleL(TInt& aVFHandle) const;
sl@0
   459
	
sl@0
   460
	~CCameraViewFinder();
sl@0
   461
	
sl@0
   462
protected:
sl@0
   463
	CCameraViewFinder(CCamera& aOwner);
sl@0
   464
	
sl@0
   465
protected: 
sl@0
   466
	void GetSpotsPositionL(TUint aSpotCombination, RArray<TRect>& aSpotsPosition) const;
sl@0
   467
	
sl@0
   468
	void GetSupportedImageEnhancementL(TUint& aSupportedImageEnhancement) const;
sl@0
   469
	void GetImageEnhancementL(TImageEnhancement& aImageEnhancement) const;
sl@0
   470
	void SetImageEnhancementL(TImageEnhancement aImageEnhancement);
sl@0
   471
	
sl@0
   472
	void GetSupportedVFMagnificationL(RArray<TUint>& aSupportedVFMagnification) const;
sl@0
   473
	void GetViewfinderMagnificationL(TUint& aVFMagnification) const; 
sl@0
   474
	void SetViewfinderMagnificationL(TUint aVFMagnification);
sl@0
   475
		   	
sl@0
   476
protected:	
sl@0
   477
	CCamera&        	iOwner; 
sl@0
   478
	MCameraViewFinder* 	iImplBase;  // not owned
sl@0
   479
    };	
sl@0
   480
sl@0
   481
/** 
sl@0
   482
CCamera direct view finder v2 class is used to provide support for multiple Direct View Finder.
sl@0
   483
A new instance of this class will be created for every new direct viewfinder.
sl@0
   484
sl@0
   485
@note This class is not intended for sub-classing and used to standardise existing varieties of implementations.
sl@0
   486
sl@0
   487
@note   If the class methods leave, the output type parameter value is not guaranteed to be valid.
sl@0
   488
sl@0
   489
@note  Clients must implement an MDirectViewFinderObserver in order to use this CCameraV2DirectViewFinder API.
sl@0
   490
sl@0
   491
@publishedPartner
sl@0
   492
@prototype
sl@0
   493
*/
sl@0
   494
class CCamera::CCameraV2DirectViewFinder : public CCameraViewFinder
sl@0
   495
	{
sl@0
   496
	/* so can use internal factory functions etc. */
sl@0
   497
	friend class CCamera;
sl@0
   498
	friend class CCamera::CCameraDirectSnapshot;
sl@0
   499
sl@0
   500
public:
sl@0
   501
   
sl@0
   502
	/** Specifies direct viewfinder state. */ 
sl@0
   503
	enum TViewFinderState
sl@0
   504
		{
sl@0
   505
		/** View Finder is activated */  
sl@0
   506
		EViewFinderActive, 	 
sl@0
   507
		/** View Finder has been paused */
sl@0
   508
		EViewFinderPause,	 
sl@0
   509
		/** View Finder has been stopped or hasn't yet started. Default state. */
sl@0
   510
		EViewFinderInActive
sl@0
   511
		};
sl@0
   512
	
sl@0
   513
public:
sl@0
   514
sl@0
   515
	IMPORT_C static CCameraV2DirectViewFinder* NewL(CCamera& aOwner, MDirectViewFinderObserver& aDirectViewFinderObserver);
sl@0
   516
	
sl@0
   517
	IMPORT_C CCamera::CCameraV2Histogram* CreateHistogramHandleL() const;
sl@0
   518
	IMPORT_C CCamera::CCameraImageProcessing* GetTransformationHandleL() const;
sl@0
   519
	
sl@0
   520
	IMPORT_C CCamera::CCameraDirectSnapshot* GetDirectSnapshotHandleL() const; 
sl@0
   521
	
sl@0
   522
	IMPORT_C void StartViewFinderDirectL(RWsSession& aWs, CWsScreenDevice& aScreenDevice, RWindowBase& aWindow, TRect& aScreenRect);
sl@0
   523
										
sl@0
   524
	IMPORT_C void StartViewFinderDirectL(RWsSession& aWs, CWsScreenDevice& aScreenDevice, RWindowBase& aWindow, 
sl@0
   525
																			TRect& aScreenRect, TRect& aClipRect);
sl@0
   526
	
sl@0
   527
	IMPORT_C void GetDirectViewFinderPropertiesL(TInt& aScreenNumber, TRect& aScreenRect, TRect& aClipRect) const;
sl@0
   528
    
sl@0
   529
    IMPORT_C void PauseViewFinderDirect();
sl@0
   530
	IMPORT_C void ResumeViewFinderDirect();
sl@0
   531
	IMPORT_C void GetViewFinderStateL(TViewFinderState& aViewFinderState) const;
sl@0
   532
	
sl@0
   533
	IMPORT_C void StopDirectViewFinder();
sl@0
   534
	
sl@0
   535
	IMPORT_C ~CCameraV2DirectViewFinder();
sl@0
   536
	
sl@0
   537
private:
sl@0
   538
	CCameraV2DirectViewFinder(CCamera& aOwner);
sl@0
   539
	void ConstructL(MDirectViewFinderObserver& aDirectViewFinderObserver);
sl@0
   540
	
sl@0
   541
	void SetImplHandle();
sl@0
   542
			
sl@0
   543
	void SetImplBaseHandle();
sl@0
   544
	
sl@0
   545
	MCameraV2DirectViewFinder* Impl();
sl@0
   546
	
sl@0
   547
private:	
sl@0
   548
	MCameraV2DirectViewFinder* 	iImpl;  // not owned
sl@0
   549
    };	
sl@0
   550
sl@0
   551
/** 
sl@0
   552
CCamera client view finder class is used to provide support for multiple client View Finder.
sl@0
   553
A new instance of this class will be created for every new client viewfinder.
sl@0
   554
sl@0
   555
@note  This class is not intended for sub-classing and used to standardise existing
sl@0
   556
       varieties of implementations.
sl@0
   557
       
sl@0
   558
@note  If the class methods leave, the output type parameter value is not guaranteed to be valid.
sl@0
   559
sl@0
   560
@note  Clients must implement an MClientViewFinderObserver in order to use this CCameraClientViewFinder API. 
sl@0
   561
	   MCameraObserver2::ViewFinderReady will not be used with this class.
sl@0
   562
sl@0
   563
@publishedPartner
sl@0
   564
@prototype
sl@0
   565
*/
sl@0
   566
class CCamera::CCameraClientViewFinder : public CCameraViewFinder
sl@0
   567
	{
sl@0
   568
	/* so can use internal factory functions etc. */
sl@0
   569
	friend class CCamera;
sl@0
   570
sl@0
   571
public:
sl@0
   572
sl@0
   573
	IMPORT_C static CCameraClientViewFinder* NewL(CCamera& aOwner, MClientViewFinderObserver& aClientViewFinderObserver);
sl@0
   574
	
sl@0
   575
	IMPORT_C CCamera::CCameraV2Histogram* CreateHistogramHandleL() const;
sl@0
   576
	IMPORT_C CCamera::CCameraImageProcessing* GetTransformationHandleL() const;
sl@0
   577
	
sl@0
   578
	IMPORT_C void StartClientViewFinderL(TInt aScreenNumber, CCamera::TFormat aImageFormat, TSize& aSize);
sl@0
   579
	IMPORT_C void StartClientViewFinderL(TInt aScreenNumber, CCamera::TFormat aImageFormat, TSize& aSize, TRect& aClipRect);
sl@0
   580
	
sl@0
   581
	IMPORT_C void GetClientViewFinderStateL(TBool& aIsActive) const;
sl@0
   582
	IMPORT_C void GetClientViewFinderPropertiesL(TInt& aScreenNumber, CCamera::TFormat& aImageFormat, TSize& aSize, TRect& aClipRect) const;
sl@0
   583
sl@0
   584
	IMPORT_C void StopClientViewFinder();
sl@0
   585
	
sl@0
   586
	IMPORT_C void GetViewFinderBufferL(MCameraBuffer2& aClientViewFinderBuffer) const;
sl@0
   587
	
sl@0
   588
	IMPORT_C ~CCameraClientViewFinder();
sl@0
   589
	   	
sl@0
   590
private:
sl@0
   591
	CCameraClientViewFinder(CCamera& aOwner);
sl@0
   592
	void ConstructL(MClientViewFinderObserver& aClientViewFinderObserver);
sl@0
   593
	
sl@0
   594
	void SetImplHandle();
sl@0
   595
			
sl@0
   596
	void SetImplBaseHandle();
sl@0
   597
	
sl@0
   598
private:	
sl@0
   599
	MCameraClientViewFinder* 	iImpl;  // not owned
sl@0
   600
    };
sl@0
   601
    
sl@0
   602
/**
sl@0
   603
This class allows the client to enable direct snapshot feature for still images only. The direct snapshot API can not be 
sl@0
   604
used for video.
sl@0
   605
sl@0
   606
The direct snapshot can be created out of CCameraV2DirectViewFinder object only. Its lifetime is dependent on the parent 
sl@0
   607
direct viewfinder object. So, the client is supposed to destroy the direct snapshot object before deleting the parent 
sl@0
   608
direct viewfinder object. The MDirectViewFinderObserver observer class provides callback to notify the client whenever
sl@0
   609
direct snapshot data gets displayed on the given direct viewfinder screen. The callback also provides information regarding
sl@0
   610
the CCameraImageCapture object used to issue the image capture calls. It also provides the Id for the individual images 
sl@0
   611
which get represented by the snapshot displayed.
sl@0
   612
sl@0
   613
@note This class provides a standardised client interface for the direct snapshot. Classes cannot be derived from it.
sl@0
   614
sl@0
   615
@note If the class methods leave, the output type parameter value is not guaranteed to be valid.
sl@0
   616
sl@0
   617
@publishedPartner
sl@0
   618
@prototype
sl@0
   619
*/ 
sl@0
   620
class CCamera::CCameraDirectSnapshot : public CBase
sl@0
   621
	{
sl@0
   622
	friend class CCamera::CCameraV2DirectViewFinder;
sl@0
   623
sl@0
   624
public:
sl@0
   625
	/**
sl@0
   626
	Describes the state of direct snapshot. 
sl@0
   627
	The enumeration list may be extended in future.
sl@0
   628
	*/
sl@0
   629
	enum TDirectSnapshotState 
sl@0
   630
		{
sl@0
   631
		/** The direct snapshot has been enabled. */
sl@0
   632
		EDirectSnapshotEnabled, 
sl@0
   633
		/** The direct snapshot has been disabled. */
sl@0
   634
		EDirectSnapshotDisabled
sl@0
   635
		};
sl@0
   636
		
sl@0
   637
	/**
sl@0
   638
	Specifes the parameters necessary for direct snapshots. The screen co-ordinates used for direct snapshot will be the 
sl@0
   639
	same as used for the parent direct viewfinder screen co-ordinates. This screen co-ordinate for direct snapshot may be 
sl@0
   640
	changed by the implementation in certain cases for alignment.
sl@0
   641
	*/
sl@0
   642
	class TDirectSnapshotParameters
sl@0
   643
		{
sl@0
   644
	public:
sl@0
   645
		IMPORT_C TDirectSnapshotParameters();
sl@0
   646
		
sl@0
   647
		IMPORT_C TUint Size() const;
sl@0
   648
		IMPORT_C TUint Version() const;
sl@0
   649
		
sl@0
   650
		IMPORT_C TBool IsAspectRatioMaintained() const;
sl@0
   651
		IMPORT_C void SetAspectRatioState(TBool aIsAspectRatioMaintained);
sl@0
   652
				
sl@0
   653
	private:
sl@0
   654
		//for future expansion
sl@0
   655
		TUint iSize:24;
sl@0
   656
		TUint iVersion:8;
sl@0
   657
		
sl@0
   658
		// reserved for future expansion
sl@0
   659
		TInt iReserved1;
sl@0
   660
		TInt iReserved2;
sl@0
   661
		TInt iReserved3;
sl@0
   662
		
sl@0
   663
		TUint iReserved4:31;
sl@0
   664
		
sl@0
   665
		/** Set to ETrue if the aspect ratio of the direct snapshot image must be maintained when scaling down */
sl@0
   666
		TUint iIsAspectRatioMaintained:1;
sl@0
   667
		
sl@0
   668
	public:
sl@0
   669
	    /** The bit field representing the drive modes for which the direct snapshot will be displayed if enabled. 
sl@0
   670
	    Refer CCamera::CCameraAdvancedSettings::TDriveMode. */
sl@0
   671
		TUint iDriveModes; 
sl@0
   672
		
sl@0
   673
		/** The background colour to be used if the snapshot has been scaled (maintaining its aspect ratio)
sl@0
   674
  		and does not fully fill the dimension as per the direct view finder screen size. The TRect supposed to be used 
sl@0
   675
  		for direct snapshot may be modified by the implementation in certain cases for alignment. */
sl@0
   676
		TRgb iBgColor; 
sl@0
   677
		
sl@0
   678
		/** The time duration during which the snapshot data should appear on the screen. The implementation may 
sl@0
   679
		internally change this display time if the client sets iDisplayTime to TTimeIntervalMicroSeconds32 
sl@0
   680
		(KECamSnapshotDefaultDisplayTime). This may happen when the client doesn't want to specify a specific duration 
sl@0
   681
		and would rather let the implementation decide. */
sl@0
   682
		TTimeIntervalMicroSeconds32 iDisplayTime;
sl@0
   683
		};
sl@0
   684
		
sl@0
   685
public:
sl@0
   686
	
sl@0
   687
	IMPORT_C void GetDirectViewFinderL(CCamera::CCameraV2DirectViewFinder*& aDirectViewFinder) const;
sl@0
   688
	
sl@0
   689
	IMPORT_C void EnableDirectSnapshotL(TDirectSnapshotParameters& aDirectSnapshotParameters);
sl@0
   690
	
sl@0
   691
	IMPORT_C void DisableDirectSnapshot();
sl@0
   692
	
sl@0
   693
	IMPORT_C void GetDirectSnapshotStateL(TDirectSnapshotState& aDirectSnapshotParameters) const;
sl@0
   694
	
sl@0
   695
	IMPORT_C void GetDirectSnapshotParametersL(TDirectSnapshotParameters& aDirectSnapshotParameters) const;
sl@0
   696
	
sl@0
   697
	IMPORT_C void SetDirectSnapshotParametersL(const TDirectSnapshotParameters& aDirectSnapshotParameters);
sl@0
   698
	
sl@0
   699
	IMPORT_C ~CCameraDirectSnapshot();
sl@0
   700
	
sl@0
   701
private:
sl@0
   702
	IMPORT_C static CCameraDirectSnapshot* CreateL(CCamera::CCameraV2DirectViewFinder& aDirectViewFinder);
sl@0
   703
	
sl@0
   704
	CCameraDirectSnapshot();
sl@0
   705
	void ConstructL(CCamera::CCameraV2DirectViewFinder& aDirectViewFinder);
sl@0
   706
	
sl@0
   707
	MCameraV2DirectViewFinder* DirectViewFinderImpl(CCamera::CCameraV2DirectViewFinder& aDirectViewFinder);
sl@0
   708
	
sl@0
   709
private:
sl@0
   710
	MCameraDirectSnapshot*  iImpl;   // not owned
sl@0
   711
	}; 
sl@0
   712
	 
sl@0
   713
#endif // ECAMVIEWFINDER_H