os/graphics/windowing/windowserver/test/t_genericplugin/src/t_testserviceplugin.cpp
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.
22 #include "t_testserviceplugin.h"
23 #include "t_logfile.h"
24 #include <graphics/lookuptable.h>
26 _LIT(KTestServicePluginName, "testserviceplugin");
28 Creates a new CTestServicePlugin object
30 CTestServicePlugin* CTestServicePlugin::CreateL()
32 return new(ELeave) CTestServicePlugin;
36 Initialisation phase of two phase construction.
37 @param aEnv The environment for a graphic drawer
38 @param aData The data for construction
40 void CTestServicePlugin::ConstructL(MWsGraphicDrawerEnvironment& aEnv,const TDesC8& /*aData*/)
44 // Delete log file from previous test run
45 CLogFile::DeleteLogFileL();
47 CLogFile* log = CLogFile::NewL();
48 CleanupStack::PushL(log);
49 log->WriteToLogL(_L("testserviceplugin is created."));
50 CleanupStack::PopAndDestroy(log);
51 //Default in BitGdi was 128 for the blackMap and 255 for the whiteMap
52 //SetFadingParameters shows how the fade color is computed
53 iFadeColor.SetInternal(0x80FFFFFF);
57 Constructor for CTestServicePlugin
59 CTestServicePlugin::CTestServicePlugin() : iLut(PtrTo16BitNormalisationTable())
64 Destructor for CTestServicePlugin
66 CTestServicePlugin::~CTestServicePlugin()
71 Sets the fading parameter
72 @param aFadeColor the fading color
74 void CTestServicePlugin::SetFadingParamsL(TUint8 aBlackMap, TUint8 aWhiteMap)
76 //Situations where blackMap > whiteMap are NOT supported
77 if (aBlackMap > aWhiteMap)
79 TUint8 oldMap = aBlackMap;
80 aBlackMap = aWhiteMap;
84 //CFbsBitGc::FadeArea() does the following per color component:
85 // dst = dst * (whiteMap - blackMap) + blackMap;
87 //To achieve the same effect using MWsGraphicsContext we draw a rectangle
88 //with specific intensity and alpha values:
89 // dst = dst * (1 - alpha) + intensity * alpha;
91 // alpha = 1 - whiteMap + blackMap;
92 // intensity = blackMap / alpha;
94 // alpha = 1 - whiteMap + blackMap;
95 TInt alpha = 255 - aWhiteMap + aBlackMap;
96 // intensity = blackMap / alpha;
97 TInt i = (aBlackMap * iLut[alpha]) >> 8;
99 iFadeColor.SetInternal(i << 16 | i << 8 | i | alpha << 24);
101 CLogFile* log = CLogFile::NewL();
102 CleanupStack::PushL(log);
103 log->WriteToLogL(_L("Fading parameters have been set."));
104 CleanupStack::PopAndDestroy(log);
108 Gets the fade color parameter
109 @return fade color parameter
111 TRgb CTestServicePlugin::GetFadeColorL()
113 CLogFile* log = CLogFile::NewL();
114 CleanupStack::PushL(log);
115 log->WriteToLogL(_L("Returned fade color."));
116 CleanupStack::PopAndDestroy(log);
121 Overides MWsObjectProvider. Resolve an instance of an interface
122 @param aTypeId The interface UID.
123 @return The pointer to the instance of an interface.
125 TAny* CTestServicePlugin::ResolveObjectInterface(TUint aTypeId)
130 return static_cast<CWsPlugin*>(this);
137 @return The Plugin name.
139 const TDesC& CTestServicePlugin::PluginName() const
141 return KTestServicePluginName;