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: #ifndef __BMALPHABLEND_H__ sl@0: #define __BMALPHABLEND_H__ sl@0: sl@0: /** sl@0: MAlphaBlend interface provides only one method, which does an alpha blending using the sl@0: supplied as arguments source and mask bitmap scanline data and writes the result to sl@0: the screen. The content of the source and mask bitmap scanlines is preserved. sl@0: @internalComponent sl@0: */ sl@0: class MAlphaBlend sl@0: { sl@0: public: sl@0: /** sl@0: TShadowing enum values are used in alpha blending implementations to specify when sl@0: the shadowing/fading has to be done: before or after tha alpha blending. sl@0: @internalComponent sl@0: */ sl@0: enum TShadowing sl@0: { sl@0: EShdwBefore, sl@0: EShdwAfter sl@0: }; sl@0: sl@0: /** sl@0: The method performs an alpha blending of the source data - aRgbBuffer and the screen sl@0: pixels, using the data from aMaskBuffer buffer as an alpha blending factor. sl@0: The formula used for that, is: sl@0: (C1 * A + C2 * (255 - A)) / 255, where: sl@0: - C1 - a pixel from aRgbBuffer1; sl@0: - C2 - a pixel from screen; sl@0: - A - a pixel from aMaskBuffer; sl@0: The content of source and mask buffers is preserved. sl@0: The calculated alpha blended pixel is written to the destination - the screen or a bitmap. sl@0: @param aX Logical X coordinate of the position in the target the result should be drawn to. sl@0: @param aY Logical Y coordinate of the position in the target the result should be drawn to. sl@0: @param aLength Source data - length in pixels. sl@0: @param aRgbBuffer A pointer to a line of the source bitmap data. sl@0: @param aMaskBuffer Buffer containing the data which should be used as an sl@0: alpha blending factor. sl@0: @param aShadowing It says when the shadowing/fading has to be done - before or after the sl@0: alpha blending transformation. sl@0: Before: A shadow/fade copy of the source bitmap will be used. sl@0: After: The result pixels will be shadowed/faded. sl@0: @param aDrawMode The mode for rendering the source image to the destination. sl@0: */ sl@0: virtual void WriteRgbAlphaLine(TInt aX, sl@0: TInt aY, sl@0: TInt aLength, sl@0: const TUint8* aRgbBuffer, sl@0: const TUint8* aMaskBuffer, sl@0: TShadowing aShadowing, sl@0: CGraphicsContext::TDrawMode aDrawMode) = 0; sl@0: }; sl@0: sl@0: sl@0: /** sl@0: MFastBlit provides optimised blitting for a number of special cases. It is similar to sl@0: MAlphaBlend except that instead of taking generic buffers as parameters, it takes pointers sl@0: to scanlines in their native format. sl@0: @internalTechnology sl@0: */ sl@0: class MFastBlit sl@0: { sl@0: public: sl@0: /** sl@0: Performs Alpha blending.Acceptable source formats are EColor64K and EColor16MU. sl@0: Mask format must be EGray256. sl@0: @param aX Logical X coordinate of the position in the target the result should be drawn to. sl@0: @param aY Logical Y coordinate of the position in the target the result should be drawn to. sl@0: @param aLength Source data - length in pixels. sl@0: @param aSrcX X coordinate of the position of the first pixel in the source bitmap to use. sl@0: @param aSrcPtr Pointer to the start of the current scanline of the source bitmap. sl@0: @param aSrcFormat Pixel format of the source bitmap. sl@0: @param aMaskX X coordinate of the position of the first pixel in the mask to use. sl@0: @param aMaskPtr Pointer to the start of the current scanline of the mask bitmap. sl@0: @param aShadowing It says when the shadowing/fading has to be done - before or after the sl@0: alpha blending transformation. sl@0: Before: A shadow/fade copy of the source bitmap will be used. sl@0: After: The result pixels will be shadowed/faded. sl@0: */ sl@0: virtual void WriteAlphaLineEx( TInt aX, sl@0: TInt aY, sl@0: TInt aLength, sl@0: TInt aSrcX, sl@0: const TUint32* aSrcPtr, sl@0: TDisplayMode aSrcFormat, sl@0: TInt aMaskX, sl@0: const TUint32* aMaskPtr, sl@0: MAlphaBlend::TShadowing aShadowing) = 0; sl@0: sl@0: /** sl@0: Performs masked blitting. Acceptable source formats are EColor64K and EColor16MU. sl@0: Mask format must be EGray2. sl@0: @param aX Logical X coordinate of the position in the target the result should be drawn to. sl@0: @param aY Logical Y coordinate of the position in the target the result should be drawn to. sl@0: @param aLength Source data - length in pixels. sl@0: @param aSrcX X coordinate of the position of the first pixel in the source bitmap to use. sl@0: @param aSrcPtr Pointer to the start of the current scanline of the source bitmap. sl@0: @param aSrcFormat Pixel format of the source bitmap. sl@0: @param aMaskX X coordinate of the position of the first pixel in the mask to use. sl@0: @param aMaskPtr Pointer to the start of the current scanline of the mask bitmap. sl@0: @param aInvertMask Specifies if the mask shuld be inverted. sl@0: */ sl@0: virtual void WriteMaskLineEx( TInt aX, sl@0: TInt aY, sl@0: TInt aLength, sl@0: TInt aSrcX, sl@0: const TUint32* aSrcPtr, sl@0: TDisplayMode aSrcFormat, sl@0: TInt aMaskX, sl@0: const TUint32* aMaskPtr, sl@0: TBool aInvertMask) = 0; sl@0: sl@0: }; sl@0: sl@0: sl@0: sl@0: /** sl@0: MFastBlit2 provides optimised blitting for a number of special cases. sl@0: It is used for basic blitting where source and destination pixel formats match. sl@0: @internalTechnology sl@0: */ sl@0: class MFastBlit2 sl@0: { sl@0: public: sl@0: /** sl@0: Performs basic blitting. sl@0: Source and destination pixel formats must match. sl@0: Assumes that aSrcRect is contained by the source device. sl@0: Assumes that the resulting destination rectangle is contained by the destination device. sl@0: @param aDest Logical coordinates of the position in the target that the result should be drawn to. sl@0: @param aSrcDrawDevice Draw device that will act as the source of the blit. sl@0: @param aSrcRect The rectangular region of the source to be blitted. sl@0: @return KErrNone unless an error occurs in which case no blitting occurs and a standard error code is returned. sl@0: */ sl@0: virtual TInt WriteBitmapBlock(const TPoint& aDest, sl@0: CFbsDrawDevice* aSrcDrawDevice, sl@0: const TRect& aSrcRect) = 0; sl@0: sl@0: /** sl@0: Performs basic blitting. sl@0: Source and destination pixel formats must match. sl@0: Assumes that aSrcRect is contained by the source device. sl@0: Assumes that the resulting destination rectangle is contained by the destination device. sl@0: @param aDest Logical coordinates of the position in the target that the result should be drawn to. sl@0: @param aSrcBase Base address of the source bitmap. sl@0: @param aSrcStride Length in bytes between scanlines of the source bitmap. sl@0: @param aSrcSize Size of the source bitmap in pixels. sl@0: @param aSrcRect The rectangular region of the source to be blitted. sl@0: @return KErrNone unless an error occurs in which case no blitting occurs and a standard error code is returned. sl@0: */ sl@0: virtual TInt WriteBitmapBlock(const TPoint& aDest, sl@0: const TUint32* aSrcBase, sl@0: TInt aSrcStride, sl@0: const TSize& aSrcSize, sl@0: const TRect& aSrcRect) = 0; sl@0: /** sl@0: Returns a pointer to the first pixel. sl@0: @return a pointer to the first pixel. sl@0: */ sl@0: virtual const TUint32* Bits() const = 0; sl@0: }; sl@0: sl@0: /** sl@0: MOutlineAndShadowBlend provides blending of outline pen, shadow, fill and the background colour. sl@0: It is used to draw the fonts with outline and shadow effects. sl@0: @internalTechnology sl@0: */ sl@0: class MOutlineAndShadowBlend sl@0: { sl@0: public: sl@0: /** sl@0: Performs blending of outline, shadow, fill and background colours and draws to the sl@0: screen. It uses pen colour as outline colour, brush colour as fill colour and pixel sl@0: colour as background colour. Transparency is supported for modes higher than EColor256, sl@0: alpha value of pen colour is used for same in these modes and other modes ignore this sl@0: value. sl@0: @param aX Logical X coordinate of the start of the line. sl@0: @param aY Logical Y coordinate of the line. sl@0: @param aLength Length in pixels to modify. sl@0: @param aOutlinePenColor Outline pen colour of the font. sl@0: @param aShadowColor Shadow colour of the font. sl@0: @param aFillColor Fill colour of the font. sl@0: @param aDataBuffer Buffer containing the data. sl@0: @return KErrNone if it is successful, otherwise a standard error code is returned. sl@0: */ sl@0: virtual TInt WriteRgbOutlineAndShadow(TInt aX, TInt aY, const TInt aLength, sl@0: TUint32 aOutlinePenColor, TUint32 aShadowColor, sl@0: TUint32 aFillColor, const TUint8* aDataBuffer) = 0; sl@0: }; sl@0: sl@0: class MFastBlend sl@0: { sl@0: public: sl@0: /** sl@0: Performs blended blitting. sl@0: The interface can selectively supports various combinations of source and destination. sl@0: Assumes that aSrcRect is contained by the source device. sl@0: Assumes that the resulting destination rectangle is contained by the destination device. sl@0: @param aDest Logical coordinates of the position in the target that the result should be drawn to. sl@0: @param aSrcDrawDevice Draw device that will act as the source of the blit. sl@0: @param aSrcRect The rectangular region of the source to be blitted. sl@0: @param aDrawMode Current draw mode sl@0: @param aShadowMode Current shadow mode sl@0: @return if display modes supported KErrNone, else KErrNotSupported. sl@0: */ sl@0: virtual TInt FastBlendBitmap(const TPoint& aDest, sl@0: CFbsDrawDevice* aSrcDrawDevice, sl@0: const TRect& aSrcRect, sl@0: CGraphicsContext::TDrawMode aDrawMode, sl@0: TInt aShadowMode) = 0; sl@0: /** sl@0: Performs blended blitting. sl@0: The interface can selectively supports various combinations of source and destination. sl@0: Assumes that aSrcRect is contained by the source device. sl@0: Assumes that the resulting destination rectangle is contained by the destination device. sl@0: @param aDest Logical coordinates of the position in the target that the result should be drawn to. sl@0: @param aSrcBase Base address of the source bitmap. sl@0: @param aSrcStride Length in bytes between scanlines of the source bitmap. sl@0: @param aSrcSize Size of the source bitmap in pixels. sl@0: @param aSrcRect The rectangular region of the source to be blitted. sl@0: @param aSrcDisplayMode Display mode of the source bitmap sl@0: @param aDrawMode Current draw mode sl@0: @param aShadowMode Current shadow mode sl@0: @return if display modes supported KErrNone, else KErrNotSupported. sl@0: */ sl@0: virtual TInt FastBlendBitmap(const TPoint& aDest,const TUint32* aSrcBase,TInt aSrcStride, sl@0: const TSize& aSrcSize,const TRect& aSrcRect,TDisplayMode aSrcDisplayMode, sl@0: CGraphicsContext::TDrawMode aDrawMode,TInt aShadowMode) = 0; sl@0: /** sl@0: Performs blended blitting. sl@0: The interface can selectively supports various combinations of source and destination. sl@0: Assumes that aSrcRect is contained by the source device. sl@0: Assumes that the resulting destination rectangle is contained by the destination device. sl@0: @param aDest Logical coordinates of the position in the target that the result should be drawn to. sl@0: @param aSrcBase Base address of the source bitmap. sl@0: @param aSrcStride Length in bytes between scanlines of the source bitmap. sl@0: @param aSrcSize Size of the source bitmap in pixels. sl@0: @param aSrcRect The rectangular region of the source to be blitted. sl@0: @param aSrcDisplayMode Display mode of the source bitmap sl@0: @param aMaskBase Base address of the source bitmap. sl@0: @param aMaskStride Length in bytes between scanlines of the source bitmap. sl@0: @param aMaskDisplayMode Display mode of the source bitmap sl@0: @param aMaskSize Size of the source bitmap in pixels. sl@0: @param aInvertMask If true invert the logic of an EGray2 mask sl@0: @param aDrawMode Current draw mode sl@0: @param aShadowMode Current shadow mode sl@0: @return if display modes supported KErrNone, else KErrNotSupported. sl@0: */ sl@0: virtual TInt FastBlendBitmapMasked(const TPoint& aDest, const TUint32* aSrcBase, TInt aSrcStride, sl@0: const TSize& aSrcSize, const TRect& aSrcRect, TDisplayMode aSrcDisplayMode, sl@0: const TUint32* aMaskBase, TInt aMaskStride, TDisplayMode aMaskDisplayMode, const TSize &aMaskSize,const TPoint &aMaskSrcPos, TBool aInvertMask, sl@0: CGraphicsContext::TDrawMode aDrawMode, TInt aShadowMode)=0; sl@0: /** sl@0: Performs scaled blended blitting. sl@0: The interface can selectively supports various combinations of source and destination. sl@0: Assumes that aClipRect is contained by the source device. sl@0: Assumes that the resulting destination rectangle is contained by the destination device. sl@0: @param aClipRect The target rectangle to clip drawing to sl@0: @param aDest Logical coordinates of the position in the target that the result should be drawn to. sl@0: @param aSrcRect Source rectangle sl@0: @param aSrcBase Base address of the source bitmap. sl@0: @param aSrcStride Length in bytes between scanlines of the source bitmap. sl@0: @param aSrcDisplayMode Display mode of the source bitmap sl@0: @param aSrcSize Size of the source bitmap in pixels. sl@0: @param aDrawMode Current draw mode sl@0: @param aShadowMode Current shadow mode sl@0: @return if display modes supported KErrNone, else KErrNotSupported. sl@0: */ sl@0: virtual TInt FastBlendBitmapScaled(const TRect &aClipRect, const TRect& aDest, sl@0: const TRect& aSrcRect, const TUint32 *aSrcBase, TInt aSrcStride, sl@0: TDisplayMode aSrcDisplayMode, const TSize &aSrcSize, sl@0: CGraphicsContext::TDrawMode aDrawMode, TInt aShadowMode) = 0; sl@0: /** sl@0: Performs scaled blended blitting. sl@0: The interface can selectively supports various combinations of source and destination. sl@0: Assumes that aClipRect is contained by the source device. sl@0: Assumes that the resulting destination rectangle is contained by the destination device. sl@0: @param aClipRect The target rectangle to clip drawing to sl@0: @param aDest Logical coordinates of the position in the target that the result should be drawn to. sl@0: @param aSrcRect Source rectangle sl@0: @param aSrcBase Base address of the source bitmap. sl@0: @param aSrcStride Length in bytes between scanlines of the source bitmap. sl@0: @param aSrcDisplayMode Display mode of the source bitmap sl@0: @param aSrcSize Size of the source bitmap in pixels. sl@0: @param aMaskBase Base address of the source bitmap. sl@0: @param aMaskStride Length in bytes between scanlines of the source bitmap. sl@0: @param aMaskDisplayMode Display mode of the source bitmap sl@0: @param aMaskSize Size of the source bitmap in pixels. sl@0: @param aInvertMask If true invert the logic of an EGray2 mask sl@0: @param aDrawMode Current draw mode sl@0: @param aShadowMode Current shadow mode sl@0: @return if display modes supported KErrNone, else KErrNotSupported. sl@0: */ sl@0: virtual TInt FastBlendBitmapMaskedScaled(const TRect &aClipRect, const TRect& aDest, sl@0: const TRect& aSrcRect, const TUint32 *aSrcBase, TInt aSrcStride, sl@0: TDisplayMode aSrcDisplayMode, const TSize &aSrcSize, sl@0: const TUint32* aMaskBase, TInt aMaskStride, TDisplayMode aMaskDisplayMode, const TSize &aMaskSize,TBool aInvertMask, sl@0: CGraphicsContext::TDrawMode aDrawMode, TInt aShadowMode) = 0; sl@0: }; sl@0: sl@0: #endif//__BMALPHABLEND_H__