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.
16 #include <ecamviewfinder.h>
17 #ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
18 #include <ecamviewfinderdef.h>
20 #include <ecam/camerahistogram.h>
21 #include <ecam/ecamviewfinderintf.h>
22 #include <ecam/implementationfactoryintf.h>
23 #include "ecamversion.h"
26 CCameraViewFinder Constructor.
29 a reference to a CCamera object providing the settings.
34 CCameraViewFinder::CCameraViewFinder(CCamera& aOwner): iOwner(aOwner), iImplBase(NULL)
41 CCameraViewFinder::~CCameraViewFinder()
46 Retrieves the fading capabilites for a particular viewfinder.
48 @param aVFFadingCapabilities
49 Retrieves the fading capabilities associated with the given viewfinder.
51 @leave May leave with any error code.
55 EXPORT_C void CCameraViewFinder::GetViewFinderFadingCapabilitiesL(CCameraViewFinder::TViewFinderFadingCapabilities& aVFFadingCapabilities) const
59 iImplBase->GetViewFinderFadingCapabilitiesL(aVFFadingCapabilities);
63 User::Leave(KErrNotSupported);
68 Retrieves the current fading effect/control being used for a particular viewfinder.
70 @param aCurrentVFFadingEffect
71 Retrieves the fading effects associated with the given viewfinder.
73 @leave May leave with any error code.
77 EXPORT_C void CCameraViewFinder::GetViewFinderFadingEffectL(CCameraViewFinder::TViewFinderFadingEffect& aCurrentVFFadingEffect) const
81 iImplBase->GetViewFinderFadingEffectL(aCurrentVFFadingEffect);
85 User::Leave(KErrNotSupported);
90 Sets the fading effect/control for a particular viewfinder.
92 @param aVFFadingEffect
93 The desired fading effects associated with the given viewfinder.
95 @leave KErrNotSupported if the implementation of this method is not present.
97 @note Event KUidECamEvent2ViewFinderFadingEffect is used to notify the requesting client about the setting of the
102 EXPORT_C void CCameraViewFinder::SetViewFinderFadingEffectL(const CCameraViewFinder::TViewFinderFadingEffect& aVFFadingEffect)
104 if(iImplBase != NULL)
106 iImplBase->SetViewFinderFadingEffect(aVFFadingEffect);
110 User::Leave(KErrNotSupported);
115 Retrieves the handle number which represents the given viewfinder object.
118 The viewfinder handle
120 @leave May leave with any error code.
122 @note KECamDefaultViewFinderHandle is used to refer to the viewfinder started using CCamera methods.
124 EXPORT_C void CCameraViewFinder::GetViewFinderHandleL(TInt& aVFHandle) const
126 if(iImplBase != NULL)
128 iImplBase->GetViewFinderHandleL(aVFHandle);
132 User::Leave(KErrNotSupported);
137 Constructor for the TViewFinderFadingCapabilities class.
138 Sets the size and version of this class.
142 EXPORT_C CCameraViewFinder::TViewFinderFadingCapabilities::TViewFinderFadingCapabilities()
144 iSize = sizeof(CCameraViewFinder::TViewFinderFadingCapabilities);
145 iVersion = KECamViewFinderFadingCapabilitiesCurrentVersion;
149 Returns the size of the class. Used for extensibility by deriving from this base class and adding new member variables.
150 Intended to be used for implementation of methods where this class reference is passed as function arguments.
151 Implementation of such methods can find out the whether the actual class passed is base or the derived one. So, if a new application
152 is made to run on an old implementation, an error may occur once the old implementation detects this by getting
153 the size information of the T class passed. Also, if old application is made to run on a new implementation, this can be
154 handled correctly if the derived class variables handling is done in a proper 'if-else' statement.
156 @return The size of the class.
158 @note The size will be modified when the T-class gets updated.
162 EXPORT_C TUint CCameraViewFinder::TViewFinderFadingCapabilities::Size() const
168 Returns the version of the class. Used for extensibility specially when the class members are not added but the Reserved
169 members get used at a later stage.
171 @return The version of the class.
173 @note The version will be modified when the T-class gets updated.
177 EXPORT_C TUint CCameraViewFinder::TViewFinderFadingCapabilities::Version() const
183 Constructor for the TViewFinderFadingEffect class.
184 Sets the size and version of this class.
188 EXPORT_C CCameraViewFinder::TViewFinderFadingEffect::TViewFinderFadingEffect()
190 iSize = sizeof(CCameraViewFinder::TViewFinderFadingEffect);
191 iVersion = KECamViewFinderFadingEffectCurrentVersion;
195 Returns the size of the class. Used for extensibility by deriving from this base class and adding new member variables.
196 Intended to be used for implementation of methods where this class reference is passed as function arguments.
197 Implementation of such methods can find out the whether the actual class passed is base or the derived one. So, if a new application
198 is made to run on an old implementation, an error may occur once the old implementation detects this by getting
199 the size information of the T class passed. Also, if old application is made to run on a new implementation, this can be
200 handled correctly if the derived class variables handling is done in a proper 'if-else' statement.
202 @return The size of the class.
204 @note The size will be modified when the T-class gets updated.
208 EXPORT_C TUint CCameraViewFinder::TViewFinderFadingEffect::Size() const
214 Returns the version of the class. Used for extensibility specially when the class members are not added but the Reserved
215 members get used at a later stage.
217 @return The version of the class.
219 @note The version will be modified when the T-class gets updated.
223 EXPORT_C TUint CCameraViewFinder::TViewFinderFadingEffect::Version() const
229 Retrieves the position of spots for a given spot combination which is to be displayed on a particular viewfinder.
231 @param aSpotCombination
232 A given spot combination. It is a bitfield where every bit represents the presence or absence of a particular spot.
234 @param aSpotsPosition
235 An array of TRect which represents the position of every spot present in the given spot combination.
236 The first member of this array maps the first spot present in the given spot combination from the least significant bit side.
237 The position of a spot is relative to the top-left corner of viewfinder.
239 @leave May leave with any error code.
241 @note These TRect specify the position of the spots relative to the targeted viewfinder space. Note
242 that spots could also be represented as points since point is a special case of rectangle.
244 @see CCamera::CCameraImageCaptureControl::GetMaximumSpotsL
245 @see CCamera::CCameraImageCaptureControl::GetSupportedSpotsCombinationL
246 @see CCamera::CCameraImageCaptureControl::GetSpotsCombinationL
247 @see CCamera::CCameraImageCaptureControl::SetSpotsCombination
249 void CCameraViewFinder::GetSpotsPositionL(TUint /*aSpotCombination*/, RArray<TRect>& /*aSpotsPosition*/) const
251 User::Leave(KErrNotSupported);
255 Retrieves the supported image enhancements.
257 @param aSupportedImageEnhancement
258 A bitfield of all supported TImageEnhancement to be provided to the client.
260 @leave May leave with any error code.
262 void CCameraViewFinder::GetSupportedImageEnhancementL(TUint& /*aSupportedImageEnhancement*/) const
264 User::Leave(KErrNotSupported);
268 Get the current image enhancement for the particular viewfinder.
270 @param aImageEnhancement
271 Currently used TImageEnhancement for the viewfinder display.
273 @leave May leave with any error code.
275 void CCameraViewFinder::GetImageEnhancementL(CCameraViewFinder::TImageEnhancement& /*aImageEnhancement*/) const
277 User::Leave(KErrNotSupported);
281 Set the image enhancement for a particular viewfinder.
283 @param aImageEnhancement
284 The TImageEnhancement value to be set
286 @leave KErrNotSupported If the implementation of this method is not present.
288 @note Event KUidECamEvent2ViewFinderImageEnhancement is used to notify clients about the image enhancement setting operation.
290 void CCameraViewFinder::SetImageEnhancementL(CCameraViewFinder::TImageEnhancement /*aImageEnhancement*/)
292 User::Leave(KErrNotSupported);
296 Retrieves the supported viewfinder magnification factor in terms of percentage. Changing the magnification factor allows
297 the user to view more or less area than what would normally appear on the captured image.
299 @param aSupportedVFMagnification
300 An array of TUint which retrieves the supported magnification factor. Every member of this array is a
301 magnification factor and represents a percentage unit. Note that every array member is multiplied by
302 KECamFineResolutionFactor to support fractional percentages as well. For example, 90.5% will be represented by 9050.
304 @leave May leave with any error code.
306 void CCameraViewFinder::GetSupportedVFMagnificationL(RArray<TUint>& /*aSupportedVFMagnification*/) const
308 User::Leave(KErrNotSupported);
312 Retrieves the current magnification factor for a particular viewfinder.
314 @param aVFMagnification
315 The current magnification factor used for the given viewfinder. It represents a percentage unit.
316 Note that the magnification factor is multiplied by KECamFineResolutionFactor to support fractional
317 percentages as well. For example, 90.5% will be represented by 9050.
319 @leave May leave with any error code.
321 void CCameraViewFinder::GetViewfinderMagnificationL(TUint& /*aVFMagnification*/) const
323 User::Leave(KErrNotSupported);
327 Set a particular magnification factor for the given viewfinder.
329 @param aVFMagnification
330 The magnification factor to be set. It represents a percentage unit.
331 Note that the magnification factor is multiplied by KECamFineResolutionFactor to support fractional
332 percentages as well. For example, 90.5% will be represented by 9050.
334 @leave KErrNotSupported If the implementation of this method is not present.
336 @note Event KUidECamEvent2ViewFinderMagnification is used to notify the requesting client about the setting of the
337 magnification factor.
339 void CCameraViewFinder::SetViewfinderMagnificationL(TUint /*aVFMagnification*/)
341 User::Leave(KErrNotSupported);
345 Factory function for creating the CCameraV2DirectViewFinder object.
348 A reference to a CCamera object providing the settings.
350 @param aDirectViewFinderObserver
351 Reference to the direct view finder observer.
353 @return A pointer to a fully constructed CCameraV2DirectViewFinder object.
355 @leave KErrNoMemory Out of memory Or any other system-wide error code.
357 @leave KErrExtensionNotSupported When NewL/NewDuplicateL used instead of New2L/NewDuplicate2L.
359 EXPORT_C CCamera::CCameraV2DirectViewFinder* CCamera::CCameraV2DirectViewFinder::NewL(CCamera& aCamera, MDirectViewFinderObserver& aDirectViewFinderObserver)
361 if(aCamera.CameraVersion() == KCameraDefaultVersion)
363 User::Leave(KErrExtensionNotSupported);
366 CCamera::CCameraV2DirectViewFinder* self = new (ELeave)CCamera::CCameraV2DirectViewFinder(aCamera);
367 CleanupStack::PushL(self);
368 self->ConstructL(aDirectViewFinderObserver);
369 CleanupStack::Pop(self);
374 void CCamera::CCameraV2DirectViewFinder::ConstructL(MDirectViewFinderObserver& aDirectViewFinderObserver)
379 User::LeaveIfError(KErrNotSupported);
383 iImpl->SetDirectViewFinderObserver(aDirectViewFinderObserver);
384 iImpl->SetDirectViewFinderHandle(this);
388 CCameraV2DirectViewFinder Constructor.
391 A reference to a CCamera object providing the settings.
393 CCamera::CCameraV2DirectViewFinder::CCameraV2DirectViewFinder(CCamera& aOwner): CCameraViewFinder(aOwner),iImpl(NULL)
399 @note The child objects created out of this direct viewfinder class object shall be delete beforehand. Various child
400 objects are snapshot and histograms.
402 EXPORT_C CCamera::CCameraV2DirectViewFinder::~CCameraV2DirectViewFinder()
406 iImpl->Release(this);
409 if (iImplBase != NULL)
411 iImplBase->Release();
416 Retrieve pointer to histogram API in order to use it specifically for a particular viewfinder.
418 @return Pointer to use histogram API specifically for the given viewfinder.
420 @leave May leave with any error code.
422 @note Different types of histogram may be used for a specific viewfinder. Every time this method will be called
423 on the CCameraV2DirectViewFinder class object, a new type of histogram will be created.
425 EXPORT_C CCamera::CCameraV2Histogram* CCamera::CCameraV2DirectViewFinder::CreateHistogramHandleL() const
427 MImplementationFactory* implFactory = NULL;
429 iImpl->CreateHistogramImplFactoryL(implFactory);
431 CleanupReleasePushL(*implFactory);
432 CCamera::CCameraV2Histogram* histogram = CCamera::CCameraV2Histogram::CreateL(iOwner, *implFactory);
433 CleanupStack::Pop(implFactory);
435 implFactory->Release();
440 Retrieve pointer to image processing API in order to use it specifically for a particular viewfinder.
442 @return Pointer to use image processing API specifically for the given viewfinder.
444 @leave May leave with any error code.
446 EXPORT_C CCamera::CCameraImageProcessing* CCamera::CCameraV2DirectViewFinder::GetTransformationHandleL() const
448 MImplementationFactory* implFactory = NULL;
450 iImpl->GetImageProcessingImplFactoryL(implFactory);
452 CleanupReleasePushL(*implFactory);
453 CCamera::CCameraImageProcessing* imgProc = CCamera::CCameraImageProcessing::CreateL(iOwner, *implFactory);
454 CleanupStack::Pop(implFactory);
456 implFactory->Release();
461 Retrieve pointer to direct snapshot API in order to use it for displaying the snapshots for still images directly on the
462 given direct viewfinder screen.
464 @return Pointer to use direct snapshot API specifically for the given viewfinder.
466 @leave May leave with any error code.
468 @note Direct snapshot API is not supposed to be used for snapshots for video.
470 EXPORT_C CCamera::CCameraDirectSnapshot* CCamera::CCameraV2DirectViewFinder::GetDirectSnapshotHandleL() const
472 return CCamera::CCameraDirectSnapshot::CreateL(const_cast<CCamera::CCameraV2DirectViewFinder&>(*this));
476 Creates a new viewfinder and starts transfer of view finder data to the given portion of the screen using direct
479 The aScreenRect parameter is in screen coordinates and may be modified if,
480 for example, the camera requires the destination to have a certain byte alignment, and so on.
483 Window server session.
489 Portion of the screen to which view finder data is to be
490 transferred. This is in screen co-ordinates and may be modified if, for example,
491 the camera requires the destination to have a certain byte alignment.
493 @leave KErrInUse if another direct viewfinder is running with the same set of window parameters. May leave with any other error code.
495 @note MDirectViewFinderObserver::DirectViewFinderFirstFrameDisplayed() will be used to notify clients that the first
496 frame has been displayed.
498 EXPORT_C void CCamera::CCameraV2DirectViewFinder::StartViewFinderDirectL(RWsSession& aWs, CWsScreenDevice& aScreenDevice,
499 RWindowBase& aWindow, TRect& aScreenRect)
501 iImpl->StartViewFinderDirectL(aWs, aScreenDevice, aWindow, aScreenRect);
505 Creates a new viewfinder and starts transfer of view finder data to the given portion of the screen using direct screen
506 access and also clips to the specified portion of the screen.
508 The view finder has the same size and position as aScreenRect but is only
509 visible in the intersection of aScreenRect and aClipRect. May leave with KErrNotSupported
510 or KErrNotReady if Reserve() has not been called, or has not yet completed.
513 Window server session.
519 Portion of the screen to which view finder data is to be
520 transferred. This is in screen coordinates and may be modified if, for example,
521 the camera requires the destination to have a certain byte alignment.
523 The rectangle to which the screen will be clipped.
525 @leave KErrInUse if another direct viewfinder is running with the same set of window parameters. May leave with any other error code.
527 @note MDirectViewFinderObserver::DirectViewFinderFirstFrameDisplayed() will be used to notify clients that the first
528 frame has been displayed.
530 EXPORT_C void CCamera::CCameraV2DirectViewFinder::StartViewFinderDirectL(RWsSession& aWs, CWsScreenDevice& aScreenDevice,
531 RWindowBase& aWindow, TRect& aScreenRect, TRect& aClipRect)
533 iImpl->StartViewFinderDirectL(aWs, aScreenDevice, aWindow, aScreenRect, aClipRect);
537 Retrieves the parameters associated with the direct viewfinder.
540 Retrieves the screen number on which the direct viewfinder is supposed to run.
543 Retrieves the TRect which identifies the portion of the screen to which view finder data is to be transferred.
546 Retrieves the TRect which identifies the rectangle to which the screen will be clipped.
548 @leave May leave with any error code.
550 EXPORT_C void CCamera::CCameraV2DirectViewFinder::GetDirectViewFinderPropertiesL(TInt& aScreenNumber, TRect& aScreenRect,
551 TRect& aClipRect) const
553 iImpl->GetDirectViewFinderPropertiesL(aScreenNumber, aScreenRect, aClipRect);
557 Pauses the direct viewfinder.
559 EXPORT_C void CCamera::CCameraV2DirectViewFinder::PauseViewFinderDirect()
561 iImpl->PauseViewFinderDirect();
565 Resumes the direct viewfinder
567 @note MDirectViewFinderObserver::DirectViewFinderFirstFrameDisplayed() will be used to notify clients that the first
568 frame has been displayed.
570 EXPORT_C void CCamera::CCameraV2DirectViewFinder::ResumeViewFinderDirect()
572 iImpl->ResumeViewFinderDirect();
576 Retrieves the state of the direct viewfinder.
578 @param aViewFinderState
579 Retrieves the state of the direct viewfinder.
581 @leave May leave with any error code.
583 EXPORT_C void CCamera::CCameraV2DirectViewFinder::GetViewFinderStateL(CCamera::CCameraV2DirectViewFinder::TViewFinderState& aViewFinderState) const
585 iImpl->GetViewFinderStateL(aViewFinderState);
589 Stops the direct viewfinder.
591 EXPORT_C void CCamera::CCameraV2DirectViewFinder::StopDirectViewFinder()
593 iImpl->StopDirectViewFinder();
597 Gets the handle to the implementer's MCameraV2DirectViewFinder derived class.
599 void CCamera::CCameraV2DirectViewFinder::SetImplHandle()
603 iImpl = static_cast<MCameraV2DirectViewFinder*>(iOwner.CustomInterface(KECamMCameraV2DirectViewFinderUid));
608 Gets the handle to the implementer's MCameraViewFinder derived class for v2 direct viewfinder.
610 void CCamera::CCameraV2DirectViewFinder::SetImplBaseHandle()
612 if(iImplBase == NULL)
614 iImplBase = static_cast<MCameraViewFinder*>(iOwner.CustomInterface(KECamMCameraBaseV2DirectViewFinderUid));
618 Provides the interface pointer for the MCameraV2DirectViewFinder implementation.
620 @return Interface pointer for MCameraV2DirectViewFinder implementation.
622 MCameraV2DirectViewFinder* CCamera::CCameraV2DirectViewFinder::Impl()
628 Factory function for creating the CCameraClientViewFinder object.
631 A reference to a CCamera object providing the settings.
633 @param aClientViewFinderObserver
634 Reference to the client view finder observer.
636 @return A pointer to a fully constructed CCameraClientViewFinder object.
638 @leave KErrNoMemory Out of memory or any other system-wide error code.
640 @leave KErrExtensionNotSupported When NewL/NewDuplicateL used instead of New2L/NewDuplicate2L.
642 EXPORT_C CCamera::CCameraClientViewFinder* CCamera::CCameraClientViewFinder::NewL(CCamera& aCamera, MClientViewFinderObserver& aClientViewFinderObserver)
644 if(aCamera.CameraVersion() == KCameraDefaultVersion)
646 User::Leave(KErrExtensionNotSupported);
649 CCamera::CCameraClientViewFinder* self = new (ELeave)CCamera::CCameraClientViewFinder(aCamera);
650 CleanupStack::PushL(self);
651 self->ConstructL(aClientViewFinderObserver);
652 CleanupStack::Pop(self);
656 void CCamera::CCameraClientViewFinder::ConstructL(MClientViewFinderObserver& aClientViewFinderObserver)
661 User::LeaveIfError(KErrNotSupported);
665 iImpl->SetClientViewFinderObserver(aClientViewFinderObserver);
666 iImpl->SetClientViewFinderHandle(this);
670 CCameraClientViewFinder Constructor.
673 a reference to a CCamera object providing the settings.
675 CCamera::CCameraClientViewFinder::CCameraClientViewFinder(CCamera& aOwner): CCameraViewFinder(aOwner), iImpl(NULL)
680 Retrieve pointer to histogram API in order to use it specifically for a particular viewfinder.
682 @return Pointer to use histogram API specifically for the given viewfinder.
684 @leave May leave with any error code.
686 @note Different types of histogram may be used for a specific viewfinder. Every time this method will be called
687 on the CCameraClientViewFinder class object, a new type of histogram will be created.
689 EXPORT_C CCamera::CCameraV2Histogram* CCamera::CCameraClientViewFinder::CreateHistogramHandleL() const
691 MImplementationFactory* implFactory = NULL;
693 iImpl->CreateHistogramImplFactoryL(implFactory);
695 CleanupReleasePushL(*implFactory);
696 CCamera::CCameraV2Histogram* histogram = CCamera::CCameraV2Histogram::CreateL(iOwner, *implFactory);
697 CleanupStack::Pop(implFactory);
699 implFactory->Release();
704 Retrieve pointer to image processing API in order to use it specifically for a particular viewfinder.
706 @return Pointer to use image processing API specifically for the given viewfinder.
708 @leave May leave with any error code.
710 EXPORT_C CCamera::CCameraImageProcessing* CCamera::CCameraClientViewFinder::GetTransformationHandleL() const
712 MImplementationFactory* implFactory = NULL;
714 iImpl->GetImageProcessingImplFactoryL(implFactory);
716 CleanupReleasePushL(*implFactory);
717 CCamera::CCameraImageProcessing* imgProc = CCamera::CCameraImageProcessing::CreateL(iOwner, *implFactory);
718 CleanupStack::Pop(implFactory);
720 implFactory->Release();
725 Creates a new viewfinder and starts transfer of view finder data.
727 Availability of viewfinder data is notified by MClientViewFinderObserver::ViewFinderBufferReady().
730 The screen number on which the client viewfinder is supposed to run.
732 The image format requested by the client.
734 On return, the size used. The size may be modified by the implementation because of hardware constraints and
737 @leave May leave with any error code.
739 @note KECamDefaultViewFinderHandle is used to refer to the viewfinder started using CCamera methods.
741 @see CCamera::StartViewFinderL(TFormat aImageFormat,TSize& aSize)
743 EXPORT_C void CCamera::CCameraClientViewFinder::StartClientViewFinderL(TInt aScreenNumber, CCamera::TFormat aImageFormat, TSize& aSize)
745 iImpl->StartClientViewFinderL(aScreenNumber, aImageFormat, aSize);
749 Creates a new viewfinder and starts transfer of view finder data. Also, clips the picture to the specified clip rectangle.
751 Availability of viewfinder data is notified by MClientViewFinderObserver::ViewFinderBufferReady().
753 The picture is the size of the intersection of aSize and aClipRect, not simply
754 aSize padded with white space.
757 The screen number on which the client viewfinder is supposed to run.
761 On return, the size used. The size may be modified by the implementation because of hardware constraints and
764 Required clip rectangle. May be modified if, for example,
765 the camera only supports certain byte alignments.
767 @leave May leave with any error code.
769 @note KECamDefaultViewFinderHandle is used to refer viewfinder started using CCamera methods.
771 @see CCamera::StartViewFinderL(TFormat aImageFormat,TSize& aSize,TRect& aClipRect)
773 EXPORT_C void CCamera::CCameraClientViewFinder::StartClientViewFinderL(TInt aScreenNumber, CCamera::TFormat aImageFormat, TSize& aSize, TRect& aClipRect)
775 iImpl->StartClientViewFinderL(aScreenNumber, aImageFormat, aSize, aClipRect);
779 Retrieves the state of the client viewfinder.
782 ETrue indicates that client viewfinder is active.
783 EFalse indicates that client viewfinder is not active.
785 @leave May leave with any error code.
787 EXPORT_C void CCamera::CCameraClientViewFinder::GetClientViewFinderStateL(TBool& aIsActive) const
789 iImpl->GetClientViewFinderStateL(aIsActive);
793 Retrieves the parameters associated with the client viewfinder.
796 Retrieves the screen number on which the client viewfinder is supposed to run.
799 Retrieves the image format of the client viewfinder.
802 Retrieves the size used for the client viewfinder.
805 Retrieves the clip rectangle. If not specified, the clipping is retrieved as a TRect having origin as top left
806 corner and the size as 'aSize'.
808 @leave May leave with any error code.
810 EXPORT_C void CCamera::CCameraClientViewFinder::GetClientViewFinderPropertiesL(TInt& aScreenNumber, CCamera::TFormat& aImageFormat, TSize& aSize, TRect& aClipRect) const
812 iImpl->GetClientViewFinderPropertiesL(aScreenNumber, aImageFormat, aSize, aClipRect);
816 Stop the client viewfinder.
818 EXPORT_C void CCamera::CCameraClientViewFinder::StopClientViewFinder()
820 iImpl->StopClientViewFinder();
824 Retrieves the client viewfinder buffer. Client calls this method after being notified about availability of viewfinder
825 data via MClientViewFinderObserver::ViewFinderBufferReady().
827 @param aClientViewFinderBuffer
828 Reference to MCameraBuffer2 which retrieves the client viewfinder data.
830 @leave May leave with any error code.
832 EXPORT_C void CCamera::CCameraClientViewFinder::GetViewFinderBufferL(MCameraBuffer2& aClientViewFinderBuffer) const
834 iImpl->GetViewFinderBufferL(aClientViewFinderBuffer);
839 @note The child objects created out of this client viewfinder class object shall be delete beforehand. Various child
840 objects are snapshot and histograms.
842 EXPORT_C CCamera::CCameraClientViewFinder::~CCameraClientViewFinder()
846 iImpl->Release(this);
849 if (iImplBase != NULL)
851 iImplBase->Release();
856 Gets the handle to the implementer's MCameraClientViewFinder derived class.
858 void CCamera::CCameraClientViewFinder::SetImplHandle()
862 iImpl = static_cast<MCameraClientViewFinder*>(iOwner.CustomInterface(KECamMCameraClientViewFinderUid));
867 Gets the handle to the implementer's MCameraViewFinder derived class for client viewfinder.
869 void CCamera::CCameraClientViewFinder::SetImplBaseHandle()
871 if(iImplBase == NULL)
873 iImplBase = static_cast<MCameraViewFinder*>(iOwner.CustomInterface(KECamMCameraBaseClientViewFinderUid));
880 Factory function that creates a new camera direct snapshot object.
882 @param aDirectViewFinder
883 A reference to the camera direct viewfinder object for which a camera direct snapshot object is to be created.
885 @leave KErrNoMemory if out of memory; also any system wide error.
887 @return A pointer to a fully constructed camera direct snapshot object.
889 EXPORT_C CCamera::CCameraDirectSnapshot* CCamera::CCameraDirectSnapshot::CreateL(CCamera::CCameraV2DirectViewFinder& aDirectViewFinder)
891 CCamera::CCameraDirectSnapshot* self = new (ELeave) CCamera::CCameraDirectSnapshot();
892 CleanupStack::PushL(self);
893 self->ConstructL(aDirectViewFinder);
894 CleanupStack::Pop(self);
901 CCameraDirectSnapshot second phase constructor
903 Function used to initialise internal state of the object.
905 @param aDirectViewFinder
906 A reference to the camera direct viewfinder object on which the direct snapshot will be displayed.
908 @leave KErrNoMemory Out of memory; or any other error code as well.
910 @note This method is supposed to be used by this class only.
912 void CCamera::CCameraDirectSnapshot::ConstructL(CCamera::CCameraV2DirectViewFinder& aDirectViewFinder)
914 iImpl = static_cast<MCameraDirectSnapshot*>(DirectViewFinderImpl(aDirectViewFinder)->GetDirectSnapshotImpl(KECamMCameraDirectSnapshotUid));
918 User::Leave(KErrNotSupported);
921 iImpl->SetDirectViewFinder(&aDirectViewFinder);
925 Constructor for the CCameraDirectSnapshot class.
927 CCamera::CCameraDirectSnapshot::CCameraDirectSnapshot():iImpl(NULL)
932 Provides the interface pointer for the concrete implementation of CCameraV2DirectViewFinder.
934 @param aDirectViewFinder
935 A reference to the camera direct viewfinder object
937 @return interface pointer for the concrete implementation of CCameraV2DirectViewFinder.
939 MCameraV2DirectViewFinder* CCamera::CCameraDirectSnapshot::DirectViewFinderImpl(CCamera::CCameraV2DirectViewFinder& aDirectViewFinder)
941 return aDirectViewFinder.Impl();
947 EXPORT_C CCamera::CCameraDirectSnapshot::~CCameraDirectSnapshot()
956 Retrieve the version2 direct viewfinder object out of which this direct snapshot has been created. This information may be
957 required by the client in order to map the direct snapshot object with its parent version2 direct viewfinder object or also
958 to retrieve properties of its parent version2 direct viewfinder object.
960 @param aDirectViewFinder
961 A pointer to the camera version2 direct viewfinder object on which the direct snapshot will be displayed.
963 @leave May leave with any error code.
965 EXPORT_C void CCamera::CCameraDirectSnapshot::GetDirectViewFinderL(CCamera::CCameraV2DirectViewFinder*& aDirectViewFinder) const
967 iImpl->GetDirectViewFinderL(aDirectViewFinder);
971 Enable the direct snapshot. The direct snapshot will be displayed on the parent direct viewfinder screen. The screen size
972 of the snapshot will be the same as that of the parent direct viewfinder screen.
974 The direct snapshot can be displayed only for still images.
976 @param aDirectSnapshotParameters
977 The desired direct snapshot parameter.
979 @leave May leave with any error code.
981 EXPORT_C void CCamera::CCameraDirectSnapshot::EnableDirectSnapshotL(CCamera::CCameraDirectSnapshot::TDirectSnapshotParameters& aDirectSnapshotParameters)
983 iImpl->EnableDirectSnapshotL(aDirectSnapshotParameters);
987 Disable the direct snapshot. The direct snapshot will not be displayed on the parent direct viewfinder screen.
989 EXPORT_C void CCamera::CCameraDirectSnapshot::DisableDirectSnapshot()
991 iImpl->DisableDirectSnapshot();
995 Retrieves the current state for direct snapshot.
997 @param aDirectSnapshotParameters
998 Retrieves the current state for direct snapshot.
1000 @leave May leave with any error code.
1002 EXPORT_C void CCamera::CCameraDirectSnapshot::GetDirectSnapshotStateL(CCamera::CCameraDirectSnapshot::TDirectSnapshotState& aDirectSnapshotState) const
1004 iImpl->GetDirectSnapshotStateL(aDirectSnapshotState);
1008 Retrieves the direct snapshot parameters.
1010 @param aDirectSnapshotParameters
1011 Retrieves the direct snapshot parameter of type TDirectSnapshotParameters.
1013 @leave May leave with any error code.
1015 EXPORT_C void CCamera::CCameraDirectSnapshot::GetDirectSnapshotParametersL(CCamera::CCameraDirectSnapshot::TDirectSnapshotParameters& aDirectSnapshotParameters) const
1017 iImpl->GetDirectSnapshotParametersL(aDirectSnapshotParameters);
1021 Sets the direct snapshot parameters.
1023 @param aDirectSnapshotParameters
1024 The desired direct snapshot parameter of type TDirectSnapshotParameters.
1026 @leave May leave with any error code.
1028 EXPORT_C void CCamera::CCameraDirectSnapshot::SetDirectSnapshotParametersL(const CCamera::CCameraDirectSnapshot::TDirectSnapshotParameters& aDirectSnapshotParameters)
1030 iImpl->SetDirectSnapshotParametersL(aDirectSnapshotParameters);
1034 Constructor for the TDirectSnapshotParameters class.
1035 Sets the size and version of this class.
1037 EXPORT_C CCamera::CCameraDirectSnapshot::TDirectSnapshotParameters::TDirectSnapshotParameters()
1039 iSize = sizeof(CCamera::CCameraDirectSnapshot::TDirectSnapshotParameters);
1040 iVersion = KECamViewFinderFadingEffectCurrentVersion;
1044 Returns the size of the class. Used for extensibility by deriving from this base class and adding new member variables.
1045 Intended to be used for implementation of methods where this class reference is passed as function arguments.
1046 Implementation of such methods can find out the whether the actual class passed is base or the derived one. So, if a new application
1047 is made to run on an old implementation, an error may occur once the old implementation detects this by getting
1048 the size information of the T class passed. Also, if old application is made to run on a new implementation, this can be
1049 handled correctly if the derived class variables handling is done in a proper 'if-else' statement.
1051 @return The size of the class.
1053 @note The size will be modified when the T-class gets updated.
1055 EXPORT_C TUint CCamera::CCameraDirectSnapshot::TDirectSnapshotParameters::Size() const
1061 Returns the version of the class. Used for extensibility specially when the class members are not added but the Reserved
1062 members get used at a later stage.
1064 @return The version of the class.
1066 @note The version will be modified when the T-class gets updated.
1068 EXPORT_C TUint CCamera::CCameraDirectSnapshot::TDirectSnapshotParameters::Version() const
1074 Indicates whether the aspect ratio of the direct snapshot image has to maintained (if ETrue) or not (if EFalse)
1077 @return TBool: ETrue implies aspect ratio has to be maintained, EFalse otherwise.
1079 @see CCamera::CCameraDirectSnapshot::TDirectSnapshotParameters::iIsAspectRatioMaintained
1081 EXPORT_C TBool CCamera::CCameraDirectSnapshot::TDirectSnapshotParameters::IsAspectRatioMaintained() const
1083 if (iIsAspectRatioMaintained)
1094 Sets the state to inform whether the aspect ratio of the direct snapshot image has to be maintained or not while scaling
1097 @param aIsAspectRatioMaintained
1098 ETrue implies must be maintained, EFalse otherwise.
1100 @see CCamera::CCameraDirectSnapshot::TDirectSnapshotParameters::iIsAspectRatioMaintained
1102 EXPORT_C void CCamera::CCameraDirectSnapshot::TDirectSnapshotParameters::SetAspectRatioState(TBool aIsAspectRatioMaintained)
1104 iIsAspectRatioMaintained = static_cast<TUint>(aIsAspectRatioMaintained);