Update contrib.
1 // Copyright (c) 1995-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.
18 _LIT(CFaderName, "wsfader");
20 CFader* CFader::CreateL()
22 return new(ELeave) CFader;
25 void CFader::ConstructL(MWsGraphicDrawerEnvironment& aEnv,const TDesC8& /*aData*/)
28 //Default bitgdi fading parameters
41 //Default fading plugin simply uses bitgdi to perform fading
42 void CFader::FadeArea(CFbsBitGc* aBitGc,const TRegion * aRegion)
45 aBitGc->SetFadingParameters(iBlackMap,iWhiteMap);
46 aBitGc->FadeArea(aRegion);
49 //Default fading plugin expects two TUint8's describing the black/white map
50 //as possible fading parameters
51 void CFader::SetFadingParameters(const TDesC8& aData)
53 TPckgBuf<TFadingParams> buf;
55 TFadingParams parameters = buf();
57 iBlackMap = parameters.blackMap;
58 iWhiteMap = parameters.whiteMap;
61 TAny* CFader::ResolveObjectInterface(TUint aTypeId)
65 case MWsFader::EWsObjectInterfaceId:
66 return static_cast<MWsFader*>(this);
72 const TDesC& CFader::PluginName() const