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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
21 #ifndef ECAMVIEWFINDER_H
22 #define ECAMVIEWFINDER_H
26 #include <ecamadvsettings.h>
28 #ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
29 #include <ecamviewfinderdef.h>
31 #include <ecamadvsettingsuidsconst.hrh>
32 #include <ecamconst.h>
35 class MCameraViewFinder;
36 class MCameraV2DirectViewFinder;
37 class MCameraClientViewFinder;
39 class MCameraDirectSnapshot;
41 class MHistogramV2Buffer;
44 Specific handle used to refer to viewfinder which is started using CCamera methods.
46 static const TInt KECamDefaultViewFinderHandle = 0;
49 The current Version of the TDirectSnapshotParameters class.
51 static const TUint KECamDirectSnapshotParametersCurrentVersion = 1;
54 UID used to identify the CCameraV2DirectViewFinder API.
56 @see CCamera::CCameraV2DirectViewFinder
58 static const TUid KECamV2DirectViewFinderUid = {KECamV2DirectViewFinderUidValue};
61 UID used to identify the CCameraClientViewFinder API.
63 @see CCamera::CCameraClientViewFinder
65 static const TUid KECamClientViewFinderUid = {KECamClientViewFinderUidValue};
68 UID used to identify the CCamera::CCameraDirectSnapshot API.
69 This is the UID which is used to obtain the CCameraDirectSnapshot interface,
70 via a call to CCamera::CustomInterface().
72 @see KECamDirectSnapshotUidValue
73 @see CCamera::CCameraDirectSnapshot
78 static const TUid KECamDirectSnapshotUid = {KECamDirectSnapshotUidValue};
81 A mixin class to be implemented by the client in order to use the V2 direct view finder API CCameraV2DirectViewFinder. The
82 derived class methods are called by the implementation when the direct view finder operations are ready to be notified
83 accordingly. Implementation shall keep track of CCameraV2DirectViewFinder object deletion. It has to ensure that a callback
84 is not send should the client destroy the particular CCameraV2DirectViewFinder class object when the callback is queued to
85 be send across. Ownership of CCameraV2DirectViewFinder is retained by the client.
87 @see CCamera::CCameraV2DirectViewFinder
89 class MDirectViewFinderObserver
93 Implementation sends this callback in order to notify the client when the first direct viewfinder frame gets displayed
94 after starting/resuming a particular direct viewfinder.
96 @param aDirectViewFinderHandle
97 Reference to CCameraV2DirectViewFinder class object which refers a particular direct viewfinder.
100 Appropriate error code.
102 virtual void DirectViewFinderFirstFrameDisplayed(CCamera::CCameraV2DirectViewFinder& aDirectViewFinderHandle, TInt aErrorCode)=0;
105 Implementation sends this callback in order to notify the client when the direct histogram data gets displayed on the
106 screen for the first time after starting/resuming a particular direct viewfinder. If a call to CCameraV2Histogram::
107 StartHistogram() is made without a previous successful call to CCameraV2Histogram::PrepareDirectHistogramL() then the
108 callback returns KErrBadHandle.
110 @param aDirectViewFinderHandle
111 Reference to CCameraV2DirectViewFinder class object which refers a particular direct viewfinder for which the
112 direct histogram data has been displayed.
114 @param aDirectHistogramDisplayed
115 Reference to CCameraV2Histogram class object which refers a particular type of histogram being displayed.
118 Appropriate error code.
120 virtual void DirectHistogramDisplayed(CCamera::CCameraV2DirectViewFinder& aDirectViewFinderHandle, CCamera::CCameraV2Histogram& aDirectHistogramDisplayed, TInt aErrorCode)=0;
123 Implementation sends this callback in order to notify the client about availability of the histogram data. If a call
124 to CCameraV2Histogram::StartHistogram() is made without a previous successful call to CCameraV2Histogram::
125 PrepareClientHistogramL() then the callback returns KErrBadHandle.
127 @param aDirectViewFinderHandle
128 Reference to CCameraV2DirectViewFinder class object which refers a particular direct viewfinder for which the
129 client histogram data have been generated.
131 @param aClientHistogramBuffer
132 Pointer to MHistogramV2Buffer which retrieves a single histogram alongwith relevant information about it. The
133 ownership will be retained by the implementation. Client needs to call Release in order to indicate the
134 implementation that the buffer can be re-used. Client shall never try to delete the pointer. NULL, if error.
137 Appropriate error code.
139 @note Client shall use the currently available histogram for the direct viewfinder frames until a new histogram is
142 virtual void ClientHistogramReady(CCamera::CCameraV2DirectViewFinder& aDirectViewFinderHandle, MHistogramV2Buffer* aClientHistogramBuffer, TInt aErrorCode)=0;
145 Implementation sends this callback as a notification of the display of direct snapshot for still images on the display
148 @param aDirectViewFinderHandle
149 Reference to CCameraV2DirectViewFinder class object which refers a particular direct viewfinder on which the
150 direct snapshot data for still images have been displayed.
152 @param aCaptureImageHandle
153 Reference to CCameraImageCapture class object which was used to issue the capture image operation.
155 @param aPostCaptureControlId
156 Id used to identify a particular CCameraPostImageCaptureControl object associated with the given
157 CCameraImageCapture class object. This is needed to identify the image which is represented by this snapshot.
160 Appropriate error code.
162 virtual void DirectSnapshotForImageDisplayed(CCamera::CCameraV2DirectViewFinder& aDirectViewFinderHandle, CCamera::CCameraImageCapture& aCaptureImageHandle, TPostCaptureControlId aPostCaptureControlId, TInt aErrorCode)=0;
165 Implementation sends this callback in order to notify the client about failure with the direct viewfinder.
167 @param aDirectViewFinderHandle
168 Reference to CCameraV2DirectViewFinder class object which refers a particular direct viewfinder.
171 The reason of failure of the direct viewfinder.
173 virtual void DirectViewFinderFailed(CCamera::CCameraV2DirectViewFinder& aDirectViewFinderHandle, TInt aErrorCode)=0;
176 Gets a custom interface for future callbacks. This method will be called by the implementation to get a new interface
177 which would support future callbacks.
180 The Uid of the particular interface function required for callbacks.
183 The implementation has to type-cast the retrieved custom interface pointer to the appropriate type.
185 @return The error code.
187 virtual TInt CustomInterface(TUid aInterface, TAny*& aPtrInterface)=0;
191 A mixin class to be implemented by the client in order to use the client view finder API CCameraClientViewFinder. The
192 derived class methods are called by the implementation when the client view finder operations are ready to be notified
193 accordingly. Implementation shall keep track of CCameraClientViewFinder object deletion. It has to ensure that a callback
194 is not send should the client destroy the particular CCameraClientViewFinder class object when the callback is queued to
195 be send across. Ownership of CCameraClientViewFinder is retained by the client.
197 @see CCamera::CCameraClientViewFinder
199 class MClientViewFinderObserver
203 Implementation sends this callback in order to notify the client about the availability of viewfinder frames.
204 Viewfinder frames can be retrieved by the client using the CCameraClientViewFinder::GetViewFinderBufferL
205 (MCameraBuffer2& aClientViewFinderBuffer).
207 @param CCameraClientViewFinder
208 Reference to CCameraClientViewFinder class object which refers a particular client viewfinder.
211 Appropriate error code.
213 virtual void ViewFinderBufferReady(CCamera::CCameraClientViewFinder& aClientViewFinderHandle, TInt aErrorCode)=0;
216 Implementation sends this callback in order to notify the client when the direct histogram data gets displayed on the
217 screen for the first time after starting a particular client viewfinder. If a call to CCameraV2Histogram::
218 StartHistogram() is made without a previous successful call to CCameraV2Histogram::PrepareDirectHistogramL() then the
219 callback returns KErrBadHandle.
221 @param aClientViewFinderHandle
222 Reference to CCameraClientViewFinder class object which refers a particular client viewfinder.
224 @param aDirectHistogramDisplayed
225 Reference to CCameraV2Histogram class object which refers a particular type of histogram being displayed.
228 Appropriate error code.
230 virtual void DirectHistogramDisplayed(CCamera::CCameraClientViewFinder& aClientViewFinderHandle, CCamera::CCameraV2Histogram& aDirectHistogramDisplayed, TInt aErrorCode)=0;
233 Implementation sends this callback in order to notify the client about availability of the histogram data. If a call
234 to CCameraV2Histogram::StartHistogram() is made without a previous successful call to CCameraV2Histogram::
235 PrepareClientHistogramL() then the callback returns KErrBadHandle.
237 @param aClientViewFinderHandle
238 Reference to CCameraClientViewFinder class object which refers a particular client viewfinder for which the
239 client histogram data have been generated.
241 @param aClientHistogramBuffer
242 Pointer to MHistogramV2Buffer which retrieves a single histogram alongwith relevant information about it. The
243 ownership will be retained by the implementation. Client needs to call Release in order to indicate the
244 implementation that the buffer can be re-used. Client shall never try to delete the pointer. NULL, if error.
247 Appropriate error code.
249 @note Client shall use the currently available histogram for the viewfinder frames until a new histogram is
252 virtual void ClientHistogramReady(CCamera::CCameraClientViewFinder& aClientViewFinderHandle, MHistogramV2Buffer* aClientHistogramBuffer, TInt aErrorCode)=0;
255 Implementation sends this callback in order to notify the client about failure of image processing for the client
258 @param aClientViewFinderHandle
259 Reference to CCameraClientViewFinder class object which refers a particular client viewfinder.
262 The reason of failure of the image processing.
264 virtual void ImageProcessingFailed(CCamera::CCameraClientViewFinder& aClientViewFinderHandle, TInt aErrorCode)=0;
267 Gets a custom interface for future callbacks. This method will be called by the implementation to get a new interface
268 which would support future callbacks.
271 The Uid of the particular interface function required for callbacks.
274 The implementation has to type-cast the retrieved custom interface pointer to the appropriate type.
276 @return The error code.
278 virtual TInt CustomInterface(TUid aInterface, TAny*& aPtrInterface)=0;
282 CCamera view finder base class is used to provide features common to both client view finders and direct view finders.
284 @note This class is not intended for stand alone use. One of the derived class shall be used instead.
285 Features of this class will automatically be used when either direct view finder or client based view finder are
288 @note If the class methods leave, the output type parameter value is not guaranteed to be valid.
293 class CCameraViewFinder : public CBase
295 /* so can use internal factory functions etc. */
296 friend class CCamera;
300 Different types of available viewfinder fading.
301 The enumeration list may be extended in future.
305 enum TViewFinderFadingType
307 /** Fading not supported. */
308 EVFFadingTypeNone =0x00,
309 /** Fading from a single frame of color given by the client. */
310 EVFFadingTypeStaticColorFading =0x01,
311 /** Fading from a single frame given by the client. */
312 EVFFadingTypeStaticFrameFading =0x02,
313 /** Fading from a number of previous VF frames. */
314 EVFFadingTypeCross =0x04
318 Different ways to control the viewfinder fading.
319 The enumeration list may be extended in future.
323 enum TViewFinderFadingControl
325 /** Fading not supported. */
326 EVFFadingControlNone = 0x00,
327 /** Switch on (enable) the fading. */
328 EVFFadingControlSwitchedOn = 0x01,
329 /** Switch off (disable) the fading. */
330 EVFFadingControlSwitchedOff = 0x02,
331 /** Automatic fading. */
332 EVFFadingControlSwitchAuto = 0x04
336 Different directions in which the fading may appear.
337 The enumeration list may be extended in future.
341 enum TViewFinderFadingDirection
343 /** Fading not supported. */
344 EVFFadingDirectionNone = 0x00,
345 /** Automatic direction or may be even custom direction decided by implementation. */
346 EVFFadingDirectionAuto = 0x01,
347 /** Uniform fading. */
348 EVFFadingDirectionUniform = 0x02,
349 /** Start to fade from up to down. */
350 EVFFadingDirectionUpDown = 0x04,
351 /** Start to fade from down to up. */
352 EVFFadingDirectionDownUp = 0x08,
353 /** Start to fade from left to right. */
354 EVFFadingDirectionLeftRight = 0x10,
355 /** Start to fade from right to left. */
356 EVFFadingDirectionRightLeft = 0x20
360 Image enhancement options to be applied for a particular display.
361 The enumeration list may be extended in future.
365 enum TImageEnhancement
367 /** Not Supported. */
368 EImageEnhancementNone = 0x00,
369 /** Image Enhancement switches off. */
370 EImageEnhancementSwitchOFF = 0x01,
371 /** Image Enhancement switches to auto mode. */
372 EImageEnhancementAuto = 0x02,
373 /** Image Enhancement switches on. */
374 EImageEnhancementSwitchOn = 0x04
378 Retrieves the capabilites of viewfinder fading.
382 class TViewFinderFadingCapabilities
385 IMPORT_C TViewFinderFadingCapabilities();
387 IMPORT_C TUint Size() const;
388 IMPORT_C TUint Version() const;
391 //for future expansion
395 // reserved for future expansion
400 /** Bit-field retrieving the supported fading type TViewFinderFadingType. */
401 TUint iSupportedFadingType;
402 /** Bit-field retrieving the supported fading control TViewFinderFadingControl. */
403 TUint iSupportedFadingControl;
404 /** Bit-field retrieving the supported fading direction TViewFinderFadingDirection. */
405 TUint iSupportedFadingDirection;
409 Viewfinder fading effects characterizing a particular viewfinder fading.
413 class TViewFinderFadingEffect
416 IMPORT_C TViewFinderFadingEffect();
418 IMPORT_C TUint Size() const;
419 IMPORT_C TUint Version() const;
422 //for future expansion
426 // reserved for future expansion
432 /** The type of viewfinder fading to be used. */
433 TViewFinderFadingType iViewFinderFadingType;
434 /** The control for the viewfinder fading, that is, on/off/auto. */
435 TViewFinderFadingControl iViewFinderFadingControl;
436 /** The direction of viewfinder fading. */
437 TViewFinderFadingDirection iViewFinderFadingDirection;
438 /** The color used to fade from/to in case of static color fading. This is ignored if iViewFinderFadingType is
439 not EVFFadingTypeStaticColorFading. */
440 TRgb iStaticFadingColor;
441 /** The handle of CFbsBitmap used to obtain the frame used to fade from/to in case of static frame fading.
442 This is KECamStaticFrameFadingTypeNotUsed if iViewFinderFadingType is not EVFFadingTypeStaticFrameFading.
443 This is KECamSpecialStaticFrameFormatHandle if CFBsBitmap handle is not to be used. */
444 TInt iStaticFadingFrameBitmapHandle;
445 /** The number of previous frames to be saved for cross fading.
446 This is KECamCrossFadingFramesNotUsed if iViewFinderFadingType is not EVFFadingTypeCross. */
447 TUint iCrossFadingFrames;
448 /** The fading time. This may be used both for auto and manual fading as per implementation. */
449 TTimeIntervalMicroSeconds32 iFadingTime;
454 IMPORT_C void GetViewFinderFadingCapabilitiesL(TViewFinderFadingCapabilities& aVFFadingCapabilities) const;
455 IMPORT_C void GetViewFinderFadingEffectL(TViewFinderFadingEffect& aCurrentVFFadingEffect) const;
456 IMPORT_C void SetViewFinderFadingEffectL(const TViewFinderFadingEffect& aVFFadingEffect);
458 IMPORT_C void GetViewFinderHandleL(TInt& aVFHandle) const;
460 ~CCameraViewFinder();
463 CCameraViewFinder(CCamera& aOwner);
466 void GetSpotsPositionL(TUint aSpotCombination, RArray<TRect>& aSpotsPosition) const;
468 void GetSupportedImageEnhancementL(TUint& aSupportedImageEnhancement) const;
469 void GetImageEnhancementL(TImageEnhancement& aImageEnhancement) const;
470 void SetImageEnhancementL(TImageEnhancement aImageEnhancement);
472 void GetSupportedVFMagnificationL(RArray<TUint>& aSupportedVFMagnification) const;
473 void GetViewfinderMagnificationL(TUint& aVFMagnification) const;
474 void SetViewfinderMagnificationL(TUint aVFMagnification);
478 MCameraViewFinder* iImplBase; // not owned
482 CCamera direct view finder v2 class is used to provide support for multiple Direct View Finder.
483 A new instance of this class will be created for every new direct viewfinder.
485 @note This class is not intended for sub-classing and used to standardise existing varieties of implementations.
487 @note If the class methods leave, the output type parameter value is not guaranteed to be valid.
489 @note Clients must implement an MDirectViewFinderObserver in order to use this CCameraV2DirectViewFinder API.
494 class CCamera::CCameraV2DirectViewFinder : public CCameraViewFinder
496 /* so can use internal factory functions etc. */
497 friend class CCamera;
498 friend class CCamera::CCameraDirectSnapshot;
502 /** Specifies direct viewfinder state. */
503 enum TViewFinderState
505 /** View Finder is activated */
507 /** View Finder has been paused */
509 /** View Finder has been stopped or hasn't yet started. Default state. */
515 IMPORT_C static CCameraV2DirectViewFinder* NewL(CCamera& aOwner, MDirectViewFinderObserver& aDirectViewFinderObserver);
517 IMPORT_C CCamera::CCameraV2Histogram* CreateHistogramHandleL() const;
518 IMPORT_C CCamera::CCameraImageProcessing* GetTransformationHandleL() const;
520 IMPORT_C CCamera::CCameraDirectSnapshot* GetDirectSnapshotHandleL() const;
522 IMPORT_C void StartViewFinderDirectL(RWsSession& aWs, CWsScreenDevice& aScreenDevice, RWindowBase& aWindow, TRect& aScreenRect);
524 IMPORT_C void StartViewFinderDirectL(RWsSession& aWs, CWsScreenDevice& aScreenDevice, RWindowBase& aWindow,
525 TRect& aScreenRect, TRect& aClipRect);
527 IMPORT_C void GetDirectViewFinderPropertiesL(TInt& aScreenNumber, TRect& aScreenRect, TRect& aClipRect) const;
529 IMPORT_C void PauseViewFinderDirect();
530 IMPORT_C void ResumeViewFinderDirect();
531 IMPORT_C void GetViewFinderStateL(TViewFinderState& aViewFinderState) const;
533 IMPORT_C void StopDirectViewFinder();
535 IMPORT_C ~CCameraV2DirectViewFinder();
538 CCameraV2DirectViewFinder(CCamera& aOwner);
539 void ConstructL(MDirectViewFinderObserver& aDirectViewFinderObserver);
541 void SetImplHandle();
543 void SetImplBaseHandle();
545 MCameraV2DirectViewFinder* Impl();
548 MCameraV2DirectViewFinder* iImpl; // not owned
552 CCamera client view finder class is used to provide support for multiple client View Finder.
553 A new instance of this class will be created for every new client viewfinder.
555 @note This class is not intended for sub-classing and used to standardise existing
556 varieties of implementations.
558 @note If the class methods leave, the output type parameter value is not guaranteed to be valid.
560 @note Clients must implement an MClientViewFinderObserver in order to use this CCameraClientViewFinder API.
561 MCameraObserver2::ViewFinderReady will not be used with this class.
566 class CCamera::CCameraClientViewFinder : public CCameraViewFinder
568 /* so can use internal factory functions etc. */
569 friend class CCamera;
573 IMPORT_C static CCameraClientViewFinder* NewL(CCamera& aOwner, MClientViewFinderObserver& aClientViewFinderObserver);
575 IMPORT_C CCamera::CCameraV2Histogram* CreateHistogramHandleL() const;
576 IMPORT_C CCamera::CCameraImageProcessing* GetTransformationHandleL() const;
578 IMPORT_C void StartClientViewFinderL(TInt aScreenNumber, CCamera::TFormat aImageFormat, TSize& aSize);
579 IMPORT_C void StartClientViewFinderL(TInt aScreenNumber, CCamera::TFormat aImageFormat, TSize& aSize, TRect& aClipRect);
581 IMPORT_C void GetClientViewFinderStateL(TBool& aIsActive) const;
582 IMPORT_C void GetClientViewFinderPropertiesL(TInt& aScreenNumber, CCamera::TFormat& aImageFormat, TSize& aSize, TRect& aClipRect) const;
584 IMPORT_C void StopClientViewFinder();
586 IMPORT_C void GetViewFinderBufferL(MCameraBuffer2& aClientViewFinderBuffer) const;
588 IMPORT_C ~CCameraClientViewFinder();
591 CCameraClientViewFinder(CCamera& aOwner);
592 void ConstructL(MClientViewFinderObserver& aClientViewFinderObserver);
594 void SetImplHandle();
596 void SetImplBaseHandle();
599 MCameraClientViewFinder* iImpl; // not owned
603 This class allows the client to enable direct snapshot feature for still images only. The direct snapshot API can not be
606 The direct snapshot can be created out of CCameraV2DirectViewFinder object only. Its lifetime is dependent on the parent
607 direct viewfinder object. So, the client is supposed to destroy the direct snapshot object before deleting the parent
608 direct viewfinder object. The MDirectViewFinderObserver observer class provides callback to notify the client whenever
609 direct snapshot data gets displayed on the given direct viewfinder screen. The callback also provides information regarding
610 the CCameraImageCapture object used to issue the image capture calls. It also provides the Id for the individual images
611 which get represented by the snapshot displayed.
613 @note This class provides a standardised client interface for the direct snapshot. Classes cannot be derived from it.
615 @note If the class methods leave, the output type parameter value is not guaranteed to be valid.
620 class CCamera::CCameraDirectSnapshot : public CBase
622 friend class CCamera::CCameraV2DirectViewFinder;
626 Describes the state of direct snapshot.
627 The enumeration list may be extended in future.
629 enum TDirectSnapshotState
631 /** The direct snapshot has been enabled. */
632 EDirectSnapshotEnabled,
633 /** The direct snapshot has been disabled. */
634 EDirectSnapshotDisabled
638 Specifes the parameters necessary for direct snapshots. The screen co-ordinates used for direct snapshot will be the
639 same as used for the parent direct viewfinder screen co-ordinates. This screen co-ordinate for direct snapshot may be
640 changed by the implementation in certain cases for alignment.
642 class TDirectSnapshotParameters
645 IMPORT_C TDirectSnapshotParameters();
647 IMPORT_C TUint Size() const;
648 IMPORT_C TUint Version() const;
650 IMPORT_C TBool IsAspectRatioMaintained() const;
651 IMPORT_C void SetAspectRatioState(TBool aIsAspectRatioMaintained);
654 //for future expansion
658 // reserved for future expansion
665 /** Set to ETrue if the aspect ratio of the direct snapshot image must be maintained when scaling down */
666 TUint iIsAspectRatioMaintained:1;
669 /** The bit field representing the drive modes for which the direct snapshot will be displayed if enabled.
670 Refer CCamera::CCameraAdvancedSettings::TDriveMode. */
673 /** The background colour to be used if the snapshot has been scaled (maintaining its aspect ratio)
674 and does not fully fill the dimension as per the direct view finder screen size. The TRect supposed to be used
675 for direct snapshot may be modified by the implementation in certain cases for alignment. */
678 /** The time duration during which the snapshot data should appear on the screen. The implementation may
679 internally change this display time if the client sets iDisplayTime to TTimeIntervalMicroSeconds32
680 (KECamSnapshotDefaultDisplayTime). This may happen when the client doesn't want to specify a specific duration
681 and would rather let the implementation decide. */
682 TTimeIntervalMicroSeconds32 iDisplayTime;
687 IMPORT_C void GetDirectViewFinderL(CCamera::CCameraV2DirectViewFinder*& aDirectViewFinder) const;
689 IMPORT_C void EnableDirectSnapshotL(TDirectSnapshotParameters& aDirectSnapshotParameters);
691 IMPORT_C void DisableDirectSnapshot();
693 IMPORT_C void GetDirectSnapshotStateL(TDirectSnapshotState& aDirectSnapshotParameters) const;
695 IMPORT_C void GetDirectSnapshotParametersL(TDirectSnapshotParameters& aDirectSnapshotParameters) const;
697 IMPORT_C void SetDirectSnapshotParametersL(const TDirectSnapshotParameters& aDirectSnapshotParameters);
699 IMPORT_C ~CCameraDirectSnapshot();
702 IMPORT_C static CCameraDirectSnapshot* CreateL(CCamera::CCameraV2DirectViewFinder& aDirectViewFinder);
704 CCameraDirectSnapshot();
705 void ConstructL(CCamera::CCameraV2DirectViewFinder& aDirectViewFinder);
707 MCameraV2DirectViewFinder* DirectViewFinderImpl(CCamera::CCameraV2DirectViewFinder& aDirectViewFinder);
710 MCameraDirectSnapshot* iImpl; // not owned
713 #endif // ECAMVIEWFINDER_H