sl@0: // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // extendedfunctionality.h sl@0: // sl@0: // sl@0: sl@0: #ifndef EXTENDEDFUNCTIONALITY_H sl@0: #define EXTENDEDFUNCTIONALITY_H sl@0: sl@0: #include sl@0: #include sl@0: sl@0: #include "ECamUnitTestPlugin.h" sl@0: #include sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: class CCamUnitTestPlugin; sl@0: sl@0: const TInt KSupportedDirectVCType = 0; sl@0: const TInt KSupportedClientVCType = 1; sl@0: sl@0: // sl@0: // camera buffer 2 sl@0: class RCamBuffer2 : public MCameraBuffer2 sl@0: { sl@0: public: sl@0: RCamBuffer2(CFbsBitmap*& aFrame): iAvailable(ETrue), iFrame(aFrame) {} sl@0: virtual TInt NumFrames() {return 0;} sl@0: virtual TDesC8* DataL(TInt aFrameIndex) {if (aFrameIndex != 0) { User::Leave(KErrArgument); } return NULL; } sl@0: virtual CFbsBitmap& BitmapL(TInt aFrameIndex) {if (aFrameIndex != 0) { User::Leave(KErrArgument); } return *iFrame;} sl@0: virtual RChunk& ChunkL() { return iChunk;} sl@0: virtual TInt ChunkOffsetL(TInt aFrameIndex) {if (aFrameIndex != 0) { User::Leave(KErrArgument); } return 0;} sl@0: virtual TInt FrameSize(TInt aFrameIndex) {if (aFrameIndex != 0) { User::Leave(KErrArgument); } return 0; } sl@0: virtual void Release() {iAvailable = ETrue;} sl@0: sl@0: virtual TInt GetInterfaceUids(RArray& aInterfaceUids) {aInterfaceUids.Reset(); return KErrNotSupported;} sl@0: virtual TInt CustomInterface(TUid /*aInterface*/, TAny*& aPtrInterface) {aPtrInterface = NULL; return KErrNotSupported;} sl@0: sl@0: public: sl@0: TBool iAvailable; sl@0: CFbsBitmap*& iFrame; sl@0: RChunk iChunk; sl@0: }; sl@0: sl@0: // sl@0: //pre image capture control impl sl@0: class CCamPreImageCaptureControl: public CBase, public MCameraPreImageCaptureControl sl@0: { sl@0: public: sl@0: static CCamPreImageCaptureControl* NewL(CCamUnitTestPlugin& aOwner); sl@0: ~CCamPreImageCaptureControl(); sl@0: sl@0: void Release(); sl@0: void SetPreImageCaptureControlObserver(MPreImageCaptureControlObserver& aPreImageCaptureControlObserver); sl@0: void GetDirectSnapshotSupportInfoL(TUint& aDirectSnapshotSupportInfo) const; sl@0: void GetSupportedEmbeddedStillCaptureSettingsL(RArray& aSupportedEmbeddedStillCaptureSettings) const; sl@0: void GetSupportedDirectSavingTypeL(CCamera::CCameraPreImageCaptureControl::TDirectSavingType& aSupportedDirectSavingType) const; sl@0: void SetSequentialImageFilenameL(const TDesC8& aFilename, TInt aStartingSequenceNumber); sl@0: void SetLowerResolutionSequentialImageFilenameL(const TDesC8& aLowerResolutionFilename, TInt aStartingSequenceNumber); sl@0: void GetDirectSavingTypeL(CCamera::CCameraPreImageCaptureControl::TDirectSavingType& aDirectSavingType) const; sl@0: void SetDirectSavingTypeL(CCamera::CCameraPreImageCaptureControl::TDirectSavingType aDirectSavingType); sl@0: void GetCaptureEventSupportInfoL(TUint& aSupportedDriveModes) const; sl@0: void GetImageFormatsSupportedL(TUint& aImageFormatsSupported, const TSize& aSize) const; sl@0: void GetPixelAspectsSupportedL(TUint& aPixelAspectsSupported, CCamera::TFormat aImageFormat, const TSize& aSize) const; sl@0: void PrepareImageCapture(const CCamera::CCameraPreImageCaptureControl::TPrepareImageParameters& sl@0: aPrepareImageParameters, MCaptureImageObserver& aCaptureImageObserver); sl@0: void GetImageMaxMemorySizeSettingSupportInfoL(TBool& aIsImageMaxMemorySizeSettingSupported) const; sl@0: void GetImageMaxMemorySizeL(TUint& aMemorySize) const; sl@0: void GetSupportedProcessingOptionsL(TUint& aSupportedProcessingOptions) const; sl@0: sl@0: inline MPreImageCaptureControlObserver* PreImageCaptureControlObserver() {return iPreImageCaptureControlObserver;} sl@0: sl@0: private: sl@0: CCamPreImageCaptureControl(CCamUnitTestPlugin& aOwner); sl@0: sl@0: void CreateCaptureImageL(CCamera::CCameraImageCapture*& aCameraImageCapture, const CCamera::CCameraPreImageCaptureControl:: sl@0: TPrepareImageParameters& aPrepareImageParameters, MCaptureImageObserver& aCaptureImageObserver); sl@0: sl@0: private: sl@0: CCamUnitTestPlugin& iOwner; sl@0: MPreImageCaptureControlObserver* iPreImageCaptureControlObserver; sl@0: }; sl@0: sl@0: // sl@0: //image capture impl sl@0: class CCamSnapshotForImage; sl@0: class CCamImgProcImpForImage; sl@0: class CCamPostImageCaptureControl; sl@0: sl@0: class CCamImageCapture: public CBase, public MCameraImageCapture sl@0: { sl@0: friend class CSnapshotFactoryForImage; sl@0: friend class CImgProcFactoryForImage; sl@0: friend class CCamPostImageCaptureControl; sl@0: sl@0: public: sl@0: static CCamImageCapture* NewL(CCamUnitTestPlugin& aOwner); sl@0: ~CCamImageCapture(); sl@0: sl@0: void Release(CCamera::CCameraImageCapture* aCameraImageCapture); sl@0: void CreateHistogramImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const; sl@0: void GetSnapshotImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const; sl@0: void GetImageProcessingImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const; sl@0: void SetCaptureImageObserver(MCaptureImageObserver& aCaptureImageObserver); sl@0: void GetPrepareImageParametersL(CCamera::CCameraPreImageCaptureControl::TPrepareImageParameters& aPrepareImageParameters) const; sl@0: void SetPrepareImageParameters(const CCamera::CCameraPreImageCaptureControl::TPrepareImageParameters& aPrepareImageParameters); sl@0: TAny* CreatePostImageCaptureControlImpl(TUid aInterface, TPostCaptureControlId aPostCaptureControlId); sl@0: void CaptureImage(CCamera::CCameraImageCapture* aCameraImageCapture); sl@0: void CancelCaptureImage(); sl@0: void GetNumImagesExposedL(TUint& aNumImagesExposed) const; sl@0: void GetNumTotalImagesL(TUint& aNumTotalImages) const; sl@0: void GetPostCaptureControlHandleL(CCamera::CCameraPostImageCaptureControl*& aPostCaptureControlHandle, sl@0: TPostCaptureControlId aPostCaptureControlId) const; sl@0: void SetCaptureImagePriorityL(TECamImagePriority aCaptureImagePriority); sl@0: void GetCaptureImagePriorityL(TECamImagePriority& aCaptureImagePriority) const; sl@0: void PauseProcessing(TUint aProcessingType); sl@0: void ResumeProcessingL(TUint aProcessingType); sl@0: sl@0: inline MCaptureImageObserver* CaptureImageObserver() {return iCaptureImageObserver;} sl@0: inline CCamera::CCameraImageCapture* CameraImageCapture() {return iCameraImageCapture;} sl@0: inline CCamUnitTestPlugin& Owner() {return iOwner;} sl@0: sl@0: private: sl@0: CCamImageCapture(CCamUnitTestPlugin& aOwner); sl@0: void CreatePostImageCaptureControlL(CCamera::CCameraPostImageCaptureControl*& aPostCaptureControlHandle, sl@0: TPostCaptureControlId aPostCaptureControlId); sl@0: sl@0: private: sl@0: CCamUnitTestPlugin& iOwner; sl@0: MCaptureImageObserver* iCaptureImageObserver; sl@0: CCamera::CCameraPreImageCaptureControl::TPrepareImageParameters iPrepareImageParameters; sl@0: sl@0: mutable CCamSnapshotForImage* iSnapshotImpForImage; sl@0: CCamImgProcImpForImage* iCamImgProcImpForImage; sl@0: RArray iArrayPostCaptureControlId; sl@0: RArray iArrayPostCaptureControlImpl; sl@0: RArray iArrayPostCaptureControlHandle; sl@0: sl@0: CCamera::CCameraImageCapture* iCameraImageCapture; sl@0: }; sl@0: sl@0: // sl@0: //post image capture control impl sl@0: class CCamPostImageCaptureControl: public CBase, public MCameraPostImageCaptureControl sl@0: { sl@0: public: sl@0: static CCamPostImageCaptureControl* NewL(CCamImageCapture& aCamImageCaptureImpl); sl@0: ~CCamPostImageCaptureControl(); sl@0: sl@0: void Release(TPostCaptureControlId aPostCaptureControlId); sl@0: void GetImageSequenceNumberL(TUint& aSequenceNumber) const; sl@0: void CancelImage(); sl@0: void SetImagePriorityL(TECamImagePriority aImagePriority); sl@0: void GetImagePriorityL(TECamImagePriority& aImagePriority) const; sl@0: void PauseProcessing(TUint aProcessingType); sl@0: void ResumeProcessingL(TUint aProcessingType); sl@0: void GetImageBufferL(MCameraImageBuffer& aCameraImageBuffer) const; sl@0: void GetImageStateL(CCamera::CCameraPostImageCaptureControl::TImageState& aImageState) const; sl@0: void GetBufferStateL(CCamera::CCameraPostImageCaptureControl::TBufferState& aBufferState) const; sl@0: sl@0: inline CCamImageCapture& CamImageCaptureImpl() {return iCamImageCaptureImpl;} sl@0: sl@0: private: sl@0: CCamPostImageCaptureControl(CCamImageCapture& aCamImageCaptureImpl); sl@0: sl@0: private: sl@0: CCamImageCapture& iCamImageCaptureImpl; sl@0: }; sl@0: sl@0: // sl@0: //video capture control impl sl@0: class CCamSnapshotForVideo; sl@0: class CCamVideoCaptureControl : public CBase, public MCameraVideoCaptureControl sl@0: { sl@0: friend class CSnapshotFactoryForVideo; sl@0: sl@0: public: sl@0: static CCamVideoCaptureControl* NewL(CCamUnitTestPlugin& aOwner); sl@0: ~CCamVideoCaptureControl(); sl@0: sl@0: void Release(); sl@0: void CreateHistogramImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const; sl@0: void GetSnapshotImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const; sl@0: void GetImageProcessingImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const; sl@0: void SetCaptureVideoObserver(MCaptureVideoObserver& aCaptureVideoObserver); sl@0: void GetVideoFormatsSupportedL(TUint& aVideoFormatsSupported, const TSize& aSize) const; sl@0: void GetPixelAspectsSupportedL(TUint& aPixelAspectsSupported, CCamera::TFormat aVideoFormat, const TSize& aSize) const; sl@0: void GetEmbeddedStillCaptureSupportInfoL(TInt& aSupportedEmbeddedStillCaptureTypes) const; sl@0: void PrepareVideoCapture(const CCamera::CCameraVideoCaptureControl::TPrepareVideoParameters& aPrepareVideoParameters); sl@0: void GetRangeAffectedSettingsL(RArray& aRangeAffectedSettings) const; sl@0: void GetValueAffectedSettingsL(RArray& aValueAffectedSettings) const; sl@0: void GetDisabledSettingsL(RArray& aDisabledSettings) const; sl@0: void ReleaseVideoResource(); sl@0: void StartVideoCaptureL(); sl@0: void StopVideoCapture(); sl@0: void PauseVideoCapture(); sl@0: void ResumeVideoCaptureL(); sl@0: void GetFadingEffectStateL(CCamera::CCameraVideoCaptureControl::TFadingEffectState& aFadingEffectState) const; sl@0: void SetFadingEffectState(CCamera::CCameraVideoCaptureControl::TFadingEffectState aFadingEffectState); sl@0: void GetVideoCaptureStateL(CCamera::CCameraVideoCaptureControl::TVideoCaptureState& aVideoCaptureState) const; sl@0: void GetVideoCaptureSupportInfoL(TInt& aSupportedVideoCaptureTypes) const; sl@0: void GetPrepareVideoParametersL(CCamera::CCameraVideoCaptureControl::TPrepareVideoParameters& aPrepareVideoParameters) const; sl@0: sl@0: inline MCaptureVideoObserver* CaptureVideoObserver() {return iCaptureVideoObserver;} sl@0: inline CCamUnitTestPlugin& Owner() {return iOwner;} sl@0: sl@0: private: sl@0: CCamVideoCaptureControl(CCamUnitTestPlugin& aOwner); sl@0: void ConstructL(); sl@0: sl@0: private: sl@0: CCamUnitTestPlugin& iOwner; sl@0: MCaptureVideoObserver* iCaptureVideoObserver; sl@0: CCamSnapshotForVideo* iSnapshotImpForVideo; sl@0: CCamera::CCameraVideoCaptureControl::TPrepareVideoParameters iPrepareVideoParameters; sl@0: CFbsBitmap* iBitmap; sl@0: }; sl@0: sl@0: // sl@0: //direct snapshot implementation to be used by version2 direct viewfinder. sl@0: class CCamDirectSnapshot : public CBase, public MCameraDirectSnapshot sl@0: { sl@0: public: sl@0: sl@0: static CCamDirectSnapshot* NewL(); sl@0: ~CCamDirectSnapshot(); sl@0: sl@0: void Release(); sl@0: void SetDirectViewFinder(const CCamera::CCameraV2DirectViewFinder* aDirectViewFinder); sl@0: void GetDirectViewFinderL(CCamera::CCameraV2DirectViewFinder*& aDirectViewFinder) const; sl@0: void EnableDirectSnapshotL(CCamera::CCameraDirectSnapshot::TDirectSnapshotParameters& aDirectSnapshotParameters); sl@0: void DisableDirectSnapshot(); sl@0: void GetDirectSnapshotStateL(CCamera::CCameraDirectSnapshot::TDirectSnapshotState& aDirectSnapshotState) const; sl@0: void GetDirectSnapshotParametersL(CCamera::CCameraDirectSnapshot::TDirectSnapshotParameters& aDirectSnapshotParameters) const; sl@0: void SetDirectSnapshotParametersL(const CCamera::CCameraDirectSnapshot::TDirectSnapshotParameters& aDirectSnapshotParameters); sl@0: sl@0: private: sl@0: CCamDirectSnapshot(); sl@0: sl@0: private: sl@0: const CCamera::CCameraV2DirectViewFinder* iCameraV2DirectVF; sl@0: CCamera::CCameraDirectSnapshot::TDirectSnapshotParameters iDirectSnapshotParameters; sl@0: CCamera::CCameraDirectSnapshot::TDirectSnapshotState iDirectSnapshotState; sl@0: }; sl@0: sl@0: // sl@0: //V2 direct viewfinder impl sl@0: class CCamV2DirectViewFinder: public CBase, public MCameraViewFinder, public MCameraV2DirectViewFinder sl@0: { sl@0: public: sl@0: static CCamV2DirectViewFinder* NewL(CCamUnitTestPlugin& aOwner); sl@0: ~CCamV2DirectViewFinder(); sl@0: sl@0: void Release(CCamera::CCameraV2DirectViewFinder* aDirectViewFinderHandle); sl@0: void Release(); sl@0: void GetViewFinderFadingCapabilitiesL(CCameraViewFinder::TViewFinderFadingCapabilities& aVFFadingCapabilities) const; sl@0: void GetViewFinderFadingEffectL(CCameraViewFinder::TViewFinderFadingEffect& aCurrentVFFadingEffect) const; sl@0: void SetViewFinderFadingEffect(const CCameraViewFinder::TViewFinderFadingEffect& aVFFadingEffect); sl@0: void GetViewFinderHandleL(TInt& aVFHandle) const; sl@0: sl@0: void CreateHistogramImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const; sl@0: void GetImageProcessingImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const; sl@0: void SetDirectViewFinderObserver(MDirectViewFinderObserver& aDirectViewFinderObserver); sl@0: void SetDirectViewFinderHandle(CCamera::CCameraV2DirectViewFinder* aDirectViewFinderHandle); sl@0: void StartViewFinderDirectL(RWsSession& aWs, CWsScreenDevice& aScreenDevice, RWindowBase& aWindow, TRect& aScreenRect); sl@0: void StartViewFinderDirectL(RWsSession& aWs, CWsScreenDevice& aScreenDevice, RWindowBase& aWindow, TRect& aScreenRect, TRect& aClipRect); sl@0: void GetDirectViewFinderPropertiesL(TInt& aScreenNumber, TRect& aScreenRect, TRect& aClipRect) const; sl@0: void PauseViewFinderDirect(); sl@0: void ResumeViewFinderDirect(); sl@0: void GetViewFinderStateL(CCamera::CCameraV2DirectViewFinder::TViewFinderState& aViewFinderState) const; sl@0: void StopDirectViewFinder(); sl@0: TAny* GetDirectSnapshotImpl(TUid aInterface) const; sl@0: sl@0: inline MDirectViewFinderObserver* DirectViewFinderObserver() {return iDirectViewFinderObserver;} sl@0: inline CCamera::CCameraV2DirectViewFinder& DirectViewFinderHandle() {return *iDirectViewFinderHandle;} sl@0: inline CCamUnitTestPlugin& Owner() {return iOwner;} sl@0: sl@0: private: sl@0: CCamV2DirectViewFinder(CCamUnitTestPlugin& aOwner); sl@0: sl@0: public: sl@0: TInt iRefCount; sl@0: sl@0: private: sl@0: CCamUnitTestPlugin& iOwner; sl@0: MDirectViewFinderObserver* iDirectViewFinderObserver; sl@0: CCamera::CCameraV2DirectViewFinder* iDirectViewFinderHandle; sl@0: TInt iVFHandle; sl@0: mutable CCamDirectSnapshot* iDirectSnapshot; sl@0: }; sl@0: sl@0: // sl@0: //client viewfinder impl sl@0: class CCamClientViewFinder: public CBase, public MCameraViewFinder, public MCameraClientViewFinder sl@0: { sl@0: public: sl@0: static CCamClientViewFinder* NewL(CCamUnitTestPlugin& aOwner); sl@0: ~CCamClientViewFinder(); sl@0: sl@0: void Release(CCamera::CCameraClientViewFinder* aClientViewFinderHandle); sl@0: void Release(); sl@0: void GetViewFinderFadingCapabilitiesL(CCameraViewFinder::TViewFinderFadingCapabilities& aVFFadingCapabilities) const; sl@0: void GetViewFinderFadingEffectL(CCameraViewFinder::TViewFinderFadingEffect& aCurrentVFFadingEffect) const; sl@0: void SetViewFinderFadingEffect(const CCameraViewFinder::TViewFinderFadingEffect& aVFFadingEffect); sl@0: void GetViewFinderHandleL(TInt& aVFHandle) const; sl@0: sl@0: void CreateHistogramImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const; sl@0: void GetImageProcessingImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const; sl@0: void SetClientViewFinderObserver(MClientViewFinderObserver& aClientViewFinderObserver); sl@0: void SetClientViewFinderHandle(CCamera::CCameraClientViewFinder* aClientViewFinderHandle); sl@0: sl@0: void StartClientViewFinderL(TInt aScreenNumber, CCamera::TFormat aImageFormat, TSize& aSize); sl@0: void StartClientViewFinderL(TInt aScreenNumber, CCamera::TFormat aImageFormat, TSize& aSize, TRect& aClipRect); sl@0: void GetClientViewFinderStateL(TBool& aIsActive) const; sl@0: void GetClientViewFinderPropertiesL(TInt& aScreenNumber, CCamera::TFormat& aImageFormat, TSize& aSize, TRect& aClipRect) const; sl@0: void StopClientViewFinder(); sl@0: void GetViewFinderBufferL(MCameraBuffer2& aClientViewFinderBuffer) const; sl@0: sl@0: inline MClientViewFinderObserver* ClientViewFinderObserver() {return iClientViewFinderObserver;} sl@0: inline CCamera::CCameraClientViewFinder& ClientViewFinderHandle() {return *iClientViewFinderHandle;} sl@0: inline CCamUnitTestPlugin& Owner() {return iOwner;} sl@0: sl@0: private: sl@0: CCamClientViewFinder(CCamUnitTestPlugin& aOwner); sl@0: sl@0: public: sl@0: TInt iRefCount; sl@0: sl@0: private: sl@0: CCamUnitTestPlugin& iOwner; sl@0: MClientViewFinderObserver* iClientViewFinderObserver; sl@0: CCamera::CCameraClientViewFinder* iClientViewFinderHandle; sl@0: TInt iVFHandle; sl@0: }; sl@0: sl@0: // sl@0: //snapshot impl for image sl@0: class CCamSnapshotForImage : public CBase, public MCameraSnapshot, public MCameraSnapshot2 sl@0: { sl@0: friend class CHistogramImpForImageSnapshot; sl@0: sl@0: public: sl@0: static CCamSnapshotForImage* NewL(CCamUnitTestPlugin& aOwner, CCamImageCapture& aCamImageCaptureImpl); sl@0: ~CCamSnapshotForImage(); sl@0: sl@0: TUint32 SupportedFormats(); sl@0: void PrepareSnapshotL(CCamera::TFormat aFormat, const TPoint& aPosition, const TSize& aSize, const TRgb& aBgColor, TBool aMaintainAspectRatio); sl@0: void PrepareSnapshotL(CCamera::TFormat aFormat, const TSize& aSize, TBool aMaintainAspectRatio); sl@0: sl@0: void SetBgColorL(const TRgb& aBgColor); sl@0: void SetPositionL(const TPoint& aPosition); sl@0: sl@0: TBool IsSnapshotActive() const; sl@0: void StartSnapshot(); sl@0: void StopSnapshot(); sl@0: MCameraBuffer& SnapshotDataL(RArray& aFrameIndexOrder); sl@0: sl@0: void CreateHistogramImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const; sl@0: void PrepareSnapshotL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters); sl@0: void GetSnapshotParametersL(CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters); sl@0: void SetSnapshotParametersL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters); sl@0: void GetSnapshotStatusL(CCamera::CCameraSnapshot::TSnapshotState& aSnapshotState) const; sl@0: void SelectSnapshotVideoFramesL(CCamera::CCameraSnapshot::TSnapshotVideoFrames aSnapshotVideoFrames); sl@0: void EnableSnapshot(); sl@0: void DisableSnapshot(); sl@0: void SetClientViewFinderId(TInt aClientViewFinderId); sl@0: sl@0: void Release(); sl@0: sl@0: inline CCamImageCapture& CamImageCaptureImpl() {return iCamImageCaptureImpl;} sl@0: inline CCamera::CCameraImageCapture& CameraImageCapture() {return *(CamImageCaptureImpl().CameraImageCapture());} sl@0: inline CCamUnitTestPlugin& Owner() {return iOwner;} sl@0: private: sl@0: CCamSnapshotForImage(CCamUnitTestPlugin& aOwner, CCamImageCapture& aCamImageCaptureImpl); sl@0: void ConstructL(); sl@0: sl@0: private: sl@0: CCamUnitTestPlugin& iOwner; sl@0: CCamImageCapture& iCamImageCaptureImpl; sl@0: CFbsBitmap* iBitmap; sl@0: RCamBuffer2 iSnapshotbuffer; sl@0: CCamera::CCameraSnapshot::TSnapshotParameters iSnapshotParameters; sl@0: sl@0: TInt iRefCount; sl@0: }; sl@0: sl@0: // sl@0: //snapshot factory for image sl@0: class CSnapshotFactoryForImage : public CBase, public MImplementationFactory sl@0: { sl@0: public: sl@0: static CSnapshotFactoryForImage* NewL(CCamImageCapture& aCamImageCaptureImpl, CCamSnapshotForImage* aSnapshotImpForImage); sl@0: ~CSnapshotFactoryForImage(); sl@0: sl@0: TInt GetImpl(TAny*& aIfPtr, TUid aIfaceUid) const; sl@0: TInt GetImpl1(TAny*& aIfPtr, TUid aIfaceUid, TECamImplFactoryParam aParam1) const; sl@0: TInt GetImpl2(TAny*& aIfPtr, TUid aIfaceUid, TECamImplFactoryParam aParam1, TECamImplFactoryParam aParam2) const; sl@0: void Release(); sl@0: sl@0: private: sl@0: CSnapshotFactoryForImage(); sl@0: void ConstructL(CCamImageCapture& aCamImageCaptureImpl, CCamSnapshotForImage* aSnapshotImpForImage); sl@0: sl@0: private: sl@0: CCamSnapshotForImage* iSnapshotImpForImage; sl@0: mutable TBool iIsSnapshotImpPassed; sl@0: }; sl@0: sl@0: // sl@0: //snapshot impl for video sl@0: class CCamSnapshotForVideo : public CBase, public MCameraSnapshot, public MCameraSnapshot2 sl@0: { sl@0: public: sl@0: static CCamSnapshotForVideo* NewL(CCamUnitTestPlugin& aOwner, CCamVideoCaptureControl& aCamVideoCaptureControlImpl); sl@0: ~CCamSnapshotForVideo(); sl@0: sl@0: TUint32 SupportedFormats(); sl@0: void PrepareSnapshotL(CCamera::TFormat aFormat, const TPoint& aPosition, const TSize& aSize, const TRgb& aBgColor, TBool aMaintainAspectRatio); sl@0: void PrepareSnapshotL(CCamera::TFormat aFormat, const TSize& aSize, TBool aMaintainAspectRatio); sl@0: sl@0: void SetBgColorL(const TRgb& aBgColor); sl@0: void SetPositionL(const TPoint& aPosition); sl@0: sl@0: TBool IsSnapshotActive() const; sl@0: void StartSnapshot(); sl@0: void StopSnapshot(); sl@0: MCameraBuffer& SnapshotDataL(RArray& aFrameIndexOrder); sl@0: sl@0: void CreateHistogramImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const; sl@0: void PrepareSnapshotL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters); sl@0: void GetSnapshotParametersL(CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters); sl@0: void SetSnapshotParametersL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters); sl@0: void GetSnapshotStatusL(CCamera::CCameraSnapshot::TSnapshotState& aSnapshotState) const; sl@0: void SelectSnapshotVideoFramesL(CCamera::CCameraSnapshot::TSnapshotVideoFrames aSnapshotVideoFrames); sl@0: void EnableSnapshot(); sl@0: void DisableSnapshot(); sl@0: void SetClientViewFinderId(TInt aClientViewFinderId); sl@0: sl@0: void Release(); sl@0: sl@0: inline CCamVideoCaptureControl& CamVideoCaptureControlImpl() {return iCamVideoCaptureControlImpl;} sl@0: sl@0: private: sl@0: CCamSnapshotForVideo(CCamUnitTestPlugin& aOwner, CCamVideoCaptureControl& aCamVideoCaptureControlImpl); sl@0: void ConstructL(); sl@0: sl@0: private: sl@0: CCamUnitTestPlugin& iOwner; sl@0: CCamVideoCaptureControl& iCamVideoCaptureControlImpl; sl@0: CFbsBitmap* iBitmap; sl@0: RCamBuffer2 iSnapshotbuffer; sl@0: CCamera::CCameraSnapshot::TSnapshotParameters iSnapshotParameters; sl@0: sl@0: TInt iRefCount; sl@0: }; sl@0: sl@0: // sl@0: //snapshot factory for video sl@0: class CSnapshotFactoryForVideo : public CBase, public MImplementationFactory sl@0: { sl@0: public: sl@0: static CSnapshotFactoryForVideo* NewL(CCamVideoCaptureControl& aCamVideoCaptureControlImpl, CCamSnapshotForVideo* aSnapshotImpForVideo); sl@0: ~CSnapshotFactoryForVideo(); sl@0: sl@0: TInt GetImpl(TAny*& aIfPtr, TUid aIfaceUid) const; sl@0: TInt GetImpl1(TAny*& aIfPtr, TUid aIfaceUid, TECamImplFactoryParam aParam1) const; sl@0: TInt GetImpl2(TAny*& aIfPtr, TUid aIfaceUid, TECamImplFactoryParam aParam1, TECamImplFactoryParam aParam2) const; sl@0: void Release(); sl@0: sl@0: private: sl@0: CSnapshotFactoryForVideo(); sl@0: void ConstructL(CCamVideoCaptureControl& aCamVideoCaptureControlImpl, CCamSnapshotForVideo* aSnapshotImpForVideo); sl@0: sl@0: private: sl@0: CCamSnapshotForVideo* iSnapshotImpForVideo; sl@0: mutable TBool iIsSnapshotImpPassed; sl@0: }; sl@0: sl@0: // sl@0: // V2 buffer for histogram: MHistogramV2Buffer sl@0: class RCamHistogramV2Buffer : public MHistogramV2Buffer sl@0: { sl@0: sl@0: public: sl@0: RCamHistogramV2Buffer(): iAvailable(ETrue) {} sl@0: CCamera::CCameraV2Histogram::THistogramType Type() {return CCamera::CCameraV2Histogram::EHistNone;} sl@0: TInt ElementSize() {return -5;} sl@0: TInt NumOfElements() {return -5;} sl@0: TDesC8* DataL() {User::Leave(KErrNotSupported); return NULL;} sl@0: RChunk& ChunkL() {User::Leave(KErrNotSupported); return iChunk;} sl@0: TInt ChunkOffsetL() {User::Leave(KErrNotSupported); return -5;} sl@0: void Release() {iAvailable = EFalse;} sl@0: sl@0: public: sl@0: sl@0: TBool iAvailable; sl@0: RChunk iChunk; sl@0: }; sl@0: sl@0: // sl@0: //histogram impl for video sl@0: class CHistogramImpForVideo : public CBase, public MCameraV2Histogram sl@0: { sl@0: sl@0: public: sl@0: static CHistogramImpForVideo* NewL(CCamUnitTestPlugin& aOwner, CCamVideoCaptureControl& aCamVideoCaptureControlImpl); sl@0: ~CHistogramImpForVideo(); sl@0: sl@0: void Release(CCamera::CCameraV2Histogram* aHistogramHandle); sl@0: void SetHistogramHandle(CCamera::CCameraV2Histogram* aHistogramHandle); sl@0: void GetSupportedHistogramsL(TUint& aSupportedHistogramType) const; sl@0: void GetDirectHistogramSupportInfoL(TBool& aIsDirectHistogramSupported) const; sl@0: void PrepareClientHistogramL(CCamera::CCameraV2Histogram::THistogramType aType); sl@0: void PrepareDirectHistogramL(const CCamera::CCameraV2Histogram::TDirectHistogramParameters& aDirectHistogramParameters); sl@0: void UpdateDirectHistogramPropertiesL(const CCamera::CCameraV2Histogram::TDirectHistogramParameters& aDirectHistogramParameters); sl@0: void GetDirectHistogramPropertiesL(CCamera::CCameraV2Histogram::TDirectHistogramParameters& aDirectHistogramParameters) const; sl@0: void StartHistogram(); sl@0: void StopHistogram(); sl@0: void GetHistogramStateL(TBool& aIsHistogramActive) const; sl@0: sl@0: inline CCamVideoCaptureControl& CamVideoCaptureControlImpl() {return iCamVideoCaptureControlImpl;} sl@0: sl@0: private: sl@0: CHistogramImpForVideo(CCamUnitTestPlugin& aOwner, CCamVideoCaptureControl& aCamVideoCaptureControlImpl); sl@0: sl@0: private: sl@0: CCamUnitTestPlugin& iOwner; sl@0: CCamVideoCaptureControl& iCamVideoCaptureControlImpl; sl@0: }; sl@0: sl@0: // sl@0: //histogram factory for video sl@0: class CHistogramFactoryForVideo : public CBase, public MImplementationFactory sl@0: { sl@0: public: sl@0: static CHistogramFactoryForVideo* NewL(CCamVideoCaptureControl& aCamVideoCaptureControlImpl); sl@0: ~CHistogramFactoryForVideo(); sl@0: sl@0: TInt GetImpl(TAny*& aIfPtr, TUid aIfaceUid) const; sl@0: TInt GetImpl1(TAny*& aIfPtr, TUid aIfaceUid, TECamImplFactoryParam aParam1) const; sl@0: TInt GetImpl2(TAny*& aIfPtr, TUid aIfaceUid, TECamImplFactoryParam aParam1, TECamImplFactoryParam aParam2) const; sl@0: void Release(); sl@0: sl@0: private: sl@0: CHistogramFactoryForVideo(); sl@0: void ConstructL(CCamVideoCaptureControl& aCamVideoCaptureControlImpl); sl@0: sl@0: private: sl@0: CHistogramImpForVideo* iHistogramImpForVideo; sl@0: mutable TBool iIsHistogramImpPassed; sl@0: }; sl@0: sl@0: // sl@0: //histogram impl for image sl@0: class CHistogramImpForImage : public CBase, public MCameraV2Histogram sl@0: { sl@0: sl@0: public: sl@0: static CHistogramImpForImage* NewL(CCamUnitTestPlugin& aOwner, CCamImageCapture& aCamImageCaptureImpl); sl@0: ~CHistogramImpForImage(); sl@0: sl@0: void Release(CCamera::CCameraV2Histogram* aHistogramHandle); sl@0: void SetHistogramHandle(CCamera::CCameraV2Histogram* aHistogramHandle); sl@0: void GetSupportedHistogramsL(TUint& aSupportedHistogramType) const; sl@0: void GetDirectHistogramSupportInfoL(TBool& aIsDirectHistogramSupported) const; sl@0: void PrepareClientHistogramL(CCamera::CCameraV2Histogram::THistogramType aType); sl@0: void PrepareDirectHistogramL(const CCamera::CCameraV2Histogram::TDirectHistogramParameters& aDirectHistogramParameters); sl@0: void UpdateDirectHistogramPropertiesL(const CCamera::CCameraV2Histogram::TDirectHistogramParameters& aDirectHistogramParameters); sl@0: void GetDirectHistogramPropertiesL(CCamera::CCameraV2Histogram::TDirectHistogramParameters& aDirectHistogramParameters) const; sl@0: void StartHistogram(); sl@0: void StopHistogram(); sl@0: void GetHistogramStateL(TBool& aIsHistogramActive) const; sl@0: sl@0: inline CCamImageCapture& CamImageCaptureImpl() {return iCamImageCaptureImpl;} sl@0: inline CCamera::CCameraImageCapture& CameraImageCapture() {return *(CamImageCaptureImpl().CameraImageCapture());} sl@0: sl@0: private: sl@0: CHistogramImpForImage(CCamUnitTestPlugin& aOwner, CCamImageCapture& aCamImageCaptureImpl); sl@0: sl@0: private: sl@0: CCamUnitTestPlugin& iOwner; sl@0: CCamImageCapture& iCamImageCaptureImpl; sl@0: CCamera::CCameraV2Histogram* iHistogramHandle; sl@0: }; sl@0: sl@0: // sl@0: //histogram factory for image sl@0: class CHistogramFactoryForImage : public CBase, public MImplementationFactory sl@0: { sl@0: public: sl@0: static CHistogramFactoryForImage* NewL(CCamImageCapture& aCamImageCaptureImpl); sl@0: ~CHistogramFactoryForImage(); sl@0: sl@0: TInt GetImpl(TAny*& aIfPtr, TUid aIfaceUid) const; sl@0: TInt GetImpl1(TAny*& aIfPtr, TUid aIfaceUid, TECamImplFactoryParam aParam1) const; sl@0: TInt GetImpl2(TAny*& aIfPtr, TUid aIfaceUid, TECamImplFactoryParam aParam1, TECamImplFactoryParam aParam2) const; sl@0: void Release(); sl@0: sl@0: private: sl@0: CHistogramFactoryForImage(); sl@0: void ConstructL(CCamImageCapture& aCamImageCaptureImpl); sl@0: sl@0: private: sl@0: CHistogramImpForImage* iHistogramImpForImage; sl@0: mutable TBool iIsHistogramImpPassed; sl@0: }; sl@0: sl@0: // sl@0: //histogram impl for DirectViewFinder sl@0: class CHistogramImpForDirectViewFinder : public CBase, public MCameraV2Histogram sl@0: { sl@0: sl@0: public: sl@0: static CHistogramImpForDirectViewFinder* NewL(CCamUnitTestPlugin& aOwner, CCamV2DirectViewFinder& aCamV2DirectViewFinderImpl); sl@0: ~CHistogramImpForDirectViewFinder(); sl@0: sl@0: void Release(CCamera::CCameraV2Histogram* aHistogramHandle); sl@0: void SetHistogramHandle(CCamera::CCameraV2Histogram* aHistogramHandle); sl@0: void GetSupportedHistogramsL(TUint& aSupportedHistogramType) const; sl@0: void GetDirectHistogramSupportInfoL(TBool& aIsDirectHistogramSupported) const; sl@0: void PrepareClientHistogramL(CCamera::CCameraV2Histogram::THistogramType aType); sl@0: void PrepareDirectHistogramL(const CCamera::CCameraV2Histogram::TDirectHistogramParameters& aDirectHistogramParameters); sl@0: void UpdateDirectHistogramPropertiesL(const CCamera::CCameraV2Histogram::TDirectHistogramParameters& aDirectHistogramParameters); sl@0: void GetDirectHistogramPropertiesL(CCamera::CCameraV2Histogram::TDirectHistogramParameters& aDirectHistogramParameters) const; sl@0: void StartHistogram(); sl@0: void StopHistogram(); sl@0: void GetHistogramStateL(TBool& aIsHistogramActive) const; sl@0: sl@0: inline CCamV2DirectViewFinder& DirectViewFinderImpl() {return iCamV2DirectViewFinderImpl;} sl@0: sl@0: private: sl@0: CHistogramImpForDirectViewFinder(CCamUnitTestPlugin& aOwner, CCamV2DirectViewFinder& aCamV2DirectViewFinderImpl); sl@0: sl@0: private: sl@0: CCamUnitTestPlugin& iOwner; sl@0: CCamV2DirectViewFinder& iCamV2DirectViewFinderImpl; sl@0: CCamera::CCameraV2Histogram* iHistogramHandle; sl@0: }; sl@0: sl@0: // sl@0: //histogram factory for DirectViewFinder sl@0: class CHistogramFactoryForDirectViewFinder : public CBase, public MImplementationFactory sl@0: { sl@0: public: sl@0: static CHistogramFactoryForDirectViewFinder* NewL(CCamV2DirectViewFinder& aCamV2DirectViewFinderImpl); sl@0: ~CHistogramFactoryForDirectViewFinder(); sl@0: sl@0: TInt GetImpl(TAny*& aIfPtr, TUid aIfaceUid) const; sl@0: TInt GetImpl1(TAny*& aIfPtr, TUid aIfaceUid, TECamImplFactoryParam aParam1) const; sl@0: TInt GetImpl2(TAny*& aIfPtr, TUid aIfaceUid, TECamImplFactoryParam aParam1, TECamImplFactoryParam aParam2) const; sl@0: void Release(); sl@0: sl@0: private: sl@0: CHistogramFactoryForDirectViewFinder(); sl@0: void ConstructL(CCamV2DirectViewFinder& aCamV2DirectViewFinderImpl); sl@0: sl@0: private: sl@0: CHistogramImpForDirectViewFinder* iHistogramImpForDirectViewFinder; sl@0: mutable TBool iIsHistogramImpPassed; sl@0: }; sl@0: sl@0: // sl@0: //histogram impl for ClientViewFinder sl@0: class CHistogramImpForClientViewFinder : public CBase, public MCameraV2Histogram sl@0: { sl@0: sl@0: public: sl@0: static CHistogramImpForClientViewFinder* NewL(CCamUnitTestPlugin& aOwner, CCamClientViewFinder& aCamClientViewFinderImpl); sl@0: ~CHistogramImpForClientViewFinder(); sl@0: sl@0: void Release(CCamera::CCameraV2Histogram* aHistogramHandle); sl@0: void SetHistogramHandle(CCamera::CCameraV2Histogram* aHistogramHandle); sl@0: void GetSupportedHistogramsL(TUint& aSupportedHistogramType) const; sl@0: void GetDirectHistogramSupportInfoL(TBool& aIsDirectHistogramSupported) const; sl@0: void PrepareClientHistogramL(CCamera::CCameraV2Histogram::THistogramType aType); sl@0: void PrepareDirectHistogramL(const CCamera::CCameraV2Histogram::TDirectHistogramParameters& aDirectHistogramParameters); sl@0: void UpdateDirectHistogramPropertiesL(const CCamera::CCameraV2Histogram::TDirectHistogramParameters& aDirectHistogramParameters); sl@0: void GetDirectHistogramPropertiesL(CCamera::CCameraV2Histogram::TDirectHistogramParameters& aDirectHistogramParameters) const; sl@0: void StartHistogram(); sl@0: void StopHistogram(); sl@0: void GetHistogramStateL(TBool& aIsHistogramActive) const; sl@0: sl@0: inline CCamClientViewFinder& ClientViewFinderImpl() {return iCamClientViewFinderImpl;} sl@0: inline CCamera::CCameraClientViewFinder& ClientViewFinderHandle() {return ClientViewFinderImpl().ClientViewFinderHandle();} sl@0: sl@0: private: sl@0: CHistogramImpForClientViewFinder(CCamUnitTestPlugin& aOwner, CCamClientViewFinder& aCamClientViewFinderImpl); sl@0: sl@0: private: sl@0: CCamUnitTestPlugin& iOwner; sl@0: CCamClientViewFinder& iCamClientViewFinderImpl; sl@0: CCamera::CCameraV2Histogram* iHistogramHandle; sl@0: }; sl@0: sl@0: // sl@0: //histogram factory for ClientViewFinder sl@0: class CHistogramFactoryForClientViewFinder : public CBase, public MImplementationFactory sl@0: { sl@0: public: sl@0: static CHistogramFactoryForClientViewFinder* NewL(CCamClientViewFinder& aCamClientViewFinderImpl); sl@0: ~CHistogramFactoryForClientViewFinder(); sl@0: sl@0: TInt GetImpl(TAny*& aIfPtr, TUid aIfaceUid) const; sl@0: TInt GetImpl1(TAny*& aIfPtr, TUid aIfaceUid, TECamImplFactoryParam aParam1) const; sl@0: TInt GetImpl2(TAny*& aIfPtr, TUid aIfaceUid, TECamImplFactoryParam aParam1, TECamImplFactoryParam aParam2) const; sl@0: void Release(); sl@0: sl@0: private: sl@0: CHistogramFactoryForClientViewFinder(); sl@0: void ConstructL(CCamClientViewFinder& aCamClientViewFinderImpl); sl@0: sl@0: private: sl@0: CHistogramImpForClientViewFinder* iHistogramImpForClientViewFinder; sl@0: mutable TBool iIsHistogramImpPassed; sl@0: }; sl@0: sl@0: // sl@0: //histogram impl for image snapshot sl@0: class CHistogramImpForImageSnapshot : public CBase, public MCameraV2Histogram sl@0: { sl@0: sl@0: public: sl@0: static CHistogramImpForImageSnapshot* NewL(CCamUnitTestPlugin& aOwner, CCamSnapshotForImage& aCamSnapshotForImageImpl); sl@0: ~CHistogramImpForImageSnapshot(); sl@0: sl@0: void Release(CCamera::CCameraV2Histogram* aHistogramHandle); sl@0: void SetHistogramHandle(CCamera::CCameraV2Histogram* aHistogramHandle); sl@0: void GetSupportedHistogramsL(TUint& aSupportedHistogramType) const; sl@0: void GetDirectHistogramSupportInfoL(TBool& aIsDirectHistogramSupported) const; sl@0: void PrepareClientHistogramL(CCamera::CCameraV2Histogram::THistogramType aType); sl@0: void PrepareDirectHistogramL(const CCamera::CCameraV2Histogram::TDirectHistogramParameters& aDirectHistogramParameters); sl@0: void UpdateDirectHistogramPropertiesL(const CCamera::CCameraV2Histogram::TDirectHistogramParameters& aDirectHistogramParameters); sl@0: void GetDirectHistogramPropertiesL(CCamera::CCameraV2Histogram::TDirectHistogramParameters& aDirectHistogramParameters) const; sl@0: void StartHistogram(); sl@0: void StopHistogram(); sl@0: void GetHistogramStateL(TBool& aIsHistogramActive) const; sl@0: sl@0: inline CCamSnapshotForImage& CamSnapshotForImageImpl() {return iCamSnapshotForImageImpl;} sl@0: inline CCamera::CCameraV2Histogram* HistogramHandle() {return iHistogramHandle;} sl@0: inline CCamImageCapture& CamImageCaptureImpl() {return CamSnapshotForImageImpl().CamImageCaptureImpl();} sl@0: inline CCamera::CCameraImageCapture& CameraImageCapture() {return *(CamImageCaptureImpl().CameraImageCapture());} sl@0: sl@0: private: sl@0: CHistogramImpForImageSnapshot(CCamUnitTestPlugin& aOwner, CCamSnapshotForImage& aCamSnapshotForImageImpl); sl@0: sl@0: private: sl@0: CCamUnitTestPlugin& iOwner; sl@0: CCamSnapshotForImage& iCamSnapshotForImageImpl; sl@0: CCamera::CCameraV2Histogram* iHistogramHandle; sl@0: }; sl@0: sl@0: // sl@0: //histogram factory for image snapshot sl@0: class CHistogramFactoryForImageSnapshot : public CBase, public MImplementationFactory sl@0: { sl@0: public: sl@0: static CHistogramFactoryForImageSnapshot* NewL(CCamSnapshotForImage& aCamSnapshotForImageImpl); sl@0: ~CHistogramFactoryForImageSnapshot(); sl@0: sl@0: TInt GetImpl(TAny*& aIfPtr, TUid aIfaceUid) const; sl@0: TInt GetImpl1(TAny*& aIfPtr, TUid aIfaceUid, TECamImplFactoryParam aParam1) const; sl@0: TInt GetImpl2(TAny*& aIfPtr, TUid aIfaceUid, TECamImplFactoryParam aParam1, TECamImplFactoryParam aParam2) const; sl@0: void Release(); sl@0: sl@0: private: sl@0: CHistogramFactoryForImageSnapshot(); sl@0: void ConstructL(CCamSnapshotForImage& aCamSnapshotForImageImpl); sl@0: sl@0: private: sl@0: CHistogramImpForImageSnapshot* iHistogramImpForImageSnapshot; sl@0: mutable TBool iIsHistogramImpPassed; sl@0: }; sl@0: sl@0: // sl@0: //img proc impl for still images. sl@0: class CCamImgProcImpForImage : public CBase, public MCameraImageProcessing sl@0: { sl@0: public: sl@0: static CCamImgProcImpForImage* NewL(CCamUnitTestPlugin& aOwner); sl@0: ~CCamImgProcImpForImage(); sl@0: sl@0: void Release(); sl@0: void GetSupportedTransformationsL(RArray& aTransformations) const; sl@0: void GetActiveTransformationsL(RArray& aTransformations) const; sl@0: void GetTransformationSupportedValuesL(TUid aTransformation, RArray& aValues, TValueInfo& aInfo) const; sl@0: TInt TransformationValue(TUid aTransformation) const; sl@0: TInt GetTransformationValue(TUid aTransformation, TInt& aTransformationValue) const; sl@0: void SetTransformationValue(TUid aTransformation, TInt aValue); sl@0: void GetActiveTransformSequenceL(RArray& aTransformSequence) const; sl@0: void SetActiveTransformSequenceL(RArray& aTransformSequence); sl@0: void SetSourceRect(const TRect& aRect); sl@0: void GetSourceRect(TRect& aRect) const; sl@0: sl@0: private: sl@0: CCamImgProcImpForImage(CCamUnitTestPlugin& aOwner); sl@0: sl@0: private: sl@0: CCamUnitTestPlugin& iOwner; sl@0: }; sl@0: sl@0: // sl@0: //img proc factory for still images. sl@0: class CImgProcFactoryForImage : public CBase, public MImplementationFactory sl@0: { sl@0: public: sl@0: static CImgProcFactoryForImage* NewL(CCamImageCapture& aCamImageCaptureImpl, CCamImgProcImpForImage* aCamImgProcImpForImage); sl@0: ~CImgProcFactoryForImage(); sl@0: sl@0: TInt GetImpl(TAny*& aIfPtr, TUid aIfaceUid) const; sl@0: TInt GetImpl1(TAny*& aIfPtr, TUid aIfaceUid, TECamImplFactoryParam aParam1) const; sl@0: TInt GetImpl2(TAny*& aIfPtr, TUid aIfaceUid, TECamImplFactoryParam aParam1, TECamImplFactoryParam aParam2) const; sl@0: void Release(); sl@0: sl@0: private: sl@0: CImgProcFactoryForImage(); sl@0: void ConstructL(CCamImageCapture& aCamImageCaptureImpl, CCamImgProcImpForImage* aCamImgProcImpForImage); sl@0: sl@0: private: sl@0: CCamImgProcImpForImage* iCamImgProcImpForImage; sl@0: mutable TBool iIsImgProcImpPassed; sl@0: }; sl@0: sl@0: #endif // EXTENDEDFUNCTIONALITY_H