1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/inc/Graphics/wsgraphicscontext.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,297 @@
1.4 +// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// Interface for Render Stage Abstract Graphics Context
1.18 +//
1.19 +//
1.20 +
1.21 +/**
1.22 + @publishedPartner
1.23 + @prototype
1.24 +*/
1.25 +
1.26 +#ifndef __WSGRAPHICSCONTEXT_H__
1.27 +#define __WSGRAPHICSCONTEXT_H__
1.28 +
1.29 +#include <w32std.h>
1.30 +#include <graphics/wsgraphicdrawerinterface.h>
1.31 +
1.32 +/** Render Stage abstract graphics context.
1.33 +
1.34 +This interface is provided by Render Stages. It abstracts the graphics context
1.35 +of the pixel target. The intention is to allow Render Stages to intercept
1.36 +draw operations so that they can be batched (to reduce flickering), modified
1.37 +(to provide transition effects), or re-directed (to alternate back-end
1.38 +architectures).
1.39 +
1.40 +@publishedPartner
1.41 +@prototype
1.42 +*/
1.43 +class MWsGraphicsContext : public MWsObjectProvider
1.44 + {
1.45 +public:
1.46 + DECLARE_WS_TYPE_ID(KMWsGraphicsContext)
1.47 + /** Text alignment.
1.48 + @publishedPartner
1.49 + @prototype
1.50 + */
1.51 + enum TTextAlign
1.52 + {
1.53 + /** Text is left-aligned. */
1.54 + ELeft,
1.55 + /** Text is centred. */
1.56 + ECenter,
1.57 + /** Text is right-aligned. */
1.58 + ERight
1.59 + };
1.60 +
1.61 + /**
1.62 + Brush styles.
1.63 + @publishedPartner
1.64 + @prototype
1.65 + */
1.66 + enum TBrushStyle
1.67 + {
1.68 + /** The brush fill has no effect (default). */
1.69 + ENullBrush,
1.70 + /** The brush fills with a solid single colour, determined by
1.71 + SetBrushColor() and the drawing mode. */
1.72 + ESolidBrush,
1.73 + /** The brush fills with a selected bitmap pattern, set by
1.74 + UseBrushPattern(). */
1.75 + EPatternedBrush,
1.76 + /** The brush fills with vertical hatching lines going from top to
1.77 + bottom. */
1.78 + EVerticalHatchBrush,
1.79 + /** The brush fills with diagonal hatching lines going from bottom
1.80 + left to top right. */
1.81 + EForwardDiagonalHatchBrush,
1.82 + /** The brush fills with horizontal hatching lines going from left
1.83 + to right. */
1.84 + EHorizontalHatchBrush,
1.85 + /** The brush fills with rearward diagonal hatching lines going from top
1.86 + left to bottom right. */
1.87 + ERearwardDiagonalHatchBrush,
1.88 + /** The brush fills with horizontal and vertical hatching lines going
1.89 + from left to right plus lines going from top to bottom giving the
1.90 + effect of a grid of small squares */
1.91 + ESquareCrossHatchBrush,
1.92 + /** The brush fills with forward diagonal and rearward diagonal hatching
1.93 + lines going from bottom left to top right plus lines going from top left
1.94 + to bottom right giving the effect of a grid of small diamonds. */
1.95 + EDiamondCrossHatchBrush
1.96 + };
1.97 +
1.98 + /**
1.99 + Drawing modes. The drawing modes define the way that the pen and brush colors are
1.100 + drawn, EDrawModePEN means do alpha blending if appropriate, EDrawModeWriteAlpha means
1.101 + don't do alpha blending.
1.102 +
1.103 + @see SetDrawMode()
1.104 + @publishedPartner
1.105 + @prototype
1.106 + */
1.107 + enum TDrawMode
1.108 + {
1.109 + /** Uses both pen and brush colour as they are. */
1.110 + EDrawModePEN=32,
1.111 + /** Writes alpha information in the source directly into the destination, rather than blending. */
1.112 + EDrawModeWriteAlpha=64
1.113 + };
1.114 +
1.115 + /**
1.116 + Pen styles. The screen pattern unit in each definition below describes the
1.117 + pattern drawn by the line 1 represents a pixel drawn, 0 represents a
1.118 + pixel that is not affected.
1.119 + @publishedPartner
1.120 + @prototype
1.121 + */
1.122 + enum TPenStyle
1.123 + {
1.124 + /** The pen does not draw. Screen pattern unit = 00... */
1.125 + ENullPen,
1.126 + /** A solid line (default). Screen pattern unit = 11... */
1.127 + ESolidPen,
1.128 + /** A dotted line. Screen pattern unit = 1000... */
1.129 + EDottedPen,
1.130 + /** A dashed line. Screen pattern unit = 111000... */
1.131 + EDashedPen,
1.132 + /** A line of alternating dashes and dots. Screen pattern unit =
1.133 + 1111001100... */
1.134 + EDotDashPen,
1.135 + /** A line of alternating single dashes and pairs of dots. Screen
1.136 + pattern unit = 11110011001100... */
1.137 + EDotDotDashPen
1.138 + };
1.139 +
1.140 + /**
1.141 + Rules used to fill self-intersecting polygons.
1.142 +
1.143 + The filling of a polygon proceeds as follows: for a given point in the
1.144 + polygon, then:
1.145 +
1.146 + if the rule is TFillRule::EAlternate (default) and it has an odd winding
1.147 + number, then fill the surrounding area.
1.148 +
1.149 + if the rule is TFillRule::EWinding and it has a winding number greater than
1.150 + zero, then fill the surrounding area.
1.151 + @publishedPartner
1.152 + @prototype
1.153 + */
1.154 + enum TFillRule
1.155 + {
1.156 + /** Only fill areas with odd winding numbers. */
1.157 + EAlternate,
1.158 + /** Fill areas with winding numbers greater than zero. */
1.159 + EWinding
1.160 + };
1.161 +
1.162 + /**
1.163 + Font underline flags.
1.164 + @publishedPartner
1.165 + @prototype
1.166 + */
1.167 + enum TFontUnderline
1.168 + {
1.169 + /** Font is not underlined. */
1.170 + EUnderlineOff,
1.171 + /** Font is underlined. */
1.172 + EUnderlineOn
1.173 + };
1.174 +
1.175 + /**
1.176 + Font strike-through flags.
1.177 + @publishedPartner
1.178 + @prototype
1.179 + */
1.180 + enum TFontStrikethrough
1.181 + {
1.182 + /** Font is not struck-through. */
1.183 + EStrikethroughOff,
1.184 + /** Font is struck-through. */
1.185 + EStrikethroughOn
1.186 + };
1.187 +
1.188 + /**
1.189 + Parameters used in drawing text within supplied context.
1.190 + It is used by MWsGraphicsContext::DrawText() and MWsGraphicsContext::DrawTextVertical() family of API's
1.191 + to draw text from iStart to iEnd withing the supplied text descriptor.
1.192 +
1.193 + @publishedPartner
1.194 + @prototype
1.195 + */
1.196 + class TTextParameters
1.197 + {
1.198 + public:
1.199 + TTextParameters():
1.200 + iStart(0),
1.201 + iEnd(KMaxTInt),
1.202 + iFlags(0)
1.203 + {
1.204 + }
1.205 + TInt iStart;
1.206 + TInt iEnd;
1.207 + TUint16 iFlags;
1.208 + /* Reserved for future use */
1.209 + TAny* iReserved1;
1.210 + TAny* iReserved2;
1.211 + TAny* iReserved3;
1.212 + TAny* iReserved4;
1.213 + };
1.214 +
1.215 +public:
1.216 + // The following are equivalent to CFbsBitGc functionality which maps
1.217 + // to client’s CWindowGc requests
1.218 + virtual void BitBlt(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap) = 0;
1.219 + virtual void BitBlt(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect) = 0;
1.220 + virtual void BitBltMasked(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect, const CFbsBitmap& aMaskBitmap, TBool aInvertMask) = 0;
1.221 + virtual void BitBltMasked(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect, const CFbsBitmap& aMaskBitmap, const TPoint& aMaskPos) = 0;
1.222 + virtual void ResetClippingRegion() = 0;
1.223 + virtual void Clear() = 0;
1.224 + virtual void Clear(const TRect& aRect) = 0;
1.225 + virtual void ResetBrushPattern() = 0;
1.226 + virtual void ResetFont() = 0;
1.227 + virtual void DrawArc(const TRect& aRect, const TPoint& aStart, const TPoint& aEnd) = 0;
1.228 + virtual void DrawPie(const TRect& aRect, const TPoint& aStart, const TPoint& aEnd) = 0;
1.229 + virtual void DrawBitmap(const TRect& aDestRect, const CFbsBitmap& aSourceBitmap) = 0;
1.230 + virtual void DrawBitmap(const TRect& aDestRect, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect) = 0;
1.231 + virtual void DrawBitmapMasked(const TRect& aDestRect, const CFbsBitmap& aSourceBitmap,const TRect& aSourceRect, const CFbsBitmap& aMaskBitmap, TBool aInvertMask) = 0;
1.232 + virtual void DrawRoundRect(const TRect& aRect, const TSize& aEllipse) = 0;
1.233 + virtual void DrawPolyLine(const TArray<TPoint>& aPointList) = 0;
1.234 + virtual void DrawPolyLineNoEndPoint(const TArray<TPoint>& aPointList) = 0;
1.235 + virtual void DrawPolygon(const TArray<TPoint>& aPointList, TFillRule aFillRule=EAlternate) = 0;
1.236 + virtual void DrawEllipse(const TRect& aRect) = 0;
1.237 + virtual void DrawLine(const TPoint& aStart, const TPoint& aEnd) = 0;
1.238 + virtual void DrawLineTo(const TPoint& aPoint) = 0;
1.239 + virtual void DrawLineBy(const TPoint& aVector) = 0;
1.240 + virtual void DrawRect(const TRect& aRect) = 0;
1.241 + virtual void DrawText(const TDesC& aText,const TTextParameters* aParam) = 0;
1.242 + virtual void DrawText(const TDesC& aText,const TTextParameters* aParam,const TPoint& aPosition) = 0;
1.243 + virtual void DrawText(const TDesC& aText,const TTextParameters* aParam,const TRect& aClipRect) = 0;
1.244 + virtual void DrawText(const TDesC& aText,const TTextParameters* aParam,const TRect& aClipFillRect,TInt aBaselineOffset,TTextAlign aHrz=ELeft,TInt aMargin=0) = 0;
1.245 + virtual void DrawTextVertical(const TDesC& aText,const TTextParameters* aParam,TBool aUp) = 0;
1.246 + virtual void DrawTextVertical(const TDesC& aText,const TTextParameters* aParam,const TPoint& aPosition,TBool aUp) = 0;
1.247 + virtual void DrawTextVertical(const TDesC& aText,const TTextParameters* aParam,const TRect& aClipRect,TBool aUp) = 0;
1.248 + virtual void DrawTextVertical(const TDesC& aText,const TTextParameters* aParam,const TRect& aClipRect,TInt aBaselineOffset,TBool aUp,TTextAlign aVert=ELeft,TInt aMargin=0) = 0;
1.249 + 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;
1.250 + virtual void MoveTo(const TPoint& aPoint) = 0;
1.251 + virtual void MoveBy(const TPoint& aVector) = 0;
1.252 + virtual void Plot(const TPoint& aPoint) = 0;
1.253 + virtual void Reset() = 0;
1.254 + virtual void SetBrushColor(const TRgb& aColor) = 0;
1.255 + virtual void SetBrushOrigin(const TPoint& aOrigin) = 0;
1.256 + virtual void SetBrushStyle(TBrushStyle aBrushStyle) = 0;
1.257 + virtual void SetClippingRegion(const TRegion& aRegion) = 0;
1.258 + virtual void SetDrawMode(TDrawMode aDrawMode) = 0;
1.259 + virtual void SetOrigin(const TPoint& aPoint = TPoint(0, 0)) = 0;
1.260 + virtual void SetPenColor(const TRgb& aColor) = 0;
1.261 + virtual void SetPenStyle(TPenStyle aPenStyle) = 0;
1.262 + virtual void SetPenSize(const TSize& aSize) = 0;
1.263 + virtual void SetTextShadowColor(const TRgb& aColor) = 0;
1.264 + virtual void SetCharJustification(TInt aExcessWidth, TInt aNumChars) = 0;
1.265 + virtual void SetWordJustification(TInt aExcessWidth, TInt aNumGaps) = 0;
1.266 + virtual void SetUnderlineStyle(TFontUnderline aUnderlineStyle) = 0;
1.267 + virtual void SetStrikethroughStyle(TFontStrikethrough aStrikethroughStyle) = 0;
1.268 + virtual void SetBrushPattern(const CFbsBitmap& aBitmap) = 0;
1.269 + virtual void SetBrushPattern(TInt aFbsBitmapHandle) = 0;
1.270 + virtual void SetFont(const CFont* aFont) = 0;
1.271 +
1.272 + // CFbsBitGc functionality used by Wserv for its internal operations
1.273 + virtual void CopyRect(const TPoint& aOffset, const TRect& aRect) = 0;
1.274 + virtual void UpdateJustification(const TDesC& aText,const TTextParameters* aParam) = 0;
1.275 + virtual void UpdateJustificationVertical(const TDesC& aText,const TTextParameters* aParam,TBool aUp) = 0;
1.276 + virtual void SetFontNoDuplicate(const CFont* aFont) = 0;
1.277 + virtual TBool HasBrushPattern() const = 0;
1.278 + virtual TBool HasFont() const = 0;
1.279 + virtual TRgb BrushColor() const = 0;
1.280 + virtual TRgb PenColor() const = 0;
1.281 + virtual TRgb TextShadowColor() const = 0;
1.282 +
1.283 + // Return current error status of MWsGraphicsContext
1.284 + virtual TInt GetError() = 0;
1.285 +
1.286 + /** The origin of the GC relative to the screen's origin
1.287 + @return the origin */
1.288 + virtual TPoint Origin() const = 0;
1.289 + /** The clipping region currently being used
1.290 + @return the clipping region */
1.291 + virtual const TRegion& ClippingRegion() = 0;
1.292 + /** Saves the state of the GC to an internal buffer. Several GC states can be saved in a FILO.
1.293 + Do not restore a GC (using Pop()) that wasn't properly saved!
1.294 + @return KErrNone if successful, else one of the system-wide error codes. */
1.295 + virtual TInt Push() = 0;
1.296 + /** Restores the last GC state that was saved. */
1.297 + virtual void Pop() = 0;
1.298 + };
1.299 +
1.300 +#endif //__WSGRAPHICSCONTEXT_H__