os/mm/imagingandcamerafws/camerafw/Include/ECam/ecamviewfinderintf.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 /**
    17  @file
    18  @publishedPartner
    19  @prototype
    20 */
    21 
    22 #ifndef  ECAMVIEWFINDERINTF_H
    23 #define  ECAMVIEWFINDERINTF_H
    24 
    25 #include <ecamviewfinder.h>
    26 #include <ecam/ecamadvsettingsintfuids.hrh>
    27 
    28 class MImplementationFactory;
    29 
    30 /** This is the UID which is used to obtain the interface MCameraV2DirectViewFinder, via the 
    31 CCamera::CustomInterface() call. */   
    32 static const TUid KECamMCameraV2DirectViewFinderUid 		=  {KECamMCameraV2DirectViewFinderUidValue};
    33 
    34 /** This is the UID which is used to obtain the interface MCameraClientViewFinder, via the 
    35 CCamera::CustomInterface() call. */   
    36 static const TUid KECamMCameraClientViewFinderUid 			=  {KECamMCameraClientViewFinderUidValue};
    37 
    38 /** This is the UID which is used to obtain the interface MCameraViewFinder for v2 direct viewfinder, via the 
    39 CCamera::CustomInterface() call. */   
    40 static const TUid KECamMCameraBaseV2DirectViewFinderUid		=  {KECamMCameraBaseV2DirectViewFinderUidValue};
    41 
    42 /** This is the UID which is used to obtain the interface MCameraViewFinder for client viewfinder, via the 
    43 CCamera::CustomInterface() call. */   
    44 static const TUid KECamMCameraBaseClientViewFinderUid 		=  {KECamMCameraBaseClientViewFinderUidValue};
    45 
    46 /** 
    47 This is the UID which is used to obtain the MCameraDirectSnapshot interface, 
    48 via a call to CCamera::CustomInterface(), which provides implementation of the M-class interface. 
    49 
    50 @see KECamMCameraDirectSnapshotUidValue
    51 
    52 @publishedPartner
    53 @prototype
    54 */   
    55 static const TUid KECamMCameraDirectSnapshotUid = {KECamMCameraDirectSnapshotUidValue};
    56 
    57 /** Mixin class for implementation of viewfinder methods common to both client and direct viewfinder. These methods will 
    58 	be called in the context of either client viewfinder or direct viewfinder.
    59 */	
    60 class MCameraViewFinder
    61 	{
    62 
    63 public:
    64 	/** 
    65 	Releases the interface. 
    66 	*/
    67 	virtual void Release()=0;
    68 	
    69 	/**
    70 	Retrieves the fading capabilites for a particular viewfinder.
    71 	
    72 	@param  aVFFadingCapabilities
    73 			Retrieves the fading capabilities associated with the given viewfinder.
    74 			
    75 	@leave  May leave with any error code.
    76 	
    77 	@internalTechnology
    78 	*/
    79 	virtual void GetViewFinderFadingCapabilitiesL(CCameraViewFinder::TViewFinderFadingCapabilities& aVFFadingCapabilities) const=0;
    80 	
    81 	/**
    82 	Retrieves the current fading effect/control being used for a particular viewfinder.
    83 	
    84 	@param  aCurrentVFFadingEffect
    85 			Retrieves the fading effects associated with the given viewfinder.
    86 
    87 	@leave  May leave with any error code.
    88 	
    89 	@internalTechnology
    90 	*/
    91 	virtual void GetViewFinderFadingEffectL(CCameraViewFinder::TViewFinderFadingEffect& aCurrentVFFadingEffect) const=0;
    92 	
    93 	/**
    94 	Sets the fading effect/control for a particular viewfinder.
    95 	
    96 	@param  aVFFadingEffect
    97 			The desired fading effects associated with the given viewfinder.
    98 	
    99 	@note   Event KUidECamEvent2ViewFinderFadingEffect is used to notify the requesting client about setting of the 
   100 			fading effect.
   101 			
   102 	@internalTechnology
   103 	*/
   104 	virtual void SetViewFinderFadingEffect(const CCameraViewFinder::TViewFinderFadingEffect& aVFFadingEffect)=0;
   105 	
   106 	/**
   107 	Retrieves the handle number which represents the given viewfinder object. 
   108 
   109 	@param  aVFHandle
   110 			The viewfinder handle
   111 			
   112 	@leave  May leave with any error code.
   113 
   114 	@note   KECamDefaultViewFinderHandle is used to refer to the viewfinder started using CCamera methods. 
   115 	*/
   116 	virtual void GetViewFinderHandleL(TInt& aVFHandle) const=0;
   117 	};
   118 
   119 /** 
   120 Mixin class for implementation of CCameraV2DirectViewFinder methods.
   121 */
   122 class MCameraV2DirectViewFinder
   123 	{
   124 
   125 public:
   126 	
   127 	/** 
   128 	Releases the interface. 
   129 	
   130 	@param  aDirectViewFinderHandle
   131 			The pointer to the direct viewfinder class object which would be destroyed by the client.
   132 	*/
   133 	virtual void Release(CCamera::CCameraV2DirectViewFinder* aDirectViewFinderHandle)=0;
   134 	
   135 	/**
   136 	Retrieves the concrete factory handle for the histogram implementation in order to 
   137 	use it specifically for a particular viewfinder.
   138 		   
   139 	@param aImplFactoryPtr
   140 		   The concrete factory handle for the histogram implementation specific to the given view finder.
   141 		   
   142 	@leave  May leave with any error code.
   143 	*/
   144 	virtual void CreateHistogramImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const=0;
   145 
   146 	/**
   147 	Retrieves the concrete factory handle for the image processing implementation in order to 
   148 	use it specifically for a particular viewfinder.
   149 		   
   150 	@param aImplFactoryPtr
   151 		   The concrete factory handle for the image processing implementation specific to the given view finder.
   152 		   
   153 	@leave  May leave with any error code.
   154 	*/
   155 	virtual void GetImageProcessingImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const=0;
   156 	
   157 	/**
   158 	Provides the interface pointers for the concrete implementation of CCameraDirectSnapshot.
   159 	
   160 	@param aInterface
   161 		   Interface uid for a particular M-class of direct snapshot.
   162 	
   163 	@return Interface pointer. 
   164 	*/
   165 	virtual TAny* GetDirectSnapshotImpl(TUid aInterface) const=0; 
   166 	
   167 	/**
   168 	The observer for the direct view finder is passed to the implementation for passing callbacks on it.
   169 	
   170 	@param  aDirectViewFinderObserver
   171 			The reference to the direct view finder observer.
   172 	*/
   173 	virtual void SetDirectViewFinderObserver(MDirectViewFinderObserver& aDirectViewFinderObserver)=0;	
   174 	
   175 	/**
   176 	The pointer to the client view finder class used to pass back to the client via observer callbacks. Implementation is 
   177 	not	supposed to destroy this object.
   178 	
   179 	@param  aDirectViewFinderHandle
   180 			The pointer to the direct view finder class object.
   181 			
   182 	@see    MDirectViewFinderObserver
   183 	*/
   184 	virtual void SetDirectViewFinderHandle(CCamera::CCameraV2DirectViewFinder* aDirectViewFinderHandle)=0;
   185 	
   186 	/** 
   187 	Creates a new viewfinder and starts transfer of view finder data to the given portion of the screen using direct 
   188 	screen access.
   189 
   190 	The aScreenRect parameter is in screen coordinates and may be modified if,
   191 	for example, the camera requires the destination to have a certain byte alignment, and so on.
   192 
   193 	@param  aWs 
   194 	        Window server session.
   195 	@param  aScreenDevice 
   196 	        Screen device.
   197 	@param  aWindow 
   198 	        Displayable window.
   199 	@param  aScreenRect 
   200 	        Portion of the screen to which view finder data is to be
   201 	        transferred. This is in screen co-ordinates and may be modified if, for example,
   202 	        the camera requires the destination to have a certain byte alignment.
   203 
   204 	@leave  KErrInUse if another direct viewfinder is running with the same set of window parameters. May leave with any other error code.
   205 	
   206 	@note   MDirectViewFinderObserver::DirectViewFinderFirstFrameDisplayed() will be used to notify clients that the first
   207 			frame has been displayed.
   208 	*/
   209 	virtual void StartViewFinderDirectL(RWsSession& aWs, CWsScreenDevice& aScreenDevice, RWindowBase& aWindow, TRect& aScreenRect)=0;
   210 	
   211 	/** 
   212 	Creates a new viewfinder and starts transfer of view finder data to the given portion of the screen using direct screen
   213 	access and also clips to the specified portion of the screen.
   214 
   215 	The view finder has the same size and position as aScreenRect but is only
   216 	visible in the intersection of aScreenRect and aClipRect. May leave with KErrNotSupported
   217 	or KErrNotReady if Reserve() has not been called, or has not yet completed.
   218 
   219 	@param  aWs 
   220 	        Window server session.
   221 	@param  aScreenDevice 
   222 	        Screen device.
   223 	@param  aWindow 
   224 	        Displayable window.
   225 	@param  aScreenRect 
   226 	        Portion of the screen to which view finder data is to be
   227 	        transferred. This is in screen coordinates and may be modified if, for example,
   228 	        the camera requires the destination to have a certain byte alignment.
   229 	@param  aClipRect
   230 	        The rectangle to which the screen will be clipped.
   231 
   232 	@leave  KErrInUse if another direct viewfinder is running with the same set of window parameters. May leave with any other error code.
   233 	
   234 	@note   MDirectViewFinderObserver::DirectViewFinderFirstFrameDisplayed() will be used to notify clients that the first
   235 			frame has been displayed.
   236 	*/									
   237 	virtual void StartViewFinderDirectL(RWsSession& aWs, CWsScreenDevice& aScreenDevice,
   238 											RWindowBase& aWindow, TRect& aScreenRect, TRect& aClipRect)=0;
   239 	
   240 	/**
   241 	Retrieves the parameters associated with the direct viewfinder.
   242 	
   243 	@param  aScreenNumber
   244 			Retrieves the screen number on which the direct viewfinder is supposed to run.
   245 			
   246 	@param  aScreenRect
   247 			Retrieves the TRect which identifies the portion of the screen to which view finder data is to be transferred.
   248 	
   249 	@param  aClipRect
   250 			Retrieves the TRect which identifies the rectangle to which the screen will be clipped.
   251 			
   252 	@leave  May leave with any error code.
   253 	*/
   254 	virtual void GetDirectViewFinderPropertiesL(TInt& aScreenNumber, TRect& aScreenRect, TRect& aClipRect) const=0;
   255 	
   256 	/**
   257 	Pauses the direct viewfinder.
   258 	*/
   259 	virtual void PauseViewFinderDirect()=0;
   260 	
   261 	/**
   262 	Resumes the direct viewfinder
   263 	
   264 	@note   MDirectViewFinderObserver::DirectViewFinderFirstFrameDisplayed() will be used to notify clients that the first
   265 			frame has been displayed.
   266 	*/
   267 	virtual void ResumeViewFinderDirect()=0;
   268 	
   269 	/**
   270 	Retrieves the state of the direct viewfinder.
   271 	
   272 	@param  aViewFinderState
   273 			Retrieves the state of the direct viewfinder.
   274 			
   275 	@leave  May leave with any error code.
   276 	*/
   277 	virtual void GetViewFinderStateL(CCamera::CCameraV2DirectViewFinder::TViewFinderState& aViewFinderState) const=0;
   278 	
   279 	/**
   280 	Stops the direct viewfinder.
   281 	*/
   282 	virtual void StopDirectViewFinder()=0;
   283 	};
   284 	
   285 /** 
   286 Mixin class for implementation of camera client viewfinder.
   287 */	
   288 class MCameraClientViewFinder
   289 	{
   290 
   291 public:
   292 	
   293 	/** 
   294 	Releases the interface. 
   295 	
   296 	@param  aClientViewFinderHandle
   297 			The pointer to the client viewfinder class object which would be destroyed by the client.
   298 	*/
   299 	virtual void Release(CCamera::CCameraClientViewFinder* aClientViewFinderHandle)=0;
   300 	
   301 	/**
   302 	Retrieves the concrete factory handle for the histogram implementation in order to 
   303 	use it specifically for a particular viewfinder.
   304 		   
   305 	@param aImplFactoryPtr
   306 		   The concrete factory handle for the histogram implementation specific to the given view finder.
   307 		   
   308 	@leave  May leave with any error code.
   309 	*/
   310 	virtual void CreateHistogramImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const=0;
   311 
   312 	/**
   313 	Retrieves the concrete factory handle for the image processing implementation in order to 
   314 	use it specifically for a particular viewfinder.
   315 		   
   316 	@param aImplFactoryPtr
   317 		   The concrete factory handle for the image processing implementation specific to the given view finder.
   318 		   
   319 	@leave  May leave with any error code.
   320 	*/
   321 	virtual void GetImageProcessingImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const=0;
   322 	
   323 	/**
   324 	The observer for the client view finder is passed to the implementation for passing callbacks on it.
   325 	
   326 	@param  aClientViewFinderObserver
   327 			The reference to the client view finder observer.
   328 	*/
   329 	virtual void SetClientViewFinderObserver(MClientViewFinderObserver& aClientViewFinderObserver)=0;	
   330 	
   331 	/**
   332 	The pointer to the client view finder class used to pass back to the client via observer callbacks. Implementation is 
   333 	not	supposed to destroy this object.
   334 	
   335 	@param  aClientViewFinderObserver
   336 			The pointer to the client view finder class object.
   337 			
   338 	@see    MClientViewFinderObserver
   339 	*/
   340 	virtual void SetClientViewFinderHandle(CCamera::CCameraClientViewFinder* aClientViewFinderHandle)=0;
   341 	
   342 	/** 
   343 	Creates a new viewfinder and starts transfer of view finder data.
   344 
   345 	Availability of viewfinder data is notified by MClientViewFinderObserver::ViewFinderBufferReady().
   346 	
   347 	@param  aScreenNumber
   348 			The screen number on which the client viewfinder is supposed to run.
   349 	@param  aImageFormat 
   350 	        The image format requested by the client.
   351 	@param  aSize 
   352 	        On return, the size used. The size may be modified by the implementation because of hardware constraints and 
   353 	        byte alignment.
   354 
   355 	@leave  May leave with any error code.
   356 	
   357 	@note   KECamDefaultViewFinderHandle is used to refer to the viewfinder started using CCamera methods.
   358 	
   359 	@see	CCamera::StartViewFinderL(TFormat aImageFormat,TSize& aSize)
   360 	*/
   361 	virtual void StartClientViewFinderL(TInt aScreenNumber, CCamera::TFormat aImageFormat, TSize& aSize)=0;
   362 
   363 	/** 
   364 	Creates a new viewfinder and starts transfer of view finder data. Also, clips the picture to the specified clip	rectangle. 
   365 	
   366 	Availability of viewfinder data is notified by MClientViewFinderObserver::ViewFinderBufferReady().
   367 
   368 	The picture is the size of the intersection of aSize and aClipRect, not simply
   369 	aSize padded with white space.
   370 	
   371 	@param  aScreenNumber
   372 			The screen number on which the client viewfinder is supposed to run.
   373 	@param  aImageFormat 
   374 	        The image format.
   375 	@param  aSize
   376 	        On return, the size used. The size may be modified by the implementation because of hardware constraints and
   377 	        byte alignment.
   378 	@param  aClipRect 
   379 	        Required clip rectangle. May be modified if, for example,
   380 	        the camera only supports certain byte alignments.
   381 
   382 	@leave  May leave with any error code.
   383 	
   384 	@note   KECamDefaultViewFinderHandle is used to refer viewfinder started using CCamera methods.
   385 	
   386 	@see	CCamera::StartViewFinderL(TFormat aImageFormat,TSize& aSize,TRect& aClipRect)
   387 	*/
   388 	virtual void StartClientViewFinderL(TInt aScreenNumber, CCamera::TFormat aImageFormat, TSize& aSize, TRect& aClipRect)=0;
   389 	
   390 	/**
   391 	Retrieves the state of the client viewfinder.
   392 	
   393 	@param  aIsActive
   394 			ETrue indicates that client viewfinder is active.
   395 			EFalse indicates that client viewfinder is not active.
   396 	
   397 	@leave  May leave with any error code.
   398 	*/
   399 	virtual void GetClientViewFinderStateL(TBool& aIsActive) const=0;
   400 	
   401 	/**
   402 	Retrieves the parameters associated with the client viewfinder.
   403 	
   404 	@param  aScreenNumber
   405 			Retrieves the screen number on which the client viewfinder is supposed to run.
   406 			
   407 	@param  aImageFormat
   408 			Retrieves the image format of the client viewfinder.
   409 	
   410 	@param  aSize
   411 			Retrieves the size used for the client viewfinder.
   412 			
   413 	@param	aClipRect
   414 			Retrieves the clip rectangle. If not specified, the clipping is retrieved as a TRect having origin as top left 
   415 			corner and the size as 'aSize'.
   416 			
   417 	@leave  May leave with any error code.
   418 	*/
   419 	virtual void GetClientViewFinderPropertiesL(TInt& aScreenNumber, CCamera::TFormat& aImageFormat, TSize& aSize, TRect& aClipRect) const=0;
   420 	
   421 	/**
   422 	Stop the client viewfinder.
   423 	*/
   424 	virtual void StopClientViewFinder()=0;
   425 	
   426 	/**
   427 	Retrieves the client viewfinder buffer. Client calls this method after being notified about availability of viewfinder
   428 	data via MClientViewFinderObserver::ViewFinderBufferReady().
   429 
   430 	@param  aClientViewFinderBuffer
   431 			Reference to MCameraBuffer2 which retrieves the client viewfinder data.
   432 
   433 	@leave  May leave with any error code.
   434 	*/	
   435 	virtual void GetViewFinderBufferL(MCameraBuffer2& aClientViewFinderBuffer) const=0;
   436 	};
   437 
   438 /**
   439 This is a mixin class to be implemented by providers of the extension API for camera direct snapshot.
   440 
   441 @see CCamera::CCameraDirectSnapshot
   442 
   443 @publishedPartner
   444 @prototype
   445 */
   446 class MCameraDirectSnapshot
   447 	{
   448 	
   449 public:	
   450 	/** 
   451 	Releases the interface. 
   452 	*/
   453 	virtual void Release()=0;
   454 	
   455 	/**
   456 	Sets the version2 direct viewfinder object out of which this direct snapshot has been created. This is called only
   457 	during the creation time of CCameraDirectSnapshot.
   458 
   459 	@param	aDirectViewFinder
   460 			A pointer to the camera version2 direct viewfinder object on which the direct snapshot will be displayed.
   461 	*/
   462 	virtual void SetDirectViewFinder(const CCamera::CCameraV2DirectViewFinder* aDirectViewFinder)=0;
   463 	
   464 	/**
   465 	Retrieve the version2 direct viewfinder object out of which this direct snapshot has been created. This information 
   466 	may be required by the client in order to map the direct snapshot object with its parent version2 direct viewfinder
   467 	object or also to retrieve properties of its parent version2 direct viewfinder object.
   468 
   469 	@param	aDirectViewFinder
   470 			A pointer to the camera version2 direct viewfinder object on which the direct snapshot will be displayed.
   471 
   472 	@leave  May leave with any error code.
   473 	*/
   474 	virtual void GetDirectViewFinderL(CCamera::CCameraV2DirectViewFinder*& aDirectViewFinder) const=0;
   475 
   476 	/**
   477 	Enable the direct snapshot. The direct snapshot will be displayed on the parent direct viewfinder screen. The screen 
   478 	size of the snapshot will be the same as that of the parent direct viewfinder screen.
   479 
   480 	The direct snapshot can be displayed only for still images.
   481 
   482 	@param  aDirectSnapshotParameters
   483 			The desired direct snapshot parameter.
   484 			
   485 	@leave  MAy leave with any error code.
   486 	*/
   487 	virtual void EnableDirectSnapshotL(CCamera::CCameraDirectSnapshot::TDirectSnapshotParameters& aDirectSnapshotParameters)=0;
   488 
   489 	/**
   490 	Disable the direct snapshot. The direct snapshot will not be displayed on the parent direct viewfinder screen.
   491 	*/
   492 	virtual void DisableDirectSnapshot()=0;
   493 
   494 	/**
   495 	Retrieves the current state for direct snapshot.
   496 
   497 	@param  aDirectSnapshotParameters
   498 			Retrieves the current state for direct snapshot.
   499 			
   500 	@leave  May leave with any error code.
   501 	*/	
   502 	virtual void GetDirectSnapshotStateL(CCamera::CCameraDirectSnapshot::TDirectSnapshotState& aDirectSnapshotState) const=0;
   503 
   504 	/**
   505 	Retrieves the direct snapshot parameters. 
   506 
   507 	@param  aDirectSnapshotParameters
   508 			Retrieves the direct snapshot parameter of type TDirectSnapshotParameters.
   509 			
   510 	@leave  May leave with any error code.
   511 	*/
   512 	virtual void GetDirectSnapshotParametersL(CCamera::CCameraDirectSnapshot::TDirectSnapshotParameters& aDirectSnapshotParameters) const=0;
   513 
   514 	/**
   515 	Sets the direct snapshot parameters. 
   516 
   517 	@param  aDirectSnapshotParameters
   518 			The desired direct snapshot parameter of type TDirectSnapshotParameters.
   519 			
   520 	@leave  May leave with any error code.
   521 	*/	
   522 	virtual void SetDirectSnapshotParametersL(const CCamera::CCameraDirectSnapshot::TDirectSnapshotParameters& aDirectSnapshotParameters)=0;
   523 	};
   524 	
   525 #endif // ECAMVIEWFINDERINTF_H