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 #include "directgdigcwrapper.h"
17 #include "mwsgraphicscontexttodirectgdimappings.h"
20 #include <graphics/lookuptable.h>
21 #include <graphics/directgdidriver.h>
22 #include <graphics/directgdidrawablesource.h>
24 void Panic(TStdPluginPanic aPanic)
26 _LIT(KStdPanicCategory, "WSERV-TEST-PLUGIN");
27 User::Panic(KStdPanicCategory, aPanic);
30 CDirectGdiGcWrapper* CDirectGdiGcWrapper::NewL(RDirectGdiImageTarget& aTarget)
32 CDirectGdiGcWrapper* self = new(ELeave) CDirectGdiGcWrapper;
33 CleanupStack::PushL(self);
34 CDirectGdiDriver* driver = CDirectGdiDriver::Static();
35 User::LeaveIfNull(driver);
36 self->iContext = CDirectGdiContext::NewL(*driver);
37 TInt err = self->iContext->Activate(aTarget);
38 User::LeaveIfError(err);
39 self->iErrorCode = KErrNone;
40 self->iGcBuf = CBufSeg::NewL(512);
42 //Default in BitGdi was 128 for the blackMap and 255 for the whiteMap
43 //SetFadingParameters shows how the fade color is computed
44 self->iFadeColor.SetInternal(0x80FFFFFF);
46 self->iLut = PtrTo16BitNormalisationTable();
47 CleanupStack::Pop(self);
51 CDirectGdiGcWrapper::~CDirectGdiGcWrapper()
55 iClippingRegion.Close();
58 void CDirectGdiGcWrapper::BitBlt(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap)
60 iContext->BitBlt(aDestPos, aSourceBitmap);
63 void CDirectGdiGcWrapper::BitBlt(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect)
65 iContext->BitBlt(aDestPos, aSourceBitmap, aSourceRect);
68 void CDirectGdiGcWrapper::BitBltMasked(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect, const CFbsBitmap& aMaskBitmap, TBool aInvertMask)
70 iContext->BitBltMasked(aDestPos, aSourceBitmap, aSourceRect, aMaskBitmap, aInvertMask);
73 void CDirectGdiGcWrapper::BitBltMasked(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect, const CFbsBitmap& aMaskBitmap, const TPoint& aMaskPos)
75 iContext->BitBltMasked(aDestPos, aSourceBitmap, aSourceRect, aMaskBitmap, aMaskPos);
78 void CDirectGdiGcWrapper::ResetClippingRegion()
80 iContext->ResetClippingRegion();
83 void CDirectGdiGcWrapper::Clear()
88 void CDirectGdiGcWrapper::Clear(const TRect& aRect)
90 iContext->Clear(aRect);
93 void CDirectGdiGcWrapper::ResetBrushPattern()
95 iContext->ResetBrushPattern();
98 void CDirectGdiGcWrapper::ResetFont()
100 iContext->ResetFont();
103 void CDirectGdiGcWrapper::DrawArc(const TRect& aRect, const TPoint& aStart, const TPoint& aEnd)
105 iContext->DrawArc(aRect, aStart, aEnd);
108 void CDirectGdiGcWrapper::DrawPie(const TRect& aRect, const TPoint& aStart, const TPoint& aEnd)
110 iContext->DrawPie(aRect, aStart, aEnd);
113 void CDirectGdiGcWrapper::DrawBitmap(const TRect& aDestRect, const CFbsBitmap& aSourceBitmap)
115 iContext->DrawBitmap(aDestRect, aSourceBitmap);
118 void CDirectGdiGcWrapper::DrawBitmap(const TRect& aDestRect, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect)
120 iContext->DrawBitmap(aDestRect, aSourceBitmap, aSourceRect);
123 void CDirectGdiGcWrapper::DrawBitmapMasked(const TRect& aDestRect, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect, const CFbsBitmap& aMaskBitmap, TBool aInvertMask)
125 iContext->DrawBitmapMasked(aDestRect, aSourceBitmap, aSourceRect, aMaskBitmap, aInvertMask);
128 void CDirectGdiGcWrapper::DrawRoundRect(const TRect& aRect, const TSize& aEllipse)
130 iContext->DrawRoundRect(aRect, aEllipse);
133 void CDirectGdiGcWrapper::DrawPolyLine(const TArray<TPoint>& aPointList)
135 iContext->DrawPolyLine(aPointList);
138 void CDirectGdiGcWrapper::DrawPolyLineNoEndPoint(const TArray<TPoint>& aPointList)
140 iContext->DrawPolyLineNoEndPoint(aPointList);
143 void CDirectGdiGcWrapper::DrawPolygon(const TArray<TPoint>& aPointList, TFillRule aFillRule)
145 iContext->DrawPolygon(aPointList, MWsGraphicsContextToDirectGdiMappings::Convert(aFillRule));
148 void CDirectGdiGcWrapper::DrawEllipse(const TRect& aRect)
150 iContext->DrawEllipse(aRect);
153 void CDirectGdiGcWrapper::DrawLine(const TPoint& aStart, const TPoint& aEnd)
155 iContext->DrawLine(aStart, aEnd);
158 void CDirectGdiGcWrapper::DrawLineTo(const TPoint& aPoint)
160 iContext->DrawLineTo(aPoint);
163 void CDirectGdiGcWrapper::DrawLineBy(const TPoint& aVector)
165 iContext->DrawLineBy(aVector);
168 void CDirectGdiGcWrapper::DrawRect(const TRect& aRect)
170 iContext->DrawRect(aRect);
173 void CDirectGdiGcWrapper::DrawText(const TDesC& aText,const TTextParameters* aParam)
175 iContext->DrawText(aText, MWsGraphicsContextToDirectGdiMappings::Convert(aParam));
178 void CDirectGdiGcWrapper::DrawText(const TDesC& aText,const TTextParameters* aParam,const TPoint& aPosition)
180 iContext->DrawText(aText, MWsGraphicsContextToDirectGdiMappings::Convert(aParam), aPosition);
183 void CDirectGdiGcWrapper::DrawText(const TDesC& aText,const TTextParameters* aParam,const TRect& aClipRect)
185 iContext->DrawText(aText, MWsGraphicsContextToDirectGdiMappings::Convert(aParam), aClipRect);
188 void CDirectGdiGcWrapper::DrawText(const TDesC& aText,const TTextParameters* aParam,const TRect& aClipFillRect,TInt aBaselineOffset, TTextAlign aHrz,TInt aMargin)
190 iContext->DrawText(aText, MWsGraphicsContextToDirectGdiMappings::Convert(aParam), aClipFillRect, aBaselineOffset, MWsGraphicsContextToDirectGdiMappings::Convert(aHrz), aMargin);
193 void CDirectGdiGcWrapper::DrawTextVertical(const TDesC& aText,const TTextParameters* aParam,TBool aUp)
195 iContext->DrawTextVertical(aText, MWsGraphicsContextToDirectGdiMappings::Convert(aParam), aUp);
198 void CDirectGdiGcWrapper::DrawTextVertical(const TDesC& aText,const TTextParameters* aParam,const TPoint& aPosition,TBool aUp)
200 iContext->DrawTextVertical(aText, MWsGraphicsContextToDirectGdiMappings::Convert(aParam), aPosition, aUp);
203 void CDirectGdiGcWrapper::DrawTextVertical(const TDesC& aText,const TTextParameters* aParam,const TRect& aClipRect,TBool aUp)
205 iContext->DrawTextVertical(aText, MWsGraphicsContextToDirectGdiMappings::Convert(aParam), aClipRect, aUp);
208 void CDirectGdiGcWrapper::DrawTextVertical(const TDesC& aText,const TTextParameters* aParam,const TRect& aClipRect,TInt aBaselineOffset,TBool aUp,TTextAlign aVert,TInt aMargin)
210 iContext->DrawTextVertical(aText, MWsGraphicsContextToDirectGdiMappings::Convert(aParam), aClipRect, aBaselineOffset, aUp, MWsGraphicsContextToDirectGdiMappings::Convert(aVert), aMargin);
213 void CDirectGdiGcWrapper::DrawTextVertical(const TDesC& aText,const TTextParameters* aParam,const TRect& aClipRect,TInt aBaselineOffset,TInt aTextWidth,TBool aUp,TTextAlign aVert,TInt aMargin)
215 iContext->DrawTextVertical(aText, MWsGraphicsContextToDirectGdiMappings::Convert(aParam), aClipRect, aBaselineOffset, aTextWidth, aUp, MWsGraphicsContextToDirectGdiMappings::Convert(aVert), aMargin);
218 void CDirectGdiGcWrapper::MoveTo(const TPoint& aPoint)
220 iContext->MoveTo(aPoint);
223 void CDirectGdiGcWrapper::MoveBy(const TPoint& aVector)
225 iContext->MoveBy(aVector);
228 void CDirectGdiGcWrapper::Plot(const TPoint& aPoint)
230 iContext->Plot(aPoint);
233 void CDirectGdiGcWrapper::Reset()
238 void CDirectGdiGcWrapper::SetBrushColor(const TRgb& aColor)
240 iContext->SetBrushColor(aColor);
243 void CDirectGdiGcWrapper::SetBrushOrigin(const TPoint& aOrigin)
245 iContext->SetBrushOrigin(aOrigin);
248 void CDirectGdiGcWrapper::SetBrushStyle(TBrushStyle aBrushStyle)
250 iContext->SetBrushStyle(MWsGraphicsContextToDirectGdiMappings::Convert(aBrushStyle));
253 void CDirectGdiGcWrapper::SetClippingRegion(const TRegion& aRegion)
255 CDirectGdiDriver* driver = CDirectGdiDriver::Static();
256 driver->GetError(); //make sure that an error has been received
257 iContext->SetClippingRegion(aRegion);
258 TInt err = driver->GetError();
262 iClippingRegion.Copy(aRegion);
266 void CDirectGdiGcWrapper::SetDrawMode(TDrawMode aDrawMode)
268 iContext->SetDrawMode(MWsGraphicsContextToDirectGdiMappings::LossyConvert(aDrawMode));
271 void CDirectGdiGcWrapper::SetOrigin(const TPoint& aPoint)
273 iContext->SetOrigin(aPoint);
277 void CDirectGdiGcWrapper::SetPenColor(const TRgb& aColor)
279 iContext->SetPenColor(aColor);
282 void CDirectGdiGcWrapper::SetPenStyle(TPenStyle aPenStyle)
284 iContext->SetPenStyle(MWsGraphicsContextToDirectGdiMappings::Convert(aPenStyle));
287 void CDirectGdiGcWrapper::SetPenSize(const TSize& aSize)
289 iContext->SetPenSize(aSize);
292 void CDirectGdiGcWrapper::SetTextShadowColor(const TRgb& aColor)
294 iContext->SetTextShadowColor(aColor);
297 void CDirectGdiGcWrapper::SetCharJustification(TInt aExcessWidth, TInt aNumChars)
299 iContext->SetCharJustification(aExcessWidth, aNumChars);
302 void CDirectGdiGcWrapper::SetWordJustification(TInt aExcessWidth, TInt aNumGaps)
304 iContext->SetWordJustification(aExcessWidth, aNumGaps);
307 void CDirectGdiGcWrapper::SetUnderlineStyle(TFontUnderline aUnderlineStyle)
309 iContext->SetUnderlineStyle(MWsGraphicsContextToDirectGdiMappings::Convert(aUnderlineStyle));
312 void CDirectGdiGcWrapper::SetStrikethroughStyle(TFontStrikethrough aStrikethroughStyle)
314 iContext->SetStrikethroughStyle(MWsGraphicsContextToDirectGdiMappings::Convert(aStrikethroughStyle));
317 void CDirectGdiGcWrapper::SetBrushPattern(const CFbsBitmap& aBitmap)
319 iContext->SetBrushPattern(aBitmap);
322 void CDirectGdiGcWrapper::SetBrushPattern(TInt aFbsBitmapHandle)
324 iContext->SetBrushPattern(aFbsBitmapHandle);
327 void CDirectGdiGcWrapper::SetFont(const CFont* aFont)
329 iContext->SetFont(aFont);
332 void CDirectGdiGcWrapper::CopyRect(const TPoint& aOffset, const TRect& aRect)
334 iContext->CopyRect(aOffset, aRect);
337 void CDirectGdiGcWrapper::UpdateJustification(const TDesC& aText,const TTextParameters* aParam)
339 iContext->UpdateJustification(aText, MWsGraphicsContextToDirectGdiMappings::Convert(aParam));
342 void CDirectGdiGcWrapper::UpdateJustificationVertical(const TDesC& aText,const TTextParameters* aParam,TBool aUp)
344 iContext->UpdateJustificationVertical(aText, MWsGraphicsContextToDirectGdiMappings::Convert(aParam), aUp);
347 void CDirectGdiGcWrapper::SetFontNoDuplicate(const CFont* aFont)
349 iContext->SetFontNoDuplicate(static_cast<const CDirectGdiFont*>(aFont));
352 TBool CDirectGdiGcWrapper::HasBrushPattern() const
354 return iContext->HasBrushPattern();
357 TBool CDirectGdiGcWrapper::HasFont() const
359 return iContext->HasFont();
362 TRgb CDirectGdiGcWrapper::BrushColor() const
364 return iContext->BrushColor();
367 TRgb CDirectGdiGcWrapper::PenColor() const
369 return iContext->PenColor();
372 TRgb CDirectGdiGcWrapper::TextShadowColor() const
374 return iContext->TextShadowColor();
377 TAny* CDirectGdiGcWrapper::ResolveObjectInterface(TUint /*aTypeId*/)
383 Sets the error code. If the error code is already set to a value other
384 than KErrNone, the error code will not be modified.
386 @param aErr The error code to set.
388 @post The error code has been set.
390 void CDirectGdiGcWrapper::SetError(TInt aError)
392 if (aError != KErrNone && iErrorCode == KErrNone)
399 Returns the first error code (set as the result of calling some CDirectGdiGcWrapper API), if any,
400 since the last call to this function or, if it has not previously been called, since
401 the CDirectGdiGcWrapper was constructed. Calling this function clears the error code.
403 @post The error code has been reset after being read.
405 @return The first error code, if any, since the last call to this function or,
406 if it has not previously been called, since the CDirectGdiGcWrapper was constructed.
407 KErrNone will indicate that no such error has occurred.
409 TInt CDirectGdiGcWrapper::GetError()
411 TInt err = iErrorCode;
412 iErrorCode = KErrNone;
416 TPoint CDirectGdiGcWrapper::Origin() const
421 const TRegion& CDirectGdiGcWrapper::ClippingRegion()
423 return iClippingRegion;
426 TInt CDirectGdiGcWrapper::Push()
428 // the buf format is len+data where data is written by the GC's ExternalizeL()
430 CBufBase& buf = *iGcBuf;
431 const TInt start = buf.Size();
432 RBufWriteStream out(buf,start);
433 TRAPD(err,out.WriteInt32L(0));
436 TRAP(err,iContext->ExternalizeL(out));
438 if(err) //rollback addition
440 buf.Delete(start,buf.Size()-start);
444 TRAP_IGNORE(out.CommitL();) // can't see this failing
445 TPckgBuf<TInt32> pckg(buf.Size()-sizeof(TInt32)-start);
446 buf.Write(start,pckg);
451 void CDirectGdiGcWrapper::Pop()
453 CBufBase& buf = *iGcBuf;
458 RBufReadStream in(buf,ofs);
459 TRAPD(err,chunk = in.ReadInt32L());
462 STD_ASSERT_DEBUG(err != 0, EStdPanicPopGcSettings);
465 if(ofs+sizeof(TInt32)+chunk >= buf.Size()) // the last chunk?
467 TRAP_IGNORE(iContext->InternalizeL(in));
468 buf.Delete(ofs,buf.Size()-ofs);
471 ofs += chunk + sizeof(TInt32);
475 //Default method of fading simply uses bitgdi to perform fading
476 void CDirectGdiGcWrapper::FadeArea(const TRegion& aRegion)
478 if (!&aRegion || aRegion.CheckError())
482 iContext->SetClippingRegion(aRegion);
483 iContext->SetPenStyle(DirectGdi::ENullPen);
484 iContext->SetBrushStyle(DirectGdi::ESolidBrush);
485 iContext->SetBrushColor(iFadeColor);
486 iContext->DrawRect(aRegion.BoundingRect());
489 //Default method of fading expects two TUint8's describing the black/white map
490 //as possible fading parameters
491 void CDirectGdiGcWrapper::SetFadingParameters(const TDesC8& aData)
493 TPckgBuf<TFadingParams> buf;
495 TFadingParams parameters = buf();
497 //Situations where blackMap > whiteMap are NOT supported
498 if (parameters.blackMap > parameters.whiteMap)
500 TUint8 oldMap = parameters.blackMap;
501 parameters.blackMap = parameters.whiteMap;
502 parameters.whiteMap = oldMap;
505 //CFbsBitGc::FadeArea() does the following per color component:
506 // dst = dst * (whiteMap - blackMap) + blackMap;
508 //To achieve the same effect using MWsGraphicsContext we draw a rectangle
509 //with specific intensity and alpha values:
510 // dst = dst * (1 - alpha) + intensity * alpha;
512 // alpha = 1 - whiteMap + blackMap;
513 // intensity = blackMap / alpha;
515 // alpha = 1 - whiteMap + blackMap;
516 TInt alpha = 255 - parameters.whiteMap + parameters.blackMap;
517 // intensity = blackMap / alpha;
518 TInt i = (parameters.blackMap * iLut[alpha]) >> 8;
520 iFadeColor.SetInternal(i << 16 | i << 8 | i | alpha << 24);