os/mm/imagingandcamerafws/camerafw/Include/ecamviewfinder.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/mm/imagingandcamerafws/camerafw/Include/ecamviewfinder.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,713 @@
     1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +/**
    1.20 + @file
    1.21 + @publishedPartner
    1.22 + @prototype
    1.23 +*/
    1.24 +#ifndef  ECAMVIEWFINDER_H
    1.25 +#define  ECAMVIEWFINDER_H
    1.26 +
    1.27 +#include <e32base.h>
    1.28 +#include <gdi.h>
    1.29 +#include <ecamadvsettings.h>
    1.30 +
    1.31 +#ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
    1.32 +#include <ecamviewfinderdef.h>
    1.33 +#else
    1.34 +#include <ecamadvsettingsuidsconst.hrh>
    1.35 +#include <ecamconst.h>
    1.36 +#endif
    1.37 +
    1.38 +class MCameraViewFinder;
    1.39 +class MCameraV2DirectViewFinder;
    1.40 +class MCameraClientViewFinder;
    1.41 +
    1.42 +class MCameraDirectSnapshot;
    1.43 +
    1.44 +class MHistogramV2Buffer;
    1.45 +
    1.46 +/**
    1.47 +Specific handle used to refer to viewfinder which is started using CCamera methods.
    1.48 +*/
    1.49 +static const TInt KECamDefaultViewFinderHandle = 0;
    1.50 +
    1.51 +/** 
    1.52 +The current Version of the TDirectSnapshotParameters class.
    1.53 +*/
    1.54 +static const TUint KECamDirectSnapshotParametersCurrentVersion = 1;
    1.55 +
    1.56 +/** 
    1.57 +UID used to identify the CCameraV2DirectViewFinder API.
    1.58 +
    1.59 +@see CCamera::CCameraV2DirectViewFinder
    1.60 +*/
    1.61 +static const TUid KECamV2DirectViewFinderUid 	= {KECamV2DirectViewFinderUidValue};
    1.62 +
    1.63 +/** 
    1.64 +UID used to identify the CCameraClientViewFinder API.
    1.65 +
    1.66 +@see CCamera::CCameraClientViewFinder
    1.67 +*/
    1.68 +static const TUid KECamClientViewFinderUid 	= {KECamClientViewFinderUidValue};
    1.69 +
    1.70 +/** 
    1.71 +UID used to identify the CCamera::CCameraDirectSnapshot API.
    1.72 +This is the UID which is used to obtain the CCameraDirectSnapshot interface, 
    1.73 +via a call to CCamera::CustomInterface().
    1.74 +
    1.75 +@see KECamDirectSnapshotUidValue
    1.76 +@see CCamera::CCameraDirectSnapshot
    1.77 +
    1.78 +@publishedPartner
    1.79 +@prototype
    1.80 +*/
    1.81 +static const TUid KECamDirectSnapshotUid = {KECamDirectSnapshotUidValue};
    1.82 +
    1.83 +/**
    1.84 +A mixin class to be implemented by the client in order to use the V2 direct view finder API CCameraV2DirectViewFinder. The
    1.85 +derived class methods are called by the implementation when the direct view finder operations are ready to be notified 
    1.86 +accordingly. Implementation shall keep track of CCameraV2DirectViewFinder object deletion. It has to ensure that a callback 
    1.87 +is not send should the client destroy the particular CCameraV2DirectViewFinder class object when the callback is queued to 
    1.88 +be send across. Ownership of CCameraV2DirectViewFinder is retained by the client.
    1.89 +
    1.90 +@see CCamera::CCameraV2DirectViewFinder
    1.91 +*/
    1.92 +class MDirectViewFinderObserver
    1.93 +	{
    1.94 +public:
    1.95 +	/**
    1.96 +	Implementation sends this callback in order to notify the client when the first direct viewfinder frame gets displayed 
    1.97 +	after starting/resuming a particular direct viewfinder.
    1.98 +	
    1.99 +	@param  aDirectViewFinderHandle
   1.100 +			Reference to CCameraV2DirectViewFinder class object which refers a particular direct viewfinder.
   1.101 +						
   1.102 +	@param  aErrorCode
   1.103 +			Appropriate error code.
   1.104 +	*/
   1.105 +	virtual void DirectViewFinderFirstFrameDisplayed(CCamera::CCameraV2DirectViewFinder& aDirectViewFinderHandle, TInt aErrorCode)=0;
   1.106 +																									  
   1.107 +	/**
   1.108 +	Implementation sends this callback in order to notify the client when the direct histogram data gets displayed on the 
   1.109 +	screen for the first time after starting/resuming a particular direct viewfinder. If a call to CCameraV2Histogram::
   1.110 +	StartHistogram() is made without a previous successful call to CCameraV2Histogram::PrepareDirectHistogramL() then the
   1.111 +	callback returns KErrBadHandle.
   1.112 +	
   1.113 +	@param  aDirectViewFinderHandle
   1.114 +			Reference to CCameraV2DirectViewFinder class object which refers a particular direct viewfinder for which the 
   1.115 +			direct histogram data has been displayed.
   1.116 +	
   1.117 +	@param  aDirectHistogramDisplayed
   1.118 +			Reference to CCameraV2Histogram class object which refers a particular type of histogram being displayed.
   1.119 +	
   1.120 +	@param  aErrorCode
   1.121 +			Appropriate error code. 
   1.122 +	*/
   1.123 +	virtual void DirectHistogramDisplayed(CCamera::CCameraV2DirectViewFinder& aDirectViewFinderHandle, CCamera::CCameraV2Histogram& aDirectHistogramDisplayed, TInt aErrorCode)=0;
   1.124 +	
   1.125 +	/**
   1.126 +	Implementation sends this callback in order to notify the client about availability of the histogram data. If a call 
   1.127 +	to CCameraV2Histogram::StartHistogram() is made without a previous successful call to CCameraV2Histogram::
   1.128 +	PrepareClientHistogramL() then the callback returns KErrBadHandle.
   1.129 +	
   1.130 +	@param  aDirectViewFinderHandle
   1.131 +			Reference to CCameraV2DirectViewFinder class object which refers a particular direct viewfinder for which the 
   1.132 +			client histogram data have been generated.
   1.133 +	
   1.134 +	@param  aClientHistogramBuffer
   1.135 +			Pointer to MHistogramV2Buffer which retrieves a single histogram alongwith relevant information about it. The 
   1.136 +			ownership will be retained by the implementation. Client needs to call Release in order to indicate the 
   1.137 +			implementation that the buffer can be re-used. Client shall never try to delete the pointer. NULL, if error.
   1.138 +				
   1.139 +	@param  aErrorCode
   1.140 +			Appropriate error code. 
   1.141 +	
   1.142 +	@note   Client shall use the currently available histogram for the direct viewfinder frames until a new histogram is 
   1.143 +			available.
   1.144 +	*/
   1.145 +	virtual void ClientHistogramReady(CCamera::CCameraV2DirectViewFinder& aDirectViewFinderHandle, MHistogramV2Buffer* aClientHistogramBuffer, TInt aErrorCode)=0;
   1.146 +	
   1.147 +	/** 
   1.148 +	Implementation sends this callback as a notification of the display of direct snapshot for still images on the display
   1.149 +	screen.
   1.150 +	
   1.151 +	@param  aDirectViewFinderHandle
   1.152 +			Reference to CCameraV2DirectViewFinder class object which refers a particular direct viewfinder on which the 
   1.153 +			direct snapshot data for still images have been displayed.
   1.154 +
   1.155 +	@param  aCaptureImageHandle
   1.156 +			Reference to CCameraImageCapture class object which was used to issue the capture image operation.
   1.157 +	
   1.158 +	@param  aPostCaptureControlId
   1.159 +			Id used to identify a particular CCameraPostImageCaptureControl object associated with the given 
   1.160 +			CCameraImageCapture class object. This is needed to identify the image which is represented by this snapshot.
   1.161 +	
   1.162 +	@param  aErrorCode
   1.163 +			Appropriate error code.
   1.164 +	*/
   1.165 +	virtual void DirectSnapshotForImageDisplayed(CCamera::CCameraV2DirectViewFinder& aDirectViewFinderHandle, CCamera::CCameraImageCapture& aCaptureImageHandle, TPostCaptureControlId aPostCaptureControlId, TInt aErrorCode)=0;
   1.166 +	
   1.167 +	/**
   1.168 +	Implementation sends this callback in order to notify the client about failure with the direct viewfinder.
   1.169 +	
   1.170 +	@param  aDirectViewFinderHandle
   1.171 +			Reference to CCameraV2DirectViewFinder class object which refers a particular direct viewfinder.
   1.172 +	
   1.173 +	@param  aErrorCode
   1.174 +			The reason of failure of the direct viewfinder. 
   1.175 +	*/
   1.176 +	virtual void DirectViewFinderFailed(CCamera::CCameraV2DirectViewFinder& aDirectViewFinderHandle, TInt aErrorCode)=0;
   1.177 +	
   1.178 +	/**
   1.179 +	Gets a custom interface for future callbacks. This method will be called by the implementation to get a new interface
   1.180 +	which would support future callbacks.
   1.181 +
   1.182 +	@param  aInterface
   1.183 +		    The Uid of the particular interface function required for callbacks.
   1.184 +		   
   1.185 +	@param  aPtrInterface
   1.186 +		    The implementation has to type-cast the retrieved custom interface pointer to the appropriate type.	
   1.187 +
   1.188 +	@return The error code.
   1.189 +	*/
   1.190 +	virtual TInt CustomInterface(TUid aInterface, TAny*& aPtrInterface)=0;
   1.191 +	};
   1.192 +
   1.193 +/**
   1.194 +A mixin class to be implemented by the client in order to use the client view finder API CCameraClientViewFinder. The 
   1.195 +derived class methods are called by the implementation when the client view finder operations are ready to be notified 
   1.196 +accordingly. Implementation shall keep track of CCameraClientViewFinder object deletion. It has to ensure that a callback
   1.197 +is not send should the client destroy the particular CCameraClientViewFinder class object when the callback is queued to
   1.198 +be send across. Ownership of CCameraClientViewFinder is retained by the client.
   1.199 +
   1.200 +@see CCamera::CCameraClientViewFinder
   1.201 +*/
   1.202 +class MClientViewFinderObserver
   1.203 +	{
   1.204 +public:
   1.205 +	/**
   1.206 +	Implementation sends this callback in order to notify the client about the availability of viewfinder frames.
   1.207 +	Viewfinder frames can be retrieved by the client using the CCameraClientViewFinder::GetViewFinderBufferL
   1.208 +	(MCameraBuffer2& aClientViewFinderBuffer).
   1.209 +	
   1.210 +	@param  CCameraClientViewFinder
   1.211 +			Reference to CCameraClientViewFinder class object which refers a particular client viewfinder.
   1.212 +						
   1.213 +	@param  aErrorCode
   1.214 +			Appropriate error code.
   1.215 +	*/
   1.216 +	virtual void ViewFinderBufferReady(CCamera::CCameraClientViewFinder& aClientViewFinderHandle, TInt aErrorCode)=0;
   1.217 +																									  
   1.218 +	/**
   1.219 +	Implementation sends this callback in order to notify the client when the direct histogram data gets displayed on the 
   1.220 +	screen for the first time after starting a particular client viewfinder. If a call to CCameraV2Histogram::
   1.221 +	StartHistogram() is made without a previous successful call to CCameraV2Histogram::PrepareDirectHistogramL() then the
   1.222 +	callback returns KErrBadHandle.
   1.223 +	
   1.224 +	@param  aClientViewFinderHandle
   1.225 +			Reference to CCameraClientViewFinder class object which refers a particular client viewfinder.
   1.226 +	
   1.227 +	@param  aDirectHistogramDisplayed
   1.228 +			Reference to CCameraV2Histogram class object which refers a particular type of histogram being displayed.
   1.229 +	
   1.230 +	@param  aErrorCode
   1.231 +			Appropriate error code. 
   1.232 +	*/
   1.233 +	virtual void DirectHistogramDisplayed(CCamera::CCameraClientViewFinder& aClientViewFinderHandle, CCamera::CCameraV2Histogram& aDirectHistogramDisplayed, TInt aErrorCode)=0;
   1.234 +	
   1.235 +	/**
   1.236 +	Implementation sends this callback in order to notify the client about availability of the histogram data. If a call 
   1.237 +	to CCameraV2Histogram::StartHistogram() is made without a previous successful call to CCameraV2Histogram::
   1.238 +	PrepareClientHistogramL() then the callback returns KErrBadHandle.
   1.239 +	
   1.240 +	@param  aClientViewFinderHandle
   1.241 +			Reference to CCameraClientViewFinder class object which refers a particular client viewfinder for which the 
   1.242 +			client histogram data have been generated.
   1.243 +	
   1.244 +	@param  aClientHistogramBuffer
   1.245 +			Pointer to MHistogramV2Buffer which retrieves a single histogram alongwith relevant information about it. The 
   1.246 +			ownership will be retained by the implementation. Client needs to call Release in order to indicate the 
   1.247 +			implementation that the buffer can be re-used. Client shall never try to delete the pointer. NULL, if error.
   1.248 +			
   1.249 +	@param  aErrorCode
   1.250 +			Appropriate error code. 
   1.251 +	
   1.252 +	@note   Client shall use the currently available histogram for the viewfinder frames until a new histogram is 
   1.253 +			available.
   1.254 +	*/
   1.255 +	virtual void ClientHistogramReady(CCamera::CCameraClientViewFinder& aClientViewFinderHandle, MHistogramV2Buffer* aClientHistogramBuffer, TInt aErrorCode)=0;
   1.256 +	
   1.257 +	/**
   1.258 +	Implementation sends this callback in order to notify the client about failure of image processing for the client 
   1.259 +	viewfinder frames.
   1.260 +	
   1.261 +	@param  aClientViewFinderHandle
   1.262 +			Reference to CCameraClientViewFinder class object which refers a particular client viewfinder.
   1.263 +	
   1.264 +	@param  aErrorCode
   1.265 +			The reason of failure of the image processing. 
   1.266 +	*/
   1.267 +	virtual void ImageProcessingFailed(CCamera::CCameraClientViewFinder& aClientViewFinderHandle, TInt aErrorCode)=0;
   1.268 +	
   1.269 +	/**
   1.270 +	Gets a custom interface for future callbacks. This method will be called by the implementation to get a new interface
   1.271 +	which would support future callbacks.
   1.272 +
   1.273 +	@param  aInterface
   1.274 +		    The Uid of the particular interface function required for callbacks.
   1.275 +		   
   1.276 +	@param  aPtrInterface
   1.277 +		    The implementation has to type-cast the retrieved custom interface pointer to the appropriate type.	
   1.278 +
   1.279 +	@return The error code.
   1.280 +	*/
   1.281 +	virtual TInt CustomInterface(TUid aInterface, TAny*& aPtrInterface)=0;
   1.282 +	};
   1.283 +
   1.284 +/** 
   1.285 +CCamera view finder base class is used to provide features common to both client view finders and direct view finders.
   1.286 +
   1.287 +@note This class is not intended for stand alone use. One of the derived class shall be used instead.
   1.288 +Features of this class will automatically be used when either direct view finder or client based view finder are 
   1.289 +created by clients.
   1.290 +
   1.291 +@note   If the class methods leave, the output type parameter value is not guaranteed to be valid.
   1.292 +
   1.293 +@publishedPartner
   1.294 +@prototype
   1.295 +*/
   1.296 +class CCameraViewFinder : public CBase
   1.297 +	{
   1.298 +	/* so can use internal factory functions etc. */
   1.299 +	friend class CCamera;
   1.300 +
   1.301 +public:
   1.302 +	/** 
   1.303 +	Different types of available viewfinder fading.
   1.304 +	The enumeration list may be extended in future.
   1.305 +	
   1.306 +	@internalTechnology
   1.307 +	*/
   1.308 +	enum TViewFinderFadingType
   1.309 +		{
   1.310 +		/** Fading not supported. */
   1.311 +		EVFFadingTypeNone	 		 		=0x00,
   1.312 +		/** Fading from a single frame of color given by the client. */
   1.313 +		EVFFadingTypeStaticColorFading      =0x01,
   1.314 +		/** Fading from a single frame given by the client. */
   1.315 +		EVFFadingTypeStaticFrameFading      =0x02,
   1.316 +		/** Fading from a number of previous VF frames. */
   1.317 +		EVFFadingTypeCross     	 			=0x04
   1.318 +		};
   1.319 +
   1.320 +	/** 
   1.321 +	Different ways to control the viewfinder fading.
   1.322 +	The enumeration list may be extended in future.
   1.323 +	
   1.324 +	@internalTechnology
   1.325 +	*/
   1.326 +	enum TViewFinderFadingControl
   1.327 +		{
   1.328 +		/** Fading not supported. */
   1.329 +		EVFFadingControlNone			= 0x00,
   1.330 +		/** Switch on (enable) the fading. */
   1.331 +		EVFFadingControlSwitchedOn		= 0x01,
   1.332 +		/** Switch off (disable) the fading. */
   1.333 +		EVFFadingControlSwitchedOff		= 0x02,
   1.334 +		/** Automatic fading. */
   1.335 +		EVFFadingControlSwitchAuto		= 0x04
   1.336 +		};
   1.337 +	
   1.338 +	/**
   1.339 +	Different directions in which the fading may appear.
   1.340 +	The enumeration list may be extended in future.
   1.341 +	
   1.342 +	@internalTechnology
   1.343 +	*/		
   1.344 +	enum TViewFinderFadingDirection
   1.345 +		{
   1.346 +		/** Fading not supported. */
   1.347 +		EVFFadingDirectionNone			= 0x00,
   1.348 +		/** Automatic direction or may be even custom direction decided by implementation. */
   1.349 +		EVFFadingDirectionAuto			= 0x01,
   1.350 +		/** Uniform fading. */ 
   1.351 +		EVFFadingDirectionUniform		= 0x02,
   1.352 +		/** Start to fade from up to down. */
   1.353 +		EVFFadingDirectionUpDown		= 0x04,
   1.354 +		/** Start to fade from down to up. */
   1.355 +		EVFFadingDirectionDownUp		= 0x08,
   1.356 +		/** Start to fade from left to right. */
   1.357 +		EVFFadingDirectionLeftRight		= 0x10,
   1.358 +		/** Start to fade from right to left. */
   1.359 +		EVFFadingDirectionRightLeft		= 0x20
   1.360 +		};
   1.361 +		
   1.362 +	/**
   1.363 +	Image enhancement options to be applied for a particular display.
   1.364 +	The enumeration list may be extended in future.
   1.365 +	
   1.366 +	@internalTechnology
   1.367 +	*/	
   1.368 +	enum TImageEnhancement
   1.369 +		{
   1.370 +		/** Not Supported. */
   1.371 +		EImageEnhancementNone 			= 0x00,
   1.372 +		/** Image Enhancement switches off. */
   1.373 +		EImageEnhancementSwitchOFF 		= 0x01,
   1.374 +		/** Image Enhancement switches to auto mode. */
   1.375 +		EImageEnhancementAuto 			= 0x02,
   1.376 +		/** Image Enhancement switches on. */
   1.377 +		EImageEnhancementSwitchOn 		= 0x04
   1.378 +		};
   1.379 +	
   1.380 +	/**
   1.381 +	Retrieves the capabilites of viewfinder fading.
   1.382 +	
   1.383 +	@internalTechnology
   1.384 +	*/
   1.385 +	class TViewFinderFadingCapabilities
   1.386 +		{
   1.387 +	public:
   1.388 +		IMPORT_C TViewFinderFadingCapabilities();
   1.389 +		
   1.390 +		IMPORT_C TUint Size() const;
   1.391 +		IMPORT_C TUint Version() const;
   1.392 +		
   1.393 +	private:
   1.394 +		//for future expansion
   1.395 +		TUint iSize:24;
   1.396 +		TUint iVersion:8;
   1.397 +		
   1.398 +		// reserved for future expansion
   1.399 +		TInt iReserved1;
   1.400 +		TInt iReserved2;
   1.401 +		
   1.402 +	public:
   1.403 +		/** Bit-field retrieving the supported fading type TViewFinderFadingType. */
   1.404 +		TUint iSupportedFadingType;
   1.405 +		/** Bit-field retrieving the supported fading control TViewFinderFadingControl. */
   1.406 +		TUint iSupportedFadingControl;
   1.407 +		/** Bit-field retrieving the supported fading direction TViewFinderFadingDirection. */
   1.408 +		TUint iSupportedFadingDirection;
   1.409 +		};
   1.410 +		
   1.411 +	/**
   1.412 +	Viewfinder fading effects characterizing a particular viewfinder fading.
   1.413 +	
   1.414 +	@internalTechnology
   1.415 +	*/
   1.416 +	class TViewFinderFadingEffect
   1.417 +		{
   1.418 +	public:
   1.419 +		IMPORT_C TViewFinderFadingEffect();
   1.420 +		
   1.421 +		IMPORT_C TUint Size() const;
   1.422 +		IMPORT_C TUint Version() const;
   1.423 +	
   1.424 +	private:
   1.425 +		//for future expansion
   1.426 +		TUint iSize:24;
   1.427 +		TUint iVersion:8; 
   1.428 +		
   1.429 +		// reserved for future expansion
   1.430 +		TInt iReserved1;
   1.431 +		TInt iReserved2;
   1.432 +		TInt iReserved3[6];
   1.433 +		
   1.434 +	public:
   1.435 +		/** The type of viewfinder fading to be used. */
   1.436 +		TViewFinderFadingType 		iViewFinderFadingType;
   1.437 +		/** The control for the viewfinder fading, that is, on/off/auto. */
   1.438 +		TViewFinderFadingControl 	iViewFinderFadingControl;
   1.439 +		/** The direction of viewfinder fading. */
   1.440 +		TViewFinderFadingDirection 	iViewFinderFadingDirection;
   1.441 +		/** The color used to fade from/to in case of static color fading. This is ignored if iViewFinderFadingType is 
   1.442 +		not EVFFadingTypeStaticColorFading. */
   1.443 +		TRgb  						iStaticFadingColor;
   1.444 +		/** The handle of CFbsBitmap used to obtain the frame used to fade from/to in case of static frame fading. 
   1.445 +		This is KECamStaticFrameFadingTypeNotUsed if iViewFinderFadingType is not EVFFadingTypeStaticFrameFading.
   1.446 +		This is KECamSpecialStaticFrameFormatHandle if CFBsBitmap handle is not to be used. */
   1.447 +		TInt						iStaticFadingFrameBitmapHandle;
   1.448 +		/** The number of previous frames to be saved for cross fading. 
   1.449 +		This is KECamCrossFadingFramesNotUsed if iViewFinderFadingType is not EVFFadingTypeCross. */
   1.450 +		TUint						iCrossFadingFrames;
   1.451 +		/** The fading time. This may be used both for auto and manual fading as per implementation. */
   1.452 +		TTimeIntervalMicroSeconds32 iFadingTime;
   1.453 +		};
   1.454 +
   1.455 +public:
   1.456 +	
   1.457 +	IMPORT_C void GetViewFinderFadingCapabilitiesL(TViewFinderFadingCapabilities& aVFFadingCapabilities) const;
   1.458 +	IMPORT_C void GetViewFinderFadingEffectL(TViewFinderFadingEffect& aCurrentVFFadingEffect) const;
   1.459 +	IMPORT_C void SetViewFinderFadingEffectL(const TViewFinderFadingEffect& aVFFadingEffect);
   1.460 +	
   1.461 +	IMPORT_C void GetViewFinderHandleL(TInt& aVFHandle) const;
   1.462 +	
   1.463 +	~CCameraViewFinder();
   1.464 +	
   1.465 +protected:
   1.466 +	CCameraViewFinder(CCamera& aOwner);
   1.467 +	
   1.468 +protected: 
   1.469 +	void GetSpotsPositionL(TUint aSpotCombination, RArray<TRect>& aSpotsPosition) const;
   1.470 +	
   1.471 +	void GetSupportedImageEnhancementL(TUint& aSupportedImageEnhancement) const;
   1.472 +	void GetImageEnhancementL(TImageEnhancement& aImageEnhancement) const;
   1.473 +	void SetImageEnhancementL(TImageEnhancement aImageEnhancement);
   1.474 +	
   1.475 +	void GetSupportedVFMagnificationL(RArray<TUint>& aSupportedVFMagnification) const;
   1.476 +	void GetViewfinderMagnificationL(TUint& aVFMagnification) const; 
   1.477 +	void SetViewfinderMagnificationL(TUint aVFMagnification);
   1.478 +		   	
   1.479 +protected:	
   1.480 +	CCamera&        	iOwner; 
   1.481 +	MCameraViewFinder* 	iImplBase;  // not owned
   1.482 +    };	
   1.483 +
   1.484 +/** 
   1.485 +CCamera direct view finder v2 class is used to provide support for multiple Direct View Finder.
   1.486 +A new instance of this class will be created for every new direct viewfinder.
   1.487 +
   1.488 +@note This class is not intended for sub-classing and used to standardise existing varieties of implementations.
   1.489 +
   1.490 +@note   If the class methods leave, the output type parameter value is not guaranteed to be valid.
   1.491 +
   1.492 +@note  Clients must implement an MDirectViewFinderObserver in order to use this CCameraV2DirectViewFinder API.
   1.493 +
   1.494 +@publishedPartner
   1.495 +@prototype
   1.496 +*/
   1.497 +class CCamera::CCameraV2DirectViewFinder : public CCameraViewFinder
   1.498 +	{
   1.499 +	/* so can use internal factory functions etc. */
   1.500 +	friend class CCamera;
   1.501 +	friend class CCamera::CCameraDirectSnapshot;
   1.502 +
   1.503 +public:
   1.504 +   
   1.505 +	/** Specifies direct viewfinder state. */ 
   1.506 +	enum TViewFinderState
   1.507 +		{
   1.508 +		/** View Finder is activated */  
   1.509 +		EViewFinderActive, 	 
   1.510 +		/** View Finder has been paused */
   1.511 +		EViewFinderPause,	 
   1.512 +		/** View Finder has been stopped or hasn't yet started. Default state. */
   1.513 +		EViewFinderInActive
   1.514 +		};
   1.515 +	
   1.516 +public:
   1.517 +
   1.518 +	IMPORT_C static CCameraV2DirectViewFinder* NewL(CCamera& aOwner, MDirectViewFinderObserver& aDirectViewFinderObserver);
   1.519 +	
   1.520 +	IMPORT_C CCamera::CCameraV2Histogram* CreateHistogramHandleL() const;
   1.521 +	IMPORT_C CCamera::CCameraImageProcessing* GetTransformationHandleL() const;
   1.522 +	
   1.523 +	IMPORT_C CCamera::CCameraDirectSnapshot* GetDirectSnapshotHandleL() const; 
   1.524 +	
   1.525 +	IMPORT_C void StartViewFinderDirectL(RWsSession& aWs, CWsScreenDevice& aScreenDevice, RWindowBase& aWindow, TRect& aScreenRect);
   1.526 +										
   1.527 +	IMPORT_C void StartViewFinderDirectL(RWsSession& aWs, CWsScreenDevice& aScreenDevice, RWindowBase& aWindow, 
   1.528 +																			TRect& aScreenRect, TRect& aClipRect);
   1.529 +	
   1.530 +	IMPORT_C void GetDirectViewFinderPropertiesL(TInt& aScreenNumber, TRect& aScreenRect, TRect& aClipRect) const;
   1.531 +    
   1.532 +    IMPORT_C void PauseViewFinderDirect();
   1.533 +	IMPORT_C void ResumeViewFinderDirect();
   1.534 +	IMPORT_C void GetViewFinderStateL(TViewFinderState& aViewFinderState) const;
   1.535 +	
   1.536 +	IMPORT_C void StopDirectViewFinder();
   1.537 +	
   1.538 +	IMPORT_C ~CCameraV2DirectViewFinder();
   1.539 +	
   1.540 +private:
   1.541 +	CCameraV2DirectViewFinder(CCamera& aOwner);
   1.542 +	void ConstructL(MDirectViewFinderObserver& aDirectViewFinderObserver);
   1.543 +	
   1.544 +	void SetImplHandle();
   1.545 +			
   1.546 +	void SetImplBaseHandle();
   1.547 +	
   1.548 +	MCameraV2DirectViewFinder* Impl();
   1.549 +	
   1.550 +private:	
   1.551 +	MCameraV2DirectViewFinder* 	iImpl;  // not owned
   1.552 +    };	
   1.553 +
   1.554 +/** 
   1.555 +CCamera client view finder class is used to provide support for multiple client View Finder.
   1.556 +A new instance of this class will be created for every new client viewfinder.
   1.557 +
   1.558 +@note  This class is not intended for sub-classing and used to standardise existing
   1.559 +       varieties of implementations.
   1.560 +       
   1.561 +@note  If the class methods leave, the output type parameter value is not guaranteed to be valid.
   1.562 +
   1.563 +@note  Clients must implement an MClientViewFinderObserver in order to use this CCameraClientViewFinder API. 
   1.564 +	   MCameraObserver2::ViewFinderReady will not be used with this class.
   1.565 +
   1.566 +@publishedPartner
   1.567 +@prototype
   1.568 +*/
   1.569 +class CCamera::CCameraClientViewFinder : public CCameraViewFinder
   1.570 +	{
   1.571 +	/* so can use internal factory functions etc. */
   1.572 +	friend class CCamera;
   1.573 +
   1.574 +public:
   1.575 +
   1.576 +	IMPORT_C static CCameraClientViewFinder* NewL(CCamera& aOwner, MClientViewFinderObserver& aClientViewFinderObserver);
   1.577 +	
   1.578 +	IMPORT_C CCamera::CCameraV2Histogram* CreateHistogramHandleL() const;
   1.579 +	IMPORT_C CCamera::CCameraImageProcessing* GetTransformationHandleL() const;
   1.580 +	
   1.581 +	IMPORT_C void StartClientViewFinderL(TInt aScreenNumber, CCamera::TFormat aImageFormat, TSize& aSize);
   1.582 +	IMPORT_C void StartClientViewFinderL(TInt aScreenNumber, CCamera::TFormat aImageFormat, TSize& aSize, TRect& aClipRect);
   1.583 +	
   1.584 +	IMPORT_C void GetClientViewFinderStateL(TBool& aIsActive) const;
   1.585 +	IMPORT_C void GetClientViewFinderPropertiesL(TInt& aScreenNumber, CCamera::TFormat& aImageFormat, TSize& aSize, TRect& aClipRect) const;
   1.586 +
   1.587 +	IMPORT_C void StopClientViewFinder();
   1.588 +	
   1.589 +	IMPORT_C void GetViewFinderBufferL(MCameraBuffer2& aClientViewFinderBuffer) const;
   1.590 +	
   1.591 +	IMPORT_C ~CCameraClientViewFinder();
   1.592 +	   	
   1.593 +private:
   1.594 +	CCameraClientViewFinder(CCamera& aOwner);
   1.595 +	void ConstructL(MClientViewFinderObserver& aClientViewFinderObserver);
   1.596 +	
   1.597 +	void SetImplHandle();
   1.598 +			
   1.599 +	void SetImplBaseHandle();
   1.600 +	
   1.601 +private:	
   1.602 +	MCameraClientViewFinder* 	iImpl;  // not owned
   1.603 +    };
   1.604 +    
   1.605 +/**
   1.606 +This class allows the client to enable direct snapshot feature for still images only. The direct snapshot API can not be 
   1.607 +used for video.
   1.608 +
   1.609 +The direct snapshot can be created out of CCameraV2DirectViewFinder object only. Its lifetime is dependent on the parent 
   1.610 +direct viewfinder object. So, the client is supposed to destroy the direct snapshot object before deleting the parent 
   1.611 +direct viewfinder object. The MDirectViewFinderObserver observer class provides callback to notify the client whenever
   1.612 +direct snapshot data gets displayed on the given direct viewfinder screen. The callback also provides information regarding
   1.613 +the CCameraImageCapture object used to issue the image capture calls. It also provides the Id for the individual images 
   1.614 +which get represented by the snapshot displayed.
   1.615 +
   1.616 +@note This class provides a standardised client interface for the direct snapshot. Classes cannot be derived from it.
   1.617 +
   1.618 +@note If the class methods leave, the output type parameter value is not guaranteed to be valid.
   1.619 +
   1.620 +@publishedPartner
   1.621 +@prototype
   1.622 +*/ 
   1.623 +class CCamera::CCameraDirectSnapshot : public CBase
   1.624 +	{
   1.625 +	friend class CCamera::CCameraV2DirectViewFinder;
   1.626 +
   1.627 +public:
   1.628 +	/**
   1.629 +	Describes the state of direct snapshot. 
   1.630 +	The enumeration list may be extended in future.
   1.631 +	*/
   1.632 +	enum TDirectSnapshotState 
   1.633 +		{
   1.634 +		/** The direct snapshot has been enabled. */
   1.635 +		EDirectSnapshotEnabled, 
   1.636 +		/** The direct snapshot has been disabled. */
   1.637 +		EDirectSnapshotDisabled
   1.638 +		};
   1.639 +		
   1.640 +	/**
   1.641 +	Specifes the parameters necessary for direct snapshots. The screen co-ordinates used for direct snapshot will be the 
   1.642 +	same as used for the parent direct viewfinder screen co-ordinates. This screen co-ordinate for direct snapshot may be 
   1.643 +	changed by the implementation in certain cases for alignment.
   1.644 +	*/
   1.645 +	class TDirectSnapshotParameters
   1.646 +		{
   1.647 +	public:
   1.648 +		IMPORT_C TDirectSnapshotParameters();
   1.649 +		
   1.650 +		IMPORT_C TUint Size() const;
   1.651 +		IMPORT_C TUint Version() const;
   1.652 +		
   1.653 +		IMPORT_C TBool IsAspectRatioMaintained() const;
   1.654 +		IMPORT_C void SetAspectRatioState(TBool aIsAspectRatioMaintained);
   1.655 +				
   1.656 +	private:
   1.657 +		//for future expansion
   1.658 +		TUint iSize:24;
   1.659 +		TUint iVersion:8;
   1.660 +		
   1.661 +		// reserved for future expansion
   1.662 +		TInt iReserved1;
   1.663 +		TInt iReserved2;
   1.664 +		TInt iReserved3;
   1.665 +		
   1.666 +		TUint iReserved4:31;
   1.667 +		
   1.668 +		/** Set to ETrue if the aspect ratio of the direct snapshot image must be maintained when scaling down */
   1.669 +		TUint iIsAspectRatioMaintained:1;
   1.670 +		
   1.671 +	public:
   1.672 +	    /** The bit field representing the drive modes for which the direct snapshot will be displayed if enabled. 
   1.673 +	    Refer CCamera::CCameraAdvancedSettings::TDriveMode. */
   1.674 +		TUint iDriveModes; 
   1.675 +		
   1.676 +		/** The background colour to be used if the snapshot has been scaled (maintaining its aspect ratio)
   1.677 +  		and does not fully fill the dimension as per the direct view finder screen size. The TRect supposed to be used 
   1.678 +  		for direct snapshot may be modified by the implementation in certain cases for alignment. */
   1.679 +		TRgb iBgColor; 
   1.680 +		
   1.681 +		/** The time duration during which the snapshot data should appear on the screen. The implementation may 
   1.682 +		internally change this display time if the client sets iDisplayTime to TTimeIntervalMicroSeconds32 
   1.683 +		(KECamSnapshotDefaultDisplayTime). This may happen when the client doesn't want to specify a specific duration 
   1.684 +		and would rather let the implementation decide. */
   1.685 +		TTimeIntervalMicroSeconds32 iDisplayTime;
   1.686 +		};
   1.687 +		
   1.688 +public:
   1.689 +	
   1.690 +	IMPORT_C void GetDirectViewFinderL(CCamera::CCameraV2DirectViewFinder*& aDirectViewFinder) const;
   1.691 +	
   1.692 +	IMPORT_C void EnableDirectSnapshotL(TDirectSnapshotParameters& aDirectSnapshotParameters);
   1.693 +	
   1.694 +	IMPORT_C void DisableDirectSnapshot();
   1.695 +	
   1.696 +	IMPORT_C void GetDirectSnapshotStateL(TDirectSnapshotState& aDirectSnapshotParameters) const;
   1.697 +	
   1.698 +	IMPORT_C void GetDirectSnapshotParametersL(TDirectSnapshotParameters& aDirectSnapshotParameters) const;
   1.699 +	
   1.700 +	IMPORT_C void SetDirectSnapshotParametersL(const TDirectSnapshotParameters& aDirectSnapshotParameters);
   1.701 +	
   1.702 +	IMPORT_C ~CCameraDirectSnapshot();
   1.703 +	
   1.704 +private:
   1.705 +	IMPORT_C static CCameraDirectSnapshot* CreateL(CCamera::CCameraV2DirectViewFinder& aDirectViewFinder);
   1.706 +	
   1.707 +	CCameraDirectSnapshot();
   1.708 +	void ConstructL(CCamera::CCameraV2DirectViewFinder& aDirectViewFinder);
   1.709 +	
   1.710 +	MCameraV2DirectViewFinder* DirectViewFinderImpl(CCamera::CCameraV2DirectViewFinder& aDirectViewFinder);
   1.711 +	
   1.712 +private:
   1.713 +	MCameraDirectSnapshot*  iImpl;   // not owned
   1.714 +	}; 
   1.715 +	 
   1.716 +#endif // ECAMVIEWFINDER_H