Update contrib.
1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #ifndef __DIRECTGDIGCWRAPPER_H__
17 #define __DIRECTGDIGCWRAPPER_H__
19 #include <graphics/wsgraphicscontext.h>
20 #include <graphics/directgdiimagetarget.h>
21 #include <graphics/directgdicontext.h>
22 #include <graphics/wsdrawablesourceprovider.h>
23 #include <graphics/sgimage.h>
27 * Required by MWsFader implementation
36 The purpose of this class is to wrap a @c CDirectGdiContext whenever an
37 @c MWsGraphicsContext is needed.
39 The methods doesn't do anything other than calling the corresponding method
40 in @c MWsGraphicsContext.
42 @see MWsGraphicsContext
43 @see MWsDrawableSourceProvider
44 @see CDirectGdiContext;
49 class CDirectGdiGcWrapper : public CBase, public MWsGraphicsContext, public MWsFader
52 static CDirectGdiGcWrapper* NewL(RDirectGdiImageTarget& aTarget);
53 ~CDirectGdiGcWrapper();
54 inline CDirectGdiContext& DirectGdiGc();
55 TInt SetDrawDeviceOffset(TPoint& aOrigin);
57 public: //from MWsGraphicsContext
58 void BitBlt(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap);
59 void BitBlt(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect);
60 void BitBltMasked(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect, const CFbsBitmap& aMaskBitmap, TBool aInvertMask);
61 void BitBltMasked(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect, const CFbsBitmap& aMaskBitmap, const TPoint& aMaskPos);
62 void ResetClippingRegion();
64 void Clear(const TRect& aRect);
65 void ResetBrushPattern();
67 void DrawArc(const TRect& aRect, const TPoint& aStart, const TPoint& aEnd);
68 void DrawPie(const TRect& aRect, const TPoint& aStart, const TPoint& aEnd);
69 void DrawBitmap(const TRect& aDestRect, const CFbsBitmap& aSourceBitmap);
70 void DrawBitmap(const TRect& aDestRect, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect);
71 void DrawBitmapMasked(const TRect& aDestRect, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect, const CFbsBitmap& aMaskBitmap, TBool aInvertMask);
72 void DrawRoundRect(const TRect& aRect, const TSize& aEllipse);
73 void DrawPolyLine(const TArray<TPoint>& aPointList);
74 void DrawPolyLineNoEndPoint(const TArray<TPoint>& aPointList);
75 void DrawPolygon(const TArray<TPoint>& aPointList, TFillRule aFillRule=EAlternate);
76 void DrawEllipse(const TRect& aRect);
77 void DrawLine(const TPoint& aStart, const TPoint& aEnd);
78 void DrawLineTo(const TPoint& aPoint);
79 void DrawLineBy(const TPoint& aVector);
80 void DrawRect(const TRect& aRect);
81 void DrawText(const TDesC& aText,const TTextParameters* aParam);
82 void DrawText(const TDesC& aText,const TTextParameters* aParam,const TPoint& aPosition);
83 void DrawText(const TDesC& aText,const TTextParameters* aParam,const TRect& aClipRect);
84 void DrawText(const TDesC& aText,const TTextParameters* aParam,const TRect& aClipFillRect,TInt aBaselineOffset,TTextAlign aHrz=ELeft,TInt aMargin=0);
85 void DrawTextVertical(const TDesC& aText,const TTextParameters* aParam,TBool aUp);
86 void DrawTextVertical(const TDesC& aText,const TTextParameters* aParam,const TPoint& aPosition,TBool aUp);
87 void DrawTextVertical(const TDesC& aText,const TTextParameters* aParam,const TRect& aClipRect,TBool aUp);
88 void DrawTextVertical(const TDesC& aText,const TTextParameters* aParam,const TRect& aClipRect,TInt aBaselineOffset,TBool aUp,TTextAlign aVert=ELeft,TInt aMargin=0);
89 void DrawTextVertical(const TDesC& aText,const TTextParameters* aParam,const TRect& aClipRect,TInt aBaselineOffset,TInt aTextWidth,TBool aUp,TTextAlign aVert=ELeft,TInt aMargin=0);
90 void MoveTo(const TPoint& aPoint);
91 void MoveBy(const TPoint& aVector);
92 void Plot(const TPoint& aPoint);
94 void SetBrushColor(const TRgb& aColor);
95 void SetBrushOrigin(const TPoint& aOrigin);
96 void SetBrushStyle(TBrushStyle aBrushStyle);
97 void SetClippingRegion(const TRegion& aRegion);
98 void SetDrawMode(TDrawMode aDrawMode);
99 void SetOrigin(const TPoint& aPoint = TPoint(0, 0));
100 void SetPenColor(const TRgb& aColor);
101 void SetPenStyle(TPenStyle aPenStyle);
102 void SetPenSize(const TSize& aSize);
103 void SetTextShadowColor(const TRgb& aColor);
104 void SetCharJustification(TInt aExcessWidth, TInt aNumChars);
105 void SetWordJustification(TInt aExcessWidth, TInt aNumGaps);
106 void SetUnderlineStyle(TFontUnderline aUnderlineStyle);
107 void SetStrikethroughStyle(TFontStrikethrough aStrikethroughStyle);
108 void SetBrushPattern(const CFbsBitmap& aBitmap);
109 void SetBrushPattern(TInt aFbsBitmapHandle);
110 void SetFont(const CFont* aFont);
111 void CopyRect(const TPoint& aOffset, const TRect& aRect);
112 void UpdateJustification(const TDesC& aText,const TTextParameters* aParam);
113 void UpdateJustificationVertical(const TDesC& aText,const TTextParameters* aParam,TBool aUp);
114 void SetFontNoDuplicate(const CFont* aFont);
115 TBool HasBrushPattern() const;
116 TBool HasFont() const;
117 TRgb BrushColor() const;
118 TRgb PenColor() const;
119 TRgb TextShadowColor() const;
121 // Return current error status of MWsGraphicsContext
124 TPoint Origin() const;
125 const TRegion& ClippingRegion();
126 // Save and retrieve gc settings
131 void SetFadingParameters(const TDesC8& aData);
132 void FadeArea(const TRegion& aRegion);
134 //from MWsObjectProvider
135 TAny* ResolveObjectInterface(TUint aTypeId);
138 const CArrayFix<TPoint>* DoCreateCArrayL(const TArray<TPoint>& aPointList);
139 const CArrayFix<TPoint>* CreateCArray(const TArray<TPoint>& aPointList);
140 void SetError(TInt aError);
143 CDirectGdiContext* iContext;
145 CBufBase* iGcBuf; // used for keeping state when drawing CWsGraphicDrawers
146 RRegionBuf<20> iClippingRegion; // Clipping region while doing drawing
147 TPoint iOrigin; // Window Origin + User defined gc origin
149 //Required by MWsFader implmentation
154 struct RDirectGdiImageEntry
156 RDirectGdiDrawableSource* iDrawableSource;
161 // CDirectGdiGcWrapper
164 inline CDirectGdiContext& CDirectGdiGcWrapper::DirectGdiGc()
169 #endif //__DIRECTGDIGCWRAPPER_H__