os/mm/imagingandcamerafws/camerafw/Include/ECam.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) 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
 @publishedAll
sl@0
    19
 @released
sl@0
    20
*/
sl@0
    21
#ifndef ECAM_H
sl@0
    22
#define ECAM_H
sl@0
    23
sl@0
    24
#include <e32base.h>
sl@0
    25
#include <ecamuids.hrh>
sl@0
    26
#include <e32property.h>
sl@0
    27
sl@0
    28
#ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
    29
#include <ecamdef.h>
sl@0
    30
#endif
sl@0
    31
sl@0
    32
class MFrameBuffer;
sl@0
    33
class RWsSession;
sl@0
    34
class CWsScreenDevice;
sl@0
    35
class RWindowBase;
sl@0
    36
class CFbsBitmap;
sl@0
    37
sl@0
    38
typedef TInt TPostCaptureControlId;
sl@0
    39
sl@0
    40
/** Specifies camera device information.
sl@0
    41
sl@0
    42
If either zoom or digital zoom are available then the appropriate entries
sl@0
    43
in this class will be set to indicate the range of values that they may take.
sl@0
    44
This should be implemented such that a setting of zero corresponds to no zoom,
sl@0
    45
and a step of one corresponds to the smallest increment available, in a linear
sl@0
    46
fashion.
sl@0
    47
sl@0
    48
There are also zoom factors that correspond to the actual zoom factor when
sl@0
    49
at minimum (non-digital only) and maximum zoom. Negative zoom values represent
sl@0
    50
macro functionality.
sl@0
    51
sl@0
    52
Image capture, if supported, is simply a case of transferring the current
sl@0
    53
image from the camera to the client via MCameraObserver::ImageReady(). The
sl@0
    54
camera class must set the iImageFormatsSupported bitfield to indicate the
sl@0
    55
formats available.
sl@0
    56
sl@0
    57
@publishedAll
sl@0
    58
@released
sl@0
    59
*/
sl@0
    60
class TCameraInfo
sl@0
    61
	{
sl@0
    62
public:
sl@0
    63
	/** Possible directions in which the camera may point.
sl@0
    64
	*/
sl@0
    65
	enum TCameraOrientation
sl@0
    66
		{
sl@0
    67
		/** Outward pointing camera for taking pictures.
sl@0
    68
		Camera is directed away from the user. */
sl@0
    69
		EOrientationOutwards,
sl@0
    70
		/** Inward pointing camera for conferencing.
sl@0
    71
		Camera is directed towards the user. */
sl@0
    72
		EOrientationInwards,
sl@0
    73
		/** Mobile camera capable of multiple orientations.
sl@0
    74
		Camera orientation may be changed by the user. */
sl@0
    75
		EOrientationMobile,
sl@0
    76
		/** Camera orientation is not known. */
sl@0
    77
		EOrientationUnknown
sl@0
    78
		};
sl@0
    79
sl@0
    80
	/** Various flags describing the features available for a particular implementation
sl@0
    81
	*/
sl@0
    82
	enum TOptions
sl@0
    83
		{
sl@0
    84
		/** View finder display direct-to-screen flag */
sl@0
    85
		EViewFinderDirectSupported		= 0x0001,
sl@0
    86
		/** View finder bitmap generation flag */
sl@0
    87
		EViewFinderBitmapsSupported		= 0x0002,
sl@0
    88
		/** Still image capture flag */
sl@0
    89
		EImageCaptureSupported			= 0x0004,
sl@0
    90
		/** Video capture flag */
sl@0
    91
		EVideoCaptureSupported			= 0x0008,
sl@0
    92
		/** View finder display mirroring flag */
sl@0
    93
		EViewFinderMirrorSupported		= 0x0010,
sl@0
    94
		/** Contrast setting flag */
sl@0
    95
		EContrastSupported				= 0x0020,
sl@0
    96
		/** Brightness setting flag */
sl@0
    97
		EBrightnessSupported			= 0x0040,
sl@0
    98
		/** View finder clipping flag */
sl@0
    99
		EViewFinderClippingSupported	= 0x0080,
sl@0
   100
		/** Still image capture clipping flag */
sl@0
   101
		EImageClippingSupported			= 0x0100,
sl@0
   102
		/** Video capture clipping flag */
sl@0
   103
		EVideoClippingSupported			= 0x0200
sl@0
   104
		};
sl@0
   105
public:
sl@0
   106
	/** Version number and name of camera hardware. */
sl@0
   107
	TVersion iHardwareVersion;
sl@0
   108
	/** Version number and name of camera software (device driver). */
sl@0
   109
	TVersion iSoftwareVersion;
sl@0
   110
	/** Orientation of this particular camera device. */
sl@0
   111
	TCameraOrientation iOrientation;
sl@0
   112
sl@0
   113
	/** Bitfield of TOptions available */
sl@0
   114
	TUint32 iOptionsSupported;
sl@0
   115
	/** The supported flash modes.
sl@0
   116
	
sl@0
   117
	This is a bitfield of CCamera::TFlash values. 
sl@0
   118
	
sl@0
   119
	If methods CCamera::New2L() or CCamera::NewDuplicate2L() are not used to create the CCamera object, it is assumed that the 
sl@0
   120
	application may not be able to cope with any future additions to the enum values. So, any unrecognised enum value passed 
sl@0
   121
    from the implementation should be filtered by ECAM Implementation.
sl@0
   122
    To receive unrecognised/extra added enum values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L() 
sl@0
   123
    to create camera object. This is an indication to ECAM implementation. In this case, application is assumed 
sl@0
   124
    to be prepared to receive unrecognised enum values.
sl@0
   125
    @see CCamera::CCameraAdvancedSettings::SupportedFlashModes()
sl@0
   126
	
sl@0
   127
	*/
sl@0
   128
	TUint32 iFlashModesSupported;
sl@0
   129
	/** The supported exposure modes.
sl@0
   130
	
sl@0
   131
	This is a bitfield of CCamera::TExposure values. */
sl@0
   132
	TUint32 iExposureModesSupported;
sl@0
   133
	
sl@0
   134
	/** The supported white balance settings.
sl@0
   135
	
sl@0
   136
	This is a bitfield of of CCamera::TWhiteBalance values. 
sl@0
   137
	
sl@0
   138
	If methods CCamera::New2L() or CCamera::NewDuplicate2L() are not used to create the CCamera object, it is assumed that the 
sl@0
   139
	application may not be able to cope with any future additions to the enum values. So, any unrecognised enum value passed 
sl@0
   140
    from the implementation should be filtered by ECAM Implementation.
sl@0
   141
    To receive unrecognised/extra added enum values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L() 
sl@0
   142
    to create camera object. This is an indication to ECAM implementation. In this case, application is assumed 
sl@0
   143
    to be prepared to receive unrecognised enum values.
sl@0
   144
    Refer to CCamera::CCameraAdvancedSettings::SupportedWhiteBalanceModes() implementation
sl@0
   145
    
sl@0
   146
    @see CCamera::CCameraAdvancedSettings::SupportedWhiteBalanceModes()
sl@0
   147
	*/
sl@0
   148
	TUint32 iWhiteBalanceModesSupported;
sl@0
   149
sl@0
   150
	/** Minimum zoom value allowed. 
sl@0
   151
	
sl@0
   152
	Must be negative, or zero if not supported.
sl@0
   153
	
sl@0
   154
	This is the minimum value that may be passed to CCamera::SetZoomFactorL(). */
sl@0
   155
	TInt iMinZoom;
sl@0
   156
	/** Maximum zoom value allowed. 
sl@0
   157
	
sl@0
   158
	Must be positive, or zero if not supported.
sl@0
   159
	
sl@0
   160
	This is the maximum value that may be passed to CCamera::SetZoomFactorL(). */
sl@0
   161
	TInt iMaxZoom;
sl@0
   162
	/** Maximum digital zoom value allowed. 
sl@0
   163
	
sl@0
   164
	Must be positive, or zero if not supported.
sl@0
   165
sl@0
   166
	This is the maximum value that may be passed to CCamera::SetDigitalZoomFactorL(). 
sl@0
   167
	Digital zoom factor is assumed to be a linear scale from 0 to iMaxDigitalZoom. */
sl@0
   168
	TInt iMaxDigitalZoom;
sl@0
   169
sl@0
   170
	/** Image size multiplier corresponding to minimum zoom value. 
sl@0
   171
	
sl@0
   172
	Must be between 0 and 1 inclusive. Both 0 and 1 indicate that macro functionality 
sl@0
   173
	is not supported. */
sl@0
   174
	TReal32 iMinZoomFactor;
sl@0
   175
	/** Image size multiplier corresponding to maximum zoom value. 
sl@0
   176
	
sl@0
   177
	May take the value 0, or values greater than or equal to 1. Both 0 and 1 indicate 
sl@0
   178
	that zoom functionality is not supported. */
sl@0
   179
	TReal32 iMaxZoomFactor;
sl@0
   180
	/** Image size multiplier corresponding to maximum digital zoom value. 
sl@0
   181
		
sl@0
   182
	Implementation recommendation is to use 'appropriate value' for maximum digital zoom which could cover only values 
sl@0
   183
	given by new digital zoom methods based on image format and capture mode.
sl@0
   184
	
sl@0
   185
	Must be greater than or equal to 1. */
sl@0
   186
	TReal32 iMaxDigitalZoomFactor;
sl@0
   187
sl@0
   188
	/** Count of still image capture sizes allowed.
sl@0
   189
	
sl@0
   190
	Number of different image sizes that CCamera::EnumerateCaptureSizes() will 
sl@0
   191
	support, based on the index passed in. Index must be between 0 and iNumImageSizesSupported-1. */
sl@0
   192
	TInt iNumImageSizesSupported;
sl@0
   193
	/** The supported still image formats.
sl@0
   194
	
sl@0
   195
	This is a bitfield of CCamera::TFormat values. */
sl@0
   196
	TUint32 iImageFormatsSupported;
sl@0
   197
sl@0
   198
	/** Count of video frame sizes allowed. 
sl@0
   199
	
sl@0
   200
	This is the number of different video frame sizes that CCamera::EnumerateVideoFrameSizes() 
sl@0
   201
	will support, based on the specified index. The index must be between 0 and 
sl@0
   202
	iNumVideoFrameSizesSupported-1. */
sl@0
   203
	TInt iNumVideoFrameSizesSupported;
sl@0
   204
	/** Count of video frame rates allowed.
sl@0
   205
	
sl@0
   206
	This is the number of different video frame rates that CCamera::EnumerateVideoFrameRates() 
sl@0
   207
	will support, based on the specified index. The index must be between 0 and 
sl@0
   208
	iNumVideoFrameRatesSupported-1. */
sl@0
   209
	TInt iNumVideoFrameRatesSupported;
sl@0
   210
	/** The supported video frame formats.
sl@0
   211
sl@0
   212
	This is a bitfield of video frame CCamera::TFormat values. 
sl@0
   213
	
sl@0
   214
	If methods CCamera::New2L() or CCamera::NewDuplicate2L() are not used to create the CCamera object, it is assumed that the 
sl@0
   215
	application may not be able to cope with any future additions to the enum values. So, any unrecognised enum value passed 
sl@0
   216
    from the implementation should be filtered by the ECAM implementation.
sl@0
   217
    To receive unrecognised/extra added enum values, the application should rather use CCamera::New2L() or CCamera::NewDuplicate2L() 
sl@0
   218
    to create the camera object. This is an indication to the ECAM implementation. In this case, the application is assumed 
sl@0
   219
    to be prepared to receive unrecognised enum values.	
sl@0
   220
	*/
sl@0
   221
	TUint32 iVideoFrameFormatsSupported;
sl@0
   222
	/** Maximum number of frames per buffer that may be requested. */
sl@0
   223
	TInt iMaxFramesPerBufferSupported;
sl@0
   224
	/** Maximum number of buffers allowed */
sl@0
   225
	TInt iMaxBuffersSupported;
sl@0
   226
	};
sl@0
   227
sl@0
   228
/** Mixin base class for camera clients.
sl@0
   229
sl@0
   230
An application must implement an MCameraObserver or MCameraObserver2 (recommended)
sl@0
   231
in order to use the camera API. This derived class is called when the camera is 
sl@0
   232
ready for use, an image has been captured or a buffer of video data is ready, including 
sl@0
   233
when errors occur.
sl@0
   234
sl@0
   235
Implementations of the camera API should use MCameraObserver::FrameBufferReady()
sl@0
   236
and MFrameBuffer::Release() to co-ordinate the mapping of any special memory
sl@0
   237
objects.
sl@0
   238
sl@0
   239
@publishedAll
sl@0
   240
@released
sl@0
   241
*/
sl@0
   242
class MCameraObserver
sl@0
   243
	{
sl@0
   244
public:
sl@0
   245
	/** Camera reservation is complete.
sl@0
   246
sl@0
   247
	Called asynchronously when CCamera::Reserve() completes.
sl@0
   248
sl@0
   249
	@param  aError
sl@0
   250
	        An error on failure and KErrNone on success.
sl@0
   251
	*/
sl@0
   252
	virtual void ReserveComplete(TInt aError)=0;
sl@0
   253
sl@0
   254
	/** Indicates camera power on is complete.
sl@0
   255
sl@0
   256
	Called on completion of CCamera:PowerOn().
sl@0
   257
sl@0
   258
	@param  aError
sl@0
   259
	        KErrNone on success, KErrInUse if the camera is in
sl@0
   260
	        use by another client or KErrNoMemory if insufficient system memory is available.
sl@0
   261
	*/
sl@0
   262
	virtual void PowerOnComplete(TInt aError)=0;
sl@0
   263
sl@0
   264
	/** Tests whether transfer of view finder data has completed.
sl@0
   265
sl@0
   266
	Called periodically in response to the use of CCamera::StartViewFinderBitmapsL().
sl@0
   267
sl@0
   268
	@param  aFrame
sl@0
   269
	        The view finder frame.
sl@0
   270
	*/
sl@0
   271
	virtual void ViewFinderFrameReady(CFbsBitmap& aFrame)=0;
sl@0
   272
sl@0
   273
	/** Transfers the current image from the camera to the client.
sl@0
   274
sl@0
   275
	Called asynchronously when CCamera::CaptureImage() completes.
sl@0
   276
sl@0
   277
	@param  aBitmap
sl@0
   278
	        On return, a pointer to an image held in CFbsBitmap form if
sl@0
   279
	        this was the format specified in CCamera::PrepareImageCaptureL().
sl@0
   280
	@param  aData
sl@0
   281
	        On return, a pointer to an HBufC8 if this was the format specified
sl@0
   282
	        in CCamera::PrepareImageCaptureL(). NULL if there was an error.
sl@0
   283
	@param  aError
sl@0
   284
	        KErrNone on success or an error code on failure.
sl@0
   285
	*/
sl@0
   286
	virtual void ImageReady(CFbsBitmap* aBitmap,HBufC8* aData,TInt aError)=0;
sl@0
   287
sl@0
   288
	/** Passes a filled frame buffer to the client.
sl@0
   289
sl@0
   290
	Called asynchronously, when a buffer has been filled with the required number
sl@0
   291
	of video frames by CCamera::StartVideoCapture().
sl@0
   292
sl@0
   293
	@param  aFrameBuffer
sl@0
   294
	        On return, a pointer to an MFrameBuffer if successful,
sl@0
   295
	        or NULL if not successful.
sl@0
   296
	@param  aError
sl@0
   297
	        KErrNone if successful, or an error code if not successful.
sl@0
   298
	*/
sl@0
   299
	virtual void FrameBufferReady(MFrameBuffer* aFrameBuffer,TInt aError)=0;
sl@0
   300
	};
sl@0
   301
sl@0
   302
sl@0
   303
/**
sl@0
   304
Class used for passing camera picture data between camera and client in the V2 observer.
sl@0
   305
Used for viewfinder, image capture and video capture.
sl@0
   306
sl@0
   307
The class offers APIs for the client to access the data as a descriptor, a bitmap
sl@0
   308
or a handle to a kernel chunk. Depending on the format previously requested by
sl@0
   309
the client, one or more of the API choices may be inappropriate e.g. an image will
sl@0
   310
not be avaiable as a bitmap in the FBS unless the client has specifically requested
sl@0
   311
it.
sl@0
   312
sl@0
   313
The buffer may contain multiple frames.
sl@0
   314
sl@0
   315
@publishedAll
sl@0
   316
@released
sl@0
   317
*/
sl@0
   318
class MCameraBuffer
sl@0
   319
	{
sl@0
   320
public:
sl@0
   321
	/** 
sl@0
   322
	Returns the number of frames of image data contained within the buffer. This
sl@0
   323
	would be 1 for a image capture, and match the requested count
sl@0
   324
	for video capture. For other methods in this class that take a aFrameIndex
sl@0
   325
	param, 0 <= aFrameIndex < NumFrames()
sl@0
   326
sl@0
   327
	@return The number of frames of image data in the buffer. 
sl@0
   328
	*/
sl@0
   329
	virtual TInt NumFrames()=0;
sl@0
   330
	/**
sl@0
   331
	Returns a pointer to a descriptor containing a frame of camera data. The format
sl@0
   332
	will have been previously specified by a CCamera class method.
sl@0
   333
sl@0
   334
	@param  aFrameIndex
sl@0
   335
	        The index of the required frame. For a still image this should be 0.
sl@0
   336
sl@0
   337
	@leave  KErrArgument if aIndex is out of range and 
sl@0
   338
	@leave  KErrNotSupported if the camera data is actually bitmaps in the FBS.
sl@0
   339
sl@0
   340
	@return A pointer to a descriptor containing a frame of image data.
sl@0
   341
	*/
sl@0
   342
	virtual TDesC8* DataL(TInt aFrameIndex)=0;
sl@0
   343
sl@0
   344
	/** 
sl@0
   345
	Returns a reference to a FBS bitmap containing a frame of image data.
sl@0
   346
sl@0
   347
	@param  aFrameIndex 
sl@0
   348
	        The index of the required frame. For a still image this should be 0.
sl@0
   349
sl@0
   350
	@leave  KErrArgument if aIndex is out of range and 
sl@0
   351
	@leave  KErrNotSupported if the picture data is not a FBS bitmap.
sl@0
   352
sl@0
   353
	@return A reference to a FBS bitmap containing a frame of picture data. 
sl@0
   354
	*/
sl@0
   355
	virtual CFbsBitmap& BitmapL(TInt aFrameIndex)=0;
sl@0
   356
sl@0
   357
	/** 
sl@0
   358
	Returns a handle for the chunk that contains the camera data.
sl@0
   359
	The RChunk is exposed so that it can potentially be shared between multiple
sl@0
   360
	processes.
sl@0
   361
	The ptr returned by DataL(aFrameIndex) is effectively derived from this
sl@0
   362
	RChunk (where both are supported simulataneously). The equivalent ptr would be:
sl@0
   363
	TPtrC8* ptr;
sl@0
   364
	ptr.Set(ChunkL().Base() + ChunkOffset(aFrameIndex), FrameSize(aFrameIndex));
sl@0
   365
sl@0
   366
	@leave  KErrNotSupported if the chunk is not available.
sl@0
   367
sl@0
   368
	@return A reference to a handle to the chunk that contains the buffer of picture data. 
sl@0
   369
	*/
sl@0
   370
	virtual RChunk& ChunkL()=0;
sl@0
   371
sl@0
   372
	/** 
sl@0
   373
	Returns the offset into the chunk that contains the frame specified by aFrameIndex.
sl@0
   374
	The client would add this offset to the ptr returned by ChunkL().Base() to
sl@0
   375
	get the address of the start of the frame data. 
sl@0
   376
	
sl@0
   377
	@param  aIndex 
sl@0
   378
	        The index of the required frame. For a still image this should be 0.
sl@0
   379
sl@0
   380
	@leave  KErrNotSupported if the chunk is not available 
sl@0
   381
	@leave  KErrArgument if aIndex is out of range.
sl@0
   382
sl@0
   383
	@return The offset into the chunk for the start of the frame. 
sl@0
   384
	*/
sl@0
   385
	virtual TInt ChunkOffsetL(TInt aFrameIndex)=0;
sl@0
   386
sl@0
   387
	/** 
sl@0
   388
	Returns the size of the data in bytes that comprises the frame specified by aIndex.
sl@0
   389
	
sl@0
   390
	@param  aFrameIndex 
sl@0
   391
	        The index of the required frame. For a still image this should be 0.
sl@0
   392
sl@0
   393
	@leave  KErrArgument 
sl@0
   394
			if aIndex is out of range.
sl@0
   395
sl@0
   396
	@return Returns the size of the data in bytes that comprises the frame. 
sl@0
   397
	*/
sl@0
   398
	virtual TInt FrameSize(TInt aFrameIndex)=0;
sl@0
   399
sl@0
   400
	/** 
sl@0
   401
	Releases the buffer. Once the client has processed
sl@0
   402
	the picture data it should use this method to signal to CCamera that the
sl@0
   403
	buffer can be re-used.
sl@0
   404
	*/
sl@0
   405
	virtual void Release()=0;
sl@0
   406
public:
sl@0
   407
sl@0
   408
	/** 
sl@0
   409
	Sequential frame number of the first frame in the buffer, counting from when
sl@0
   410
	CCamera::StartVideoCapture() was called and including frames dropped due to
sl@0
   411
	lack of buffers. Always zero for still images. May also be used by client viewfinders.
sl@0
   412
	*/
sl@0
   413
	TInt iIndexOfFirstFrameInBuffer;
sl@0
   414
sl@0
   415
	/** 
sl@0
   416
	Time elapsed from when CCamera::StartVideoCapture() was called until the first
sl@0
   417
	frame in the buffer was captured. Always zero for still images.
sl@0
   418
	*/
sl@0
   419
	TTimeIntervalMicroSeconds iElapsedTime;
sl@0
   420
	};
sl@0
   421
sl@0
   422
/** 
sl@0
   423
	Uid used to identify the event that the request to Reserve() has completed
sl@0
   424
*/
sl@0
   425
static const TUid  KUidECamEventReserveComplete = {0x101F7D3B};
sl@0
   426
sl@0
   427
/** 
sl@0
   428
	Uid used to identify the event that the request to PowerOn() has completed
sl@0
   429
*/
sl@0
   430
static const TUid  KUidECamEventPowerOnComplete = {0x101F7D3C};
sl@0
   431
sl@0
   432
/** 
sl@0
   433
	Uid used to identify the event that the client has lost
sl@0
   434
	control of the camera
sl@0
   435
*/
sl@0
   436
static const TUid  KUidECamEventCameraNoLongerReserved = {0x101F7D3D};
sl@0
   437
sl@0
   438
/** 
sl@0
   439
Uid used to notify the client who made the new reserve request. 
sl@0
   440
sl@0
   441
Error value KErrECamHighPriorityReserveRequesterExists indicates another such reserve request is outstanding and
sl@0
   442
has higher priority than this one.
sl@0
   443
Error value KErrCancel indicates a new reserve requester with higher priority than the current requester has 
sl@0
   444
been made. That's why, this one got cancelled.
sl@0
   445
Any other error may also occur.
sl@0
   446
@see CCamera::CCameraAdvancedSettings::ReserveL(const TTimeIntervalMicroseconds32& aMaxTimeToWait, TBool aKickOut);
sl@0
   447
*/
sl@0
   448
static const TUid  KUidECamEventNewReserveComplete = {KUidECamEventNewReserveCompleteUidValue};
sl@0
   449
sl@0
   450
/**
sl@0
   451
@publishedAll
sl@0
   452
@released
sl@0
   453
sl@0
   454
General purpose class to describe an ECam event.
sl@0
   455
sl@0
   456
Contains a UID to define the actual event type, and an integer to define the event code.
sl@0
   457
sl@0
   458
*/
sl@0
   459
sl@0
   460
class TECAMEvent
sl@0
   461
	{
sl@0
   462
public:
sl@0
   463
	
sl@0
   464
	/**
sl@0
   465
	Constructor.
sl@0
   466
	
sl@0
   467
	@param  aEventType
sl@0
   468
	        A UID to define the type of event.
sl@0
   469
	@param  aErrorCode
sl@0
   470
	        The error code associated with the event.
sl@0
   471
sl@0
   472
	*/
sl@0
   473
	IMPORT_C TECAMEvent(TUid aEventType, TInt aErrorCode);
sl@0
   474
sl@0
   475
	/**
sl@0
   476
	Default constructor.
sl@0
   477
	
sl@0
   478
	Provided so this class can be packaged in a TPckgBuf<>.
sl@0
   479
	*/
sl@0
   480
	IMPORT_C TECAMEvent();
sl@0
   481
	
sl@0
   482
	/**
sl@0
   483
	A UID to define the event type.
sl@0
   484
	*/
sl@0
   485
	TUid iEventType;
sl@0
   486
sl@0
   487
	/**
sl@0
   488
	The error code associated with the event.
sl@0
   489
	*/
sl@0
   490
	TInt iErrorCode;
sl@0
   491
	};
sl@0
   492
sl@0
   493
/** 
sl@0
   494
Uid used to identify a particular version of TECAMEvent base class being used i.e. TECAMEvent2 . 
sl@0
   495
Useful for MCameraObserver2::HandleEvent implementation to detect the version of TECAMEvent base class.
sl@0
   496
*/
sl@0
   497
static const TUid  KUidECamEventClass2 = {KUidECamEventClass2UidValue};
sl@0
   498
sl@0
   499
/** 
sl@0
   500
event indicating setting of color entry in the color swap operation. This is a part of class CCamera::CCameraImageProcessing. 
sl@0
   501
This event should be packed in TECAMEvent2 class.
sl@0
   502
sl@0
   503
@note  TECAMEvent2::iParam represents color entry.
sl@0
   504
*/
sl@0
   505
static const TUid  KUidECamEventCIPSetColorSwapEntry 		   = {KUidECamEventCIPSetColorSwapEntryUidValue};
sl@0
   506
static const TUid  KUidECamEvent2CIPSetColorSwapEntry 		   = {KUidECamEventCIPSetColorSwapEntryUidValue};
sl@0
   507
sl@0
   508
/** 
sl@0
   509
event indicating removal of color entry in the color swap operation. This is a part of class CCamera::CCameraImageProcessing. 
sl@0
   510
This event should be packed in TECAMEvent2 class.
sl@0
   511
sl@0
   512
@note  TECAMEvent2::iParam represents color entry.
sl@0
   513
*/
sl@0
   514
static const TUid  KUidECamEventCIPRemoveColorSwapEntry 	   = {KUidECamEventCIPRemoveColorSwapEntryUidValue};
sl@0
   515
static const TUid  KUidECamEvent2CIPRemoveColorSwapEntry 	   = {KUidECamEventCIPRemoveColorSwapEntryUidValue};
sl@0
   516
sl@0
   517
/** 
sl@0
   518
event indicating setting of color entry in the color accent operation. This is a part of class CCamera::CCameraImageProcessing. 
sl@0
   519
This event should be packed in TECAMEvent2 class.
sl@0
   520
sl@0
   521
@note  TECAMEvent2::iParam represents color entry.
sl@0
   522
*/
sl@0
   523
static const TUid  KUidECamEventCIPSetColorAccentEntry 		   = {KUidECamEventCIPSetColorAccentEntryUidValue};
sl@0
   524
static const TUid  KUidECamEvent2CIPSetColorAccentEntry 	   = {KUidECamEventCIPSetColorAccentEntryUidValue};
sl@0
   525
sl@0
   526
/** 
sl@0
   527
event indicating removal of color entry in the color accent operation. This is a part of class CCamera::CCameraImageProcessing. 
sl@0
   528
This event should be packed in TECAMEvent2 class.
sl@0
   529
sl@0
   530
@note  TECAMEvent2::iParam represents color entry.
sl@0
   531
*/
sl@0
   532
static const TUid  KUidECamEventCIPRemoveColorAccentEntry 	   = {KUidECamEventCIPRemoveColorAccentEntryUidValue};
sl@0
   533
static const TUid  KUidECamEvent2CIPRemoveColorAccentEntry 	   = {KUidECamEventCIPRemoveColorAccentEntryUidValue};
sl@0
   534
sl@0
   535
/** 
sl@0
   536
event indicating issue of pre capture warnings. This is a part of class CCamera::CCameraAdvancedSettings. 
sl@0
   537
This event should be packed in TECAMEvent2 class.
sl@0
   538
sl@0
   539
This TUid is available from the following methods only to the API clients using CCamera::New2L() or CCamera::
sl@0
   540
NewDuplicate2L():-
sl@0
   541
void CCamera::CCameraAdvancedSettings::GetSupportedSettingsL(RArray<TUid>& aSettings) const;
sl@0
   542
void CCamera::CCameraAdvancedSettings::GetActiveSettingsL(RArray<TUid>& aActiveSettings) const;
sl@0
   543
void CCamera::CCameraAdvancedSettings::GetDisabledSettingsL(RArray<TUid>& aDisabledSettings) const;
sl@0
   544
sl@0
   545
@note  TECAMEvent2::iParam represents bit field describing all PreCaptureWarnings currently issued.
sl@0
   546
*/
sl@0
   547
static const TUid  KUidECamEventCameraSettingPreCaptureWarning 	= {KUidECamEventCameraSettingPreCaptureWarningUidValue};
sl@0
   548
static const TUid  KUidECamEvent2CameraSettingPreCaptureWarning = {KUidECamEventCameraSettingPreCaptureWarningUidValue};
sl@0
   549
	
sl@0
   550
/**
sl@0
   551
Special type of TECAMEvent class used to retrieve some extra information from particular events received
sl@0
   552
sl@0
   553
@publishedAll
sl@0
   554
@released
sl@0
   555
*/	
sl@0
   556
class TECAMEvent2 : public TECAMEvent
sl@0
   557
	{
sl@0
   558
public:
sl@0
   559
sl@0
   560
	IMPORT_C static TBool IsEventEncapsulationValid(const TECAMEvent& aECAMEvent);
sl@0
   561
sl@0
   562
	IMPORT_C TECAMEvent2(TUid aEventType, TInt aErrorCode, TInt aParam);
sl@0
   563
	
sl@0
   564
	IMPORT_C const TUid& EventClassUsed() const;
sl@0
   565
	
sl@0
   566
private:
sl@0
   567
	/** 
sl@0
   568
	Uid representing this version of TECAMEvent base class. Uid used is KUidECamEventClass2 
sl@0
   569
	*/
sl@0
   570
	TUid iEventClassUsed;
sl@0
   571
	
sl@0
   572
	/**
sl@0
   573
	Reserved for future
sl@0
   574
	TInt iReserved1; -> Made Public TInt iParam1
sl@0
   575
	*/
sl@0
   576
	
sl@0
   577
	/**
sl@0
   578
	Reserved for future	
sl@0
   579
	*/
sl@0
   580
	TInt iReserved2; 
sl@0
   581
	
sl@0
   582
	
sl@0
   583
public:
sl@0
   584
	/**
sl@0
   585
	iParam1 will be used to provide extra information if iParam is not sufficient.
sl@0
   586
	This signifies different things for different valid events.
sl@0
   587
				
sl@0
   588
	Future events may also use this class member variable.
sl@0
   589
	*/
sl@0
   590
	TInt iParam1;
sl@0
   591
	
sl@0
   592
	/**
sl@0
   593
	This signifies different things for different valid events.
sl@0
   594
				
sl@0
   595
	Future events may also use this class member variable.
sl@0
   596
	*/	
sl@0
   597
	TInt iParam;
sl@0
   598
	};
sl@0
   599
sl@0
   600
/** Mixin base class V2 for camera clients.
sl@0
   601
sl@0
   602
An application must implement an MCameraObserver2 (or MCameraObserver) in order to use the camera
sl@0
   603
API. This derived class is called when the camera is ready for use, an image
sl@0
   604
has been captured or a buffer of video data is ready, including when errors
sl@0
   605
occur.
sl@0
   606
sl@0
   607
@publishedAll
sl@0
   608
@released
sl@0
   609
*/
sl@0
   610
sl@0
   611
class MCameraObserver2
sl@0
   612
	{
sl@0
   613
public:
sl@0
   614
	/** 
sl@0
   615
	A camera event has completed.
sl@0
   616
	@note Implementations of MCameraObserver2 should ignore events which are not recognised and should not leave.
sl@0
   617
sl@0
   618
	@param  aEvent
sl@0
   619
	        A reference to a TECAMEvent. This can be completion of a call to Reserve() 
sl@0
   620
			or a call to PowerOn() or a notification that the client has lost control 
sl@0
   621
			of the camera.
sl@0
   622
			The event contains a uid identifying the event and an accompanying
sl@0
   623
			error code (KErrNone for the successful completion of a request).
sl@0
   624
			The error will be KErrNotReady for a request that was made out of the
sl@0
   625
			correct sequence.
sl@0
   626
			The error will be KErrAccessDenied for a Reserve() request that failed
sl@0
   627
			because a higher priority client already controls the camera.
sl@0
   628
	
sl@0
   629
	@note   This may internally call TECAMEvent2::IsEventEncapsulationValid(aEvent) and also for any other derived version of TECAMEvent 
sl@0
   630
			class to know whether correct version of TECAMEvent base class has been used. 
sl@0
   631
	*/
sl@0
   632
	virtual void HandleEvent(const TECAMEvent& aEvent)=0;
sl@0
   633
sl@0
   634
	/** 
sl@0
   635
	Notifies client of new view finder data. Called periodically in response to 
sl@0
   636
	the use of CCamera::StartViewFinderL().
sl@0
   637
sl@0
   638
	@param  aCameraBuffer
sl@0
   639
	        A reference to an MCameraBuffer if successful, or NULL if not successful.
sl@0
   640
sl@0
   641
	@param  aError
sl@0
   642
	        KErrNone if successful, or an error code if not successful.
sl@0
   643
	*/
sl@0
   644
	virtual void ViewFinderReady(MCameraBuffer& aCameraBuffer,TInt aError)=0;
sl@0
   645
sl@0
   646
	/** 
sl@0
   647
	Notifies the client of a new captured camera image. Called asynchronously 
sl@0
   648
	when CCamera::CaptureImage() completes.
sl@0
   649
sl@0
   650
	@param  aCameraBuffer
sl@0
   651
	        A reference to an MCameraBuffer if successful, or NULL if not successful.
sl@0
   652
sl@0
   653
	@param  aError
sl@0
   654
	        KErrNone if successful, or an error code if not successful.
sl@0
   655
  
sl@0
   656
	@note   If new image capture classes used, then this callback will not be used. Refer MCaptureImageObserver
sl@0
   657
	*/
sl@0
   658
	virtual void ImageBufferReady(MCameraBuffer& aCameraBuffer,TInt aError)=0;
sl@0
   659
sl@0
   660
	/** 
sl@0
   661
	Notifies the client of new captured video. Called asynchronously and periodically
sl@0
   662
	after CCamera::StartVideoCapture() is called. The buffer has been filled with the 
sl@0
   663
	required number of video frames specified PrepareVideoCaptureL().
sl@0
   664
sl@0
   665
	@param  aCameraBuffer
sl@0
   666
	        A reference to an MCameraBuffer if successful, or NULL if not successful.
sl@0
   667
sl@0
   668
	@param  aError
sl@0
   669
	        KErrNone if successful, or an error code if not successful.
sl@0
   670
	*/
sl@0
   671
	virtual void VideoBufferReady(MCameraBuffer& aCameraBuffer,TInt aError)=0;
sl@0
   672
	};
sl@0
   673
sl@0
   674
sl@0
   675
/** Base class for camera devices.
sl@0
   676
sl@0
   677
Provides the interface that an application uses to control, and acquire images
sl@0
   678
from, the camera.
sl@0
   679
sl@0
   680
An application must supply an implementation of MCameraObserver2 (or MCameraObserver).
sl@0
   681
sl@0
   682
@publishedAll
sl@0
   683
@released
sl@0
   684
*/
sl@0
   685
class CCamera : public CBase
sl@0
   686
sl@0
   687
	{
sl@0
   688
	
sl@0
   689
	friend class CCameraPlugin;
sl@0
   690
sl@0
   691
public:
sl@0
   692
	class CCameraPresets;
sl@0
   693
	class CCameraAdvancedSettings;
sl@0
   694
	class CCameraImageProcessing;
sl@0
   695
	class CCameraHistogram;
sl@0
   696
	class CCameraV2Histogram;
sl@0
   697
	class CCameraOverlay;
sl@0
   698
	class CCameraSnapshot;
sl@0
   699
	class CCameraDirectViewFinder;
sl@0
   700
	class CCameraV2DirectViewFinder;
sl@0
   701
	class CCameraClientViewFinder;
sl@0
   702
	class CCameraPreImageCaptureControl;
sl@0
   703
	class CCameraImageCapture;
sl@0
   704
	class CCameraPostImageCaptureControl;
sl@0
   705
	class CCameraVideoCaptureControl;
sl@0
   706
    class CCameraDirectSnapshot;
sl@0
   707
    class CCameraContinuousZoom;
sl@0
   708
sl@0
   709
public:
sl@0
   710
	/** Possible still image and video frame formats
sl@0
   711
sl@0
   712
	Formats are read from left to right, starting at the top of the image. YUV
sl@0
   713
	format is as defined by ITU-R BT.601-4. */
sl@0
   714
	enum TFormat
sl@0
   715
		{
sl@0
   716
		/** 8 bit greyscale values, 0=black, 255=white. */
sl@0
   717
		EFormatMonochrome			= 0x0001,
sl@0
   718
		/** Packed RGB triplets, 4 bits per pixel with red in the least significant bits
sl@0
   719
		and the 4 most significant bits unused. */
sl@0
   720
		EFormat16bitRGB444			= 0x0002,
sl@0
   721
		/** Packed RGB triplets, 5 bits per pixel for red and blue and 6 bits for green,
sl@0
   722
		with red in the least significant bits. */
sl@0
   723
		EFormat16BitRGB565			= 0x0004,
sl@0
   724
		/** Packed RGB triplets, 8 bits per pixel with red in the least significant bits
sl@0
   725
		and the 8 most significant bits unused. */
sl@0
   726
		EFormat32BitRGB888			= 0x0008,
sl@0
   727
		/** JFIF JPEG. */
sl@0
   728
		EFormatJpeg					= 0x0010,
sl@0
   729
		/** EXIF JPEG */
sl@0
   730
		EFormatExif					= 0x0020,
sl@0
   731
		/** CFbsBitmap object with display mode EColor4K. */
sl@0
   732
		EFormatFbsBitmapColor4K		= 0x0040,
sl@0
   733
		/** CFbsBitmap object with display mode EColor64K. */
sl@0
   734
		EFormatFbsBitmapColor64K	= 0x0080,
sl@0
   735
		/** CFbsBitmap object with display mode EColor16M. */
sl@0
   736
		EFormatFbsBitmapColor16M	= 0x0100,
sl@0
   737
		/** Implementation dependent. */
sl@0
   738
		EFormatUserDefined			= 0x0200,
sl@0
   739
		/** 4:2:0 format, 8 bits per sample, Y00Y01Y10Y11UV. */
sl@0
   740
		EFormatYUV420Interleaved	= 0x0400,
sl@0
   741
		/** 4:2:0 format, 8 bits per sample, Y00Y01Y02Y03...U0...V0... */
sl@0
   742
		EFormatYUV420Planar			= 0x0800,
sl@0
   743
		/** 4:2:2 format, 8 bits per sample, UY0VY1.  Maps to Graphics' EUidPixelFormatYUV_422Interleaved in pixelformats.h. */
sl@0
   744
		EFormatYUV422				= 0x1000,
sl@0
   745
		/** 4:2:2 format, 8 bits per sample, Y1VY0U.  Maps to Graphics' EUidPixelFormatYUV_422InterleavedReversed in pixelformats.h. */
sl@0
   746
		EFormatYUV422Reversed		= 0x2000,
sl@0
   747
		/** 4:4:4 format, 8 bits per sample, Y00U00V00 Y01U01V01... */
sl@0
   748
		EFormatYUV444				= 0x4000,
sl@0
   749
		/** 4:2:0 format, 8 bits per sample, Y00Y01Y02Y03...U0V0... */
sl@0
   750
		EFormatYUV420SemiPlanar		= 0x8000,
sl@0
   751
		/** CFbsBitmap object with display mode EColor16MU. */
sl@0
   752
		EFormatFbsBitmapColor16MU 	= 0x00010000,
sl@0
   753
		/** Motion JPEG for video 
sl@0
   754
		@note This value is available only to the API clients using CCamera::New2L() or CCamera::NewDuplicate2L().
sl@0
   755
		@internalTechnology
sl@0
   756
		*/
sl@0
   757
		EFormatMJPEG				= 0x00020000,
sl@0
   758
		
sl@0
   759
		/** 
sl@0
   760
		Compressed H264 video format. 
sl@0
   761
		@note This value is available only to the API clients using CCamera::New2L() or CCamera::NewDuplicate2L().
sl@0
   762
		@prototype
sl@0
   763
		*/
sl@0
   764
		EFormatEncodedH264          = 0x00040000,
sl@0
   765
sl@0
   766
		/**
sl@0
   767
		4:2:2 format, 8 bits per sample, Y0UY1V. Maps to Graphics' EUidPixelFormatYUV_422Reversed in pixelformats.h.
sl@0
   768
		@note This value is available only to the API clients using CCamera::New2L() or CCamera::NewDuplicate2L().
sl@0
   769
		@prototype
sl@0
   770
		*/
sl@0
   771
		EFormatYUV222ReversedV2		= 0x00080000
sl@0
   772
		};
sl@0
   773
		
sl@0
   774
	/** Specifies whether contrast is set automatically. */
sl@0
   775
	enum TContrast
sl@0
   776
		{
sl@0
   777
		/** Sets the contrast automatically. */
sl@0
   778
		EContrastAuto		= KMinTInt
sl@0
   779
		};
sl@0
   780
	/** Specifies whether brightness is set automatically. */
sl@0
   781
	enum TBrightness
sl@0
   782
		{
sl@0
   783
		/** Sets the brightness automatically. */
sl@0
   784
		EBrightnessAuto		= KMinTInt
sl@0
   785
		};
sl@0
   786
	/** Specifies the type of flash. */
sl@0
   787
	enum TFlash
sl@0
   788
		{
sl@0
   789
		/** No flash, always supported. */
sl@0
   790
		EFlashNone			= 0x0000,
sl@0
   791
		/** Flash will automatically fire when required. */
sl@0
   792
		EFlashAuto			= 0x0001,
sl@0
   793
		/** Flash will always fire. */
sl@0
   794
		EFlashForced		= 0x0002,
sl@0
   795
		/** Reduced flash for general lighting */
sl@0
   796
		EFlashFillIn		= 0x0004,
sl@0
   797
		/** Red-eye reduction mode. */	
sl@0
   798
		EFlashRedEyeReduce	= 0x0008,
sl@0
   799
		/** Flash at the moment when shutter opens. */
sl@0
   800
		EFlashSlowFrontSync = 0x0010,
sl@0
   801
		/** Flash at the moment when shutter closes. */
sl@0
   802
		EFlashSlowRearSync  = 0x0020, 
sl@0
   803
		/** User configurable setting */	
sl@0
   804
		EFlashManual		= 0x0040,
sl@0
   805
		/** Constant emission of light during video mode  
sl@0
   806
            @note This value is available only to the API clients using CCamera::New2L() or CCamera::NewDuplicate2L()
sl@0
   807
		*/
sl@0
   808
		EFlashVideoLight    = 0x0080
sl@0
   809
		};
sl@0
   810
	/** Specifies the type of exposure. - EExposureAuto is the default value. */
sl@0
   811
	enum TExposure
sl@0
   812
		{
sl@0
   813
		/** Set exposure automatically. Default, always supported.
sl@0
   814
		This may imply auto aperture so clients may receive a KUidEcamEvent2CameraSettingAutoAperture event notification some time later. */
sl@0
   815
		EExposureAuto		= 0x0000,
sl@0
   816
		/** Night-time setting for long exposures. */
sl@0
   817
		EExposureNight		= 0x0001,
sl@0
   818
		/** Backlight setting for bright backgrounds. */
sl@0
   819
		EExposureBacklight	= 0x0002,
sl@0
   820
		/** Centered mode for ignoring surroundings. */
sl@0
   821
		EExposureCenter		= 0x0004,
sl@0
   822
		/** Sport setting for very short exposures. */
sl@0
   823
		EExposureSport 		= 0x0008,
sl@0
   824
		/** Generalised setting for very long exposures. */
sl@0
   825
		EExposureVeryLong 	= 0x0010,
sl@0
   826
		/** Snow setting for daylight exposure. */
sl@0
   827
		EExposureSnow 		= 0x0020,
sl@0
   828
		/** Beach setting for daylight exposure with reflective glare. */
sl@0
   829
		EExposureBeach 		= 0x0040,
sl@0
   830
		/** Programmed exposure setting. */
sl@0
   831
		EExposureProgram 	= 0x0080,
sl@0
   832
		/** Aperture setting is given priority. */
sl@0
   833
		EExposureAperturePriority 	= 0x0100,
sl@0
   834
		/** Shutter speed setting is given priority.
sl@0
   835
		This may imply auto aperture so clients may receive a KUidEcamEvent2CameraSettingAutoAperture event notification some time later. */
sl@0
   836
		EExposureShutterPriority	= 0x0200,
sl@0
   837
		/** User selectable exposure value setting. */	
sl@0
   838
		EExposureManual				= 0x0400,
sl@0
   839
		/** Exposure night setting with colour removed to get rid of colour noise. */
sl@0
   840
		EExposureSuperNight			= 0x0800,
sl@0
   841
		/** Exposure for infra-red sensor on the camera */
sl@0
   842
		EExposureInfra				= 0x1000
sl@0
   843
		};
sl@0
   844
		
sl@0
   845
	/** Specifies how the white balance is set. */
sl@0
   846
	enum TWhiteBalance
sl@0
   847
		{
sl@0
   848
		/** Set white balance automatically. Default, always supported. */
sl@0
   849
		EWBAuto				= 0x0000,
sl@0
   850
		/** Normal daylight. */
sl@0
   851
		EWBDaylight			= 0x0001,
sl@0
   852
		/** Overcast daylight. */
sl@0
   853
		EWBCloudy			= 0x0002,
sl@0
   854
		/** Tungsten filament lighting. */
sl@0
   855
		EWBTungsten			= 0x0004,
sl@0
   856
		/** Fluorescent tube lighting */
sl@0
   857
		EWBFluorescent		= 0x0008,
sl@0
   858
		/** Flash lighting. */
sl@0
   859
		EWBFlash			= 0x0010,
sl@0
   860
		/** High contrast daylight primarily snowy */
sl@0
   861
		EWBSnow 			= 0x0020,
sl@0
   862
		/** High contrast daylight primarily near the sea */
sl@0
   863
		EWBBeach 			= 0x0040,
sl@0
   864
		/** User configurable mode */
sl@0
   865
		EWBManual 			= 0x0080,
sl@0
   866
		/** Shade */
sl@0
   867
 		EWBShade			= 0x0100,
sl@0
   868
 		/** auto skin
sl@0
   869
sl@0
   870
 		If New2L()/NewDuplicate2L() are not used to create camera object, this
sl@0
   871
		enum value would be considered as unrecognized and filtered out in 'supported'
sl@0
   872
		or 'getter' methods.
sl@0
   873
 		*/
sl@0
   874
 		EWBAutoSkin			= 0x0200,
sl@0
   875
 		/** horizon
sl@0
   876
sl@0
   877
 		If New2L()/NewDuplicate2L() are not used to create camera object, this
sl@0
   878
		enum value would be considered as unrecognized and filtered out in 'supported'
sl@0
   879
		or 'getter' methods.
sl@0
   880
		*/
sl@0
   881
 		EWBHorizon 			= 0x0400,
sl@0
   882
 		/** Daylight Under Water
sl@0
   883
sl@0
   884
 		If New2L()/NewDuplicate2L() are not used to create camera object, this
sl@0
   885
		enum value would be considered as unrecognized and filtered out in 'supported'
sl@0
   886
		or 'getter' methods.
sl@0
   887
		*/
sl@0
   888
 		EWBDaylightUnderWater  = 0x0800
sl@0
   889
		};
sl@0
   890
sl@0
   891
public:
sl@0
   892
	/**
sl@0
   893
	Determines the number of cameras on the device.
sl@0
   894
sl@0
   895
    @return Count of cameras present on the device.
sl@0
   896
	*/
sl@0
   897
	IMPORT_C static TInt CamerasAvailable();
sl@0
   898
sl@0
   899
    /**
sl@0
   900
    @deprecated Use static CCamera* New2L(MCameraObserver2& aObserver,TInt aCameraIndex,TInt aPriority);
sl@0
   901
sl@0
   902
	Creates an object representing a camera.
sl@0
   903
sl@0
   904
	@param  aObserver
sl@0
   905
	        Reference to class derived from MCameraObserver2 designed to receive
sl@0
   906
	        notification of asynchronous event completion.
sl@0
   907
	@param	aCameraIndex
sl@0
   908
	        Index from 0 to CamerasAvailable()-1 inclusive specifying the
sl@0
   909
	        camera device to use.
sl@0
   910
	@param	aPriority
sl@0
   911
	        Value from -100 to 100 indicating relative priority of client to
sl@0
   912
	        use camera.
sl@0
   913
sl@0
   914
	@return Pointer to a fully constructed CCamera object. Ownership is passed
sl@0
   915
	        to the caller.
sl@0
   916
sl@0
   917
	@leave  KErrNoMemory if out of memory.
sl@0
   918
	@leave  KErrNotSupported if aCameraIndex is out of range.
sl@0
   919
	@leave  KErrPermissionDenied if the application does not have
sl@0
   920
	        the UserEnvironment capability.
sl@0
   921
sl@0
   922
	@capability	UserEnvironment
sl@0
   923
			An application that creates a CCamera object must have
sl@0
   924
			the UserEnvironment capability.
sl@0
   925
sl@0
   926
    @capability MultimediaDD
sl@0
   927
	        A process requesting or using this method that has MultimediaDD capability will
sl@0
   928
			always have precedence over a process that does not have MultimediaDD.
sl@0
   929
sl@0
   930
	@note   Applications using this method to create camera object may not receive enums/uids added in future(after being baselined).
sl@0
   931
			To receive them, they should rather use New2L() or NewDuplicate2L(), in which case, they should prepare
sl@0
   932
			themselves to receive unrecognised values.
sl@0
   933
	*/
sl@0
   934
	IMPORT_C static CCamera* NewL(MCameraObserver2& aObserver,TInt aCameraIndex,TInt aPriority);
sl@0
   935
sl@0
   936
	/**
sl@0
   937
	Creates an object representing a camera.
sl@0
   938
	Clients prepare themselves to receive unrecognised enum, uids etc.
sl@0
   939
sl@0
   940
	@param  aObserver
sl@0
   941
	        Reference to class derived from MCameraObserver2 designed to receive
sl@0
   942
	        notification of asynchronous event completion.
sl@0
   943
	@param	aCameraIndex
sl@0
   944
	        Index from 0 to CamerasAvailable()-1 inclusive specifying the
sl@0
   945
	        camera device to use.
sl@0
   946
	@param	aPriority
sl@0
   947
	        Value from -100 to 100 indicating relative priority of client to
sl@0
   948
	        use camera.
sl@0
   949
sl@0
   950
	@return Pointer to a fully constructed CCamera object. Ownership is passed
sl@0
   951
	        to the caller.
sl@0
   952
sl@0
   953
	@leave  KErrNoMemory if out of memory.
sl@0
   954
	@leave  KErrNotSupported if aCameraIndex is out of range.
sl@0
   955
	@leave  KErrPermissionDenied if the application does not have
sl@0
   956
	        the UserEnvironment capability.
sl@0
   957
sl@0
   958
	@capability	UserEnvironment
sl@0
   959
			An application that creates a CCamera object must have
sl@0
   960
			the UserEnvironment capability.
sl@0
   961
sl@0
   962
    @capability MultimediaDD
sl@0
   963
	        A process requesting or using this method that has MultimediaDD capability will
sl@0
   964
			always have precedence over a process that does not have MultimediaDD.
sl@0
   965
sl@0
   966
	@note   Clients using this creation method should prepare themselves to receive any unrecognised enum values, uids
sl@0
   967
			from 'supported' or 'getter' methods
sl@0
   968
	*/
sl@0
   969
	IMPORT_C static CCamera* New2L(MCameraObserver2& aObserver,TInt aCameraIndex,TInt aPriority);
sl@0
   970
sl@0
   971
	/**
sl@0
   972
	Creates an object representing a camera.
sl@0
   973
sl@0
   974
	@param  aObserver
sl@0
   975
	        Reference to class derived from MCameraObserver designed to receive
sl@0
   976
	        notification of asynchronous event completion.
sl@0
   977
	@param	aCameraIndex
sl@0
   978
	        Index from 0 to CamerasAvailable()-1 inclusive specifying the
sl@0
   979
	        camera device to use.
sl@0
   980
sl@0
   981
	@leave  KErrNoMemory if out of memory.
sl@0
   982
	@leave  KErrNotSupported if aCameraIndex is out of range.
sl@0
   983
	@leave  KErrPermissionDenied if the application does not have
sl@0
   984
	        the UserEnvironment capability.
sl@0
   985
sl@0
   986
	@return Pointer to a fully constructed CCamera object. Ownership is passed
sl@0
   987
	        to the caller.
sl@0
   988
sl@0
   989
	@capability	UserEnvironment
sl@0
   990
				An application that creates a CCamera object must have
sl@0
   991
				the UserEnvironment capability.
sl@0
   992
sl@0
   993
	@note   Applications using this method to create camera object may not receive enums/uids added in future(after being baselined).
sl@0
   994
			To receive them, they should rather use New2L() or NewDuplicate2L(), in which case, they should prepare
sl@0
   995
			themselves to receive unrecognised values.
sl@0
   996
	*/
sl@0
   997
	IMPORT_C static CCamera* NewL(MCameraObserver& aObserver,TInt aCameraIndex);
sl@0
   998
sl@0
   999
	/**
sl@0
  1000
	@deprecated Use static CCamera* NewDuplicate2L(MCameraObserver2& aObserver,TInt aCameraHandle);
sl@0
  1001
sl@0
  1002
	Duplicates the original camera object for use by, for example, multimedia systems.
sl@0
  1003
sl@0
  1004
	May leave with KErrNoMemory or KErrNotFound if aCameraHandle is not valid.
sl@0
  1005
sl@0
  1006
	@param  aObserver
sl@0
  1007
	        Reference to an observer.
sl@0
  1008
	@param  aCameraHandle Handle of an existing camera object.
sl@0
  1009
sl@0
  1010
	@leave  KErrNoMemory if out of memory.
sl@0
  1011
	@leave  KErrNotFound if aCameraHandle is not valid.	   
sl@0
  1012
	@leave  KErrPermissionDenied if the application does not have
sl@0
  1013
	        the UserEnvironment capability.
sl@0
  1014
sl@0
  1015
	@return Duplicate of the original camera object. 
sl@0
  1016
	
sl@0
  1017
	@capability	UserEnvironment
sl@0
  1018
				An application that creates a CCamera object must have
sl@0
  1019
				the UserEnvironment capability.
sl@0
  1020
	
sl@0
  1021
	@note   Applications using this method to create camera object may not receive enums/uids added in future(after being baselined). 
sl@0
  1022
			To receive them, they should rather use New2L() or NewDuplicate2L(), in which case, they should prepare 
sl@0
  1023
			themselves to receive unrecognised values.
sl@0
  1024
	*/
sl@0
  1025
	IMPORT_C static CCamera* NewDuplicateL(MCameraObserver2& aObserver,TInt aCameraHandle);
sl@0
  1026
	
sl@0
  1027
	/** 
sl@0
  1028
	Duplicates the original camera object for use by, for example, multimedia systems.
sl@0
  1029
	Clients prepare themselves to receive unrecognised enum, uids etc.
sl@0
  1030
sl@0
  1031
	May leave with KErrNoMemory or KErrNotFound if aCameraHandle is not valid.
sl@0
  1032
sl@0
  1033
	@param  aObserver
sl@0
  1034
	        Reference to an observer.
sl@0
  1035
	@param  aCameraHandle Handle of an existing camera object.
sl@0
  1036
sl@0
  1037
	@leave  KErrNoMemory if out of memory.
sl@0
  1038
	@leave  KErrNotFound if aCameraHandle is not valid.	   
sl@0
  1039
	@leave  KErrPermissionDenied if the application does not have
sl@0
  1040
	        the UserEnvironment capability.
sl@0
  1041
sl@0
  1042
	@return Duplicate of the original camera object. 
sl@0
  1043
	
sl@0
  1044
	@capability	UserEnvironment
sl@0
  1045
				An application that creates a CCamera object must have
sl@0
  1046
				the UserEnvironment capability.
sl@0
  1047
				
sl@0
  1048
	@note   Clients using this creation method should prepare themselves to receive any unrecognised enum values, uids 
sl@0
  1049
			from 'supported' or 'getter' methods
sl@0
  1050
	*/
sl@0
  1051
	IMPORT_C static CCamera* NewDuplicate2L(MCameraObserver2& aObserver,TInt aCameraHandle);
sl@0
  1052
	
sl@0
  1053
	/** 
sl@0
  1054
	Duplicates the original camera object for use by, for example, multimedia systems.
sl@0
  1055
sl@0
  1056
	@leave  KErrNoMemory if out of memory.
sl@0
  1057
	@leave  KErrNotFound if aCameraHandle is not valid.	   
sl@0
  1058
	@leave  KErrPermissionDenied if the application does not have
sl@0
  1059
	        the UserEnvironment capability.
sl@0
  1060
sl@0
  1061
	@param  aObserver
sl@0
  1062
	        Reference to an observer.
sl@0
  1063
	@param  aCameraHandle Handle of an existing camera object.
sl@0
  1064
sl@0
  1065
	@return Duplicate of the original camera object. 
sl@0
  1066
	
sl@0
  1067
	@capability	UserEnvironment
sl@0
  1068
				An application that creates a CCamera object must have
sl@0
  1069
				the UserEnvironment capability.
sl@0
  1070
				
sl@0
  1071
	@note   Applications using this method to create camera object may not receive enums/uids added in future(after being baselined). 
sl@0
  1072
			To receive them, they should rather use New2L() or NewDuplicate2L(), in which case, they should prepare 
sl@0
  1073
			themselves to receive unrecognised values.
sl@0
  1074
	*/
sl@0
  1075
	IMPORT_C static CCamera* NewDuplicateL(MCameraObserver& aObserver,TInt aCameraHandle);	
sl@0
  1076
sl@0
  1077
	/** 
sl@0
  1078
	Gets information about the camera device.
sl@0
  1079
sl@0
  1080
	@param  aInfo 
sl@0
  1081
	        On return, information about the camera device. See TCameraInfo. 
sl@0
  1082
	*/
sl@0
  1083
	virtual void CameraInfo(TCameraInfo& aInfo) const=0;
sl@0
  1084
sl@0
  1085
	/** 
sl@0
  1086
	Asynchronous function that performs any required initialisation and reserves
sl@0
  1087
	the camera for exclusive use.
sl@0
  1088
sl@0
  1089
	Calls MCameraObserver:: ReserveComplete() when complete. 
sl@0
  1090
	*/
sl@0
  1091
	virtual void Reserve()=0;
sl@0
  1092
sl@0
  1093
	/** 
sl@0
  1094
	De-initialises the camera, allowing it to be used by other clients. 
sl@0
  1095
	*/
sl@0
  1096
	virtual void Release()=0;
sl@0
  1097
sl@0
  1098
	/** 
sl@0
  1099
	Asynchronous method to switch on camera power.
sl@0
  1100
sl@0
  1101
	User must have successfully called Reserve() prior to calling this function.
sl@0
  1102
sl@0
  1103
	Calls MCameraObserver::PowerOnComplete() when power on is complete. 
sl@0
  1104
	*/
sl@0
  1105
	virtual void PowerOn()=0;
sl@0
  1106
sl@0
  1107
	/** 
sl@0
  1108
	Synchronous function for switching off camera power. 
sl@0
  1109
	*/
sl@0
  1110
	virtual void PowerOff()=0;
sl@0
  1111
sl@0
  1112
	/**
sl@0
  1113
	Gets the device-unique handle of this camera object.
sl@0
  1114
sl@0
  1115
	@return  The device-unique handle of this camera object. 
sl@0
  1116
	*/
sl@0
  1117
	virtual TInt Handle()=0;
sl@0
  1118
sl@0
  1119
	/** 
sl@0
  1120
	Sets the zoom factor.
sl@0
  1121
sl@0
  1122
	This must be in the range of TCameraInfo::iMinZoom to TCameraInfo::iMaxZoom
sl@0
  1123
	inclusive. May leave with KErrNotSupported if the specified zoom factor is
sl@0
  1124
	out of range.
sl@0
  1125
sl@0
  1126
	@param aZoomFactor 
sl@0
  1127
	       Required zoom factor.
sl@0
  1128
	*/
sl@0
  1129
	virtual void SetZoomFactorL(TInt aZoomFactor = 0)=0;
sl@0
  1130
sl@0
  1131
	/** 
sl@0
  1132
	Gets the currently set zoom factor.
sl@0
  1133
sl@0
  1134
	@return  The currently set zoom factor.
sl@0
  1135
	*/
sl@0
  1136
	virtual TInt ZoomFactor() const=0;
sl@0
  1137
sl@0
  1138
	/** 
sl@0
  1139
	Sets the digital zoom factor.
sl@0
  1140
sl@0
  1141
	This must be in the range of 0 to TCameraInfo::iMaxDigitalZoom inclusive.
sl@0
  1142
sl@0
  1143
	May leave with KErrNotSupported if the zoom factor is out of range.
sl@0
  1144
sl@0
  1145
	@param  aDigitalZoomFactor
sl@0
  1146
	        The required digital zoom factor. 
sl@0
  1147
	*/
sl@0
  1148
	virtual void SetDigitalZoomFactorL(TInt aDigitalZoomFactor = 0)=0;
sl@0
  1149
sl@0
  1150
	/** 
sl@0
  1151
	Gets the currently set digital zoom factor.
sl@0
  1152
sl@0
  1153
	@return  The currently set digital zoom factor. 
sl@0
  1154
	*/
sl@0
  1155
	virtual TInt DigitalZoomFactor() const=0;
sl@0
  1156
sl@0
  1157
	/**
sl@0
  1158
	Sets the contrast adjustment of the device.
sl@0
  1159
sl@0
  1160
	This must be in the range of -100 to +100 or EContrastAuto. May leave with
sl@0
  1161
	KErrNotSupported if the specified contrast value is out of range.
sl@0
  1162
sl@0
  1163
	@param  aContrast 
sl@0
  1164
	        Required contrast value. See TCameraInfo::iContrastSupported 
sl@0
  1165
	*/
sl@0
  1166
	virtual void SetContrastL(TInt aContrast)=0;
sl@0
  1167
sl@0
  1168
	/** 
sl@0
  1169
	Gets the currently set contrast value.
sl@0
  1170
sl@0
  1171
	@return  The currently set contrast value.
sl@0
  1172
	*/
sl@0
  1173
	virtual TInt Contrast() const=0;
sl@0
  1174
sl@0
  1175
	/** 
sl@0
  1176
	Sets the brightness adjustment of the device.
sl@0
  1177
sl@0
  1178
	No effect if this is not supported, see TCameraInfo::iBrightnessSupported.
sl@0
  1179
sl@0
  1180
	This must be in the range of -100 to +100 or EBrightnessAuto. May leave
sl@0
  1181
	with KErrNotSupported if the brightness adjustment is out of range.
sl@0
  1182
sl@0
  1183
	@param  aBrightness
sl@0
  1184
	        The required brightness adjustment. 
sl@0
  1185
	*/
sl@0
  1186
	virtual void SetBrightnessL(TInt aBrightness)=0;
sl@0
  1187
sl@0
  1188
	/** 
sl@0
  1189
	Gets the currently set brightness adjustment value.
sl@0
  1190
sl@0
  1191
	@return  The currently set brightness adjustment value. 
sl@0
  1192
	*/
sl@0
  1193
	virtual TInt Brightness() const=0;
sl@0
  1194
sl@0
  1195
	/** 
sl@0
  1196
	Sets the flash mode.
sl@0
  1197
sl@0
  1198
	No effect if this is not supported, see TCameraInfo::iFlashModesSupported.
sl@0
  1199
sl@0
  1200
	May leave with KErrNotSupported if the specified flash mode is invalid.
sl@0
  1201
sl@0
  1202
	@param  aFlash
sl@0
  1203
	        The required flash mode. 
sl@0
  1204
	*/
sl@0
  1205
	virtual void SetFlashL(TFlash aFlash = EFlashNone)=0;
sl@0
  1206
sl@0
  1207
	/** 
sl@0
  1208
	Gets the currently set flash mode.
sl@0
  1209
sl@0
  1210
	@return  The currently set flash mode. 
sl@0
  1211
	@note	if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that 
sl@0
  1212
    application is not prepared to receive extra added enum values (unrecognised). So, any extra enum value(unrecognised)
sl@0
  1213
    (set in the ECAM implementation because of sharing clients) should not be returned from the ECAM implementation.
sl@0
  1214
    To receive extra added enum values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L() 
sl@0
  1215
    to create camera object. ECAM implementation, after verifying this,(by checking version no.) may send new values, if set.
sl@0
  1216
    In this case, application is assumed to be prepared to receive unrecognised enum values.
sl@0
  1217
    
sl@0
  1218
    @see CCamera::CCameraAdvancedSettings::FlashMode()	
sl@0
  1219
	*/
sl@0
  1220
	virtual TFlash Flash() const=0;
sl@0
  1221
sl@0
  1222
	/** 
sl@0
  1223
	Sets the exposure adjustment of the device.
sl@0
  1224
sl@0
  1225
	No effect if this is not supported, see CameraInfo::iExposureModesSupported.
sl@0
  1226
sl@0
  1227
	May leave with KErrNotSupported if the specified exposure adjustment is invalid.
sl@0
  1228
sl@0
  1229
	@param  aExposure
sl@0
  1230
	        The required exposure adjustment. 
sl@0
  1231
	*/
sl@0
  1232
	virtual void SetExposureL(TExposure aExposure = EExposureAuto)=0;
sl@0
  1233
sl@0
  1234
	/** 
sl@0
  1235
	Gets the currently set exposure setting value.
sl@0
  1236
sl@0
  1237
	@return  The currently set exposure setting value. 
sl@0
  1238
	*/
sl@0
  1239
	virtual TExposure Exposure() const=0;
sl@0
  1240
sl@0
  1241
	/** 
sl@0
  1242
	Sets the white balance adjustment of the device.
sl@0
  1243
sl@0
  1244
	No effect if this is not supported, see TCameraInfo::iWhiteBalanceModesSupported.
sl@0
  1245
sl@0
  1246
	@param  aWhiteBalance
sl@0
  1247
	        The required white balance adjustment.
sl@0
  1248
sl@0
  1249
	@leave  KErrNotSupported if the specified white balance adjustment
sl@0
  1250
	        is invalid.
sl@0
  1251
	*/
sl@0
  1252
	virtual void SetWhiteBalanceL(TWhiteBalance aWhiteBalance = EWBAuto)=0;
sl@0
  1253
sl@0
  1254
	/** 
sl@0
  1255
	Gets the currently set white balance adjustment value.
sl@0
  1256
sl@0
  1257
	@return  The currently set white balance adjustment value.
sl@0
  1258
	
sl@0
  1259
	@note	if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that 
sl@0
  1260
    application is not prepared to receive extra added enum values (unrecognised). So, any extra enum value(unrecognised)
sl@0
  1261
    (set in the ECAM implementation because of sharing clients) should not be returned from the ECAM implementation.
sl@0
  1262
    To receive extra added enum values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L() 
sl@0
  1263
    to create camera object. ECAM implementation, after verifying this,(by checking version no.) may send new values, if set.
sl@0
  1264
    In this case, application is assumed to be prepared to receive unrecognised enum values.
sl@0
  1265
    Refer  CCamera::CCameraAdvancedSettings::WhiteBalanceMode() implementation
sl@0
  1266
    
sl@0
  1267
    @see CCamera::CCameraAdvancedSettings::WhiteBalanceMode()
sl@0
  1268
    */
sl@0
  1269
	virtual TWhiteBalance WhiteBalance() const=0;
sl@0
  1270
sl@0
  1271
	/** 
sl@0
  1272
	Starts transfer of view finder data to the given portion of the screen using
sl@0
  1273
	direct screen access.
sl@0
  1274
sl@0
  1275
	The aScreenRect parameter is in screen co-ordinates and may be modified if,
sl@0
  1276
	eg, the camera requires the destination to have a certain byte alignment, etc.
sl@0
  1277
sl@0
  1278
    @param  aWs 
sl@0
  1279
	        Window server session.
sl@0
  1280
	@param  aScreenDevice 
sl@0
  1281
	        Screen device.
sl@0
  1282
	@param  aWindow 
sl@0
  1283
	        Displayable window.
sl@0
  1284
	@param  aScreenRect 
sl@0
  1285
	        Portion of the screen to which view finder data is to be
sl@0
  1286
	        transferred. This is in screen co-ordinates and may be modified if, for example,
sl@0
  1287
	        the camera requires the destination to have a certain byte alignment.
sl@0
  1288
sl@0
  1289
	@leave  KErrNotReady if PowerOn() has either not
sl@0
  1290
	        been called, or has not yet completed.
sl@0
  1291
	
sl@0
  1292
	@note   This method is assumed to be meant for default display only. KECamDefaultViewFinderHandle should be used to 
sl@0
  1293
			refer viewfinders started using CCamera methods. 
sl@0
  1294
	
sl@0
  1295
	@see	CCamera::CCameraV2DirectViewFinder
sl@0
  1296
	*/
sl@0
  1297
	virtual void StartViewFinderDirectL(RWsSession& aWs,CWsScreenDevice& aScreenDevice,RWindowBase& aWindow,TRect& aScreenRect)=0;
sl@0
  1298
sl@0
  1299
	/** 
sl@0
  1300
	Starts transfer of view finder data to the given portion of the screen using
sl@0
  1301
	direct screen access and also clips to the specified portion of the screen.
sl@0
  1302
sl@0
  1303
	The view finder has the same size and position as aScreenRect but is only
sl@0
  1304
	visible in the intersection of aScreenRect and aClipRect. May leave with KErrNotSupported
sl@0
  1305
	or KErrNotReady if Reserve() has not been called, or has not yet completed.
sl@0
  1306
sl@0
  1307
	@param  aWs 
sl@0
  1308
	        Window server session.
sl@0
  1309
	@param  aScreenDevice 
sl@0
  1310
	        Screen device.
sl@0
  1311
	@param  aWindow 
sl@0
  1312
	        Displayable window.
sl@0
  1313
	@param  aScreenRect 
sl@0
  1314
	        Portion of the screen to which view finder data is to be
sl@0
  1315
	        transferred. This is in screen co-ordinates and may be modified if, for example,
sl@0
  1316
	        the camera requires the destination to have a certain byte alignment.
sl@0
  1317
	@param  aClipRect
sl@0
  1318
	        The rectangle to which the screen will be clipped.
sl@0
  1319
sl@0
  1320
    @leave  KErrNotReady if PowerOn() hasn't been called successfully. 
sl@0
  1321
    
sl@0
  1322
    @note   This method is assumed to be meant for default display only. KECamDefaultViewFinderHandle should be used to 
sl@0
  1323
    		refer viewfinders started using CCamera methods.
sl@0
  1324
	
sl@0
  1325
	@see	CCamera::CCameraClientViewFinder
sl@0
  1326
	*/
sl@0
  1327
	virtual void StartViewFinderDirectL(RWsSession& aWs,CWsScreenDevice& aScreenDevice,RWindowBase& aWindow,TRect& aScreenRect,TRect& aClipRect)=0;
sl@0
  1328
sl@0
  1329
	/** 
sl@0
  1330
	Starts transfer of view finder data.
sl@0
  1331
sl@0
  1332
	Bitmaps are returned by MCameraObserver::ViewFinderFrameReady().
sl@0
  1333
sl@0
  1334
	@param  aSize 
sl@0
  1335
	        On return, the size used.
sl@0
  1336
	@leave  KErrNotReady if PowerOn() has not been called, or has not yet completed.
sl@0
  1337
	
sl@0
  1338
	@note   This method is assumed to be meant for default display only. 
sl@0
  1339
	
sl@0
  1340
	@see	CCamera::CCameraClientViewFinder 
sl@0
  1341
	*/
sl@0
  1342
	virtual void StartViewFinderBitmapsL(TSize& aSize)=0;	
sl@0
  1343
sl@0
  1344
	/** 
sl@0
  1345
	Starts transfer of view finder data and clips the bitmap to the specified clip
sl@0
  1346
	rectangle.
sl@0
  1347
sl@0
  1348
	The bitmap is the size of the intersection of aSize and aClipRect, not simply
sl@0
  1349
	aSize padded with white space.
sl@0
  1350
sl@0
  1351
	@param  aSize
sl@0
  1352
	        On return, the size used.
sl@0
  1353
	@param  aClipRect 
sl@0
  1354
	        Required clip rectangle. May be modified if, for example,
sl@0
  1355
	        the camera only supports certain byte alignments.
sl@0
  1356
sl@0
  1357
	@leave  KErrInUse if Reserve() hasn't been called successfully.
sl@0
  1358
	@leave  KErrNotReady if PowerOn() hasn't been called successfully.
sl@0
  1359
	
sl@0
  1360
	@note   This method is assumed to be meant for default display only. 
sl@0
  1361
	
sl@0
  1362
	@see	CCamera::CCameraClientViewFinder
sl@0
  1363
	*/
sl@0
  1364
	virtual void StartViewFinderBitmapsL(TSize& aSize,TRect& aClipRect)=0;
sl@0
  1365
sl@0
  1366
	/** 
sl@0
  1367
	Starts transfer of view finder data.
sl@0
  1368
sl@0
  1369
	Picture data is returned by MCameraObserver2::ViewFinderReady().
sl@0
  1370
sl@0
  1371
	@param  aImageFormat 
sl@0
  1372
	        The image format requested by the client.
sl@0
  1373
	@param  aSize 
sl@0
  1374
	        On return, the size used.
sl@0
  1375
	@leave  KErrNotSupported 
sl@0
  1376
	@leave  KErrNotReady if Reserve() has not been
sl@0
  1377
	        called, or has not yet completed. 
sl@0
  1378
	
sl@0
  1379
	@note   This method is assumed to be meant for default display only. KECamDefaultViewFinderHandle should be used to 
sl@0
  1380
			refer viewfinders started using CCamera methods.
sl@0
  1381
	
sl@0
  1382
	@see	CCamera::CCameraClientViewFinder
sl@0
  1383
	*/
sl@0
  1384
	virtual void StartViewFinderL(TFormat aImageFormat,TSize& aSize)=0;
sl@0
  1385
sl@0
  1386
	/** 
sl@0
  1387
	Starts transfer of view finder data and clips the picture to the specified clip
sl@0
  1388
	rectangle. Picture data is returned by MCameraObserver2::ViewFinderReady().
sl@0
  1389
sl@0
  1390
	The picture is the size of the intersection of aSize and aClipRect, not simply
sl@0
  1391
	aSize padded with white space.
sl@0
  1392
sl@0
  1393
	@param  aImageFormat 
sl@0
  1394
	        The image format.
sl@0
  1395
	@param  aSize
sl@0
  1396
	        On return, the size used.
sl@0
  1397
	@param  aClipRect 
sl@0
  1398
	        Required clip rectangle. May be modified if, for example,
sl@0
  1399
	        the camera only supports certain byte alignments.
sl@0
  1400
sl@0
  1401
	@leave  KErrInUse if Reserve() hasn't been called successfully,
sl@0
  1402
	@leave  KErrNotReady if PowerOn() hasn't been called successfully.
sl@0
  1403
	
sl@0
  1404
	@note   This method is assumed to be meant for default display only. KECamDefaultViewFinderHandle should be used to 
sl@0
  1405
			refer viewfinders started using CCamera methods.
sl@0
  1406
	
sl@0
  1407
	@see	CCamera::CCameraClientViewFinder
sl@0
  1408
	*/
sl@0
  1409
	virtual void StartViewFinderL(TFormat aImageFormat,TSize& aSize,TRect& aClipRect)=0;
sl@0
  1410
sl@0
  1411
	/** 
sl@0
  1412
	Stops transfer of view finder data to the screen. 
sl@0
  1413
	
sl@0
  1414
	@note   This method is assumed to be meant for default display only. KECamDefaultViewFinderHandle should be used to 
sl@0
  1415
			refer viewfinders started using CCamera methods.
sl@0
  1416
	
sl@0
  1417
	@see	CCamera::CCameraV2DirectViewFinder
sl@0
  1418
	@see	CCamera::CCameraClientViewFinder
sl@0
  1419
	*/
sl@0
  1420
	virtual void StopViewFinder()=0;
sl@0
  1421
sl@0
  1422
	/** 
sl@0
  1423
	Queries whether the view finder is active.
sl@0
  1424
sl@0
  1425
	@return  ETrue if the view finder is active. EFalse if the view finder is not
sl@0
  1426
	         active. 
sl@0
  1427
	         
sl@0
  1428
	@note   This method is assumed to be meant for default display only. KECamDefaultViewFinderHandle should be used to 
sl@0
  1429
			refer viewfinders started using CCamera methods.
sl@0
  1430
	
sl@0
  1431
	@see	CCamera::CCameraV2DirectViewFinder
sl@0
  1432
	@see	CCamera::CCameraClientViewFinder
sl@0
  1433
	*/
sl@0
  1434
	virtual TBool ViewFinderActive() const=0;
sl@0
  1435
sl@0
  1436
	/** 
sl@0
  1437
	Sets whether view finder mirroring is on.
sl@0
  1438
sl@0
  1439
	Used to switch between what the camera sees and what you would see if the
sl@0
  1440
	device were a mirror.
sl@0
  1441
sl@0
  1442
	@param  aMirror 
sl@0
  1443
	        ETrue to set mirroring on, EFalse to set mirroring off.
sl@0
  1444
sl@0
  1445
	@leave  KErrNotSupported.
sl@0
  1446
	
sl@0
  1447
	@note   This method is assumed to be meant for default display only. KECamDefaultViewFinderHandle should be used to 
sl@0
  1448
			refer viewfinders started using CCamera methods.
sl@0
  1449
	
sl@0
  1450
	@see	CCamera::CCameraV2DirectViewFinder
sl@0
  1451
	@see	CCamera::CCameraClientViewFinder
sl@0
  1452
	*/
sl@0
  1453
	virtual void SetViewFinderMirrorL(TBool aMirror)=0;
sl@0
  1454
sl@0
  1455
	/** 
sl@0
  1456
	Gets whether view finder mirroring is active.
sl@0
  1457
sl@0
  1458
	@return  ETrue if mirroring is set, EFalse if mirroring is not set. 
sl@0
  1459
	
sl@0
  1460
	@note   This method is assumed to be meant for default display only. KECamDefaultViewFinderHandle should be used to 
sl@0
  1461
			refer viewfinders started using CCamera methods.
sl@0
  1462
	
sl@0
  1463
	@see	CCamera::CCameraV2DirectViewFinder
sl@0
  1464
	@see	CCamera::CCameraClientViewFinder
sl@0
  1465
	*/
sl@0
  1466
	virtual TBool ViewFinderMirror() const=0;
sl@0
  1467
sl@0
  1468
	/** 
sl@0
  1469
	Performs setup and allocation of memory.
sl@0
  1470
sl@0
  1471
	Called prior to calling CaptureImage() to keep the latency of that function
sl@0
  1472
	to a minimum.
sl@0
  1473
sl@0
  1474
	Needs to be called only once for multiple CaptureImage() calls. May leave
sl@0
  1475
	with KErrNotSupported or KErrNoMemory or KErrInUse or KErrNotReady.
sl@0
  1476
sl@0
  1477
	The specified image format must be one of the formats supported
sl@0
  1478
	(see TCameraInfo::iImageFormatsSupported).
sl@0
  1479
sl@0
  1480
	The specified size index must be in the range of 0 to TCameraInfo::iNumImageSizesSupported-1
sl@0
  1481
	inclusive.
sl@0
  1482
sl@0
  1483
	@param  aImageFormat 
sl@0
  1484
	        The image format.
sl@0
  1485
	@param  aSizeIndex 
sl@0
  1486
	        Size index.
sl@0
  1487
sl@0
  1488
	@leave  KErrNotSupported
sl@0
  1489
	@leave  KErrNoMemory
sl@0
  1490
	@leave  KErrNotReady if PowerOn() hasn't been called successfully.
sl@0
  1491
	
sl@0
  1492
	@note  Depending on the ECAM implementation and underlying hardware, preparing both image capture and video capture
sl@0
  1493
		   at the same time may not be possible. In this case, the recommendation is to unprepare video capture before preparing
sl@0
  1494
		   image capture if PrepareVideoCaptureL() has already been called.
sl@0
  1495
	
sl@0
  1496
	@see 	CCamera::CCameraPreImageCaptureControl::PrepareImageCapture(TPrepareImageParameters aPrepareImageParameters)
sl@0
  1497
	*/
sl@0
  1498
	virtual void PrepareImageCaptureL(TFormat aImageFormat,TInt aSizeIndex)=0;
sl@0
  1499
sl@0
  1500
	/** 
sl@0
  1501
	Performs setup and allocation of memory and clips the image to the specified
sl@0
  1502
	rectangle.
sl@0
  1503
sl@0
  1504
	No effect unless TCameraInfo::iImageClippingSupported is set to ETrue. The
sl@0
  1505
	image captured is the intersection of aClipRect and the rectangle from (0,0)
sl@0
  1506
	to aSize. Needs to be called only once for multiple CaptureImage() calls.
sl@0
  1507
	May leave with KErrNotSupported or KErrNoMemory.
sl@0
  1508
sl@0
  1509
	The specified image format must be one of the formats supported (see TCameraInfo::iImageFormatsSupported).
sl@0
  1510
sl@0
  1511
	The specified size index must be in the range of 0 to TCameraInfo::iNumImageSizesSupported-1
sl@0
  1512
	inclusive.
sl@0
  1513
sl@0
  1514
	@param  aImageFormat 
sl@0
  1515
	        The image format.
sl@0
  1516
	@param  aSizeIndex 
sl@0
  1517
	        Size index.
sl@0
  1518
	@param  aClipRect
sl@0
  1519
	        The rectangle to which the image is to be clipped.
sl@0
  1520
sl@0
  1521
	@leave   KErrNotSupported
sl@0
  1522
	@leave   KErrNoMemory
sl@0
  1523
	@leave   KErrInUse if Reserve() hasn't been called successfully
sl@0
  1524
	@leave   KErrNotReady if PowerOn()
sl@0
  1525
	         hasn't been called successfully.
sl@0
  1526
	
sl@0
  1527
	@note  Depending on the ECAM implementation and underlying hardware, preparing both image capture and video capture
sl@0
  1528
		   at the same time may not be possible. In this case, the recommendation is to unprepare video capture before preparing
sl@0
  1529
		   image capture if PrepareVideoCaptureL() has already been called.
sl@0
  1530
	
sl@0
  1531
	@see 	CCamera::CCameraPreImageCaptureControl::PrepareImageCapture(TPrepareImageParameters aPrepareImageParameters)
sl@0
  1532
	*/
sl@0
  1533
	virtual void PrepareImageCaptureL(TFormat aImageFormat,TInt aSizeIndex,const TRect& aClipRect)=0;
sl@0
  1534
sl@0
  1535
	/** 
sl@0
  1536
	Asynchronously performs still image capture.
sl@0
  1537
sl@0
  1538
	Calls MCameraObserver::ImageReady() when complete. 
sl@0
  1539
	
sl@0
  1540
	@see CCamera::CCameraImageCapture
sl@0
  1541
	@see CCamera::CCameraPreImageCaptureControl
sl@0
  1542
	*/
sl@0
  1543
	virtual void CaptureImage()=0;
sl@0
  1544
sl@0
  1545
	/** 
sl@0
  1546
	Cancels the asynchronous still image capture. 
sl@0
  1547
	
sl@0
  1548
	@see CCamera::CCameraImageCapture
sl@0
  1549
	*/
sl@0
  1550
	virtual void CancelCaptureImage()=0;
sl@0
  1551
sl@0
  1552
	/** 
sl@0
  1553
	Enumerates through the available image capture sizes, based on the specified
sl@0
  1554
	size index and format
sl@0
  1555
sl@0
  1556
	The size index must be in the range 0 to TCameraInfo::iNumImageSizesSupported-1
sl@0
  1557
	inclusive.
sl@0
  1558
sl@0
  1559
	@param  aSize 
sl@0
  1560
	        Image size.
sl@0
  1561
	@param  aSizeIndex 
sl@0
  1562
	        Size index.
sl@0
  1563
	@param  aFormat 
sl@0
  1564
	        The image format.
sl@0
  1565
	*/
sl@0
  1566
	virtual void EnumerateCaptureSizes(TSize& aSize,TInt aSizeIndex,TFormat aFormat) const=0;
sl@0
  1567
sl@0
  1568
	/** 
sl@0
  1569
	Prepares for video capture.
sl@0
  1570
sl@0
  1571
	Performs setup and allocation of memory prior to calling StartVideoCapture()
sl@0
  1572
	to keep the latency of that function to a minimum.
sl@0
  1573
sl@0
  1574
	May leave with KErrNotSupported or KErrNoMemory.
sl@0
  1575
sl@0
  1576
	@param  aFormat 
sl@0
  1577
	        Format must be one of the video frame formats supported (see
sl@0
  1578
	        TCameraInfo::iVideoFrameFormatsSupported).
sl@0
  1579
	@param  aSizeIndex 
sl@0
  1580
	        Size index  must be in the range 0 to TCameraInfo::iNumVideoFrameSizesSupported-1
sl@0
  1581
	        inclusive.
sl@0
  1582
	@param  aRateIndex 
sl@0
  1583
	        The rate must be in the range 0 to TCameraInfo::iNumVideoFrameRatesSupported-1
sl@0
  1584
	        inclusive.
sl@0
  1585
	@param  aBuffersToUse 
sl@0
  1586
	        The number of discrete buffers to use.
sl@0
  1587
	@param  aFramesPerBuffer 
sl@0
  1588
	        How large the buffers are to be. Must be less than
sl@0
  1589
	        or equal to TCameraInfo::iMaxFramesPerBufferSupported. One buffer is returned
sl@0
  1590
	        to MCameraObserver::FrameBufferReady() at a time.
sl@0
  1591
sl@0
  1592
	@leave  May leave with KErrNotSupported, KErrNoMemory, or KErrNotReady if PowerOn() 
sl@0
  1593
			hasn't been called successfully.
sl@0
  1594
	
sl@0
  1595
	@note  Depending on the ECAM implementation and underlying hardware, preparing both image capture and video capture
sl@0
  1596
		   at the same time may not be possible. In this case, the recommendation is to unprepare image capture before preparing
sl@0
  1597
		   video capture if PrepareImageCaptureL() has already been called.
sl@0
  1598
	
sl@0
  1599
	@see 	CCamera::CCameraVideoCaptureControl::PrepareVideoCapture(const TPrepareVideoParameters& aPrepareVideoParameters)
sl@0
  1600
	*/
sl@0
  1601
	virtual void PrepareVideoCaptureL(TFormat aFormat,TInt aSizeIndex,TInt aRateIndex,TInt aBuffersToUse,TInt aFramesPerBuffer)=0;
sl@0
  1602
sl@0
  1603
	/** 
sl@0
  1604
	Prepares for video capture and clips the frames to the given rectangle.
sl@0
  1605
sl@0
  1606
	Performs setup and allocation of memory prior to calling StartVideoCapture()
sl@0
  1607
	to keep the latency of that function to a minimum.
sl@0
  1608
sl@0
  1609
	May leave with KErrNotSupported or KErrNoMemory.
sl@0
  1610
sl@0
  1611
	@param  aFormat 
sl@0
  1612
	        Format must be one of the video frame formats supported (see
sl@0
  1613
	        TCameraInfo::iVideoFrameFormatsSupported).
sl@0
  1614
	@param  aSizeIndex 
sl@0
  1615
	        Size index must be in the range 0 to TCameraInfo::iNumVideoFrameSizesSupported-1
sl@0
  1616
	        inclusive.
sl@0
  1617
	@param  aRateIndex 
sl@0
  1618
	        The rate must be in the range 0 to TCameraInfo::iNumVideoFrameRatesSupported-1
sl@0
  1619
	        inclusive.
sl@0
  1620
	@param  aBuffersToUse 
sl@0
  1621
	        The number of discrete buffers to use.
sl@0
  1622
	@param  aFramesPerBuffer 
sl@0
  1623
	        How large the buffers are to be. Must be less than
sl@0
  1624
	        or equal to TCameraInfo::iMaxFramesPerBufferSupported. One buffer is returned
sl@0
  1625
	        to MCameraObserver::FrameBufferReady() at a time.
sl@0
  1626
	@param  aClipRect 
sl@0
  1627
	        The rectangle to which the image is to be clipped.
sl@0
  1628
	@leave  KErrNotSupported
sl@0
  1629
	@leave  KErrNoMemory, 
sl@0
  1630
	@leave  KErrInUse if Reserve() hasn't been called successfully
sl@0
  1631
	@leave  KErrNotReady if PowerOn() hasn't been called successfully.
sl@0
  1632
	
sl@0
  1633
	@note  Depending on the ECAM implementation and underlying hardware, preparing both image capture and video capture
sl@0
  1634
		   at the same time may not be possible. In this case, the recommendation is to unprepare image capture before preparing
sl@0
  1635
		   video capture if PrepareImageCaptureL() has already been called.
sl@0
  1636
sl@0
  1637
	@see 	CCamera::CCameraVideoCaptureControl::PrepareVideoCapture(const TPrepareVideoParameters& aPrepareVideoParameters)
sl@0
  1638
	*/
sl@0
  1639
	virtual void PrepareVideoCaptureL(TFormat aFormat,TInt aSizeIndex,TInt aRateIndex,TInt aBuffersToUse,TInt aFramesPerBuffer,const TRect& aClipRect)=0;
sl@0
  1640
sl@0
  1641
	/** 
sl@0
  1642
	Starts capturing video.
sl@0
  1643
sl@0
  1644
	Calls MCameraObserver::FrameBufferReady() when each buffer has been filled
sl@0
  1645
	with the required number of frames, as set by PrepareVideoCaptureL(). 
sl@0
  1646
	*/
sl@0
  1647
	virtual void StartVideoCapture()=0;
sl@0
  1648
sl@0
  1649
	/** 
sl@0
  1650
	Stops video capture. 
sl@0
  1651
	*/
sl@0
  1652
	virtual void StopVideoCapture()=0;
sl@0
  1653
sl@0
  1654
	/** 
sl@0
  1655
	Tests whether video capture is active.
sl@0
  1656
sl@0
  1657
	@return  ETrue if video capture is active. EFalse if video capture is not active 
sl@0
  1658
	*/
sl@0
  1659
	virtual TBool VideoCaptureActive() const=0;
sl@0
  1660
sl@0
  1661
	/** 
sl@0
  1662
	Enumerates through the available video frame sizes, based on the specified
sl@0
  1663
	size index and format.
sl@0
  1664
sl@0
  1665
	@param  aSize 
sl@0
  1666
	        On return the available video frame sizes. Sizes should be returned
sl@0
  1667
	        in order, largest first, so clients do not have to iterate through every one.
sl@0
  1668
	@param  aSizeIndex 
sl@0
  1669
	        Size index. Must be in the range 0 to TCameraInfo::iNumVideoFrameSizesSupported-1
sl@0
  1670
	        inclusive
sl@0
  1671
	@param  aFormat 
sl@0
  1672
	        Image format. 
sl@0
  1673
	*/
sl@0
  1674
	virtual void EnumerateVideoFrameSizes(TSize& aSize,TInt aSizeIndex,TFormat aFormat) const=0;
sl@0
  1675
sl@0
  1676
	/** 
sl@0
  1677
	Enumerates through the available video frame rates, based on the specified
sl@0
  1678
	rate index, video frame format, size index and exposure mode.
sl@0
  1679
sl@0
  1680
	@param  aRate 
sl@0
  1681
	        On return, the available video frame rates. Some rates may not
sl@0
  1682
	        be available due to, for example, current flash mode setting. In those cases
sl@0
  1683
	        a rate of 0 will be returned. Rates should be returned in order, highest first,
sl@0
  1684
	        so clients do not have to iterate through every one.
sl@0
  1685
	@param  aRateIndex 
sl@0
  1686
	        The rate index. Must be in the range 0 to TCameraInfo::iNumVideoFrameRatesSupported-1
sl@0
  1687
	        inclusive.
sl@0
  1688
	@param  aFormat 
sl@0
  1689
	        The format.
sl@0
  1690
	@param  aSizeIndex 
sl@0
  1691
	        The size index.
sl@0
  1692
	@param  aExposure 
sl@0
  1693
	        The exposure mode. 
sl@0
  1694
	*/
sl@0
  1695
	virtual void EnumerateVideoFrameRates(TReal32& aRate,TInt aRateIndex,TFormat aFormat,TInt aSizeIndex,TExposure aExposure = EExposureAuto) const=0;
sl@0
  1696
sl@0
  1697
	/** 
sl@0
  1698
	Gets the frame size currently in use.
sl@0
  1699
sl@0
  1700
	@param  aSize 
sl@0
  1701
	        The frame size currently in use. 
sl@0
  1702
	*/
sl@0
  1703
	virtual void GetFrameSize(TSize& aSize) const=0;
sl@0
  1704
sl@0
  1705
	/** 
sl@0
  1706
	Gets the frame rate currently in use.
sl@0
  1707
sl@0
  1708
	@return  The frame rate currently in use. 
sl@0
  1709
	*/
sl@0
  1710
	virtual TReal32 FrameRate() const=0;
sl@0
  1711
sl@0
  1712
	/** 
sl@0
  1713
	Gets the number of buffers currently in use.
sl@0
  1714
sl@0
  1715
	@return  The number of buffers currently in use. 
sl@0
  1716
	*/
sl@0
  1717
	virtual TInt BuffersInUse() const=0;
sl@0
  1718
sl@0
  1719
	/** 
sl@0
  1720
	Gets the number of frames per buffer currently in use.
sl@0
  1721
sl@0
  1722
	@return  The number of frames per buffer currently in use. 
sl@0
  1723
	*/
sl@0
  1724
	virtual TInt FramesPerBuffer() const=0;
sl@0
  1725
sl@0
  1726
	/** 
sl@0
  1727
	Sets the quality value to use if jpeg is a supported image for video format.
sl@0
  1728
sl@0
  1729
	Ignored if jpeg is not a supported image for video format.
sl@0
  1730
sl@0
  1731
	@param  aQuality
sl@0
  1732
	        The quality value to use, clamped to the range 1 to 100.
sl@0
  1733
	        
sl@0
  1734
	@see	CCamera::CCameraPreImageCaptureControl::TPrepareImageParameters::iImageMaxMemorySize
sl@0
  1735
	*/
sl@0
  1736
	virtual void SetJpegQuality(TInt aQuality)=0;
sl@0
  1737
sl@0
  1738
	/**
sl@0
  1739
	Gets the currently set jpeg quality value.
sl@0
  1740
sl@0
  1741
	Returns 0 if not supported.
sl@0
  1742
sl@0
  1743
	@return The currently set jpeg quality value.
sl@0
  1744
	
sl@0
  1745
	@see    CCamera::CCameraPreImageCaptureControl::GetImageMaxMemorySizeL(TUint& aMemorySize)
sl@0
  1746
	*/
sl@0
  1747
	virtual TInt JpegQuality() const=0;
sl@0
  1748
sl@0
  1749
    /**
sl@0
  1750
	Gets a custom interface. The client has to cast the returned pointer
sl@0
  1751
	to the appropriate type.
sl@0
  1752
sl@0
  1753
	@param aInterface
sl@0
  1754
		   The Uid of the particular interface function required.
sl@0
  1755
sl@0
  1756
	@return Custom interface pointer. NULL if the requested interface is not supported.
sl@0
  1757
	*/
sl@0
  1758
	virtual TAny* CustomInterface(TUid aInterface)=0;
sl@0
  1759
	
sl@0
  1760
	/**
sl@0
  1761
	@internalComponent
sl@0
  1762
	Returns the camera API version no.
sl@0
  1763
	*/
sl@0
  1764
	IMPORT_C TInt CameraVersion();
sl@0
  1765
	
sl@0
  1766
private:
sl@0
  1767
sl@0
  1768
	/**
sl@0
  1769
	Default Constructor
sl@0
  1770
	
sl@0
  1771
	Prevents implementers from deriving from CCamera.
sl@0
  1772
	Implementation requires derivation from CCameraPlugin instead.
sl@0
  1773
	*/
sl@0
  1774
	IMPORT_C CCamera();
sl@0
  1775
	};
sl@0
  1776
sl@0
  1777
/**
sl@0
  1778
Buffer class for passing video frames between camera and client.
sl@0
  1779
sl@0
  1780
May contain multiple frames.
sl@0
  1781
sl@0
  1782
@publishedAll
sl@0
  1783
@released
sl@0
  1784
*/
sl@0
  1785
class MFrameBuffer
sl@0
  1786
	{
sl@0
  1787
public:
sl@0
  1788
	/**
sl@0
  1789
	Gets a non-bitmap frame in the buffer.
sl@0
  1790
sl@0
  1791
	@param  aIndex
sl@0
  1792
	        The index of the required, non-bitmap, frame.
sl@0
  1793
sl@0
  1794
	@leave  KErrArgument if aIndex is out of range 
sl@0
  1795
	@leave  KErrNotSupported if the frame format is bitmap.
sl@0
  1796
	@return A pointer to the specified non-bitmap format frame of video data.
sl@0
  1797
	*/
sl@0
  1798
	virtual TDesC8* DataL(TInt aIndex)=0;
sl@0
  1799
sl@0
  1800
	/** 
sl@0
  1801
	Gets a bitmap frame in the buffer.
sl@0
  1802
sl@0
  1803
	@param  aIndex 
sl@0
  1804
	        The index of the required, bitmap format, frame.
sl@0
  1805
sl@0
  1806
	@leave  KErrArgument if aIndex is out of range and 
sl@0
  1807
	@leave  KErrNotSupported if
sl@0
  1808
	        the frame format is not a bitmap.
sl@0
  1809
	@return A pointer to the specified bitmap format frame of video data. 
sl@0
  1810
	*/
sl@0
  1811
	virtual CFbsBitmap* FrameL(TInt aIndex)=0;
sl@0
  1812
sl@0
  1813
	/** 
sl@0
  1814
	Releases the buffer for re-use by the camera once the client has processed
sl@0
  1815
	the frame data.
sl@0
  1816
sl@0
  1817
	Signals to CCamera that the buffer data has been used and that the buffer
sl@0
  1818
	is free for re-use. 
sl@0
  1819
	*/
sl@0
  1820
	virtual void Release()=0;
sl@0
  1821
	
sl@0
  1822
public:
sl@0
  1823
sl@0
  1824
	/** 
sl@0
  1825
	Sequential frame number of the first frame in the buffer, counting from when
sl@0
  1826
	CCamera::StartVideoCapture() was called and including frames dropped due to
sl@0
  1827
	lack of buffers. 
sl@0
  1828
	*/
sl@0
  1829
	TInt iIndexOfFirstFrameInBuffer;
sl@0
  1830
sl@0
  1831
	/** 
sl@0
  1832
	Time elapsed from when CCamera::StartVideoCapture() was called until the first
sl@0
  1833
	frame in the buffer was captured. 
sl@0
  1834
	*/
sl@0
  1835
	TTimeIntervalMicroSeconds iElapsedTime;
sl@0
  1836
	};
sl@0
  1837
sl@0
  1838
#ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
  1839
#include <ecamconst.h>
sl@0
  1840
#endif
sl@0
  1841
sl@0
  1842
class MReserveObserver;
sl@0
  1843
sl@0
  1844
sl@0
  1845
/**
sl@0
  1846
An active object class implemented by Symbian and used to subscribe for the updates in the Properties, retrieve the 
sl@0
  1847
Properties and forward the notification to the client.
sl@0
  1848
sl@0
  1849
@note Serialized part of the ECam implementation is assumed to define the Properties and publish them whenever there is 
sl@0
  1850
	  change in the reserve status.
sl@0
  1851
*/
sl@0
  1852
class CCameraStatusWatch : public CActive
sl@0
  1853
	{
sl@0
  1854
public:
sl@0
  1855
	IMPORT_C ~CCameraStatusWatch();
sl@0
  1856
	static CCameraStatusWatch* NewL(MReserveObserver& aReserveObserver, TInt aCameraIndex, TInt aSecureId);
sl@0
  1857
private:
sl@0
  1858
	
sl@0
  1859
	CCameraStatusWatch(MReserveObserver& aReserveObserver, TInt aCameraIndex, TInt aSecureId);
sl@0
  1860
	void ConstructL();
sl@0
  1861
	void RunL();
sl@0
  1862
	void DoCancel();
sl@0
  1863
	
sl@0
  1864
private:
sl@0
  1865
	RProperty iProperty;
sl@0
  1866
	MReserveObserver& iReserveObserver;
sl@0
  1867
	TInt iCameraIndex;
sl@0
  1868
	TInt iSecureId;
sl@0
  1869
	};
sl@0
  1870
sl@0
  1871
	
sl@0
  1872
#endif // ECAM_H