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 |
#include "directgdigcwrapper.h"
|
sl@0
|
17 |
#include "mwsgraphicscontexttodirectgdimappings.h"
|
sl@0
|
18 |
#include <s32mem.h>
|
sl@0
|
19 |
#include "stdpanic.h"
|
sl@0
|
20 |
#include <graphics/lookuptable.h>
|
sl@0
|
21 |
#include <graphics/directgdidriver.h>
|
sl@0
|
22 |
#include <graphics/directgdidrawablesource.h>
|
sl@0
|
23 |
|
sl@0
|
24 |
void Panic(TStdPluginPanic aPanic)
|
sl@0
|
25 |
{
|
sl@0
|
26 |
_LIT(KStdPanicCategory, "WSERV-TEST-PLUGIN");
|
sl@0
|
27 |
User::Panic(KStdPanicCategory, aPanic);
|
sl@0
|
28 |
}
|
sl@0
|
29 |
|
sl@0
|
30 |
CDirectGdiGcWrapper* CDirectGdiGcWrapper::NewL(RDirectGdiImageTarget& aTarget)
|
sl@0
|
31 |
{
|
sl@0
|
32 |
CDirectGdiGcWrapper* self = new(ELeave) CDirectGdiGcWrapper;
|
sl@0
|
33 |
CleanupStack::PushL(self);
|
sl@0
|
34 |
CDirectGdiDriver* driver = CDirectGdiDriver::Static();
|
sl@0
|
35 |
User::LeaveIfNull(driver);
|
sl@0
|
36 |
self->iContext = CDirectGdiContext::NewL(*driver);
|
sl@0
|
37 |
TInt err = self->iContext->Activate(aTarget);
|
sl@0
|
38 |
User::LeaveIfError(err);
|
sl@0
|
39 |
self->iErrorCode = KErrNone;
|
sl@0
|
40 |
self->iGcBuf = CBufSeg::NewL(512);
|
sl@0
|
41 |
//MWsFader
|
sl@0
|
42 |
//Default in BitGdi was 128 for the blackMap and 255 for the whiteMap
|
sl@0
|
43 |
//SetFadingParameters shows how the fade color is computed
|
sl@0
|
44 |
self->iFadeColor.SetInternal(0x80FFFFFF);
|
sl@0
|
45 |
|
sl@0
|
46 |
self->iLut = PtrTo16BitNormalisationTable();
|
sl@0
|
47 |
CleanupStack::Pop(self);
|
sl@0
|
48 |
return self;
|
sl@0
|
49 |
}
|
sl@0
|
50 |
|
sl@0
|
51 |
CDirectGdiGcWrapper::~CDirectGdiGcWrapper()
|
sl@0
|
52 |
{
|
sl@0
|
53 |
delete iContext;
|
sl@0
|
54 |
delete iGcBuf;
|
sl@0
|
55 |
iClippingRegion.Close();
|
sl@0
|
56 |
}
|
sl@0
|
57 |
|
sl@0
|
58 |
void CDirectGdiGcWrapper::BitBlt(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap)
|
sl@0
|
59 |
{
|
sl@0
|
60 |
iContext->BitBlt(aDestPos, aSourceBitmap);
|
sl@0
|
61 |
}
|
sl@0
|
62 |
|
sl@0
|
63 |
void CDirectGdiGcWrapper::BitBlt(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect)
|
sl@0
|
64 |
{
|
sl@0
|
65 |
iContext->BitBlt(aDestPos, aSourceBitmap, aSourceRect);
|
sl@0
|
66 |
}
|
sl@0
|
67 |
|
sl@0
|
68 |
void CDirectGdiGcWrapper::BitBltMasked(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect, const CFbsBitmap& aMaskBitmap, TBool aInvertMask)
|
sl@0
|
69 |
{
|
sl@0
|
70 |
iContext->BitBltMasked(aDestPos, aSourceBitmap, aSourceRect, aMaskBitmap, aInvertMask);
|
sl@0
|
71 |
}
|
sl@0
|
72 |
|
sl@0
|
73 |
void CDirectGdiGcWrapper::BitBltMasked(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect, const CFbsBitmap& aMaskBitmap, const TPoint& aMaskPos)
|
sl@0
|
74 |
{
|
sl@0
|
75 |
iContext->BitBltMasked(aDestPos, aSourceBitmap, aSourceRect, aMaskBitmap, aMaskPos);
|
sl@0
|
76 |
}
|
sl@0
|
77 |
|
sl@0
|
78 |
void CDirectGdiGcWrapper::ResetClippingRegion()
|
sl@0
|
79 |
{
|
sl@0
|
80 |
iContext->ResetClippingRegion();
|
sl@0
|
81 |
}
|
sl@0
|
82 |
|
sl@0
|
83 |
void CDirectGdiGcWrapper::Clear()
|
sl@0
|
84 |
{
|
sl@0
|
85 |
iContext->Clear();
|
sl@0
|
86 |
}
|
sl@0
|
87 |
|
sl@0
|
88 |
void CDirectGdiGcWrapper::Clear(const TRect& aRect)
|
sl@0
|
89 |
{
|
sl@0
|
90 |
iContext->Clear(aRect);
|
sl@0
|
91 |
}
|
sl@0
|
92 |
|
sl@0
|
93 |
void CDirectGdiGcWrapper::ResetBrushPattern()
|
sl@0
|
94 |
{
|
sl@0
|
95 |
iContext->ResetBrushPattern();
|
sl@0
|
96 |
}
|
sl@0
|
97 |
|
sl@0
|
98 |
void CDirectGdiGcWrapper::ResetFont()
|
sl@0
|
99 |
{
|
sl@0
|
100 |
iContext->ResetFont();
|
sl@0
|
101 |
}
|
sl@0
|
102 |
|
sl@0
|
103 |
void CDirectGdiGcWrapper::DrawArc(const TRect& aRect, const TPoint& aStart, const TPoint& aEnd)
|
sl@0
|
104 |
{
|
sl@0
|
105 |
iContext->DrawArc(aRect, aStart, aEnd);
|
sl@0
|
106 |
}
|
sl@0
|
107 |
|
sl@0
|
108 |
void CDirectGdiGcWrapper::DrawPie(const TRect& aRect, const TPoint& aStart, const TPoint& aEnd)
|
sl@0
|
109 |
{
|
sl@0
|
110 |
iContext->DrawPie(aRect, aStart, aEnd);
|
sl@0
|
111 |
}
|
sl@0
|
112 |
|
sl@0
|
113 |
void CDirectGdiGcWrapper::DrawBitmap(const TRect& aDestRect, const CFbsBitmap& aSourceBitmap)
|
sl@0
|
114 |
{
|
sl@0
|
115 |
iContext->DrawBitmap(aDestRect, aSourceBitmap);
|
sl@0
|
116 |
}
|
sl@0
|
117 |
|
sl@0
|
118 |
void CDirectGdiGcWrapper::DrawBitmap(const TRect& aDestRect, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect)
|
sl@0
|
119 |
{
|
sl@0
|
120 |
iContext->DrawBitmap(aDestRect, aSourceBitmap, aSourceRect);
|
sl@0
|
121 |
}
|
sl@0
|
122 |
|
sl@0
|
123 |
void CDirectGdiGcWrapper::DrawBitmapMasked(const TRect& aDestRect, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect, const CFbsBitmap& aMaskBitmap, TBool aInvertMask)
|
sl@0
|
124 |
{
|
sl@0
|
125 |
iContext->DrawBitmapMasked(aDestRect, aSourceBitmap, aSourceRect, aMaskBitmap, aInvertMask);
|
sl@0
|
126 |
}
|
sl@0
|
127 |
|
sl@0
|
128 |
void CDirectGdiGcWrapper::DrawRoundRect(const TRect& aRect, const TSize& aEllipse)
|
sl@0
|
129 |
{
|
sl@0
|
130 |
iContext->DrawRoundRect(aRect, aEllipse);
|
sl@0
|
131 |
}
|
sl@0
|
132 |
|
sl@0
|
133 |
void CDirectGdiGcWrapper::DrawPolyLine(const TArray<TPoint>& aPointList)
|
sl@0
|
134 |
{
|
sl@0
|
135 |
iContext->DrawPolyLine(aPointList);
|
sl@0
|
136 |
}
|
sl@0
|
137 |
|
sl@0
|
138 |
void CDirectGdiGcWrapper::DrawPolyLineNoEndPoint(const TArray<TPoint>& aPointList)
|
sl@0
|
139 |
{
|
sl@0
|
140 |
iContext->DrawPolyLineNoEndPoint(aPointList);
|
sl@0
|
141 |
}
|
sl@0
|
142 |
|
sl@0
|
143 |
void CDirectGdiGcWrapper::DrawPolygon(const TArray<TPoint>& aPointList, TFillRule aFillRule)
|
sl@0
|
144 |
{
|
sl@0
|
145 |
iContext->DrawPolygon(aPointList, MWsGraphicsContextToDirectGdiMappings::Convert(aFillRule));
|
sl@0
|
146 |
}
|
sl@0
|
147 |
|
sl@0
|
148 |
void CDirectGdiGcWrapper::DrawEllipse(const TRect& aRect)
|
sl@0
|
149 |
{
|
sl@0
|
150 |
iContext->DrawEllipse(aRect);
|
sl@0
|
151 |
}
|
sl@0
|
152 |
|
sl@0
|
153 |
void CDirectGdiGcWrapper::DrawLine(const TPoint& aStart, const TPoint& aEnd)
|
sl@0
|
154 |
{
|
sl@0
|
155 |
iContext->DrawLine(aStart, aEnd);
|
sl@0
|
156 |
}
|
sl@0
|
157 |
|
sl@0
|
158 |
void CDirectGdiGcWrapper::DrawLineTo(const TPoint& aPoint)
|
sl@0
|
159 |
{
|
sl@0
|
160 |
iContext->DrawLineTo(aPoint);
|
sl@0
|
161 |
}
|
sl@0
|
162 |
|
sl@0
|
163 |
void CDirectGdiGcWrapper::DrawLineBy(const TPoint& aVector)
|
sl@0
|
164 |
{
|
sl@0
|
165 |
iContext->DrawLineBy(aVector);
|
sl@0
|
166 |
}
|
sl@0
|
167 |
|
sl@0
|
168 |
void CDirectGdiGcWrapper::DrawRect(const TRect& aRect)
|
sl@0
|
169 |
{
|
sl@0
|
170 |
iContext->DrawRect(aRect);
|
sl@0
|
171 |
}
|
sl@0
|
172 |
|
sl@0
|
173 |
void CDirectGdiGcWrapper::DrawText(const TDesC& aText,const TTextParameters* aParam)
|
sl@0
|
174 |
{
|
sl@0
|
175 |
iContext->DrawText(aText, MWsGraphicsContextToDirectGdiMappings::Convert(aParam));
|
sl@0
|
176 |
}
|
sl@0
|
177 |
|
sl@0
|
178 |
void CDirectGdiGcWrapper::DrawText(const TDesC& aText,const TTextParameters* aParam,const TPoint& aPosition)
|
sl@0
|
179 |
{
|
sl@0
|
180 |
iContext->DrawText(aText, MWsGraphicsContextToDirectGdiMappings::Convert(aParam), aPosition);
|
sl@0
|
181 |
}
|
sl@0
|
182 |
|
sl@0
|
183 |
void CDirectGdiGcWrapper::DrawText(const TDesC& aText,const TTextParameters* aParam,const TRect& aClipRect)
|
sl@0
|
184 |
{
|
sl@0
|
185 |
iContext->DrawText(aText, MWsGraphicsContextToDirectGdiMappings::Convert(aParam), aClipRect);
|
sl@0
|
186 |
}
|
sl@0
|
187 |
|
sl@0
|
188 |
void CDirectGdiGcWrapper::DrawText(const TDesC& aText,const TTextParameters* aParam,const TRect& aClipFillRect,TInt aBaselineOffset, TTextAlign aHrz,TInt aMargin)
|
sl@0
|
189 |
{
|
sl@0
|
190 |
iContext->DrawText(aText, MWsGraphicsContextToDirectGdiMappings::Convert(aParam), aClipFillRect, aBaselineOffset, MWsGraphicsContextToDirectGdiMappings::Convert(aHrz), aMargin);
|
sl@0
|
191 |
}
|
sl@0
|
192 |
|
sl@0
|
193 |
void CDirectGdiGcWrapper::DrawTextVertical(const TDesC& aText,const TTextParameters* aParam,TBool aUp)
|
sl@0
|
194 |
{
|
sl@0
|
195 |
iContext->DrawTextVertical(aText, MWsGraphicsContextToDirectGdiMappings::Convert(aParam), aUp);
|
sl@0
|
196 |
}
|
sl@0
|
197 |
|
sl@0
|
198 |
void CDirectGdiGcWrapper::DrawTextVertical(const TDesC& aText,const TTextParameters* aParam,const TPoint& aPosition,TBool aUp)
|
sl@0
|
199 |
{
|
sl@0
|
200 |
iContext->DrawTextVertical(aText, MWsGraphicsContextToDirectGdiMappings::Convert(aParam), aPosition, aUp);
|
sl@0
|
201 |
}
|
sl@0
|
202 |
|
sl@0
|
203 |
void CDirectGdiGcWrapper::DrawTextVertical(const TDesC& aText,const TTextParameters* aParam,const TRect& aClipRect,TBool aUp)
|
sl@0
|
204 |
{
|
sl@0
|
205 |
iContext->DrawTextVertical(aText, MWsGraphicsContextToDirectGdiMappings::Convert(aParam), aClipRect, aUp);
|
sl@0
|
206 |
}
|
sl@0
|
207 |
|
sl@0
|
208 |
void CDirectGdiGcWrapper::DrawTextVertical(const TDesC& aText,const TTextParameters* aParam,const TRect& aClipRect,TInt aBaselineOffset,TBool aUp,TTextAlign aVert,TInt aMargin)
|
sl@0
|
209 |
{
|
sl@0
|
210 |
iContext->DrawTextVertical(aText, MWsGraphicsContextToDirectGdiMappings::Convert(aParam), aClipRect, aBaselineOffset, aUp, MWsGraphicsContextToDirectGdiMappings::Convert(aVert), aMargin);
|
sl@0
|
211 |
}
|
sl@0
|
212 |
|
sl@0
|
213 |
void CDirectGdiGcWrapper::DrawTextVertical(const TDesC& aText,const TTextParameters* aParam,const TRect& aClipRect,TInt aBaselineOffset,TInt aTextWidth,TBool aUp,TTextAlign aVert,TInt aMargin)
|
sl@0
|
214 |
{
|
sl@0
|
215 |
iContext->DrawTextVertical(aText, MWsGraphicsContextToDirectGdiMappings::Convert(aParam), aClipRect, aBaselineOffset, aTextWidth, aUp, MWsGraphicsContextToDirectGdiMappings::Convert(aVert), aMargin);
|
sl@0
|
216 |
}
|
sl@0
|
217 |
|
sl@0
|
218 |
void CDirectGdiGcWrapper::MoveTo(const TPoint& aPoint)
|
sl@0
|
219 |
{
|
sl@0
|
220 |
iContext->MoveTo(aPoint);
|
sl@0
|
221 |
}
|
sl@0
|
222 |
|
sl@0
|
223 |
void CDirectGdiGcWrapper::MoveBy(const TPoint& aVector)
|
sl@0
|
224 |
{
|
sl@0
|
225 |
iContext->MoveBy(aVector);
|
sl@0
|
226 |
}
|
sl@0
|
227 |
|
sl@0
|
228 |
void CDirectGdiGcWrapper::Plot(const TPoint& aPoint)
|
sl@0
|
229 |
{
|
sl@0
|
230 |
iContext->Plot(aPoint);
|
sl@0
|
231 |
}
|
sl@0
|
232 |
|
sl@0
|
233 |
void CDirectGdiGcWrapper::Reset()
|
sl@0
|
234 |
{
|
sl@0
|
235 |
iContext->Reset();
|
sl@0
|
236 |
}
|
sl@0
|
237 |
|
sl@0
|
238 |
void CDirectGdiGcWrapper::SetBrushColor(const TRgb& aColor)
|
sl@0
|
239 |
{
|
sl@0
|
240 |
iContext->SetBrushColor(aColor);
|
sl@0
|
241 |
}
|
sl@0
|
242 |
|
sl@0
|
243 |
void CDirectGdiGcWrapper::SetBrushOrigin(const TPoint& aOrigin)
|
sl@0
|
244 |
{
|
sl@0
|
245 |
iContext->SetBrushOrigin(aOrigin);
|
sl@0
|
246 |
}
|
sl@0
|
247 |
|
sl@0
|
248 |
void CDirectGdiGcWrapper::SetBrushStyle(TBrushStyle aBrushStyle)
|
sl@0
|
249 |
{
|
sl@0
|
250 |
iContext->SetBrushStyle(MWsGraphicsContextToDirectGdiMappings::Convert(aBrushStyle));
|
sl@0
|
251 |
}
|
sl@0
|
252 |
|
sl@0
|
253 |
void CDirectGdiGcWrapper::SetClippingRegion(const TRegion& aRegion)
|
sl@0
|
254 |
{
|
sl@0
|
255 |
CDirectGdiDriver* driver = CDirectGdiDriver::Static();
|
sl@0
|
256 |
driver->GetError(); //make sure that an error has been received
|
sl@0
|
257 |
iContext->SetClippingRegion(aRegion);
|
sl@0
|
258 |
TInt err = driver->GetError();
|
sl@0
|
259 |
SetError(err);
|
sl@0
|
260 |
if(err == KErrNone)
|
sl@0
|
261 |
{
|
sl@0
|
262 |
iClippingRegion.Copy(aRegion);
|
sl@0
|
263 |
}
|
sl@0
|
264 |
}
|
sl@0
|
265 |
|
sl@0
|
266 |
void CDirectGdiGcWrapper::SetDrawMode(TDrawMode aDrawMode)
|
sl@0
|
267 |
{
|
sl@0
|
268 |
iContext->SetDrawMode(MWsGraphicsContextToDirectGdiMappings::LossyConvert(aDrawMode));
|
sl@0
|
269 |
}
|
sl@0
|
270 |
|
sl@0
|
271 |
void CDirectGdiGcWrapper::SetOrigin(const TPoint& aPoint)
|
sl@0
|
272 |
{
|
sl@0
|
273 |
iContext->SetOrigin(aPoint);
|
sl@0
|
274 |
iOrigin = aPoint;
|
sl@0
|
275 |
}
|
sl@0
|
276 |
|
sl@0
|
277 |
void CDirectGdiGcWrapper::SetPenColor(const TRgb& aColor)
|
sl@0
|
278 |
{
|
sl@0
|
279 |
iContext->SetPenColor(aColor);
|
sl@0
|
280 |
}
|
sl@0
|
281 |
|
sl@0
|
282 |
void CDirectGdiGcWrapper::SetPenStyle(TPenStyle aPenStyle)
|
sl@0
|
283 |
{
|
sl@0
|
284 |
iContext->SetPenStyle(MWsGraphicsContextToDirectGdiMappings::Convert(aPenStyle));
|
sl@0
|
285 |
}
|
sl@0
|
286 |
|
sl@0
|
287 |
void CDirectGdiGcWrapper::SetPenSize(const TSize& aSize)
|
sl@0
|
288 |
{
|
sl@0
|
289 |
iContext->SetPenSize(aSize);
|
sl@0
|
290 |
}
|
sl@0
|
291 |
|
sl@0
|
292 |
void CDirectGdiGcWrapper::SetTextShadowColor(const TRgb& aColor)
|
sl@0
|
293 |
{
|
sl@0
|
294 |
iContext->SetTextShadowColor(aColor);
|
sl@0
|
295 |
}
|
sl@0
|
296 |
|
sl@0
|
297 |
void CDirectGdiGcWrapper::SetCharJustification(TInt aExcessWidth, TInt aNumChars)
|
sl@0
|
298 |
{
|
sl@0
|
299 |
iContext->SetCharJustification(aExcessWidth, aNumChars);
|
sl@0
|
300 |
}
|
sl@0
|
301 |
|
sl@0
|
302 |
void CDirectGdiGcWrapper::SetWordJustification(TInt aExcessWidth, TInt aNumGaps)
|
sl@0
|
303 |
{
|
sl@0
|
304 |
iContext->SetWordJustification(aExcessWidth, aNumGaps);
|
sl@0
|
305 |
}
|
sl@0
|
306 |
|
sl@0
|
307 |
void CDirectGdiGcWrapper::SetUnderlineStyle(TFontUnderline aUnderlineStyle)
|
sl@0
|
308 |
{
|
sl@0
|
309 |
iContext->SetUnderlineStyle(MWsGraphicsContextToDirectGdiMappings::Convert(aUnderlineStyle));
|
sl@0
|
310 |
}
|
sl@0
|
311 |
|
sl@0
|
312 |
void CDirectGdiGcWrapper::SetStrikethroughStyle(TFontStrikethrough aStrikethroughStyle)
|
sl@0
|
313 |
{
|
sl@0
|
314 |
iContext->SetStrikethroughStyle(MWsGraphicsContextToDirectGdiMappings::Convert(aStrikethroughStyle));
|
sl@0
|
315 |
}
|
sl@0
|
316 |
|
sl@0
|
317 |
void CDirectGdiGcWrapper::SetBrushPattern(const CFbsBitmap& aBitmap)
|
sl@0
|
318 |
{
|
sl@0
|
319 |
iContext->SetBrushPattern(aBitmap);
|
sl@0
|
320 |
}
|
sl@0
|
321 |
|
sl@0
|
322 |
void CDirectGdiGcWrapper::SetBrushPattern(TInt aFbsBitmapHandle)
|
sl@0
|
323 |
{
|
sl@0
|
324 |
iContext->SetBrushPattern(aFbsBitmapHandle);
|
sl@0
|
325 |
}
|
sl@0
|
326 |
|
sl@0
|
327 |
void CDirectGdiGcWrapper::SetFont(const CFont* aFont)
|
sl@0
|
328 |
{
|
sl@0
|
329 |
iContext->SetFont(aFont);
|
sl@0
|
330 |
}
|
sl@0
|
331 |
|
sl@0
|
332 |
void CDirectGdiGcWrapper::CopyRect(const TPoint& aOffset, const TRect& aRect)
|
sl@0
|
333 |
{
|
sl@0
|
334 |
iContext->CopyRect(aOffset, aRect);
|
sl@0
|
335 |
}
|
sl@0
|
336 |
|
sl@0
|
337 |
void CDirectGdiGcWrapper::UpdateJustification(const TDesC& aText,const TTextParameters* aParam)
|
sl@0
|
338 |
{
|
sl@0
|
339 |
iContext->UpdateJustification(aText, MWsGraphicsContextToDirectGdiMappings::Convert(aParam));
|
sl@0
|
340 |
}
|
sl@0
|
341 |
|
sl@0
|
342 |
void CDirectGdiGcWrapper::UpdateJustificationVertical(const TDesC& aText,const TTextParameters* aParam,TBool aUp)
|
sl@0
|
343 |
{
|
sl@0
|
344 |
iContext->UpdateJustificationVertical(aText, MWsGraphicsContextToDirectGdiMappings::Convert(aParam), aUp);
|
sl@0
|
345 |
}
|
sl@0
|
346 |
|
sl@0
|
347 |
void CDirectGdiGcWrapper::SetFontNoDuplicate(const CFont* aFont)
|
sl@0
|
348 |
{
|
sl@0
|
349 |
iContext->SetFontNoDuplicate(static_cast<const CDirectGdiFont*>(aFont));
|
sl@0
|
350 |
}
|
sl@0
|
351 |
|
sl@0
|
352 |
TBool CDirectGdiGcWrapper::HasBrushPattern() const
|
sl@0
|
353 |
{
|
sl@0
|
354 |
return iContext->HasBrushPattern();
|
sl@0
|
355 |
}
|
sl@0
|
356 |
|
sl@0
|
357 |
TBool CDirectGdiGcWrapper::HasFont() const
|
sl@0
|
358 |
{
|
sl@0
|
359 |
return iContext->HasFont();
|
sl@0
|
360 |
}
|
sl@0
|
361 |
|
sl@0
|
362 |
TRgb CDirectGdiGcWrapper::BrushColor() const
|
sl@0
|
363 |
{
|
sl@0
|
364 |
return iContext->BrushColor();
|
sl@0
|
365 |
}
|
sl@0
|
366 |
|
sl@0
|
367 |
TRgb CDirectGdiGcWrapper::PenColor() const
|
sl@0
|
368 |
{
|
sl@0
|
369 |
return iContext->PenColor();
|
sl@0
|
370 |
}
|
sl@0
|
371 |
|
sl@0
|
372 |
TRgb CDirectGdiGcWrapper::TextShadowColor() const
|
sl@0
|
373 |
{
|
sl@0
|
374 |
return iContext->TextShadowColor();
|
sl@0
|
375 |
}
|
sl@0
|
376 |
|
sl@0
|
377 |
TAny* CDirectGdiGcWrapper::ResolveObjectInterface(TUint /*aTypeId*/)
|
sl@0
|
378 |
{
|
sl@0
|
379 |
return NULL;
|
sl@0
|
380 |
}
|
sl@0
|
381 |
|
sl@0
|
382 |
/**
|
sl@0
|
383 |
Sets the error code. If the error code is already set to a value other
|
sl@0
|
384 |
than KErrNone, the error code will not be modified.
|
sl@0
|
385 |
|
sl@0
|
386 |
@param aErr The error code to set.
|
sl@0
|
387 |
|
sl@0
|
388 |
@post The error code has been set.
|
sl@0
|
389 |
*/
|
sl@0
|
390 |
void CDirectGdiGcWrapper::SetError(TInt aError)
|
sl@0
|
391 |
{
|
sl@0
|
392 |
if (aError != KErrNone && iErrorCode == KErrNone)
|
sl@0
|
393 |
{
|
sl@0
|
394 |
iErrorCode = aError;
|
sl@0
|
395 |
}
|
sl@0
|
396 |
}
|
sl@0
|
397 |
|
sl@0
|
398 |
/**
|
sl@0
|
399 |
Returns the first error code (set as the result of calling some CDirectGdiGcWrapper API), if any,
|
sl@0
|
400 |
since the last call to this function or, if it has not previously been called, since
|
sl@0
|
401 |
the CDirectGdiGcWrapper was constructed. Calling this function clears the error code.
|
sl@0
|
402 |
|
sl@0
|
403 |
@post The error code has been reset after being read.
|
sl@0
|
404 |
|
sl@0
|
405 |
@return The first error code, if any, since the last call to this function or,
|
sl@0
|
406 |
if it has not previously been called, since the CDirectGdiGcWrapper was constructed.
|
sl@0
|
407 |
KErrNone will indicate that no such error has occurred.
|
sl@0
|
408 |
*/
|
sl@0
|
409 |
TInt CDirectGdiGcWrapper::GetError()
|
sl@0
|
410 |
{
|
sl@0
|
411 |
TInt err = iErrorCode;
|
sl@0
|
412 |
iErrorCode = KErrNone;
|
sl@0
|
413 |
return err;
|
sl@0
|
414 |
}
|
sl@0
|
415 |
|
sl@0
|
416 |
TPoint CDirectGdiGcWrapper::Origin() const
|
sl@0
|
417 |
{
|
sl@0
|
418 |
return iOrigin;
|
sl@0
|
419 |
}
|
sl@0
|
420 |
|
sl@0
|
421 |
const TRegion& CDirectGdiGcWrapper::ClippingRegion()
|
sl@0
|
422 |
{
|
sl@0
|
423 |
return iClippingRegion;
|
sl@0
|
424 |
}
|
sl@0
|
425 |
|
sl@0
|
426 |
TInt CDirectGdiGcWrapper::Push()
|
sl@0
|
427 |
{
|
sl@0
|
428 |
// the buf format is len+data where data is written by the GC's ExternalizeL()
|
sl@0
|
429 |
iGcBuf->Reset();
|
sl@0
|
430 |
CBufBase& buf = *iGcBuf;
|
sl@0
|
431 |
const TInt start = buf.Size();
|
sl@0
|
432 |
RBufWriteStream out(buf,start);
|
sl@0
|
433 |
TRAPD(err,out.WriteInt32L(0));
|
sl@0
|
434 |
if(!err)
|
sl@0
|
435 |
{
|
sl@0
|
436 |
TRAP(err,iContext->ExternalizeL(out));
|
sl@0
|
437 |
}
|
sl@0
|
438 |
if(err) //rollback addition
|
sl@0
|
439 |
{
|
sl@0
|
440 |
buf.Delete(start,buf.Size()-start);
|
sl@0
|
441 |
}
|
sl@0
|
442 |
else //fixup len
|
sl@0
|
443 |
{
|
sl@0
|
444 |
TRAP_IGNORE(out.CommitL();) // can't see this failing
|
sl@0
|
445 |
TPckgBuf<TInt32> pckg(buf.Size()-sizeof(TInt32)-start);
|
sl@0
|
446 |
buf.Write(start,pckg);
|
sl@0
|
447 |
}
|
sl@0
|
448 |
return err;
|
sl@0
|
449 |
}
|
sl@0
|
450 |
|
sl@0
|
451 |
void CDirectGdiGcWrapper::Pop()
|
sl@0
|
452 |
{
|
sl@0
|
453 |
CBufBase& buf = *iGcBuf;
|
sl@0
|
454 |
TInt ofs = 0;
|
sl@0
|
455 |
FOREVER
|
sl@0
|
456 |
{
|
sl@0
|
457 |
TInt chunk = 0;
|
sl@0
|
458 |
RBufReadStream in(buf,ofs);
|
sl@0
|
459 |
TRAPD(err,chunk = in.ReadInt32L());
|
sl@0
|
460 |
if(err)
|
sl@0
|
461 |
{
|
sl@0
|
462 |
STD_ASSERT_DEBUG(err != 0, EStdPanicPopGcSettings);
|
sl@0
|
463 |
return;
|
sl@0
|
464 |
}
|
sl@0
|
465 |
if(ofs+sizeof(TInt32)+chunk >= buf.Size()) // the last chunk?
|
sl@0
|
466 |
{
|
sl@0
|
467 |
TRAP_IGNORE(iContext->InternalizeL(in));
|
sl@0
|
468 |
buf.Delete(ofs,buf.Size()-ofs);
|
sl@0
|
469 |
return;
|
sl@0
|
470 |
}
|
sl@0
|
471 |
ofs += chunk + sizeof(TInt32);
|
sl@0
|
472 |
}
|
sl@0
|
473 |
}
|
sl@0
|
474 |
|
sl@0
|
475 |
//Default method of fading simply uses bitgdi to perform fading
|
sl@0
|
476 |
void CDirectGdiGcWrapper::FadeArea(const TRegion& aRegion)
|
sl@0
|
477 |
{
|
sl@0
|
478 |
if (!&aRegion || aRegion.CheckError())
|
sl@0
|
479 |
return;
|
sl@0
|
480 |
|
sl@0
|
481 |
iContext->Reset();
|
sl@0
|
482 |
iContext->SetClippingRegion(aRegion);
|
sl@0
|
483 |
iContext->SetPenStyle(DirectGdi::ENullPen);
|
sl@0
|
484 |
iContext->SetBrushStyle(DirectGdi::ESolidBrush);
|
sl@0
|
485 |
iContext->SetBrushColor(iFadeColor);
|
sl@0
|
486 |
iContext->DrawRect(aRegion.BoundingRect());
|
sl@0
|
487 |
}
|
sl@0
|
488 |
|
sl@0
|
489 |
//Default method of fading expects two TUint8's describing the black/white map
|
sl@0
|
490 |
//as possible fading parameters
|
sl@0
|
491 |
void CDirectGdiGcWrapper::SetFadingParameters(const TDesC8& aData)
|
sl@0
|
492 |
{
|
sl@0
|
493 |
TPckgBuf<TFadingParams> buf;
|
sl@0
|
494 |
buf.Copy(aData);
|
sl@0
|
495 |
TFadingParams parameters = buf();
|
sl@0
|
496 |
|
sl@0
|
497 |
//Situations where blackMap > whiteMap are NOT supported
|
sl@0
|
498 |
if (parameters.blackMap > parameters.whiteMap)
|
sl@0
|
499 |
{
|
sl@0
|
500 |
TUint8 oldMap = parameters.blackMap;
|
sl@0
|
501 |
parameters.blackMap = parameters.whiteMap;
|
sl@0
|
502 |
parameters.whiteMap = oldMap;
|
sl@0
|
503 |
}
|
sl@0
|
504 |
|
sl@0
|
505 |
//CFbsBitGc::FadeArea() does the following per color component:
|
sl@0
|
506 |
// dst = dst * (whiteMap - blackMap) + blackMap;
|
sl@0
|
507 |
|
sl@0
|
508 |
//To achieve the same effect using MWsGraphicsContext we draw a rectangle
|
sl@0
|
509 |
//with specific intensity and alpha values:
|
sl@0
|
510 |
// dst = dst * (1 - alpha) + intensity * alpha;
|
sl@0
|
511 |
//Thus:
|
sl@0
|
512 |
// alpha = 1 - whiteMap + blackMap;
|
sl@0
|
513 |
// intensity = blackMap / alpha;
|
sl@0
|
514 |
|
sl@0
|
515 |
// alpha = 1 - whiteMap + blackMap;
|
sl@0
|
516 |
TInt alpha = 255 - parameters.whiteMap + parameters.blackMap;
|
sl@0
|
517 |
// intensity = blackMap / alpha;
|
sl@0
|
518 |
TInt i = (parameters.blackMap * iLut[alpha]) >> 8;
|
sl@0
|
519 |
|
sl@0
|
520 |
iFadeColor.SetInternal(i << 16 | i << 8 | i | alpha << 24);
|
sl@0
|
521 |
}
|