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 |
/**
|
sl@0
|
17 |
@file
|
sl@0
|
18 |
@test
|
sl@0
|
19 |
@internalComponent
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
|
sl@0
|
22 |
#include "t_testserviceplugin.h"
|
sl@0
|
23 |
#include "t_logfile.h"
|
sl@0
|
24 |
#include <graphics/lookuptable.h>
|
sl@0
|
25 |
|
sl@0
|
26 |
_LIT(KTestServicePluginName, "testserviceplugin");
|
sl@0
|
27 |
/**
|
sl@0
|
28 |
Creates a new CTestServicePlugin object
|
sl@0
|
29 |
*/
|
sl@0
|
30 |
CTestServicePlugin* CTestServicePlugin::CreateL()
|
sl@0
|
31 |
{
|
sl@0
|
32 |
return new(ELeave) CTestServicePlugin;
|
sl@0
|
33 |
}
|
sl@0
|
34 |
|
sl@0
|
35 |
/**
|
sl@0
|
36 |
Initialisation phase of two phase construction.
|
sl@0
|
37 |
@param aEnv The environment for a graphic drawer
|
sl@0
|
38 |
@param aData The data for construction
|
sl@0
|
39 |
*/
|
sl@0
|
40 |
void CTestServicePlugin::ConstructL(MWsGraphicDrawerEnvironment& aEnv,const TDesC8& /*aData*/)
|
sl@0
|
41 |
{
|
sl@0
|
42 |
BaseConstructL(aEnv);
|
sl@0
|
43 |
|
sl@0
|
44 |
// Delete log file from previous test run
|
sl@0
|
45 |
CLogFile::DeleteLogFileL();
|
sl@0
|
46 |
|
sl@0
|
47 |
CLogFile* log = CLogFile::NewL();
|
sl@0
|
48 |
CleanupStack::PushL(log);
|
sl@0
|
49 |
log->WriteToLogL(_L("testserviceplugin is created."));
|
sl@0
|
50 |
CleanupStack::PopAndDestroy(log);
|
sl@0
|
51 |
//Default in BitGdi was 128 for the blackMap and 255 for the whiteMap
|
sl@0
|
52 |
//SetFadingParameters shows how the fade color is computed
|
sl@0
|
53 |
iFadeColor.SetInternal(0x80FFFFFF);
|
sl@0
|
54 |
}
|
sl@0
|
55 |
|
sl@0
|
56 |
/**
|
sl@0
|
57 |
Constructor for CTestServicePlugin
|
sl@0
|
58 |
*/
|
sl@0
|
59 |
CTestServicePlugin::CTestServicePlugin() : iLut(PtrTo16BitNormalisationTable())
|
sl@0
|
60 |
{
|
sl@0
|
61 |
}
|
sl@0
|
62 |
|
sl@0
|
63 |
/**
|
sl@0
|
64 |
Destructor for CTestServicePlugin
|
sl@0
|
65 |
*/
|
sl@0
|
66 |
CTestServicePlugin::~CTestServicePlugin()
|
sl@0
|
67 |
{
|
sl@0
|
68 |
}
|
sl@0
|
69 |
|
sl@0
|
70 |
/**
|
sl@0
|
71 |
Sets the fading parameter
|
sl@0
|
72 |
@param aFadeColor the fading color
|
sl@0
|
73 |
*/
|
sl@0
|
74 |
void CTestServicePlugin::SetFadingParamsL(TUint8 aBlackMap, TUint8 aWhiteMap)
|
sl@0
|
75 |
{
|
sl@0
|
76 |
//Situations where blackMap > whiteMap are NOT supported
|
sl@0
|
77 |
if (aBlackMap > aWhiteMap)
|
sl@0
|
78 |
{
|
sl@0
|
79 |
TUint8 oldMap = aBlackMap;
|
sl@0
|
80 |
aBlackMap = aWhiteMap;
|
sl@0
|
81 |
aWhiteMap = oldMap;
|
sl@0
|
82 |
}
|
sl@0
|
83 |
|
sl@0
|
84 |
//CFbsBitGc::FadeArea() does the following per color component:
|
sl@0
|
85 |
// dst = dst * (whiteMap - blackMap) + blackMap;
|
sl@0
|
86 |
|
sl@0
|
87 |
//To achieve the same effect using MWsGraphicsContext we draw a rectangle
|
sl@0
|
88 |
//with specific intensity and alpha values:
|
sl@0
|
89 |
// dst = dst * (1 - alpha) + intensity * alpha;
|
sl@0
|
90 |
//Thus:
|
sl@0
|
91 |
// alpha = 1 - whiteMap + blackMap;
|
sl@0
|
92 |
// intensity = blackMap / alpha;
|
sl@0
|
93 |
|
sl@0
|
94 |
// alpha = 1 - whiteMap + blackMap;
|
sl@0
|
95 |
TInt alpha = 255 - aWhiteMap + aBlackMap;
|
sl@0
|
96 |
// intensity = blackMap / alpha;
|
sl@0
|
97 |
TInt i = (aBlackMap * iLut[alpha]) >> 8;
|
sl@0
|
98 |
|
sl@0
|
99 |
iFadeColor.SetInternal(i << 16 | i << 8 | i | alpha << 24);
|
sl@0
|
100 |
|
sl@0
|
101 |
CLogFile* log = CLogFile::NewL();
|
sl@0
|
102 |
CleanupStack::PushL(log);
|
sl@0
|
103 |
log->WriteToLogL(_L("Fading parameters have been set."));
|
sl@0
|
104 |
CleanupStack::PopAndDestroy(log);
|
sl@0
|
105 |
}
|
sl@0
|
106 |
|
sl@0
|
107 |
/**
|
sl@0
|
108 |
Gets the fade color parameter
|
sl@0
|
109 |
@return fade color parameter
|
sl@0
|
110 |
*/
|
sl@0
|
111 |
TRgb CTestServicePlugin::GetFadeColorL()
|
sl@0
|
112 |
{
|
sl@0
|
113 |
CLogFile* log = CLogFile::NewL();
|
sl@0
|
114 |
CleanupStack::PushL(log);
|
sl@0
|
115 |
log->WriteToLogL(_L("Returned fade color."));
|
sl@0
|
116 |
CleanupStack::PopAndDestroy(log);
|
sl@0
|
117 |
return iFadeColor;
|
sl@0
|
118 |
}
|
sl@0
|
119 |
|
sl@0
|
120 |
/**
|
sl@0
|
121 |
Overides MWsObjectProvider. Resolve an instance of an interface
|
sl@0
|
122 |
@param aTypeId The interface UID.
|
sl@0
|
123 |
@return The pointer to the instance of an interface.
|
sl@0
|
124 |
*/
|
sl@0
|
125 |
TAny* CTestServicePlugin::ResolveObjectInterface(TUint aTypeId)
|
sl@0
|
126 |
{
|
sl@0
|
127 |
switch (aTypeId)
|
sl@0
|
128 |
{
|
sl@0
|
129 |
case EImplUid:
|
sl@0
|
130 |
return static_cast<CWsPlugin*>(this);
|
sl@0
|
131 |
}
|
sl@0
|
132 |
return NULL;
|
sl@0
|
133 |
}
|
sl@0
|
134 |
|
sl@0
|
135 |
/**
|
sl@0
|
136 |
Gets the plugin name
|
sl@0
|
137 |
@return The Plugin name.
|
sl@0
|
138 |
*/
|
sl@0
|
139 |
const TDesC& CTestServicePlugin::PluginName() const
|
sl@0
|
140 |
{
|
sl@0
|
141 |
return KTestServicePluginName;
|
sl@0
|
142 |
}
|