sl@0: // Copyright (c) 2008-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: // Interface for Render Stage Abstract Graphics Context sl@0: // sl@0: // sl@0: sl@0: /** sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: sl@0: #ifndef __WSGRAPHICSCONTEXT_H__ sl@0: #define __WSGRAPHICSCONTEXT_H__ sl@0: sl@0: #include sl@0: #include sl@0: sl@0: /** Render Stage abstract graphics context. sl@0: sl@0: This interface is provided by Render Stages. It abstracts the graphics context sl@0: of the pixel target. The intention is to allow Render Stages to intercept sl@0: draw operations so that they can be batched (to reduce flickering), modified sl@0: (to provide transition effects), or re-directed (to alternate back-end sl@0: architectures). sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class MWsGraphicsContext : public MWsObjectProvider sl@0: { sl@0: public: sl@0: DECLARE_WS_TYPE_ID(KMWsGraphicsContext) sl@0: /** Text alignment. sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: enum TTextAlign sl@0: { sl@0: /** Text is left-aligned. */ sl@0: ELeft, sl@0: /** Text is centred. */ sl@0: ECenter, sl@0: /** Text is right-aligned. */ sl@0: ERight sl@0: }; sl@0: sl@0: /** sl@0: Brush styles. sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: enum TBrushStyle sl@0: { sl@0: /** The brush fill has no effect (default). */ sl@0: ENullBrush, sl@0: /** The brush fills with a solid single colour, determined by sl@0: SetBrushColor() and the drawing mode. */ sl@0: ESolidBrush, sl@0: /** The brush fills with a selected bitmap pattern, set by sl@0: UseBrushPattern(). */ sl@0: EPatternedBrush, sl@0: /** The brush fills with vertical hatching lines going from top to sl@0: bottom. */ sl@0: EVerticalHatchBrush, sl@0: /** The brush fills with diagonal hatching lines going from bottom sl@0: left to top right. */ sl@0: EForwardDiagonalHatchBrush, sl@0: /** The brush fills with horizontal hatching lines going from left sl@0: to right. */ sl@0: EHorizontalHatchBrush, sl@0: /** The brush fills with rearward diagonal hatching lines going from top sl@0: left to bottom right. */ sl@0: ERearwardDiagonalHatchBrush, sl@0: /** The brush fills with horizontal and vertical hatching lines going sl@0: from left to right plus lines going from top to bottom giving the sl@0: effect of a grid of small squares */ sl@0: ESquareCrossHatchBrush, sl@0: /** The brush fills with forward diagonal and rearward diagonal hatching sl@0: lines going from bottom left to top right plus lines going from top left sl@0: to bottom right giving the effect of a grid of small diamonds. */ sl@0: EDiamondCrossHatchBrush sl@0: }; sl@0: sl@0: /** sl@0: Drawing modes. The drawing modes define the way that the pen and brush colors are sl@0: drawn, EDrawModePEN means do alpha blending if appropriate, EDrawModeWriteAlpha means sl@0: don't do alpha blending. sl@0: sl@0: @see SetDrawMode() sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: enum TDrawMode sl@0: { sl@0: /** Uses both pen and brush colour as they are. */ sl@0: EDrawModePEN=32, sl@0: /** Writes alpha information in the source directly into the destination, rather than blending. */ sl@0: EDrawModeWriteAlpha=64 sl@0: }; sl@0: sl@0: /** sl@0: Pen styles. The screen pattern unit in each definition below describes the sl@0: pattern drawn by the line 1 represents a pixel drawn, 0 represents a sl@0: pixel that is not affected. sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: enum TPenStyle sl@0: { sl@0: /** The pen does not draw. Screen pattern unit = 00... */ sl@0: ENullPen, sl@0: /** A solid line (default). Screen pattern unit = 11... */ sl@0: ESolidPen, sl@0: /** A dotted line. Screen pattern unit = 1000... */ sl@0: EDottedPen, sl@0: /** A dashed line. Screen pattern unit = 111000... */ sl@0: EDashedPen, sl@0: /** A line of alternating dashes and dots. Screen pattern unit = sl@0: 1111001100... */ sl@0: EDotDashPen, sl@0: /** A line of alternating single dashes and pairs of dots. Screen sl@0: pattern unit = 11110011001100... */ sl@0: EDotDotDashPen sl@0: }; sl@0: sl@0: /** sl@0: Rules used to fill self-intersecting polygons. sl@0: sl@0: The filling of a polygon proceeds as follows: for a given point in the sl@0: polygon, then: sl@0: sl@0: if the rule is TFillRule::EAlternate (default) and it has an odd winding sl@0: number, then fill the surrounding area. sl@0: sl@0: if the rule is TFillRule::EWinding and it has a winding number greater than sl@0: zero, then fill the surrounding area. sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: enum TFillRule sl@0: { sl@0: /** Only fill areas with odd winding numbers. */ sl@0: EAlternate, sl@0: /** Fill areas with winding numbers greater than zero. */ sl@0: EWinding sl@0: }; sl@0: sl@0: /** sl@0: Font underline flags. sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: enum TFontUnderline sl@0: { sl@0: /** Font is not underlined. */ sl@0: EUnderlineOff, sl@0: /** Font is underlined. */ sl@0: EUnderlineOn sl@0: }; sl@0: sl@0: /** sl@0: Font strike-through flags. sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: enum TFontStrikethrough sl@0: { sl@0: /** Font is not struck-through. */ sl@0: EStrikethroughOff, sl@0: /** Font is struck-through. */ sl@0: EStrikethroughOn sl@0: }; sl@0: sl@0: /** sl@0: Parameters used in drawing text within supplied context. sl@0: It is used by MWsGraphicsContext::DrawText() and MWsGraphicsContext::DrawTextVertical() family of API's sl@0: to draw text from iStart to iEnd withing the supplied text descriptor. sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class TTextParameters sl@0: { sl@0: public: sl@0: TTextParameters(): sl@0: iStart(0), sl@0: iEnd(KMaxTInt), sl@0: iFlags(0) sl@0: { sl@0: } sl@0: TInt iStart; sl@0: TInt iEnd; sl@0: TUint16 iFlags; sl@0: /* Reserved for future use */ sl@0: TAny* iReserved1; sl@0: TAny* iReserved2; sl@0: TAny* iReserved3; sl@0: TAny* iReserved4; sl@0: }; sl@0: sl@0: public: sl@0: // The following are equivalent to CFbsBitGc functionality which maps sl@0: // to client’s CWindowGc requests sl@0: virtual void BitBlt(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap) = 0; sl@0: virtual void BitBlt(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect) = 0; sl@0: virtual void BitBltMasked(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect, const CFbsBitmap& aMaskBitmap, TBool aInvertMask) = 0; sl@0: virtual void BitBltMasked(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect, const CFbsBitmap& aMaskBitmap, const TPoint& aMaskPos) = 0; sl@0: virtual void ResetClippingRegion() = 0; sl@0: virtual void Clear() = 0; sl@0: virtual void Clear(const TRect& aRect) = 0; sl@0: virtual void ResetBrushPattern() = 0; sl@0: virtual void ResetFont() = 0; sl@0: virtual void DrawArc(const TRect& aRect, const TPoint& aStart, const TPoint& aEnd) = 0; sl@0: virtual void DrawPie(const TRect& aRect, const TPoint& aStart, const TPoint& aEnd) = 0; sl@0: virtual void DrawBitmap(const TRect& aDestRect, const CFbsBitmap& aSourceBitmap) = 0; sl@0: virtual void DrawBitmap(const TRect& aDestRect, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect) = 0; sl@0: virtual void DrawBitmapMasked(const TRect& aDestRect, const CFbsBitmap& aSourceBitmap,const TRect& aSourceRect, const CFbsBitmap& aMaskBitmap, TBool aInvertMask) = 0; sl@0: virtual void DrawRoundRect(const TRect& aRect, const TSize& aEllipse) = 0; sl@0: virtual void DrawPolyLine(const TArray& aPointList) = 0; sl@0: virtual void DrawPolyLineNoEndPoint(const TArray& aPointList) = 0; sl@0: virtual void DrawPolygon(const TArray& aPointList, TFillRule aFillRule=EAlternate) = 0; sl@0: virtual void DrawEllipse(const TRect& aRect) = 0; sl@0: virtual void DrawLine(const TPoint& aStart, const TPoint& aEnd) = 0; sl@0: virtual void DrawLineTo(const TPoint& aPoint) = 0; sl@0: virtual void DrawLineBy(const TPoint& aVector) = 0; sl@0: virtual void DrawRect(const TRect& aRect) = 0; sl@0: virtual void DrawText(const TDesC& aText,const TTextParameters* aParam) = 0; sl@0: virtual void DrawText(const TDesC& aText,const TTextParameters* aParam,const TPoint& aPosition) = 0; sl@0: virtual void DrawText(const TDesC& aText,const TTextParameters* aParam,const TRect& aClipRect) = 0; sl@0: virtual void DrawText(const TDesC& aText,const TTextParameters* aParam,const TRect& aClipFillRect,TInt aBaselineOffset,TTextAlign aHrz=ELeft,TInt aMargin=0) = 0; sl@0: virtual void DrawTextVertical(const TDesC& aText,const TTextParameters* aParam,TBool aUp) = 0; sl@0: virtual void DrawTextVertical(const TDesC& aText,const TTextParameters* aParam,const TPoint& aPosition,TBool aUp) = 0; sl@0: virtual void DrawTextVertical(const TDesC& aText,const TTextParameters* aParam,const TRect& aClipRect,TBool aUp) = 0; sl@0: virtual void DrawTextVertical(const TDesC& aText,const TTextParameters* aParam,const TRect& aClipRect,TInt aBaselineOffset,TBool aUp,TTextAlign aVert=ELeft,TInt aMargin=0) = 0; sl@0: virtual void DrawTextVertical(const TDesC& aText,const TTextParameters* aParam,const TRect& aClipRect,TInt aBaselineOffset,TInt aTextWidth,TBool aUp,TTextAlign aVert=ELeft,TInt aMargin=0) = 0; sl@0: virtual void MoveTo(const TPoint& aPoint) = 0; sl@0: virtual void MoveBy(const TPoint& aVector) = 0; sl@0: virtual void Plot(const TPoint& aPoint) = 0; sl@0: virtual void Reset() = 0; sl@0: virtual void SetBrushColor(const TRgb& aColor) = 0; sl@0: virtual void SetBrushOrigin(const TPoint& aOrigin) = 0; sl@0: virtual void SetBrushStyle(TBrushStyle aBrushStyle) = 0; sl@0: virtual void SetClippingRegion(const TRegion& aRegion) = 0; sl@0: virtual void SetDrawMode(TDrawMode aDrawMode) = 0; sl@0: virtual void SetOrigin(const TPoint& aPoint = TPoint(0, 0)) = 0; sl@0: virtual void SetPenColor(const TRgb& aColor) = 0; sl@0: virtual void SetPenStyle(TPenStyle aPenStyle) = 0; sl@0: virtual void SetPenSize(const TSize& aSize) = 0; sl@0: virtual void SetTextShadowColor(const TRgb& aColor) = 0; sl@0: virtual void SetCharJustification(TInt aExcessWidth, TInt aNumChars) = 0; sl@0: virtual void SetWordJustification(TInt aExcessWidth, TInt aNumGaps) = 0; sl@0: virtual void SetUnderlineStyle(TFontUnderline aUnderlineStyle) = 0; sl@0: virtual void SetStrikethroughStyle(TFontStrikethrough aStrikethroughStyle) = 0; sl@0: virtual void SetBrushPattern(const CFbsBitmap& aBitmap) = 0; sl@0: virtual void SetBrushPattern(TInt aFbsBitmapHandle) = 0; sl@0: virtual void SetFont(const CFont* aFont) = 0; sl@0: sl@0: // CFbsBitGc functionality used by Wserv for its internal operations sl@0: virtual void CopyRect(const TPoint& aOffset, const TRect& aRect) = 0; sl@0: virtual void UpdateJustification(const TDesC& aText,const TTextParameters* aParam) = 0; sl@0: virtual void UpdateJustificationVertical(const TDesC& aText,const TTextParameters* aParam,TBool aUp) = 0; sl@0: virtual void SetFontNoDuplicate(const CFont* aFont) = 0; sl@0: virtual TBool HasBrushPattern() const = 0; sl@0: virtual TBool HasFont() const = 0; sl@0: virtual TRgb BrushColor() const = 0; sl@0: virtual TRgb PenColor() const = 0; sl@0: virtual TRgb TextShadowColor() const = 0; sl@0: sl@0: // Return current error status of MWsGraphicsContext sl@0: virtual TInt GetError() = 0; sl@0: sl@0: /** The origin of the GC relative to the screen's origin sl@0: @return the origin */ sl@0: virtual TPoint Origin() const = 0; sl@0: /** The clipping region currently being used sl@0: @return the clipping region */ sl@0: virtual const TRegion& ClippingRegion() = 0; sl@0: /** Saves the state of the GC to an internal buffer. Several GC states can be saved in a FILO. sl@0: Do not restore a GC (using Pop()) that wasn't properly saved! sl@0: @return KErrNone if successful, else one of the system-wide error codes. */ sl@0: virtual TInt Push() = 0; sl@0: /** Restores the last GC state that was saved. */ sl@0: virtual void Pop() = 0; sl@0: }; sl@0: sl@0: #endif //__WSGRAPHICSCONTEXT_H__