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