sl@0: // Copyright (c) 2005-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: // sl@0: sl@0: /** sl@0: @file sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: sl@0: #ifndef MCAMERASNAPSHOT_H sl@0: #define MCAMERASNAPSHOT_H sl@0: sl@0: #include sl@0: #include sl@0: sl@0: class TRgb; sl@0: sl@0: /** sl@0: This is the UID which is used to obtain the MCameraSnapshot interface, sl@0: via a call to CCamera::CustomInterface(), which provides implementation of the M-class interface. sl@0: sl@0: @see KECamMCameraSnapshotUidValue sl@0: */ sl@0: static const TUid KECamMCameraSnapshotUid = {KECamMCameraSnapshotUidValue}; sl@0: sl@0: /** sl@0: This is the UID which is used to obtain the MCameraSnapshot2 interface, sl@0: via a call to CCamera::CustomInterface(), which provides implementation of the M-class interface. sl@0: sl@0: @see KECamMCameraSnapshot2UidValue sl@0: */ sl@0: static const TUid KECamMCameraSnapshot2Uid = {KECamMCameraSnapshot2UidValue}; sl@0: sl@0: /** sl@0: This is a mixin class to be implemented by providers of the extension API for the camera snapshot. sl@0: sl@0: @note This class is intended for sub classing by licensees only. sl@0: sl@0: @see CCamera::CCameraSnapshot sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: sl@0: class MCameraSnapshot sl@0: { sl@0: sl@0: public: sl@0: /** sl@0: @publishedPartner sl@0: @released sl@0: sl@0: Gets a list of camera formats for which the ECam implementation supports snapshots. sl@0: sl@0: @return Bit field containing the supported camera formats as CCamera::TFormat values. sl@0: */ sl@0: virtual TUint32 SupportedFormats()=0; sl@0: sl@0: /** sl@0: @deprecated Use void MCameraSnapshot2::PrepareSnapshotL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters); sl@0: sl@0: Sets the properties of the snapshot data including the background colour and the position of the snapshot. sl@0: sl@0: @param aFormat sl@0: The image format that the snapshot must have. sl@0: @param aPosition sl@0: The top left corner position (in pixels) which determines the layout of the snapshot image sl@0: within the dimensions provided by the aSize parameter when the snapshot has been scaled sl@0: maintaining its aspect ratio. See also SetPositionL(). sl@0: @param aSize sl@0: The size of the snapshot in pixels. sl@0: @param aBgColor sl@0: The background colour to be used if the snapshot has been scaled (maintaining its aspect ratio) sl@0: and does not fully fill the dimension provided by the aSize parameter. See also SetBgColorL(). sl@0: @param aMaintainAspectRatio sl@0: Set to ETrue if the aspect ratio of the snapshot image must be maintained when scaling down. sl@0: sl@0: @leave KErrNotSupported if the specified image format is not supported; also any system wide error. sl@0: */ sl@0: virtual void PrepareSnapshotL(CCamera::TFormat aFormat, const TPoint& aPosition, const TSize& aSize, const TRgb& aBgColor, TBool aMaintainAspectRatio)=0; sl@0: sl@0: /** sl@0: @deprecated Use void MCameraSnapshot2::PrepareSnapshotL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters); sl@0: sl@0: Sets the properties of the snapshot data, excluding the background colour and the position of the snapshot. sl@0: This method can be used when the client wishes to determine the layout and background colour after the sl@0: snapshot image has been generated. See also SetPositionL() and SetBgColorL(). sl@0: sl@0: @param aFormat sl@0: The image format that the snapshot must have. sl@0: @param aSize sl@0: The size of the snapshot in pixels. sl@0: @param aMaintainAspectRatio sl@0: Set to ETrue if the aspect ratio of the snapshot image must be maintained when scaling down. sl@0: sl@0: @leave KErrNotSupported if the specified image format is not supported; also any system wide error. sl@0: */ sl@0: virtual void PrepareSnapshotL(CCamera::TFormat aFormat, const TSize& aSize, TBool aMaintainAspectRatio)=0; sl@0: sl@0: /** sl@0: @deprecated Use void MCameraSnapshot2::SetSnapshotParametersL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters); sl@0: sl@0: Sets the background colour to be used if the snapshot has been scaled (maintaining its aspect ratio) sl@0: and does not fully fill the snapshot size as specified in PrepareSnapshot(). sl@0: sl@0: @param aBgColor sl@0: The new background colour. sl@0: sl@0: @leave KErrNotSupported if the specified image format is not supported; also any system wide error. sl@0: */ sl@0: virtual void SetBgColorL(const TRgb& aBgColor)=0; sl@0: sl@0: /** sl@0: @deprecated Use void MCameraSnapshot2::SetSnapshotParametersL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters); sl@0: sl@0: Sets the top left corner position (in pixels), where the snapshot should be laid out after scaling sl@0: down (maintaining its aspect ratio). The position is within the dimensions provided by the snapshot sl@0: size specified in PrepareSnapshot(). sl@0: sl@0: @param aPosition sl@0: The top left corner position in pixels of the snapshot. sl@0: sl@0: @leave KErrNotSupported if the specified image format is not supported; also any system wide error. sl@0: */ sl@0: virtual void SetPositionL(const TPoint& aPosition)=0; sl@0: sl@0: /** sl@0: @deprecated Use void MCameraSnapshot2::GetSnapshotStatusL(CCamera::CCameraSnapshot::TSnapshotState& aSnapshotState) const; sl@0: sl@0: Determines if the snapshot feature is active. sl@0: sl@0: @return ETrue, if StartSnapshot() has been called, otherwise EFalse. sl@0: */ sl@0: virtual TBool IsSnapshotActive() const=0; sl@0: sl@0: /** sl@0: @deprecated Use void MCameraSnapshot2::EnableSnapshotL(); sl@0: sl@0: Activates the snapshot feature. Calls to this method when the snapshot feature is already active sl@0: will be ignored. sl@0: sl@0: The client will not receive snapshot notifications until the snapshot feature is activated. sl@0: */ sl@0: virtual void StartSnapshot()=0; sl@0: sl@0: /** sl@0: @deprecated Use void MCameraSnapshot2::DisableSnapshotL(); sl@0: sl@0: Deactivates the snapshot feature if it is active. sl@0: sl@0: Once the snapshot has been deactivated, the client will no longer receive notifications about snapshots. sl@0: */ sl@0: virtual void StopSnapshot()=0; sl@0: sl@0: /** sl@0: @deprecated Use callbacks: MCaptureImageObserver::ClientSnapshotForImageReady and MCaptureVideoObserver:: sl@0: ClientSnapshotReady sl@0: sl@0: Returns the snapshot data from ECam implementation to the client. sl@0: sl@0: The data is returned in an MCameraBuffer object. In the case where the driving mode returns more sl@0: than one image (burst mode, bracket mode, etc.) the buffer contains several snapshots which may sl@0: be returned in any order. The aFrameIndexOrder array provides the image sequence numbers in the sl@0: order in which the snapshots for those images are returned within the MCameraBuffer. sl@0: sl@0: @param aFrameIndexOrder sl@0: A reference to an array that will receive the image sequence numbers in the order to which sl@0: the snapshots within MCameraBuffer relate. sl@0: sl@0: @return A reference to an MCameraBuffer which will contain the returned snapshot image data. sl@0: sl@0: @leave KErrNoMemory if the ECam implementation has not been able to create the camera buffer; sl@0: also any system wide error. sl@0: */ sl@0: virtual MCameraBuffer& SnapshotDataL(RArray& aFrameIndexOrder)=0; sl@0: sl@0: /** sl@0: Destroys the object of this class on the ECam implementation. sl@0: This function is called from the destructor of CCamera::CCameraSnapshot. sl@0: */ sl@0: virtual void Release()=0; sl@0: sl@0: }; sl@0: sl@0: /** sl@0: This is a mixin class to be implemented by providers of the extension API for the extra features for camera snapshot. sl@0: sl@0: @see CCamera::CCameraSnapshot sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: sl@0: class MCameraSnapshot2 sl@0: { sl@0: sl@0: public: sl@0: /** sl@0: Releases the interface. sl@0: */ sl@0: virtual void Release()=0; sl@0: sl@0: /** sl@0: Sets the client viewfinder on which the client snapshot will be displayed. sl@0: sl@0: @param aClientViewFinderId sl@0: The client viewfinder on which this client snapshot will be displayed. sl@0: */ sl@0: virtual void SetClientViewFinderId(TInt aClientViewFinderId)=0; sl@0: sl@0: /** sl@0: Retrieves the concrete factory handle for the histogram implementation in order to sl@0: use it specifically for a given snapshot. sl@0: sl@0: @param aImplFactoryPtr sl@0: The concrete factory handle for the histogram implementation specific to the given snapshot. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void CreateHistogramImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const=0; sl@0: sl@0: /** sl@0: Sets the properties of the snapshot. ECam implementation may use a different size than that specified by this method. sl@0: sl@0: @param aSnapshotParameters sl@0: The snaspshot parameters. sl@0: sl@0: @leave May leave with any error code. sl@0: sl@0: @note This method is used to provide snapshot parameters. sl@0: */ sl@0: virtual void PrepareSnapshotL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters)=0; sl@0: sl@0: /** sl@0: Retrieves the snapshot parameters. ECam implementation may use a different size than that provided by this method. sl@0: sl@0: @param aSnapshotParameters sl@0: Retrieves the currently used snapshot parameters. sl@0: sl@0: @leave May leave with any error code. sl@0: sl@0: @note This method is used to retrieve snapshot parameters. sl@0: */ sl@0: virtual void GetSnapshotParametersL(CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters)=0; sl@0: sl@0: /** sl@0: Sets/updates the snapshot parameters. sl@0: sl@0: @param aSnapshotParameters sl@0: The desired snapshot parameters. sl@0: sl@0: @leave May leave with any error code. sl@0: sl@0: @note This method is used to set/update snapshot parameters. sl@0: */ sl@0: virtual void SetSnapshotParametersL(const CCamera::CCameraSnapshot::TSnapshotParameters& aSnapshotParameters)=0; sl@0: sl@0: /** sl@0: Retrieves the current status for the snapshot. sl@0: sl@0: @param aSnapshotState sl@0: Retrieves information about the current snapshot state. sl@0: sl@0: @leave May leave with any error code. sl@0: sl@0: @note This method is used to retrieve the snapshot status. sl@0: */ sl@0: virtual void GetSnapshotStatusL(CCamera::CCameraSnapshot::TSnapshotState& aSnapshotState) const=0; sl@0: sl@0: /** sl@0: The method specifies the frames to be used from video captured data in order to create snapshot for video. sl@0: sl@0: @param aSnapshotVideoFrames sl@0: A TSnapshotVideoFrames used to specify the desired frames to be used for creating snapshots for video. sl@0: sl@0: @leave May leave with any error code. sl@0: */ sl@0: virtual void SelectSnapshotVideoFramesL(CCamera::CCameraSnapshot::TSnapshotVideoFrames aSnapshotVideoFrames)=0; sl@0: sl@0: /** sl@0: Activates the snapshot feature. Calls to this method when the snapshot feature is already active will be ignored. sl@0: sl@0: The client will not receive snapshot notifications until the snapshot feature is activated. sl@0: sl@0: Implementation shall use the observers: MCaptureImageObserver and MCaptureVideoObserver. Snapshot notifications will sl@0: be send to the clients via these observers and not through events. sl@0: */ sl@0: virtual void EnableSnapshot()=0; sl@0: sl@0: /** sl@0: Deactivates the snapshot feature if it is active. sl@0: sl@0: Once the snapshot has been deactivated, the client will no longer receive notifications about snapshots. sl@0: */ sl@0: virtual void DisableSnapshot()=0; sl@0: }; sl@0: sl@0: #endif // MCAMERASNAPSHOT_H