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: @publishedAll sl@0: @released sl@0: */ sl@0: sl@0: #ifndef CAMERAOVERLAY_H sl@0: #define CAMERAOVERLAY_H sl@0: sl@0: #include sl@0: #include sl@0: #ifndef SYMBIAN_ENABLE_SPLIT_HEADERS sl@0: #include sl@0: #endif sl@0: sl@0: class MCameraOverlay; sl@0: class MCameraOverlay2; sl@0: sl@0: sl@0: /** sl@0: This is the UID which is used to obtain the CCameraOverlay interface, sl@0: via a call to CCamera::CustomInterface(). sl@0: sl@0: @see KECamOverlayUidValue sl@0: @see CCamera::CCameraOverlay sl@0: */ sl@0: static const TUid KECamOverlayUid = {KECamOverlayUidValue}; sl@0: sl@0: sl@0: /** sl@0: This class provides support for image overlays. sl@0: The client can use it to overlay an image onto the viewfinder, snapshots, still images and video. sl@0: A client can create multiple overlays, where each overlay can be in a different format. sl@0: The properties of an overlay can be changed after it has been created. sl@0: sl@0: @note This class provides a standardised client interface for the camera overlay. Classes cannot be derived from it. sl@0: sl@0: @note If the class methods leave, the output type parameter value is not guaranteed to be valid. sl@0: sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: class CCamera::CCameraOverlay: public CBase sl@0: { sl@0: sl@0: friend class CCamera; sl@0: sl@0: public: sl@0: /** sl@0: Overlay camera mode types sl@0: sl@0: Represents the possible camera modes in which the overlay could be used. sl@0: Several types can be combined when returning ECam implementation support for various modes. sl@0: */ sl@0: enum TOverlayCameraMode sl@0: { sl@0: /** Overlays are not supported for any camera mode. */ sl@0: EModeNone = 0x00, sl@0: /** The image can be overlaid on captured images. sl@0: The camera is in still image mode. This effectively means all the still image drive modes and sl@0: its interpretation may be implementation-specific. sl@0: Explicit definition of drive modes is recommended instead. sl@0: */ sl@0: EModeStillImage = 0x01, sl@0: /** The image can be overlaid on a snapshot. sl@0: The camera has snapshot functionality set on. sl@0: */ sl@0: EModeSnapshot = 0x02, sl@0: /** sl@0: The image can be overlaid on a viewfinder. sl@0: The camera is displaying directly to viewfinder. sl@0: This mode shall not be used if any of the viewfinder submodes is specified. sl@0: @note Overlay visibility for different viewfinder modes (direct/client-based) is sl@0: implementation-specific; viewfinder modes should be explicitly specified by clients instead. sl@0: */ sl@0: EModeViewfinder = 0x04, sl@0: /** The image can be overlaid on a video frame. sl@0: The camera is in video mode. */ sl@0: EModeVideo = 0x08, sl@0: /** sl@0: The image is to be overlaid on direct viewfinder sl@0: @note This value is available only to the API clients using CCamera::New2L() or CCamera::NewDuplicate2L() sl@0: */ sl@0: EModeDirectViewfinder = 0x00010, sl@0: /** sl@0: The image is to be overlaid on client-based viewfinder sl@0: @note This value is available only to the API clients using CCamera::New2L() or CCamera::NewDuplicate2L() sl@0: */ sl@0: EModeClientViewfinder = 0x00020, sl@0: /** sl@0: The image is to be overlaid when Continuous Still Image driving mode is active. sl@0: @note This value is available only to the API clients using CCamera::New2L() or CCamera::NewDuplicate2L() sl@0: */ sl@0: EModeStillImageContinuous = 0x00080, sl@0: /** sl@0: The image is to be overlaid when Still Image Bracketing driving mode is active. sl@0: @note This value is available only to the API clients using CCamera::New2L() or CCamera::NewDuplicate2L() sl@0: */ sl@0: EModeStillImageBracket = 0x00100, sl@0: /** sl@0: The image is to be overlaid when Still Image Bracketing with Merge option driving mode is active. sl@0: @note This value is available only to the API clients using CCamera::New2L() or CCamera::NewDuplicate2L() sl@0: */ sl@0: EModeStillImageBracketMerge = 0x00200, sl@0: /** sl@0: The image is to be overlaid when Timed Still Image driving mode is active. sl@0: @note This value is available only to the API clients using CCamera::New2L() or CCamera::NewDuplicate2L() sl@0: */ sl@0: EModeStillImageTimed = 0x00400, sl@0: /** sl@0: The image is to be overlaid when Timed Still Image with Lapse option driving mode is active. sl@0: @note This value is available only to the API clients using CCamera::New2L() or CCamera::NewDuplicate2L() sl@0: */ sl@0: EModeStillImageTimeLapse = 0x00800, sl@0: /** sl@0: The image is to be overlaid when Still Image Burst driving mode is active. sl@0: @note This value is available only to the API clients using CCamera::New2L() or CCamera::NewDuplicate2L() sl@0: */ sl@0: EModeStillImageBurst = 0x01000 sl@0: }; sl@0: sl@0: /** sl@0: Overlay types sl@0: sl@0: Type in which alpha value will be provided. sl@0: */ sl@0: enum TOverlayType sl@0: { sl@0: /** Does not support overlays. */ sl@0: EOverlayNone = 0x00, sl@0: /** Blending is on a per pixel basis, where the alpha value information is provided in the overlay bitmap itself. sl@0: The alpha value is specified in each pixel of the bitmap (it is the alpha componenet of the TRgb object). The sl@0: display mode of the bitmap should be such that alpha value is supported. TOverlayParameters::iAlphaValue is sl@0: neglected in this case. */ sl@0: EPerPixel = 0x01, sl@0: /** Blending is on a per plane basis, where all pixels are affected by the same alpha value. The alpha value is sl@0: provided through TOverlayParameters::iAlphaValue. */ sl@0: EPerPlane = 0x02 sl@0: }; sl@0: sl@0: /** sl@0: Blending types sl@0: sl@0: Type of supported blending. sl@0: */ sl@0: enum TBlendingType sl@0: { sl@0: /** Does not support blending. */ sl@0: EBlendNone, sl@0: /** Supports only binary blending. If alpha value is 0xFF, it is opaque, otherwise transparent. */ sl@0: EBinary, sl@0: /** Full support for blending - all values in the range [0:255]. */ sl@0: EFullRange, sl@0: /** Supports only dynamic binary blending - sl@0: allows values to be changed when overlay is being displayed. If alpha value is 0xFF, it is opaque, sl@0: otherwise transparent. Since the blending is dynamic, SetModifiableOverlayBitmapL shall be used such that the sl@0: bitmap could be changed by the implementation. */ sl@0: EBinaryDynamic, sl@0: /** Full support for dynamic blending - all values in the range [0:255] sl@0: - allows values to be changed when overlay is being displayed. Since the blending is dynamic, sl@0: SetModifiableOverlayBitmapL shall be used such that the bitmap could be changed by the implementation. */ sl@0: EFullRangeDynamic sl@0: }; sl@0: sl@0: /** sl@0: Overlay support information characterizing the overlay functionality as a whole. sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class TOverlaySupportInfo sl@0: { sl@0: public: sl@0: IMPORT_C explicit TOverlaySupportInfo(); sl@0: sl@0: IMPORT_C TUint Size() const; sl@0: IMPORT_C TUint Version() const; sl@0: sl@0: public: sl@0: /** The camera modes that the ECam implementation supports when applying overlays. sl@0: The modes are held as a bitwise logical OR of the relevant individual modes sl@0: defined in CCamera::CCameraOverlay::TOverlayCameraMode. */ sl@0: TUint iSupportedModes; sl@0: /** The camera types that the ECam implementation supports when applying overlays. sl@0: The types are held as a bitwise logical OR of the relevant individual types sl@0: defined in CCamera::CCameraOverlay::TOverlayType. */ sl@0: TUint iSupportedTypes; sl@0: /** Represents blending type for EPerPlane overlay Type.*/ sl@0: TBlendingType iPerPlane; sl@0: /** Represents blending type for EPerPixel overlay Type.*/ sl@0: TBlendingType iPerPixel; sl@0: /** Whether overlapping overlays are supported. */ sl@0: TBool iCanOverlap; sl@0: sl@0: /** This is an input parameter which the client needs to provide. It represents the specific camera mode for which sl@0: the overlay support information is required. sl@0: Default values for iDesiredCameraMode (that is, CCamera::CCameraOverlay::EModeNone) and iViewFinderHandle (that is, sl@0: KECamOverlayInvalidViewFinderHandle) implies that the client is using the TOverlaySupportInfo as before and sl@0: iSupportedModes will not be neglected. Refer to TOverlaySupportInfo(). sl@0: */ sl@0: TOverlayCameraMode iDesiredCameraMode; sl@0: /** This is also another input parameter which the client needs to provide. It represents the specific viewfinder sl@0: handle for which the overlay support information is required. sl@0: If iViewFinderHandle is KECamOverlayNoSpecificViewFinderHandle, then generic overlay support is required which will sl@0: be valid for every viewfinder handle of type iDesiredCameraMode. sl@0: Default values for iDesiredCameraMode (that is, CCamera::CCameraOverlay::EModeNone) and iViewFinderHandle (that is, sl@0: KECamOverlayInvalidViewFinderHandle) implies that the client is using the TOverlaySupportInfo as before and sl@0: iSupportedModes will not be neglected. Refer to TOverlaySupportInfo(). sl@0: */ sl@0: TInt iViewFinderHandle; sl@0: sl@0: private: sl@0: // reserved for future expansion sl@0: TInt iReserved3; sl@0: }; sl@0: sl@0: /** sl@0: Overlay parameters characterizing a particular overlay. sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class TOverlayParameters sl@0: { sl@0: public: sl@0: IMPORT_C explicit TOverlayParameters(); sl@0: sl@0: IMPORT_C TUint Size() const; sl@0: IMPORT_C TUint Version() const; sl@0: sl@0: public: sl@0: /** The camera modes in which this image overlay can be used. sl@0: The modes are held as a bitwise logical OR of the relevant individual modes sl@0: defined in CCamera::CCameraOverlay::TOverlayCameraMode. */ sl@0: TUint iCurrentModes; sl@0: /** The camera types in which this image overlay can be used. sl@0: The types are held as a bitwise logical OR of the relevant individual types sl@0: defined in CCamera::CCameraOverlay::TOverlayType. */ sl@0: TUint iCurrentTypes; sl@0: /** This is the alpha value to be applied when iCurrentTypes contains type sl@0: CCamera::CCameraOverlay::TOverlayType::EPerPlane. The alpha value for red, green and blue is packed into this sl@0: TInt. The layout of this TInt is such that the most significant byte (from left side) is not used at all and the sl@0: remaining three bytes (after the most significant byte) contains the alpha value for red, green and blue. sl@0: Otherwise, if iCurrentTypes only contains type CCamera::CCameraOverlay::TOverlayType::EPerPixel, sl@0: then iAlphaValue will not be used. */ sl@0: TInt iAlphaValue; sl@0: /** Top left corner within the original image, where the overlay image is to be blended. */ sl@0: TPoint iPosition; sl@0: /** The z-order of the overlay to indicate relative depth when several overlays are applied. sl@0: Values are in the range 0 to 100. The overlay with iZOrder of 0 is the deepest.*/ sl@0: TUint iZOrder; sl@0: /** The handle for the viewfinder on which the overlay is supposed to be applied. Only one viewfinder handle can be passed. sl@0: If KECamOverlayNoSpecificViewFinderHandle is provided by the client, then the overlay is supposed to be applied for every sl@0: viewfinder handle of type as given by iCurrentModes. sl@0: If KECamOverlayInvalidViewFinderHandle, then the default implementation is being used where sl@0: TOverlayParameters::iCurrentModes will not be neglected and overlay will be applied for every viewfinder alongwith sl@0: other camera modes. sl@0: */ sl@0: TInt iViewFinderHandle; sl@0: private: sl@0: // reserved for future expansion. sl@0: TInt iReserved2; sl@0: TInt iReserved3; sl@0: // Reserved members which came into existence as a result of removing Tsize public member variable. sl@0: TInt iReserved4; sl@0: TInt iReserved5; sl@0: }; sl@0: sl@0: public: sl@0: sl@0: IMPORT_C static CCameraOverlay* NewL(CCamera& aCamera); sl@0: IMPORT_C ~CCameraOverlay(); sl@0: IMPORT_C void GetOverlaySupport(TOverlaySupportInfo& aInfo); sl@0: sl@0: IMPORT_C TUint CreateOverlayL(const TOverlayParameters& aParameters, CFbsBitmap* aBitmap); sl@0: IMPORT_C void ReleaseOverlay(TUint aOverlayHandle); sl@0: sl@0: IMPORT_C void SetOverlayBitmapL(TUint aOverlayHandle, const CFbsBitmap* aBitmap); sl@0: IMPORT_C void SetModifiableOverlayBitmapL(TUint aOverlayHandle, CFbsBitmap* aBitmap); sl@0: sl@0: IMPORT_C void GetOverlayBitmapL(TUint aOverlayHandle, CFbsBitmap* aBitmap); sl@0: IMPORT_C void GetOverlayParametersL(TUint aOverlayHandle, TOverlayParameters& aInfo); sl@0: IMPORT_C void SetOverlayParametersL(TUint aOverlayHandle, const TOverlayParameters& aParameters); sl@0: sl@0: IMPORT_C void GetAllOverlaysInZOrderL(RArray& aOverlayHandles); sl@0: IMPORT_C void SetAllOverlaysInZOrderL(const RArray& aOverlayHandles); sl@0: sl@0: IMPORT_C void GetAllOverlaysInZOrderL(TOverlayCameraMode aOverlayCameraMode, TInt aViewFinderHandle, RArray& aOverlayHandles) const; sl@0: IMPORT_C void SetAllOverlaysInZOrderL(TOverlayCameraMode aOverlayCameraMode, TInt aViewFinderHandle, const RArray& aOverlayHandles); sl@0: sl@0: private: sl@0: CCameraOverlay(CCamera& aOwner); sl@0: void ConstructL(); sl@0: sl@0: private: sl@0: CCamera& iOwner; sl@0: MCameraOverlay* iImpl; // not owned sl@0: MCameraOverlay2* iImpl2; // not owned sl@0: }; sl@0: sl@0: #endif // CAMERAOVERLAY_H