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 |
// @file
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include <e32std.h>
|
sl@0
|
19 |
#include <e32math.h>
|
sl@0
|
20 |
#include <w32std.h>
|
sl@0
|
21 |
#include <w32debug.h>
|
sl@0
|
22 |
#include <e32base.h>
|
sl@0
|
23 |
#include "teflogextensions.h"
|
sl@0
|
24 |
#include "globalsettings.h"
|
sl@0
|
25 |
#include "CWsGceCscBase.h"
|
sl@0
|
26 |
#include <bitdraw.h>
|
sl@0
|
27 |
#include <bitdrawinterfaceid.h>
|
sl@0
|
28 |
#include <imageconversion.h>
|
sl@0
|
29 |
#include <test/tefunit.h>
|
sl@0
|
30 |
|
sl@0
|
31 |
|
sl@0
|
32 |
CWsGceCscBase::CWsGceCscBase():
|
sl@0
|
33 |
iDoTearDown(EFalse),
|
sl@0
|
34 |
iUtility(this, NULL)
|
sl@0
|
35 |
{
|
sl@0
|
36 |
}
|
sl@0
|
37 |
|
sl@0
|
38 |
CWsGceCscBase::~CWsGceCscBase()
|
sl@0
|
39 |
{
|
sl@0
|
40 |
if (iDoTearDown)
|
sl@0
|
41 |
TearDownFromDeleteL(); //This mechanism is not entirely clean to use.
|
sl@0
|
42 |
}
|
sl@0
|
43 |
|
sl@0
|
44 |
void CWsGceCscBase::SetupL()
|
sl@0
|
45 |
{
|
sl@0
|
46 |
iDoTearDown=ETrue;
|
sl@0
|
47 |
iRed.SetInternal(0xFFFF0000);
|
sl@0
|
48 |
iGreen.SetInternal(0xFF00FF00);
|
sl@0
|
49 |
iBlue.SetInternal(0xFF0000FF);
|
sl@0
|
50 |
iCyan.SetInternal(0xFF00FFFF);
|
sl@0
|
51 |
iMagenta.SetInternal(0xFFFF00FF);
|
sl@0
|
52 |
iYellow.SetInternal(0xFFFFFF00);
|
sl@0
|
53 |
iWhite.SetInternal(0xFFFFFFFF);
|
sl@0
|
54 |
|
sl@0
|
55 |
ASSERT_EQUALS_X(iSession.Connect(), KErrNone);
|
sl@0
|
56 |
|
sl@0
|
57 |
{//Stolen from TAuto CloseAllPanicWindows()
|
sl@0
|
58 |
TInt idFocus = iSession.GetFocusWindowGroup();
|
sl@0
|
59 |
TWsEvent event;
|
sl@0
|
60 |
event.SetType(EEventKey); //EEventKeyDown
|
sl@0
|
61 |
TKeyEvent *keyEvent = event.Key();
|
sl@0
|
62 |
keyEvent->iCode = EKeyEscape;
|
sl@0
|
63 |
keyEvent->iScanCode = EStdKeyEscape;
|
sl@0
|
64 |
keyEvent->iModifiers = 0;
|
sl@0
|
65 |
TInt theLimit = 50;
|
sl@0
|
66 |
while(idFocus != NULL && (theLimit-- > 0))
|
sl@0
|
67 |
{
|
sl@0
|
68 |
iSession.SendEventToAllWindowGroups(event);
|
sl@0
|
69 |
TInt idNewFocus = iSession.GetFocusWindowGroup();
|
sl@0
|
70 |
if (idNewFocus!=idFocus)
|
sl@0
|
71 |
{
|
sl@0
|
72 |
INFO_PRINTF1(_L("A window was closed [probably a panic box from the previous test]."));
|
sl@0
|
73 |
}
|
sl@0
|
74 |
idFocus=idNewFocus;
|
sl@0
|
75 |
}
|
sl@0
|
76 |
}
|
sl@0
|
77 |
TInt err = KErrNone;
|
sl@0
|
78 |
|
sl@0
|
79 |
TRAP(err, iScreenDevice = new (ELeave) CWsScreenDevice(iSession));
|
sl@0
|
80 |
PRINT_ON_ERROR2_L(err, _L("Failed to create screen device: %d"), err);
|
sl@0
|
81 |
ASSERT_EQUALS_X(iScreenDevice->Construct(TGlobalSettings::Instance().iScreen), KErrNone);
|
sl@0
|
82 |
iDisplayMode = iScreenDevice->DisplayMode(); // Get default display mode
|
sl@0
|
83 |
|
sl@0
|
84 |
TRAP(err, iGc = new (ELeave) CWindowGc(iScreenDevice));
|
sl@0
|
85 |
PRINT_ON_ERROR2_L(err, _L("Failed to create graphics context: %d"), err);
|
sl@0
|
86 |
ASSERT_EQUALS_X(iGc->Construct(), KErrNone);
|
sl@0
|
87 |
|
sl@0
|
88 |
iGroup = RWindowGroup(iSession);
|
sl@0
|
89 |
ASSERT_EQUALS_X(iGroup.Construct(++iWindowHandle,iScreenDevice), KErrNone);
|
sl@0
|
90 |
iSession.Flush();
|
sl@0
|
91 |
|
sl@0
|
92 |
RWindow testTrans(iSession);
|
sl@0
|
93 |
ASSERT_EQUALS_X(testTrans.Construct(iGroup, ++iWindowHandle), KErrNone);
|
sl@0
|
94 |
iTransparencyEnabled=(testTrans.SetTransparencyFactor(iWhite)==KErrNone);
|
sl@0
|
95 |
testTrans.Close();
|
sl@0
|
96 |
|
sl@0
|
97 |
//clean-up if previous test abended
|
sl@0
|
98 |
if (PostTestCleanupInstance().iSharedUtility)
|
sl@0
|
99 |
{
|
sl@0
|
100 |
//Temp removed - may be causing ONB fails!
|
sl@0
|
101 |
// if (PostTestCleanupInstance().iSharedUtility->DestroyAll())
|
sl@0
|
102 |
// {
|
sl@0
|
103 |
// INFO_PRINTF1(_L("Destroyed some surfaces from previous test."));
|
sl@0
|
104 |
//
|
sl@0
|
105 |
// }
|
sl@0
|
106 |
}
|
sl@0
|
107 |
if (!PostTestCleanupInstance().iCleanedUpOnExit)
|
sl@0
|
108 |
PostTestCleanupInstance().iCleanedUpOnExit=EFalse;
|
sl@0
|
109 |
|
sl@0
|
110 |
if (!GCEIsSupported())
|
sl@0
|
111 |
{
|
sl@0
|
112 |
INFO_PRINTF1(_L("Some Setup skipped: GCE support is not loaded"));
|
sl@0
|
113 |
return;
|
sl@0
|
114 |
}
|
sl@0
|
115 |
|
sl@0
|
116 |
TRAPD(err_FailedToCreateSurfaceUtility, iUtility = CSurfaceUtility::NewL( PostTestCleanupInstance().iSharedUtility));
|
sl@0
|
117 |
ASSERT_EQUALS(err_FailedToCreateSurfaceUtility,KErrNone);
|
sl@0
|
118 |
|
sl@0
|
119 |
}
|
sl@0
|
120 |
|
sl@0
|
121 |
void CWsGceCscBase::TearDownL()
|
sl@0
|
122 |
{
|
sl@0
|
123 |
iDoTearDown=EFalse;
|
sl@0
|
124 |
delete iGc;
|
sl@0
|
125 |
delete iScreenDevice;
|
sl@0
|
126 |
|
sl@0
|
127 |
iGroup.Close();
|
sl@0
|
128 |
iSession.Flush();
|
sl@0
|
129 |
iSession.Close();
|
sl@0
|
130 |
|
sl@0
|
131 |
delete iUtility();
|
sl@0
|
132 |
PostTestCleanupInstance().iCleanedUpOnExit=ETrue;
|
sl@0
|
133 |
Pause(1000);
|
sl@0
|
134 |
}
|
sl@0
|
135 |
|
sl@0
|
136 |
void CWsGceCscBase::TearDownFromDeleteL()
|
sl@0
|
137 |
{
|
sl@0
|
138 |
CWsGceCscBase::TearDownL();
|
sl@0
|
139 |
}
|
sl@0
|
140 |
|
sl@0
|
141 |
void CWsGceCscBase::Pause(TInt aMilliseconds)
|
sl@0
|
142 |
{
|
sl@0
|
143 |
User::After(TTimeIntervalMicroSeconds32(aMilliseconds * 1000));
|
sl@0
|
144 |
}
|
sl@0
|
145 |
|
sl@0
|
146 |
/** Test using an indipendent method that GCE version of WServ is running
|
sl@0
|
147 |
* This method can only be called after the testcase is started
|
sl@0
|
148 |
*
|
sl@0
|
149 |
* @return true if WServ version is GCE technology, false if legacy technology
|
sl@0
|
150 |
**/
|
sl@0
|
151 |
TBool CWsGceCscBase::GCEIsSupported() const
|
sl@0
|
152 |
{
|
sl@0
|
153 |
CFbsDrawDevice* screenDevice=NULL;
|
sl@0
|
154 |
TDisplayMode displayMode=iScreenDevice->DisplayMode();
|
sl@0
|
155 |
TRAPD(err, screenDevice = CFbsDrawDevice::NewScreenDeviceL(TGlobalSettings::Instance().iScreen, displayMode));
|
sl@0
|
156 |
TBool rv=EFalse;
|
sl@0
|
157 |
if(err == KErrNone)
|
sl@0
|
158 |
{
|
sl@0
|
159 |
TAny* p=NULL;
|
sl@0
|
160 |
rv=(screenDevice->GetInterface(KSurfaceInterfaceID, p)==KErrNone);
|
sl@0
|
161 |
delete screenDevice;
|
sl@0
|
162 |
}
|
sl@0
|
163 |
return rv;
|
sl@0
|
164 |
}
|
sl@0
|
165 |
/** Test using an indipendent method that GCE version of WServ is running
|
sl@0
|
166 |
* This method can be called at any time, even by external code, but creates temporary window session objects
|
sl@0
|
167 |
*
|
sl@0
|
168 |
* @return true if WServ version is GCE technology, false if legacy technology
|
sl@0
|
169 |
**/
|
sl@0
|
170 |
TBool CWsGceCscBase::GCEIsSupportedStatic()
|
sl@0
|
171 |
{
|
sl@0
|
172 |
CFbsDrawDevice* screenDevice=NULL;
|
sl@0
|
173 |
RWsSession session;
|
sl@0
|
174 |
if (session.Connect()!=KErrNone)
|
sl@0
|
175 |
{
|
sl@0
|
176 |
return EFalse;
|
sl@0
|
177 |
}
|
sl@0
|
178 |
CWsScreenDevice screen(session);
|
sl@0
|
179 |
if (screen.Construct(TGlobalSettings::Instance().iScreen)!=KErrNone)
|
sl@0
|
180 |
{
|
sl@0
|
181 |
return EFalse;
|
sl@0
|
182 |
}
|
sl@0
|
183 |
|
sl@0
|
184 |
TDisplayMode displayMode=screen.DisplayMode();
|
sl@0
|
185 |
TRAPD(err, screenDevice = CFbsDrawDevice::NewScreenDeviceL(TGlobalSettings::Instance().iScreen, displayMode));
|
sl@0
|
186 |
TBool rv=EFalse;
|
sl@0
|
187 |
if(err == KErrNone)
|
sl@0
|
188 |
{
|
sl@0
|
189 |
TAny* p=NULL;
|
sl@0
|
190 |
rv=(screenDevice->GetInterface(KSurfaceInterfaceID, p)==KErrNone);
|
sl@0
|
191 |
delete screenDevice;
|
sl@0
|
192 |
}
|
sl@0
|
193 |
return rv;
|
sl@0
|
194 |
}
|
sl@0
|
195 |
|
sl@0
|
196 |
//Allocating an instance of surface utility here means all test code instances will share the same instance of the utility class.
|
sl@0
|
197 |
// Owns the singleton
|
sl@0
|
198 |
CWsGceCscBase::TPostTestCleanup& CWsGceCscBase::PostTestCleanupInstance()
|
sl@0
|
199 |
{
|
sl@0
|
200 |
static
|
sl@0
|
201 |
class RPostTestCleanup:public TPostTestCleanup
|
sl@0
|
202 |
{
|
sl@0
|
203 |
public:
|
sl@0
|
204 |
RPostTestCleanup()
|
sl@0
|
205 |
{
|
sl@0
|
206 |
iSharedUtility=NULL;
|
sl@0
|
207 |
iCleanedUpOnExit=ETrue;
|
sl@0
|
208 |
}
|
sl@0
|
209 |
~RPostTestCleanup()
|
sl@0
|
210 |
{
|
sl@0
|
211 |
// I want to cleanly release the surface utility, but at this point the threads have already been pulled down!
|
sl@0
|
212 |
// if (iSharedUtility)
|
sl@0
|
213 |
// delete iSharedUtility;
|
sl@0
|
214 |
iSharedUtility=NULL; //avoid phoenix behaviour
|
sl@0
|
215 |
}
|
sl@0
|
216 |
} staticInstance;
|
sl@0
|
217 |
return staticInstance;
|
sl@0
|
218 |
}
|
sl@0
|
219 |
|
sl@0
|
220 |
// This handles any non-member uses of the extended ASSERT_XXX macros
|
sl@0
|
221 |
extern void TefUnitFailLeaveL();
|
sl@0
|
222 |
/**
|
sl@0
|
223 |
* side-effect: log the state info just before I leave!
|
sl@0
|
224 |
* Note that this only logs intentional assertion failures.
|
sl@0
|
225 |
* Fails due to panics or throws won't log this info.
|
sl@0
|
226 |
**/
|
sl@0
|
227 |
void CWsGceCscBase::TefUnitFailLeaveL()
|
sl@0
|
228 |
{
|
sl@0
|
229 |
for (TInt line=0;line<KMaxInfoLines;line++)
|
sl@0
|
230 |
if (iTestInfo[line].Length())
|
sl@0
|
231 |
Logger().LogExtra((TText8*)"Test state at fail - line",line, ESevrAll, iTestInfo[line]);
|
sl@0
|
232 |
TGlobalSettings::Instance().Report(Logger());
|
sl@0
|
233 |
|
sl@0
|
234 |
User::Leave(KErrTEFUnitFail);
|
sl@0
|
235 |
}
|
sl@0
|
236 |
|
sl@0
|
237 |
TInt CWsGceCscBase::DebugInfo(TWsDebugInfoFunc aFunction,
|
sl@0
|
238 |
TInt aParam,
|
sl@0
|
239 |
TDes8& aHostBuffer,
|
sl@0
|
240 |
const void*&aReturnedObject,
|
sl@0
|
241 |
TInt aObjectSize)const
|
sl@0
|
242 |
{
|
sl@0
|
243 |
TInt reqSize=iSession.DebugInfo(aFunction,aHostBuffer,aParam);
|
sl@0
|
244 |
aReturnedObject=NULL;
|
sl@0
|
245 |
if (reqSize<0)
|
sl@0
|
246 |
{
|
sl@0
|
247 |
if ((reqSize%aObjectSize)!=0)
|
sl@0
|
248 |
{
|
sl@0
|
249 |
return KErrCorrupt;
|
sl@0
|
250 |
}
|
sl@0
|
251 |
else
|
sl@0
|
252 |
{
|
sl@0
|
253 |
return reqSize;
|
sl@0
|
254 |
}
|
sl@0
|
255 |
}
|
sl@0
|
256 |
if (reqSize>aHostBuffer.MaxLength())
|
sl@0
|
257 |
{
|
sl@0
|
258 |
return reqSize/aObjectSize;
|
sl@0
|
259 |
}
|
sl@0
|
260 |
if (reqSize==0)
|
sl@0
|
261 |
{
|
sl@0
|
262 |
reqSize=aHostBuffer.MaxLength();
|
sl@0
|
263 |
}
|
sl@0
|
264 |
if ((reqSize%aObjectSize)!=0)
|
sl@0
|
265 |
{
|
sl@0
|
266 |
return KErrCorrupt;
|
sl@0
|
267 |
}
|
sl@0
|
268 |
aReturnedObject=(const void*)aHostBuffer.Ptr();
|
sl@0
|
269 |
reqSize/=aObjectSize;
|
sl@0
|
270 |
return reqSize;
|
sl@0
|
271 |
}
|
sl@0
|
272 |
|
sl@0
|
273 |
void CWsGceCscBase::SetCompositionMode(RWindow& aWindow, TDisplayMode aMode)
|
sl@0
|
274 |
{
|
sl@0
|
275 |
iDisplayMode = (TDisplayMode)aWindow.SetRequiredDisplayMode(aMode);
|
sl@0
|
276 |
aWindow.Invalidate();
|
sl@0
|
277 |
aWindow.BeginRedraw();
|
sl@0
|
278 |
aWindow.EndRedraw();
|
sl@0
|
279 |
}
|
sl@0
|
280 |
|
sl@0
|
281 |
TBool CWsGceCscBase::Compare(CFbsBitmap& aBitmap1, CFbsBitmap& aBitmap2)
|
sl@0
|
282 |
{
|
sl@0
|
283 |
if ((aBitmap1.SizeInPixels() == aBitmap2.SizeInPixels()) &&
|
sl@0
|
284 |
(aBitmap1.DisplayMode() == aBitmap2.DisplayMode()))
|
sl@0
|
285 |
{
|
sl@0
|
286 |
TSize size = aBitmap1.SizeInPixels();
|
sl@0
|
287 |
TInt width = size.iWidth;
|
sl@0
|
288 |
TInt height = size.iHeight;
|
sl@0
|
289 |
TRgb color1, color2;
|
sl@0
|
290 |
|
sl@0
|
291 |
for (TInt i = 0; i < width; i++)
|
sl@0
|
292 |
{
|
sl@0
|
293 |
for (TInt j = 0; j < height; j++)
|
sl@0
|
294 |
{
|
sl@0
|
295 |
aBitmap1.GetPixel(color1, TPoint(i, j));
|
sl@0
|
296 |
aBitmap2.GetPixel(color2, TPoint(i, j));
|
sl@0
|
297 |
if (color1 != color2)
|
sl@0
|
298 |
{
|
sl@0
|
299 |
return EFalse;
|
sl@0
|
300 |
}
|
sl@0
|
301 |
}
|
sl@0
|
302 |
}
|
sl@0
|
303 |
|
sl@0
|
304 |
return ETrue;
|
sl@0
|
305 |
}
|
sl@0
|
306 |
return EFalse;
|
sl@0
|
307 |
}
|
sl@0
|
308 |
|
sl@0
|
309 |
void CWsGceCscBase::ConstructOpaqueWindowL(RWindow& aWindow,
|
sl@0
|
310 |
const TRgb& aColor,
|
sl@0
|
311 |
TInt aPos,
|
sl@0
|
312 |
const TPoint &aPoint,
|
sl@0
|
313 |
const TSize &aSize)
|
sl@0
|
314 |
{
|
sl@0
|
315 |
ASSERT_EQUALS_X(aWindow.Construct(iGroup, ++iWindowHandle), KErrNone);
|
sl@0
|
316 |
aWindow.SetRequiredDisplayMode(iDisplayMode);
|
sl@0
|
317 |
aWindow.SetExtent(aPoint, aSize);
|
sl@0
|
318 |
aWindow.SetBackgroundColor(aColor);
|
sl@0
|
319 |
aWindow.SetOrdinalPosition(aPos);
|
sl@0
|
320 |
aWindow.Activate();
|
sl@0
|
321 |
aWindow.BeginRedraw();
|
sl@0
|
322 |
iGc->Activate(aWindow);
|
sl@0
|
323 |
iGc->Deactivate();
|
sl@0
|
324 |
aWindow.EndRedraw();
|
sl@0
|
325 |
}
|
sl@0
|
326 |
|
sl@0
|
327 |
void CWsGceCscBase::ConstructOpaqueWindowLC(RWindow& aWindow,
|
sl@0
|
328 |
const TRgb& aColor,
|
sl@0
|
329 |
TInt aPos,
|
sl@0
|
330 |
const TPoint &aPoint,
|
sl@0
|
331 |
const TSize &aSize)
|
sl@0
|
332 |
{
|
sl@0
|
333 |
ASSERT_EQUALS_X(aWindow.Construct(iGroup, ++iWindowHandle), KErrNone);
|
sl@0
|
334 |
CleanupClosePushL(aWindow);
|
sl@0
|
335 |
aWindow.SetRequiredDisplayMode(iDisplayMode);
|
sl@0
|
336 |
aWindow.SetExtent(aPoint, aSize);
|
sl@0
|
337 |
aWindow.SetBackgroundColor(aColor);
|
sl@0
|
338 |
aWindow.SetOrdinalPosition(aPos);
|
sl@0
|
339 |
aWindow.SetVisible(ETrue);
|
sl@0
|
340 |
aWindow.Activate();
|
sl@0
|
341 |
aWindow.BeginRedraw();
|
sl@0
|
342 |
iGc->Activate(aWindow);
|
sl@0
|
343 |
iGc->Clear();
|
sl@0
|
344 |
iGc->Deactivate();
|
sl@0
|
345 |
aWindow.EndRedraw();
|
sl@0
|
346 |
}
|
sl@0
|
347 |
|
sl@0
|
348 |
|
sl@0
|
349 |
void CWsGceCscBase::SetBackgroundColorWindow(RWindow& aWindow, const TRgb& aColor)
|
sl@0
|
350 |
{
|
sl@0
|
351 |
aWindow.Invalidate();
|
sl@0
|
352 |
aWindow.SetBackgroundColor(aColor);
|
sl@0
|
353 |
aWindow.BeginRedraw();
|
sl@0
|
354 |
iGc->Activate(aWindow);
|
sl@0
|
355 |
iGc->Deactivate();
|
sl@0
|
356 |
aWindow.EndRedraw();
|
sl@0
|
357 |
}
|
sl@0
|
358 |
|
sl@0
|
359 |
void CWsGceCscBase::ConstructOpaqueSurfacedWindowLC(RWindow& aWindow,
|
sl@0
|
360 |
const TRgb& aColor,
|
sl@0
|
361 |
TInt aPos,
|
sl@0
|
362 |
const TPoint &aPoint,
|
sl@0
|
363 |
const TSize &aSize,
|
sl@0
|
364 |
TSurfaceId& aSurfaceID)
|
sl@0
|
365 |
{
|
sl@0
|
366 |
ASSERT_EQUALS_X(aWindow.Construct(iGroup, ++iWindowHandle), KErrNone);
|
sl@0
|
367 |
CleanupClosePushL(aWindow);
|
sl@0
|
368 |
aWindow.SetRequiredDisplayMode(iDisplayMode);
|
sl@0
|
369 |
aWindow.SetExtent(aPoint, aSize);
|
sl@0
|
370 |
aWindow.SetBackgroundColor(aColor);
|
sl@0
|
371 |
aWindow.SetOrdinalPosition(aPos);
|
sl@0
|
372 |
ASSERT_EQUALS_X(aWindow.SetBackgroundSurface(aSurfaceID), KErrNone);
|
sl@0
|
373 |
aWindow.Activate();
|
sl@0
|
374 |
aWindow.BeginRedraw();
|
sl@0
|
375 |
iGc->Activate(aWindow);
|
sl@0
|
376 |
iGc->Deactivate();
|
sl@0
|
377 |
aWindow.EndRedraw();
|
sl@0
|
378 |
}
|
sl@0
|
379 |
|
sl@0
|
380 |
void CWsGceCscBase::ConstructOpaqueSurfacedWindowL(RWindow& aWindow,
|
sl@0
|
381 |
const TRgb& aColor,
|
sl@0
|
382 |
TInt aPos,
|
sl@0
|
383 |
const TPoint& aPoint,
|
sl@0
|
384 |
const TSize& aSize,
|
sl@0
|
385 |
const TSurfaceId& aSurfaceID)
|
sl@0
|
386 |
{
|
sl@0
|
387 |
ASSERT_EQUALS_X(aWindow.Construct(iGroup, ++iWindowHandle), KErrNone);
|
sl@0
|
388 |
aWindow.SetRequiredDisplayMode(iDisplayMode);
|
sl@0
|
389 |
aWindow.SetExtent(aPoint, aSize);
|
sl@0
|
390 |
aWindow.SetBackgroundColor(aColor);
|
sl@0
|
391 |
aWindow.SetOrdinalPosition(aPos);
|
sl@0
|
392 |
ASSERT_EQUALS_X(aWindow.SetBackgroundSurface(aSurfaceID), KErrNone);
|
sl@0
|
393 |
aWindow.Activate();
|
sl@0
|
394 |
aWindow.BeginRedraw();
|
sl@0
|
395 |
iGc->Activate(aWindow);
|
sl@0
|
396 |
iGc->Deactivate();
|
sl@0
|
397 |
aWindow.EndRedraw();
|
sl@0
|
398 |
}
|
sl@0
|
399 |
|
sl@0
|
400 |
|