First public contribution.
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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
22 #ifndef ECAMVIEWFINDERINTF_H
23 #define ECAMVIEWFINDERINTF_H
25 #include <ecamviewfinder.h>
26 #include <ecam/ecamadvsettingsintfuids.hrh>
28 class MImplementationFactory;
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};
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};
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};
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};
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.
50 @see KECamMCameraDirectSnapshotUidValue
55 static const TUid KECamMCameraDirectSnapshotUid = {KECamMCameraDirectSnapshotUidValue};
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.
60 class MCameraViewFinder
65 Releases the interface.
67 virtual void Release()=0;
70 Retrieves the fading capabilites for a particular viewfinder.
72 @param aVFFadingCapabilities
73 Retrieves the fading capabilities associated with the given viewfinder.
75 @leave May leave with any error code.
79 virtual void GetViewFinderFadingCapabilitiesL(CCameraViewFinder::TViewFinderFadingCapabilities& aVFFadingCapabilities) const=0;
82 Retrieves the current fading effect/control being used for a particular viewfinder.
84 @param aCurrentVFFadingEffect
85 Retrieves the fading effects associated with the given viewfinder.
87 @leave May leave with any error code.
91 virtual void GetViewFinderFadingEffectL(CCameraViewFinder::TViewFinderFadingEffect& aCurrentVFFadingEffect) const=0;
94 Sets the fading effect/control for a particular viewfinder.
96 @param aVFFadingEffect
97 The desired fading effects associated with the given viewfinder.
99 @note Event KUidECamEvent2ViewFinderFadingEffect is used to notify the requesting client about setting of the
104 virtual void SetViewFinderFadingEffect(const CCameraViewFinder::TViewFinderFadingEffect& aVFFadingEffect)=0;
107 Retrieves the handle number which represents the given viewfinder object.
110 The viewfinder handle
112 @leave May leave with any error code.
114 @note KECamDefaultViewFinderHandle is used to refer to the viewfinder started using CCamera methods.
116 virtual void GetViewFinderHandleL(TInt& aVFHandle) const=0;
120 Mixin class for implementation of CCameraV2DirectViewFinder methods.
122 class MCameraV2DirectViewFinder
128 Releases the interface.
130 @param aDirectViewFinderHandle
131 The pointer to the direct viewfinder class object which would be destroyed by the client.
133 virtual void Release(CCamera::CCameraV2DirectViewFinder* aDirectViewFinderHandle)=0;
136 Retrieves the concrete factory handle for the histogram implementation in order to
137 use it specifically for a particular viewfinder.
139 @param aImplFactoryPtr
140 The concrete factory handle for the histogram implementation specific to the given view finder.
142 @leave May leave with any error code.
144 virtual void CreateHistogramImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const=0;
147 Retrieves the concrete factory handle for the image processing implementation in order to
148 use it specifically for a particular viewfinder.
150 @param aImplFactoryPtr
151 The concrete factory handle for the image processing implementation specific to the given view finder.
153 @leave May leave with any error code.
155 virtual void GetImageProcessingImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const=0;
158 Provides the interface pointers for the concrete implementation of CCameraDirectSnapshot.
161 Interface uid for a particular M-class of direct snapshot.
163 @return Interface pointer.
165 virtual TAny* GetDirectSnapshotImpl(TUid aInterface) const=0;
168 The observer for the direct view finder is passed to the implementation for passing callbacks on it.
170 @param aDirectViewFinderObserver
171 The reference to the direct view finder observer.
173 virtual void SetDirectViewFinderObserver(MDirectViewFinderObserver& aDirectViewFinderObserver)=0;
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.
179 @param aDirectViewFinderHandle
180 The pointer to the direct view finder class object.
182 @see MDirectViewFinderObserver
184 virtual void SetDirectViewFinderHandle(CCamera::CCameraV2DirectViewFinder* aDirectViewFinderHandle)=0;
187 Creates a new viewfinder and starts transfer of view finder data to the given portion of the screen using direct
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.
194 Window server session.
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.
204 @leave KErrInUse if another direct viewfinder is running with the same set of window parameters. May leave with any other error code.
206 @note MDirectViewFinderObserver::DirectViewFinderFirstFrameDisplayed() will be used to notify clients that the first
207 frame has been displayed.
209 virtual void StartViewFinderDirectL(RWsSession& aWs, CWsScreenDevice& aScreenDevice, RWindowBase& aWindow, TRect& aScreenRect)=0;
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.
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.
220 Window server session.
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.
230 The rectangle to which the screen will be clipped.
232 @leave KErrInUse if another direct viewfinder is running with the same set of window parameters. May leave with any other error code.
234 @note MDirectViewFinderObserver::DirectViewFinderFirstFrameDisplayed() will be used to notify clients that the first
235 frame has been displayed.
237 virtual void StartViewFinderDirectL(RWsSession& aWs, CWsScreenDevice& aScreenDevice,
238 RWindowBase& aWindow, TRect& aScreenRect, TRect& aClipRect)=0;
241 Retrieves the parameters associated with the direct viewfinder.
244 Retrieves the screen number on which the direct viewfinder is supposed to run.
247 Retrieves the TRect which identifies the portion of the screen to which view finder data is to be transferred.
250 Retrieves the TRect which identifies the rectangle to which the screen will be clipped.
252 @leave May leave with any error code.
254 virtual void GetDirectViewFinderPropertiesL(TInt& aScreenNumber, TRect& aScreenRect, TRect& aClipRect) const=0;
257 Pauses the direct viewfinder.
259 virtual void PauseViewFinderDirect()=0;
262 Resumes the direct viewfinder
264 @note MDirectViewFinderObserver::DirectViewFinderFirstFrameDisplayed() will be used to notify clients that the first
265 frame has been displayed.
267 virtual void ResumeViewFinderDirect()=0;
270 Retrieves the state of the direct viewfinder.
272 @param aViewFinderState
273 Retrieves the state of the direct viewfinder.
275 @leave May leave with any error code.
277 virtual void GetViewFinderStateL(CCamera::CCameraV2DirectViewFinder::TViewFinderState& aViewFinderState) const=0;
280 Stops the direct viewfinder.
282 virtual void StopDirectViewFinder()=0;
286 Mixin class for implementation of camera client viewfinder.
288 class MCameraClientViewFinder
294 Releases the interface.
296 @param aClientViewFinderHandle
297 The pointer to the client viewfinder class object which would be destroyed by the client.
299 virtual void Release(CCamera::CCameraClientViewFinder* aClientViewFinderHandle)=0;
302 Retrieves the concrete factory handle for the histogram implementation in order to
303 use it specifically for a particular viewfinder.
305 @param aImplFactoryPtr
306 The concrete factory handle for the histogram implementation specific to the given view finder.
308 @leave May leave with any error code.
310 virtual void CreateHistogramImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const=0;
313 Retrieves the concrete factory handle for the image processing implementation in order to
314 use it specifically for a particular viewfinder.
316 @param aImplFactoryPtr
317 The concrete factory handle for the image processing implementation specific to the given view finder.
319 @leave May leave with any error code.
321 virtual void GetImageProcessingImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const=0;
324 The observer for the client view finder is passed to the implementation for passing callbacks on it.
326 @param aClientViewFinderObserver
327 The reference to the client view finder observer.
329 virtual void SetClientViewFinderObserver(MClientViewFinderObserver& aClientViewFinderObserver)=0;
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.
335 @param aClientViewFinderObserver
336 The pointer to the client view finder class object.
338 @see MClientViewFinderObserver
340 virtual void SetClientViewFinderHandle(CCamera::CCameraClientViewFinder* aClientViewFinderHandle)=0;
343 Creates a new viewfinder and starts transfer of view finder data.
345 Availability of viewfinder data is notified by MClientViewFinderObserver::ViewFinderBufferReady().
348 The screen number on which the client viewfinder is supposed to run.
350 The image format requested by the client.
352 On return, the size used. The size may be modified by the implementation because of hardware constraints and
355 @leave May leave with any error code.
357 @note KECamDefaultViewFinderHandle is used to refer to the viewfinder started using CCamera methods.
359 @see CCamera::StartViewFinderL(TFormat aImageFormat,TSize& aSize)
361 virtual void StartClientViewFinderL(TInt aScreenNumber, CCamera::TFormat aImageFormat, TSize& aSize)=0;
364 Creates a new viewfinder and starts transfer of view finder data. Also, clips the picture to the specified clip rectangle.
366 Availability of viewfinder data is notified by MClientViewFinderObserver::ViewFinderBufferReady().
368 The picture is the size of the intersection of aSize and aClipRect, not simply
369 aSize padded with white space.
372 The screen number on which the client viewfinder is supposed to run.
376 On return, the size used. The size may be modified by the implementation because of hardware constraints and
379 Required clip rectangle. May be modified if, for example,
380 the camera only supports certain byte alignments.
382 @leave May leave with any error code.
384 @note KECamDefaultViewFinderHandle is used to refer viewfinder started using CCamera methods.
386 @see CCamera::StartViewFinderL(TFormat aImageFormat,TSize& aSize,TRect& aClipRect)
388 virtual void StartClientViewFinderL(TInt aScreenNumber, CCamera::TFormat aImageFormat, TSize& aSize, TRect& aClipRect)=0;
391 Retrieves the state of the client viewfinder.
394 ETrue indicates that client viewfinder is active.
395 EFalse indicates that client viewfinder is not active.
397 @leave May leave with any error code.
399 virtual void GetClientViewFinderStateL(TBool& aIsActive) const=0;
402 Retrieves the parameters associated with the client viewfinder.
405 Retrieves the screen number on which the client viewfinder is supposed to run.
408 Retrieves the image format of the client viewfinder.
411 Retrieves the size used for the client viewfinder.
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'.
417 @leave May leave with any error code.
419 virtual void GetClientViewFinderPropertiesL(TInt& aScreenNumber, CCamera::TFormat& aImageFormat, TSize& aSize, TRect& aClipRect) const=0;
422 Stop the client viewfinder.
424 virtual void StopClientViewFinder()=0;
427 Retrieves the client viewfinder buffer. Client calls this method after being notified about availability of viewfinder
428 data via MClientViewFinderObserver::ViewFinderBufferReady().
430 @param aClientViewFinderBuffer
431 Reference to MCameraBuffer2 which retrieves the client viewfinder data.
433 @leave May leave with any error code.
435 virtual void GetViewFinderBufferL(MCameraBuffer2& aClientViewFinderBuffer) const=0;
439 This is a mixin class to be implemented by providers of the extension API for camera direct snapshot.
441 @see CCamera::CCameraDirectSnapshot
446 class MCameraDirectSnapshot
451 Releases the interface.
453 virtual void Release()=0;
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.
459 @param aDirectViewFinder
460 A pointer to the camera version2 direct viewfinder object on which the direct snapshot will be displayed.
462 virtual void SetDirectViewFinder(const CCamera::CCameraV2DirectViewFinder* aDirectViewFinder)=0;
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.
469 @param aDirectViewFinder
470 A pointer to the camera version2 direct viewfinder object on which the direct snapshot will be displayed.
472 @leave May leave with any error code.
474 virtual void GetDirectViewFinderL(CCamera::CCameraV2DirectViewFinder*& aDirectViewFinder) const=0;
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.
480 The direct snapshot can be displayed only for still images.
482 @param aDirectSnapshotParameters
483 The desired direct snapshot parameter.
485 @leave MAy leave with any error code.
487 virtual void EnableDirectSnapshotL(CCamera::CCameraDirectSnapshot::TDirectSnapshotParameters& aDirectSnapshotParameters)=0;
490 Disable the direct snapshot. The direct snapshot will not be displayed on the parent direct viewfinder screen.
492 virtual void DisableDirectSnapshot()=0;
495 Retrieves the current state for direct snapshot.
497 @param aDirectSnapshotParameters
498 Retrieves the current state for direct snapshot.
500 @leave May leave with any error code.
502 virtual void GetDirectSnapshotStateL(CCamera::CCameraDirectSnapshot::TDirectSnapshotState& aDirectSnapshotState) const=0;
505 Retrieves the direct snapshot parameters.
507 @param aDirectSnapshotParameters
508 Retrieves the direct snapshot parameter of type TDirectSnapshotParameters.
510 @leave May leave with any error code.
512 virtual void GetDirectSnapshotParametersL(CCamera::CCameraDirectSnapshot::TDirectSnapshotParameters& aDirectSnapshotParameters) const=0;
515 Sets the direct snapshot parameters.
517 @param aDirectSnapshotParameters
518 The desired direct snapshot parameter of type TDirectSnapshotParameters.
520 @leave May leave with any error code.
522 virtual void SetDirectSnapshotParametersL(const CCamera::CCameraDirectSnapshot::TDirectSnapshotParameters& aDirectSnapshotParameters)=0;
525 #endif // ECAMVIEWFINDERINTF_H