os/graphics/windowing/windowserver/test/tauto/directgdigcwrapper.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/test/tauto/directgdigcwrapper.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,521 @@
     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 +//
    1.18 +
    1.19 +#include "directgdigcwrapper.h"
    1.20 +#include "mwsgraphicscontexttodirectgdimappings.h"
    1.21 +#include <s32mem.h>
    1.22 +#include "stdpanic.h"
    1.23 +#include <graphics/lookuptable.h>
    1.24 +#include <graphics/directgdidriver.h>
    1.25 +#include <graphics/directgdidrawablesource.h>
    1.26 +
    1.27 +void Panic(TStdPluginPanic aPanic)
    1.28 +	{
    1.29 +	_LIT(KStdPanicCategory, "WSERV-TEST-PLUGIN");
    1.30 +	User::Panic(KStdPanicCategory, aPanic);
    1.31 +	}
    1.32 +
    1.33 +CDirectGdiGcWrapper* CDirectGdiGcWrapper::NewL(RDirectGdiImageTarget& aTarget)
    1.34 +	{
    1.35 +	CDirectGdiGcWrapper* self = new(ELeave) CDirectGdiGcWrapper;
    1.36 +	CleanupStack::PushL(self);
    1.37 +	CDirectGdiDriver* driver = CDirectGdiDriver::Static();
    1.38 +	User::LeaveIfNull(driver);
    1.39 +	self->iContext = CDirectGdiContext::NewL(*driver);
    1.40 +	TInt err = self->iContext->Activate(aTarget);
    1.41 +	User::LeaveIfError(err);
    1.42 +	self->iErrorCode = KErrNone;
    1.43 +	self->iGcBuf = CBufSeg::NewL(512);
    1.44 +	//MWsFader
    1.45 +	//Default in BitGdi was 128 for the blackMap and 255 for the whiteMap
    1.46 +	//SetFadingParameters shows how the fade color is computed
    1.47 +	self->iFadeColor.SetInternal(0x80FFFFFF);
    1.48 +	
    1.49 +	self->iLut = PtrTo16BitNormalisationTable();
    1.50 +	CleanupStack::Pop(self);
    1.51 +	return self;
    1.52 +	}
    1.53 +
    1.54 +CDirectGdiGcWrapper::~CDirectGdiGcWrapper()
    1.55 +	{
    1.56 +	delete iContext;
    1.57 +	delete iGcBuf;
    1.58 +	iClippingRegion.Close();
    1.59 +	}
    1.60 +
    1.61 +void CDirectGdiGcWrapper::BitBlt(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap)
    1.62 +	{
    1.63 +	iContext->BitBlt(aDestPos, aSourceBitmap);
    1.64 +	}
    1.65 +
    1.66 +void CDirectGdiGcWrapper::BitBlt(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect)
    1.67 +	{
    1.68 +	iContext->BitBlt(aDestPos, aSourceBitmap, aSourceRect);
    1.69 +	}
    1.70 +
    1.71 +void CDirectGdiGcWrapper::BitBltMasked(const TPoint& aDestPos,	const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect, const CFbsBitmap& aMaskBitmap, TBool aInvertMask)
    1.72 +	{
    1.73 +	iContext->BitBltMasked(aDestPos, aSourceBitmap, aSourceRect, aMaskBitmap, aInvertMask);
    1.74 +	}
    1.75 +
    1.76 +void CDirectGdiGcWrapper::BitBltMasked(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect, const CFbsBitmap& aMaskBitmap, const TPoint& aMaskPos)
    1.77 +	{
    1.78 +	iContext->BitBltMasked(aDestPos, aSourceBitmap, aSourceRect, aMaskBitmap, aMaskPos);
    1.79 +	}
    1.80 +
    1.81 +void CDirectGdiGcWrapper::ResetClippingRegion()
    1.82 +	{
    1.83 +	iContext->ResetClippingRegion();
    1.84 +	}
    1.85 +
    1.86 +void CDirectGdiGcWrapper::Clear()
    1.87 +	{
    1.88 +	iContext->Clear();
    1.89 +	}
    1.90 +
    1.91 +void CDirectGdiGcWrapper::Clear(const TRect& aRect)
    1.92 +	{
    1.93 +	iContext->Clear(aRect);
    1.94 +	}
    1.95 +
    1.96 +void CDirectGdiGcWrapper::ResetBrushPattern()
    1.97 +	{
    1.98 +	iContext->ResetBrushPattern();
    1.99 +	}
   1.100 +
   1.101 +void CDirectGdiGcWrapper::ResetFont()
   1.102 +	{
   1.103 +	iContext->ResetFont();
   1.104 +	}
   1.105 +
   1.106 +void CDirectGdiGcWrapper::DrawArc(const TRect& aRect, const TPoint& aStart, const TPoint& aEnd)
   1.107 +	{
   1.108 +	iContext->DrawArc(aRect, aStart, aEnd);
   1.109 +	}
   1.110 +
   1.111 +void CDirectGdiGcWrapper::DrawPie(const TRect& aRect, const TPoint& aStart, const TPoint& aEnd)
   1.112 +	{
   1.113 +	iContext->DrawPie(aRect, aStart, aEnd);
   1.114 +	}
   1.115 +
   1.116 +void CDirectGdiGcWrapper::DrawBitmap(const TRect& aDestRect, const CFbsBitmap& aSourceBitmap)
   1.117 +	{
   1.118 +	iContext->DrawBitmap(aDestRect, aSourceBitmap);
   1.119 +	}
   1.120 +
   1.121 +void CDirectGdiGcWrapper::DrawBitmap(const TRect& aDestRect, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect)
   1.122 +	{
   1.123 +	iContext->DrawBitmap(aDestRect,	aSourceBitmap, aSourceRect);
   1.124 +	}
   1.125 +
   1.126 +void CDirectGdiGcWrapper::DrawBitmapMasked(const TRect& aDestRect, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect, const CFbsBitmap& aMaskBitmap, TBool aInvertMask)
   1.127 +	{
   1.128 +	iContext->DrawBitmapMasked(aDestRect, aSourceBitmap, aSourceRect, aMaskBitmap, aInvertMask);
   1.129 +	}
   1.130 +
   1.131 +void CDirectGdiGcWrapper::DrawRoundRect(const TRect& aRect, const TSize& aEllipse)
   1.132 +	{
   1.133 +	iContext->DrawRoundRect(aRect, aEllipse);
   1.134 +	}
   1.135 +
   1.136 +void CDirectGdiGcWrapper::DrawPolyLine(const TArray<TPoint>& aPointList)
   1.137 +	{
   1.138 +	iContext->DrawPolyLine(aPointList);
   1.139 +	}
   1.140 +
   1.141 +void CDirectGdiGcWrapper::DrawPolyLineNoEndPoint(const TArray<TPoint>& aPointList)
   1.142 +	{
   1.143 +	iContext->DrawPolyLineNoEndPoint(aPointList);
   1.144 +	}
   1.145 +
   1.146 +void CDirectGdiGcWrapper::DrawPolygon(const TArray<TPoint>& aPointList, TFillRule aFillRule)
   1.147 +	{
   1.148 +	iContext->DrawPolygon(aPointList, MWsGraphicsContextToDirectGdiMappings::Convert(aFillRule));
   1.149 +	}
   1.150 +
   1.151 +void CDirectGdiGcWrapper::DrawEllipse(const TRect& aRect)
   1.152 +	{
   1.153 +	iContext->DrawEllipse(aRect);
   1.154 +	}
   1.155 +
   1.156 +void CDirectGdiGcWrapper::DrawLine(const TPoint& aStart, const TPoint& aEnd)
   1.157 +	{
   1.158 +	iContext->DrawLine(aStart, aEnd);
   1.159 +	}
   1.160 +
   1.161 +void CDirectGdiGcWrapper::DrawLineTo(const TPoint& aPoint)
   1.162 +	{
   1.163 +	iContext->DrawLineTo(aPoint);
   1.164 +	}
   1.165 +
   1.166 +void CDirectGdiGcWrapper::DrawLineBy(const TPoint& aVector)
   1.167 +	{
   1.168 +	iContext->DrawLineBy(aVector);
   1.169 +	}
   1.170 +
   1.171 +void CDirectGdiGcWrapper::DrawRect(const TRect& aRect)
   1.172 +	{
   1.173 +	iContext->DrawRect(aRect);
   1.174 +	}
   1.175 +
   1.176 +void CDirectGdiGcWrapper::DrawText(const TDesC& aText,const TTextParameters* aParam)
   1.177 +	{
   1.178 +	iContext->DrawText(aText, MWsGraphicsContextToDirectGdiMappings::Convert(aParam));
   1.179 +	}
   1.180 +
   1.181 +void CDirectGdiGcWrapper::DrawText(const TDesC& aText,const TTextParameters* aParam,const TPoint& aPosition)
   1.182 +	{
   1.183 +	iContext->DrawText(aText, MWsGraphicsContextToDirectGdiMappings::Convert(aParam), aPosition);
   1.184 +	}
   1.185 +
   1.186 +void CDirectGdiGcWrapper::DrawText(const TDesC& aText,const TTextParameters* aParam,const TRect& aClipRect)
   1.187 +	{
   1.188 +	iContext->DrawText(aText, MWsGraphicsContextToDirectGdiMappings::Convert(aParam), aClipRect);
   1.189 +	}
   1.190 +
   1.191 +void CDirectGdiGcWrapper::DrawText(const TDesC& aText,const TTextParameters* aParam,const TRect& aClipFillRect,TInt aBaselineOffset, TTextAlign aHrz,TInt aMargin)
   1.192 +	{
   1.193 +	iContext->DrawText(aText, MWsGraphicsContextToDirectGdiMappings::Convert(aParam), aClipFillRect, aBaselineOffset, MWsGraphicsContextToDirectGdiMappings::Convert(aHrz), aMargin);
   1.194 +	}
   1.195 +
   1.196 +void CDirectGdiGcWrapper::DrawTextVertical(const TDesC& aText,const TTextParameters* aParam,TBool aUp)
   1.197 +	{
   1.198 +	iContext->DrawTextVertical(aText, MWsGraphicsContextToDirectGdiMappings::Convert(aParam), aUp);
   1.199 +	}
   1.200 +
   1.201 +void CDirectGdiGcWrapper::DrawTextVertical(const TDesC& aText,const TTextParameters* aParam,const TPoint& aPosition,TBool aUp)
   1.202 +	{
   1.203 +	iContext->DrawTextVertical(aText, MWsGraphicsContextToDirectGdiMappings::Convert(aParam), aPosition, aUp);
   1.204 +	}
   1.205 +
   1.206 +void CDirectGdiGcWrapper::DrawTextVertical(const TDesC& aText,const TTextParameters* aParam,const TRect& aClipRect,TBool aUp)
   1.207 +	{
   1.208 +	iContext->DrawTextVertical(aText, MWsGraphicsContextToDirectGdiMappings::Convert(aParam), aClipRect, aUp);
   1.209 +	}
   1.210 +
   1.211 +void CDirectGdiGcWrapper::DrawTextVertical(const TDesC& aText,const TTextParameters* aParam,const TRect& aClipRect,TInt aBaselineOffset,TBool aUp,TTextAlign aVert,TInt aMargin)
   1.212 +	{
   1.213 +	iContext->DrawTextVertical(aText, MWsGraphicsContextToDirectGdiMappings::Convert(aParam), aClipRect, aBaselineOffset, aUp, MWsGraphicsContextToDirectGdiMappings::Convert(aVert), aMargin);
   1.214 +	}
   1.215 +
   1.216 +void CDirectGdiGcWrapper::DrawTextVertical(const TDesC& aText,const TTextParameters* aParam,const TRect& aClipRect,TInt aBaselineOffset,TInt aTextWidth,TBool aUp,TTextAlign aVert,TInt aMargin)
   1.217 +	{
   1.218 +	iContext->DrawTextVertical(aText, MWsGraphicsContextToDirectGdiMappings::Convert(aParam), aClipRect, aBaselineOffset, aTextWidth, aUp, MWsGraphicsContextToDirectGdiMappings::Convert(aVert), aMargin);
   1.219 +	}
   1.220 +
   1.221 +void CDirectGdiGcWrapper::MoveTo(const TPoint& aPoint)
   1.222 +	{
   1.223 +	iContext->MoveTo(aPoint);
   1.224 +	}
   1.225 +
   1.226 +void CDirectGdiGcWrapper::MoveBy(const TPoint& aVector)
   1.227 +	{
   1.228 +	iContext->MoveBy(aVector);
   1.229 +	}
   1.230 +
   1.231 +void CDirectGdiGcWrapper::Plot(const TPoint& aPoint)
   1.232 +	{
   1.233 +	iContext->Plot(aPoint);
   1.234 +	}
   1.235 +
   1.236 +void CDirectGdiGcWrapper::Reset()
   1.237 +	{
   1.238 +	iContext->Reset();
   1.239 +	}
   1.240 +
   1.241 +void CDirectGdiGcWrapper::SetBrushColor(const TRgb& aColor)
   1.242 +	{
   1.243 +	iContext->SetBrushColor(aColor);
   1.244 +	}
   1.245 +
   1.246 +void CDirectGdiGcWrapper::SetBrushOrigin(const TPoint& aOrigin)
   1.247 +	{
   1.248 +	iContext->SetBrushOrigin(aOrigin);
   1.249 +	}
   1.250 +
   1.251 +void CDirectGdiGcWrapper::SetBrushStyle(TBrushStyle aBrushStyle)
   1.252 +	{
   1.253 +	iContext->SetBrushStyle(MWsGraphicsContextToDirectGdiMappings::Convert(aBrushStyle));
   1.254 +	}
   1.255 +
   1.256 +void CDirectGdiGcWrapper::SetClippingRegion(const TRegion& aRegion)
   1.257 +	{
   1.258 +	CDirectGdiDriver* driver = CDirectGdiDriver::Static();
   1.259 +	driver->GetError(); //make sure that an error has been received 
   1.260 +	iContext->SetClippingRegion(aRegion);
   1.261 +	TInt err = driver->GetError();
   1.262 +	SetError(err);
   1.263 +	if(err == KErrNone)
   1.264 +		{
   1.265 +		iClippingRegion.Copy(aRegion);
   1.266 +		}
   1.267 +	}
   1.268 +
   1.269 +void CDirectGdiGcWrapper::SetDrawMode(TDrawMode aDrawMode)
   1.270 +	{
   1.271 +	iContext->SetDrawMode(MWsGraphicsContextToDirectGdiMappings::LossyConvert(aDrawMode));
   1.272 +	}
   1.273 +
   1.274 +void CDirectGdiGcWrapper::SetOrigin(const TPoint& aPoint)
   1.275 +	{
   1.276 +	iContext->SetOrigin(aPoint);
   1.277 +	iOrigin = aPoint;
   1.278 +	}
   1.279 +
   1.280 +void CDirectGdiGcWrapper::SetPenColor(const TRgb& aColor)
   1.281 +	{
   1.282 +	iContext->SetPenColor(aColor);
   1.283 +	}
   1.284 +
   1.285 +void CDirectGdiGcWrapper::SetPenStyle(TPenStyle aPenStyle)
   1.286 +	{
   1.287 +	iContext->SetPenStyle(MWsGraphicsContextToDirectGdiMappings::Convert(aPenStyle));
   1.288 +	}
   1.289 +
   1.290 +void CDirectGdiGcWrapper::SetPenSize(const TSize& aSize)
   1.291 +	{
   1.292 +	iContext->SetPenSize(aSize);
   1.293 +	}
   1.294 +
   1.295 +void CDirectGdiGcWrapper::SetTextShadowColor(const TRgb& aColor)
   1.296 +	{
   1.297 +	iContext->SetTextShadowColor(aColor);
   1.298 +	}
   1.299 +
   1.300 +void CDirectGdiGcWrapper::SetCharJustification(TInt aExcessWidth, TInt aNumChars)
   1.301 +	{
   1.302 +	iContext->SetCharJustification(aExcessWidth, aNumChars);
   1.303 +	}
   1.304 +
   1.305 +void CDirectGdiGcWrapper::SetWordJustification(TInt aExcessWidth, TInt aNumGaps)
   1.306 +	{
   1.307 +	iContext->SetWordJustification(aExcessWidth, aNumGaps);
   1.308 +	}
   1.309 +
   1.310 +void CDirectGdiGcWrapper::SetUnderlineStyle(TFontUnderline aUnderlineStyle)
   1.311 +	{
   1.312 +	iContext->SetUnderlineStyle(MWsGraphicsContextToDirectGdiMappings::Convert(aUnderlineStyle));
   1.313 +	}
   1.314 +
   1.315 +void CDirectGdiGcWrapper::SetStrikethroughStyle(TFontStrikethrough aStrikethroughStyle)
   1.316 +	{
   1.317 +	iContext->SetStrikethroughStyle(MWsGraphicsContextToDirectGdiMappings::Convert(aStrikethroughStyle));
   1.318 +	}
   1.319 +
   1.320 +void CDirectGdiGcWrapper::SetBrushPattern(const CFbsBitmap& aBitmap)
   1.321 +	{
   1.322 +	iContext->SetBrushPattern(aBitmap);
   1.323 +	}
   1.324 +
   1.325 +void CDirectGdiGcWrapper::SetBrushPattern(TInt aFbsBitmapHandle)
   1.326 +	{
   1.327 +	iContext->SetBrushPattern(aFbsBitmapHandle);
   1.328 +	}
   1.329 +
   1.330 +void CDirectGdiGcWrapper::SetFont(const CFont* aFont)
   1.331 +	{
   1.332 +	iContext->SetFont(aFont);
   1.333 +	}
   1.334 +
   1.335 +void CDirectGdiGcWrapper::CopyRect(const TPoint& aOffset, const TRect& aRect)
   1.336 +	{
   1.337 +	iContext->CopyRect(aOffset, aRect);
   1.338 +	}
   1.339 +
   1.340 +void CDirectGdiGcWrapper::UpdateJustification(const TDesC& aText,const TTextParameters* aParam)
   1.341 +	{
   1.342 +	iContext->UpdateJustification(aText, MWsGraphicsContextToDirectGdiMappings::Convert(aParam));
   1.343 +	}
   1.344 +
   1.345 +void CDirectGdiGcWrapper::UpdateJustificationVertical(const TDesC& aText,const TTextParameters* aParam,TBool aUp)
   1.346 +	{
   1.347 +	iContext->UpdateJustificationVertical(aText, MWsGraphicsContextToDirectGdiMappings::Convert(aParam), aUp);
   1.348 +	}
   1.349 +
   1.350 +void CDirectGdiGcWrapper::SetFontNoDuplicate(const CFont* aFont)
   1.351 +	{
   1.352 +	iContext->SetFontNoDuplicate(static_cast<const CDirectGdiFont*>(aFont));
   1.353 +	}
   1.354 +
   1.355 +TBool CDirectGdiGcWrapper::HasBrushPattern() const
   1.356 +	{
   1.357 +	return iContext->HasBrushPattern();
   1.358 +	}
   1.359 +
   1.360 +TBool CDirectGdiGcWrapper::HasFont() const
   1.361 +	{
   1.362 +	return iContext->HasFont();
   1.363 +	}
   1.364 +
   1.365 +TRgb CDirectGdiGcWrapper::BrushColor() const
   1.366 +	{
   1.367 +	return iContext->BrushColor();
   1.368 +	}
   1.369 +
   1.370 +TRgb CDirectGdiGcWrapper::PenColor() const
   1.371 +	{
   1.372 +	return iContext->PenColor();
   1.373 +	}
   1.374 +
   1.375 +TRgb CDirectGdiGcWrapper::TextShadowColor() const
   1.376 +	{
   1.377 +	return iContext->TextShadowColor();
   1.378 +	}
   1.379 +
   1.380 +TAny* CDirectGdiGcWrapper::ResolveObjectInterface(TUint /*aTypeId*/)
   1.381 +	{
   1.382 +	return NULL;
   1.383 +	}
   1.384 +
   1.385 +/**
   1.386 +Sets the error code. If the error code is already set to a value other
   1.387 +than KErrNone, the error code will not be modified.
   1.388 +
   1.389 +@param  aErr The error code to set.
   1.390 +
   1.391 +@post 	The error code has been set.
   1.392 +*/
   1.393 +void CDirectGdiGcWrapper::SetError(TInt aError)
   1.394 +	{
   1.395 +	if (aError != KErrNone && iErrorCode == KErrNone)
   1.396 +		{
   1.397 +		iErrorCode = aError;
   1.398 +		}
   1.399 +	}
   1.400 +
   1.401 +/**
   1.402 +Returns the first error code (set as the result of calling some CDirectGdiGcWrapper API), if any,
   1.403 +since the last call to this function or, if it has not previously been called, since
   1.404 +the CDirectGdiGcWrapper was constructed. Calling this function clears the error code.
   1.405 +
   1.406 +@post 	The error code has been reset after being read.
   1.407 +
   1.408 +@return The first error code, if any, since the last call to this function or, 
   1.409 +		if it has not previously been called, since the CDirectGdiGcWrapper was constructed. 
   1.410 +		KErrNone will indicate that no such error has occurred.
   1.411 +*/
   1.412 +TInt CDirectGdiGcWrapper::GetError()
   1.413 +	{
   1.414 +	TInt err = iErrorCode;
   1.415 +	iErrorCode = KErrNone;
   1.416 +	return err;
   1.417 +	}
   1.418 +
   1.419 +TPoint CDirectGdiGcWrapper::Origin() const
   1.420 +	{
   1.421 +	return iOrigin;
   1.422 +	}
   1.423 +
   1.424 +const TRegion& CDirectGdiGcWrapper::ClippingRegion()
   1.425 +	{
   1.426 +	return iClippingRegion;
   1.427 +	}
   1.428 +
   1.429 +TInt CDirectGdiGcWrapper::Push()
   1.430 +	{
   1.431 +	// the buf format is len+data where data is written by the GC's ExternalizeL()
   1.432 +	iGcBuf->Reset();
   1.433 +	CBufBase& buf = *iGcBuf;
   1.434 +	const TInt start = buf.Size();
   1.435 +	RBufWriteStream out(buf,start);
   1.436 +	TRAPD(err,out.WriteInt32L(0));
   1.437 +	if(!err)
   1.438 +		{
   1.439 +		TRAP(err,iContext->ExternalizeL(out));
   1.440 +		}
   1.441 +	if(err) //rollback addition
   1.442 +		{
   1.443 +		buf.Delete(start,buf.Size()-start);
   1.444 +		}
   1.445 +	else //fixup len
   1.446 +		{
   1.447 +		TRAP_IGNORE(out.CommitL();) // can't see this failing
   1.448 +		TPckgBuf<TInt32> pckg(buf.Size()-sizeof(TInt32)-start);
   1.449 +		buf.Write(start,pckg);
   1.450 +		}
   1.451 +	return err;
   1.452 +	}
   1.453 +
   1.454 +void CDirectGdiGcWrapper::Pop()
   1.455 +	{
   1.456 +	CBufBase& buf = *iGcBuf;
   1.457 +	TInt ofs = 0;
   1.458 +	FOREVER
   1.459 +		{
   1.460 +		TInt chunk = 0;
   1.461 +		RBufReadStream in(buf,ofs);
   1.462 +		TRAPD(err,chunk = in.ReadInt32L());
   1.463 +		if(err)
   1.464 +			{
   1.465 +			STD_ASSERT_DEBUG(err != 0, EStdPanicPopGcSettings);
   1.466 +			return;
   1.467 +			}
   1.468 +		if(ofs+sizeof(TInt32)+chunk >= buf.Size()) // the last chunk?
   1.469 +			{
   1.470 +			TRAP_IGNORE(iContext->InternalizeL(in));
   1.471 +			buf.Delete(ofs,buf.Size()-ofs);
   1.472 +			return;
   1.473 +			}
   1.474 +		ofs += chunk + sizeof(TInt32);
   1.475 +		}
   1.476 +	}
   1.477 +
   1.478 +//Default method of fading simply uses bitgdi to perform fading
   1.479 +void CDirectGdiGcWrapper::FadeArea(const TRegion& aRegion)
   1.480 +	{
   1.481 +	if (!&aRegion || aRegion.CheckError())
   1.482 +		return;
   1.483 +
   1.484 +	iContext->Reset();
   1.485 +	iContext->SetClippingRegion(aRegion);
   1.486 +	iContext->SetPenStyle(DirectGdi::ENullPen);
   1.487 +	iContext->SetBrushStyle(DirectGdi::ESolidBrush);
   1.488 +	iContext->SetBrushColor(iFadeColor);
   1.489 +	iContext->DrawRect(aRegion.BoundingRect());
   1.490 +	}
   1.491 +	
   1.492 +//Default method of fading expects two TUint8's describing the black/white map 
   1.493 +//as possible fading parameters
   1.494 +void CDirectGdiGcWrapper::SetFadingParameters(const TDesC8& aData)
   1.495 +  	{
   1.496 +	TPckgBuf<TFadingParams> buf;
   1.497 +	buf.Copy(aData);
   1.498 +	TFadingParams parameters = buf();
   1.499 +
   1.500 +	//Situations where blackMap > whiteMap are NOT supported
   1.501 +	if (parameters.blackMap > parameters.whiteMap)
   1.502 +		{
   1.503 +		TUint8 oldMap = parameters.blackMap;
   1.504 +		parameters.blackMap = parameters.whiteMap;
   1.505 +		parameters.whiteMap = oldMap;
   1.506 +		}
   1.507 +	
   1.508 +	//CFbsBitGc::FadeArea() does the following per color component:
   1.509 +	//   dst = dst * (whiteMap - blackMap) + blackMap;
   1.510 +
   1.511 +	//To achieve the same effect using MWsGraphicsContext we draw a rectangle
   1.512 +	//with specific intensity and alpha values:
   1.513 +	//   dst = dst * (1 - alpha) + intensity * alpha;
   1.514 +	//Thus:
   1.515 +	//   alpha = 1 - whiteMap + blackMap;
   1.516 +	//   intensity = blackMap / alpha;
   1.517 +
   1.518 +	// alpha = 1 - whiteMap + blackMap;
   1.519 +	TInt alpha = 255 - parameters.whiteMap + parameters.blackMap;
   1.520 +	// intensity = blackMap / alpha;
   1.521 +	TInt i = (parameters.blackMap * iLut[alpha]) >> 8;
   1.522 +
   1.523 +	iFadeColor.SetInternal(i << 16 | i << 8 | i | alpha << 24);
   1.524 +  	}