Update contrib.
1 // Copyright (c) 1996-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.
14 // Test code for screen mode positioning CR
15 // GT 0164 Uikon: A3.26. IM 9.
16 // Test code for the positioning part of Change Request PHAR-5SJGAM
17 // ("Enable screen mode positioning and scaling").
18 // Note this feature is also in GT0199 as PREQ673"Screen Positioning".
19 // Tests screen position being configurable for a screen mode -
20 // eg it is now possible to set in wsini.ini the position on the
21 // physical screen where the origin of the screen mode's screen will appear.
28 @internalComponent - Internal Symbian test code
31 #include "TSCREENMODEPOSITIONING.H"
32 #include <graphics/displaycontrol.h>
34 //#define LOGGING on //Uncomment this line to get extra logging useful when there is a tests that fails
36 LOCAL_D TSize FullScreenModeSize;
37 LOCAL_D TDisplayMode ScreenDisplayMode;
38 LOCAL_D TInt Copy2ndHalfOfScreen;
41 void CBasicWin::Draw()
43 iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
44 iGc->SetPenStyle(CGraphicsContext::ENullPen);
45 iGc->SetBrushColor(TRgb(255,0,0));
47 iGc->DrawRect(TRect(winSize));
48 iGc->SetBrushColor(TRgb(0,221,221));
49 iGc->DrawEllipse(TRect(TPoint(winSize.iWidth/2,winSize.iHeight/2),winSize));
50 iGc->DrawEllipse(TRect(TPoint(-winSize.iWidth/2,-winSize.iHeight/2),winSize));
54 void CSpriteWin::UpdateState(TInt aState)
60 TPoint CheckSpritePos(233,60);
61 TPoint CheckSpritePos2(18,60);
63 void CSpriteWin::Draw()
68 iGc->BitBlt(CheckSpritePos,&iSpriteBitmap);
71 iGc->BitBlt(CheckSpritePos+TPoint(30,30),&iSpriteBitmap);
72 iGc->BitBlt(CheckSpritePos,&iSpriteBitmap);
75 iGc->BitBlt(CheckSpritePos2+TPoint(-10,40),&iSpriteBitmap);
76 iGc->BitBlt(CheckSpritePos2+TPoint(-10,20),&iSpriteBitmap);
79 iGc->BitBlt(TPoint(),&iSpriteBitmap);
86 CSpriteWin::~CSpriteWin()
92 iGc->BitBlt(TPoint(),&iScreenBmp);
95 CConnection2::~CConnection2()
100 iGroup->GroupWin()->EnableReceiptOfFocus(EFalse);
105 void CConnection2::ConstructL(CTestBase *aTest,CFbsBitmap& aBitmap)
107 iClient=new(ELeave) CTClient;
108 iClient->SetScreenNumber(aTest->ScreenNumber());
109 iClient->ConstructL();
110 iGroup=new(ELeave) CConnection2Group(iClient,this,aTest);
111 iGroup->ConstructL();
112 iGroup->GroupWin()->EnableScreenChangeEvents();
114 iSpriteWin=new(ELeave) CSpriteWin(aBitmap);
115 iSpriteWin->ConstructExtLD(*iGroup,TPoint(),TSize(433,240));
116 User::LeaveIfError(iSpriteWin->BaseWin()->SetRequiredDisplayMode(EColor256));
117 iSpriteWin->AssignGC(*iClient->iGc);
118 iSpriteWin->Activate();
119 iSpriteWin->SetVisible(EFalse);
120 iSpriteWin->BaseWin()->SetShadowDisabled(ETrue);
121 iSpriteWin->BaseWin()->SetShadowHeight(0);
122 iScreenBitmap=new(ELeave) CFbsBitmap();
123 User::LeaveIfError(iScreenBitmap->Create(TSize(FullScreenModeSize.iWidth/2,FullScreenModeSize.iHeight), ScreenDisplayMode));
124 iBitmapWin=new(ELeave) CBmpWin(*iScreenBitmap);
125 iBitmapWin->ConstructExtLD(*iGroup,TPoint(FullScreenModeSize.iWidth/2,0),iScreenBitmap->SizeInPixels());
126 User::LeaveIfError(iBitmapWin->BaseWin()->SetRequiredDisplayMode(EColor256));
127 iBitmapWin->AssignGC(*iClient->iGc);
128 iBitmapWin->Activate();
129 iBitmapWin->SetVisible(EFalse);
130 iBitmapWin->BaseWin()->SetShadowDisabled(ETrue);
131 iBitmapWin->BaseWin()->SetShadowHeight(0);
134 void CConnection2::DrawBitmapWin()
136 TPoint pos=(Copy2ndHalfOfScreen? TPoint() : TPoint(FullScreenModeSize.iWidth/2,0));
137 iBitmapWin->SetPos(pos);
138 iBitmapWin->SetVisible(ETrue);
139 iBitmapWin->DrawNow();
143 CConnection2Group::CConnection2Group(CTClient *aClient, CConnection2 *aSecondConnection, CTestBase *aTest) : CTWindowGroup(aClient), iTest(aTest), iConnection2(aSecondConnection)
149 //CTScreenModePositioning
150 CTScreenModePositioning::CTScreenModePositioning(CTestStep* aStep) : CTWsGraphicsBase(aStep)
155 CTScreenModePositioning::~CTScreenModePositioning()
161 delete iTestChildWin;
164 void CTScreenModePositioning::ConstructL()
166 User::LeaveIfError(iSpriteBitmap.Load(TEST_BITMAP_NAME,0));
167 iScalingSupported=CheckScalingSupportedOrNot();
168 TheClient->iScreen->SetScreenMode(TheClient->iScreenModes[0]);
169 FullScreenModeSize=TheClient->iScreen->SizeInPixels();
170 ScreenDisplayMode=TheClient->iScreen->DisplayMode();
171 iConnection2=new(ELeave) CConnection2;
172 iConnection2->ConstructL(iTest,iSpriteBitmap);
173 iBlankWin=new(ELeave) CTBlankWindow();
174 iBlankWin->ConstructL(*TheClient->iGroup);
175 User::LeaveIfError(iBlankWin->BaseWin()->SetRequiredDisplayMode(EColor256));
176 iBlankWin->SetExt(TPoint(),FullScreenModeSize);
177 iBlankWin->SetVisible(EFalse);
178 iBlankWin->Activate();
179 iTestWin=new(ELeave) CBasicWin;
180 iTestWin->ConstructExtLD(*TheClient->iGroup,TPoint(),FullScreenModeSize);
181 User::LeaveIfError(iTestWin->BaseWin()->SetRequiredDisplayMode(EColor256));
182 iTestWin->AssignGC(*TheClient->iGc);
183 iTestWin->BaseWin()->SetShadowDisabled(ETrue);
184 iTestWin->BaseWin()->SetShadowHeight(0);
185 iTestWin->SetVisible(EFalse);
186 iTestWin->Activate();
187 iBackedUpWin=new(ELeave) CTBackedUpWin(EColor256);
188 iBackedUpWin->ConstructExtLD(*iTestWin,TPoint(),FullScreenModeSize);
189 iBackedUpWin->SetVisible(EFalse);
190 iBackedUpWin->Activate();
191 iTestChildWin=new(ELeave) CTBlankWindow();
192 iTestChildWin->ConstructL(*iTestWin);
193 User::LeaveIfError(iTestChildWin->BaseWin()->SetRequiredDisplayMode(EColor256));
194 iTestChildWin->BaseWin()->SetShadowDisabled(ETrue);
195 iTestChildWin->SetColor(KRgbGreen);
196 iTestChildWin->BaseWin()->SetVisible(EFalse);
197 iTestChildWin->Activate();
198 //The Cursor appearing on screen will affect the result of RectCompare function.
199 //Set it to the position out of the screen
200 TheClient->iWs.SetPointerCursorPosition(TPoint(-1,-1));
203 void CTScreenModePositioning::ChangeScreenMode(CTClient* aClient,TPixelsAndRotation aPixelsAndRotation,TInt aMode)
205 ChangeScreenMode(aClient,aPixelsAndRotation,ESizeEnforcementNone,aMode);
208 void CTScreenModePositioning::ChangeScreenMode(CTClient* aClient,TPixelsAndRotation aPixelsAndRotation,TScreenModeEnforcement aScreenModeEnforcement,TInt aMode)
210 aClient->iScreen->SetScreenSizeAndRotation(aPixelsAndRotation);
211 aClient->iScreen->SetScreenModeEnforcement(aScreenModeEnforcement);
212 aClient->iScreen->SetScreenMode(aMode);
215 void CTScreenModePositioning::SetScreenMode(CTClient* aClient,TInt aMode,TScreenModeEnforcement aScreenModeEnforcement)
217 TPixelsAndRotation pixelsAndRotation;
218 aClient->iScreen->SetScreenModeEnforcement(aScreenModeEnforcement);
219 aClient->iScreen->SetScreenMode(aMode);
220 aClient->iScreen->GetDefaultScreenSizeAndRotation(pixelsAndRotation);
221 aClient->iScreen->SetScreenSizeAndRotation(pixelsAndRotation);
225 void CTScreenModePositioning::SetUpSpriteLC(RWsSprite &aSprite, RWsSession &aSession, RWindowTreeNode &aWindow,TInt aFlags)
227 aSprite=RWsSprite(aSession);
228 User::LeaveIfError(aSprite.Construct(aWindow,TPoint(),aFlags));
229 CleanupClosePushL(aSprite);
230 TSpriteMember member;
231 iTest->SetUpMember(member);
232 member.iBitmap=&iSpriteBitmap;
233 User::LeaveIfError(aSprite.AppendMember(member));
234 User::LeaveIfError(aSprite.Activate());
238 @SYMTestCaseID GRAPHICS-WSERV-0098
242 @SYMTestCaseDesc Window Tests. Please see test cases GRAPHICS-WSERV-(0099-0103) which are a subset of this test case.
243 REQUIREMENT: CR PHAR-5SJGAM, PREQ673
245 @SYMTestPriority High
247 @SYMTestStatus Implemented
249 @SYMTestActions Tests on windows in different screen modes each with differing screen mode origin's defined in the
250 wsini file. This test case only tests screen modes with 0 orientation.
251 Goes through each screen mode defined in the wsini file and exercises test cases GRAPHICS-WSERV-(0099-0103) for each mode.
252 For more details see test cases GRAPHICS-WSERV-(0099-0103) which are a subset of this test case.
254 @SYMTestExpectedResults
257 void CTScreenModePositioning::WindowTestsL()
259 TheClient->iGroup->GroupWin()->EnableScreenChangeEvents();
260 TInt numOfModes=TheClient->iScreenModes.Count();
262 for (ii=0; ii<numOfModes; ++ii)
264 iCurrentMode=TheClient->iScreenModes[ii];
265 TPixelsAndRotation pixelsAndRotation;
266 iCurrentScreenModeOrigin=TheClient->iScreen->GetScreenModeScaledOrigin(iCurrentMode);
267 iCurrentScreenModeScale=TheClient->iScreen->GetScreenModeScale(iCurrentMode);
268 TheClient->iScreen->GetScreenModeSizeAndRotation(iCurrentMode,pixelsAndRotation);
269 iCurrentScreenModeSize=pixelsAndRotation.iPixelSize;
270 if (iCurrentScreenModeOrigin.iX<=FullScreenModeSize.iWidth/2-10 /*&& iCurrentScreenModeOrigin!=TPoint() */&& pixelsAndRotation.iRotation==CFbsBitGc::EGraphicsOrientationNormal)
273 _LIT(KLog,"Test mode %d");
274 LOG_MESSAGE2(KLog,ii);
276 TRAPD(ret,DoWindowTestsL());
288 void CTScreenModePositioning::DoWindowTestsL()
290 // Make this visible so that the display mode remains EColor256
291 iBlankWin->SetVisible(ETrue);
292 Copy2ndHalfOfScreen=(iCurrentScreenModeOrigin.iX>FullScreenModeSize.iWidth/2? 1 : 0);
293 TInt testWinWidth=Max(FullScreenModeSize.iWidth/2-iCurrentScreenModeOrigin.iX,iCurrentScreenModeOrigin.iX-FullScreenModeSize.iWidth/2);
294 iTestWinSize=TSize(testWinWidth,FullScreenModeSize.iHeight-iCurrentScreenModeOrigin.iY-60);
295 iTestWinSize.iWidth/=(iCurrentScreenModeScale.iWidth > 1 ? iCurrentScreenModeScale.iWidth*2 : iCurrentScreenModeScale.iWidth);
296 iTestWinSize.iHeight/=(iCurrentScreenModeScale.iHeight > 1 ? iCurrentScreenModeScale.iHeight*2 : iCurrentScreenModeScale.iHeight);
298 _LIT(KLog1," PosTest1");
301 PositionTest1L(TPoint());
303 _LIT(KLog2," PosTest2");
306 PositionTest1L(TPoint(25,35));
308 _LIT(KLog3," PosTest3");
311 PositionTest2L(TPoint(10,10));
313 _LIT(KLog4," GetInvalidRegion");
316 GetInvalidRegionTestL(TPoint(10,10));
318 _LIT(KLog5," CreateWin1");
321 CreateWindowsTestL(TPoint());
323 _LIT(KLog6," CreateWin2");
326 CreateWindowsTestL(TPoint(33,15));
328 _LIT(KLog7," NextMode");
331 NextScreenModeTestL(TPoint(12,6));
335 @SYMTestCaseID GRAPHICS-WSERV-0099
339 @SYMTestCaseDesc Position Test 1
340 REQUIREMENT: CR PHAR-5SJGAM, PREQ673
341 API: RWindowBase::InquireOffset(), RWindowBase::AbsPosition(),RWindowBase::Position()
343 @SYMTestPriority High
345 @SYMTestStatus Implemented
347 @SYMTestActions Sets the new screen mode on the main client's screen device. Checks that an window whose group window
348 has this screen device is in the correct position and for the origin of the new screen mode.
349 (Does this by copying the window to a bitmap, switching back to screen mode 0 and then setting the position
350 of the window to be the expected position. Then the bitmap is blitted to the other half of the screen and the
351 2 halves of the screen compared)
353 @SYMTestExpectedResults Checks the window is positioned correctly for the origin of the new screen mode.
356 void CTScreenModePositioning::PositionTest1L(TPoint aPos)
358 ((CTScreenModePositioningStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0099"));
359 SetScreenMode(TheClient,iCurrentMode,ESizeEnforcementPixelsAndRotation);
360 iTestWin->SetExt(aPos,iTestWinSize);
361 iTestWin->SetVisible(ETrue);
362 iTestWin->Invalidate();
364 TestTopClientWindowPositionAPIs(aPos,iTestWin->BaseWin());
365 TheClient->WaitForRedrawsToFinish();
366 CopyAndCompareL(aPos);
367 ((CTScreenModePositioningStep*)iStep)->RecordTestResultL();
370 template <TBool newstate>
371 class TCleanupSetVisible:public TCleanupItem
373 static void Cleanup(void*v)
375 ((CTWinBase*)v)[0].SetVisible(newstate);
378 TCleanupSetVisible(CTWinBase* v):
379 TCleanupItem(Cleanup,v)
385 @SYMTestCaseID GRAPHICS-WSERV-0100
389 @SYMTestCaseDesc Position Test 2
390 REQUIREMENT: CR PHAR-5SJGAM, PREQ673
391 API: RWindowBase::SetPosition(),RWindowBase::InquireOffset(), RWindowBase::AbsPosition(),RWindowBase::Position()
393 @SYMTestPriority High
395 @SYMTestStatus Implemented
397 @SYMTestActions As in test case GRAPHICS-WSERV-0099 but also tests moving and resizing the window and also does these tests on a backed up child window.
399 @SYMTestExpectedResults Checks both the windows are positioned correctly for the origin of the new screen mode.
402 void CTScreenModePositioning::PositionTest2L(TPoint aPos)
404 ((CTScreenModePositioningStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0100"));
405 SetScreenMode(TheClient,iCurrentMode,ESizeEnforcementPixelsAndRotation);
406 iTestWin->SetPos(aPos);
408 CleanupStack::PushL(TCleanupSetVisible<EFalse>(iBackedUpWin));
409 iTestWin->SetVisible(ETrue);
410 TestTopClientWindowPositionAPIs(aPos,iTestWin->BaseWin());
411 TPoint backedUpWinPt=TPoint(iTestWinSize.iWidth/3,iTestWinSize.iHeight/4);
412 iBackedUpWin->SetExtL(backedUpWinPt,TSize(iTestWinSize.iWidth/6,iTestWinSize.iHeight/6));
413 iBackedUpWin->SetVisible(ETrue);
414 TestChildWindowPositionAPIs(backedUpWinPt,aPos,iBackedUpWin->BaseWin(),iTestWin->BaseWin());
416 iTestWin->SetPos(aPos);
417 TestTopClientWindowPositionAPIs(aPos,iTestWin->BaseWin());
418 TestChildWindowPositionAPIs(backedUpWinPt,aPos,iBackedUpWin->BaseWin(),iTestWin->BaseWin());
419 iTestWin->Invalidate();
421 TheClient->WaitForRedrawsToFinish();
422 TestTopClientWindowPositionAPIs(aPos,iTestWin->BaseWin());
423 TestChildWindowPositionAPIs(backedUpWinPt,aPos,iBackedUpWin->BaseWin(),iTestWin->BaseWin());
424 CopyAndCompareL(aPos);
425 CleanupStack::PopAndDestroy(iBackedUpWin); //TCleanupSetVisible
426 ((CTScreenModePositioningStep*)iStep)->RecordTestResultL();
430 @SYMTestCaseID GRAPHICS-WSERV-0101
434 @SYMTestCaseDesc Invalid Region Test
435 REQUIREMENT: CR PHAR-5SJGAM, PREQ673
436 API: RWindow::GetInvalidRegion()
438 @SYMTestPriority High
440 @SYMTestStatus Implemented
442 @SYMTestActions Sets the new screen mode, then invalidates different parts of the test window. Checks that the above API gets
443 the correct invalid area from the server. Also tests moving the invalid area.
445 @SYMTestExpectedResults Checks the invalid region is correct for the origin of the new screen mode.
448 void CTScreenModePositioning::GetInvalidRegionTestL(TPoint aPos)
450 ((CTScreenModePositioningStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0101"));
451 SetScreenMode(TheClient,iCurrentMode,ESizeEnforcementPixelsAndRotation);
452 iTestWin->SetExt(aPos,iTestWinSize);
453 iTestWin->SetVisible(ETrue);
454 iTestChildWin->SetExt(TPoint(iTestWinSize.iWidth>>2,iTestWinSize.iHeight>>2),TSize(iTestWinSize.iWidth>>1,iTestWinSize.iHeight>>1));
455 iTestChildWin->SetVisible(ETrue);
456 iTestWin->Win()->BeginRedraw();
457 iTestWin->Win()->EndRedraw();
458 const TInt KNumRects=3;
459 TRect rects[KNumRects];
460 rects[0]=TRect(1,1,5,2);
461 rects[1]=TRect(TPoint(iTest->StdTestWindowSize().iWidth>>1,iTest->StdTestWindowSize().iHeight>>1),iTest->StdTestWindowSize());
462 rects[2]=TRect(2,0,4,5);
464 CleanupClosePushL(region);
465 for (TInt index=0;index<KNumRects;++index)
467 iTestWin->Invalidate(rects[index]);
468 region.AddRect(rects[index]);
470 //PeterI original wserv assumes a region hidden beneath a child is not invalid
471 //Mk3 doesn't make this assumption
473 //subRect.iTl=iTestChildWin->BaseWin()->InquireOffset(*iTestWin->BaseWin());
474 //subRect.SetSize(iTestChildWin->Size());
476 //region.SubRect(subRect);
477 //region.ClipRect(TRect(iTestWin->Size()));
478 RRegion invalidRegion;
479 CleanupClosePushL(invalidRegion);
480 iTestWin->Win()->GetInvalidRegion(invalidRegion);
481 CompareRegionsL(region,invalidRegion);
482 CleanupStack::PopAndDestroy(2,®ion);
484 TheClient->WaitForRedrawsToFinish();
485 iTestChildWin->SetVisible(EFalse);
486 TRect rect1(TPoint(0,0),iTestWinSize);
487 TestGetInvalidRegionL(rect1);
488 TInt width=iTestWinSize.iWidth;
489 TInt height=iTestWinSize.iHeight;
490 TRect rect2(TPoint(width/6,height/6),TSize(width/3,height/3));
491 TestGetInvalidRegionL(rect2);
492 iTestWin->Invalidate();
493 iTestWin->SetPos(TPoint(15,15));
494 iTestWin->SetPos(TPoint());
495 iTestWin->SetPos(TPoint(-15,-15));
496 iTestWin->SetPos(aPos);
498 RRegion testRegion(rect1);
499 CleanupClosePushL(invalid);
500 CleanupClosePushL(testRegion);
501 iTestWin->Win()->GetInvalidRegion(invalid);
502 TBool err=invalid.CheckError();
506 _LIT(KLog,"Returned Invalid Region has an error");
510 TEST(invalid.BoundingRect().iBr.iX<=iTestWinSize.iWidth);
511 if (invalid.BoundingRect().iBr.iX>iTestWinSize.iWidth)
513 _LIT(KLog,"Invalid Region extends beyond right edge of window");
517 CompareRegionsL(testRegion,invalid);
518 CleanupStack::PopAndDestroy(2,&invalid);
521 CopyAndCompareL(aPos);
522 ((CTScreenModePositioningStep*)iStep)->RecordTestResultL();
525 void CTScreenModePositioning::CopyAndCompareL(TPoint aPos)
527 CopyScreenAndChangeBackToDefScrModeL();
528 iTestWin->SetPos(iCurrentScreenModeOrigin+aPos);
529 iConnection2->DrawBitmapWin();
530 TheClient->WaitForRedrawsToFinish();
532 iConnection2->BitmapWin()->SetVisible(EFalse);
533 iTestWin->SetVisible(EFalse);
536 void CTScreenModePositioning::TestGetInvalidRegionL(TRect& aRect)
540 iTestWin->Invalidate(aRect);
541 testRegion.AddRect(aRect);
542 iTestWin->Win()->GetInvalidRegion(invalid);
543 CompareRegionsL(testRegion,invalid);
547 TheClient->WaitForRedrawsToFinish();
550 void CTScreenModePositioning::CompareRegionsL(const TRegion &aRegion1,const TRegion &aRegion2)
552 _LIT(KLog,"Regions do not contain same area.");
555 tmp.SubRegion(aRegion2);
556 if (tmp.CheckError())
557 User::Leave(KErrNoMemory);
558 TBool retVal1=tmp.IsEmpty();
564 tmp.SubRegion(aRegion1);
565 if (tmp.CheckError())
566 User::Leave(KErrNoMemory);
567 TBool retVal2=tmp.IsEmpty();
569 if (!retVal2 && retVal1)
575 void CTScreenModePositioning::TestTopClientWindowPositionAPIs(TPoint aPos,RWindowBase* aWin)
577 TEST(aWin->AbsPosition()==aPos);
578 TEST(aWin->Position()==aPos);
579 TEST(aWin->InquireOffset(*TheClient->iGroup->GroupWin())==aPos);
582 void CTScreenModePositioning::TestChildWindowPositionAPIs(TPoint aPos,TPoint aParentPos,RWindowBase* aWin,RWindowBase* aParentWin)
584 TEST(aWin->AbsPosition()==aParentPos+aPos);
585 TEST(aWin->Position()==aPos);
586 TEST(aWin->InquireOffset(*TheClient->iGroup->GroupWin())==aParentPos+aPos);
587 TEST(aWin->InquireOffset(*aParentWin)==aPos);
590 void CTScreenModePositioning::RestoreScreenMode()
592 TPixelsAndRotation pixelsAndRotation;
593 pixelsAndRotation.iPixelSize=FullScreenModeSize;
594 TheClient->iScreen->GetDefaultScreenSizeAndRotation(pixelsAndRotation);
595 ChangeScreenMode(TheClient,pixelsAndRotation,ESizeEnforcementNone,TheClient->iScreenModes[0]);
599 @SYMTestCaseID GRAPHICS-WSERV-0102
603 @SYMTestCaseDesc Create Windows Test
604 REQUIREMENT: CR PHAR-5SJGAM, PREQ673
605 API: RWindowBase::SetPosition(),RWindowBase::InquireOffset(), RWindowBase::AbsPosition(),RWindowBase::Position()
607 @SYMTestPriority High
609 @SYMTestStatus Implemented
611 @SYMTestActions As in test case GRAPHICS-WSERV-0100 but tests windows that are created in the new screen mode. Also tests moving and resizing these windows
613 @SYMTestExpectedResults Checks both the windows are positioned correctly for the origin of the new screen mode.
616 void CTScreenModePositioning::CreateWindowsTestL(TPoint aPos)
618 ((CTScreenModePositioningStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0102"));
619 SetScreenMode(TheClient,iCurrentMode,ESizeEnforcementPixelsAndRotation);
620 CBasicWin* basicWin=new(ELeave) CBasicWin;
621 basicWin->ConstructExtLD(*TheClient->iGroup,aPos,iTestWinSize);
622 CleanupStack::PushL(basicWin);
623 TInt mode=basicWin->BaseWin()->SetRequiredDisplayMode(EColor256);
624 basicWin->AssignGC(*TheClient->iGc);
625 basicWin->BaseWin()->SetShadowDisabled(ETrue);
626 basicWin->BaseWin()->SetShadowHeight(0);
627 basicWin->Activate();
629 TheClient->WaitForRedrawsToFinish();
630 TestTopClientWindowPositionAPIs(aPos,basicWin->BaseWin());
631 CTBlankWindow* blankChildWin=new(ELeave) CTBlankWindow ;
632 CleanupStack::PushL(blankChildWin);
633 blankChildWin->ConstructL(*basicWin);
634 blankChildWin->BaseWin()->SetRequiredDisplayMode(EColor256);
635 blankChildWin->BaseWin()->SetShadowDisabled(ETrue);
636 blankChildWin->SetColor(KRgbYellow);
637 TPoint childPos(iTestWinSize.iWidth/4,iTestWinSize.iHeight/4);
638 blankChildWin->SetExtL(childPos,TSize(iTestWinSize.iWidth/2,iTestWinSize.iHeight/2));
639 blankChildWin->Activate();
641 TheClient->WaitForRedrawsToFinish();
642 TestChildWindowPositionAPIs(childPos,aPos,blankChildWin->BaseWin(),basicWin->BaseWin());
643 blankChildWin->SetPos(TPoint(-15,-20));
646 TestChildWindowPositionAPIs(TPoint(-15,-20),aPos,blankChildWin->BaseWin(),basicWin->BaseWin());
647 CopyScreenAndChangeBackToDefScrModeL();
648 basicWin->SetPos(iCurrentScreenModeOrigin+aPos);
649 iConnection2->DrawBitmapWin();
650 TheClient->WaitForRedrawsToFinish();
652 iConnection2->BitmapWin()->SetVisible(EFalse);
653 iTestWin->SetVisible(EFalse);
654 CleanupStack::PopAndDestroy(blankChildWin);
655 CleanupStack::PopAndDestroy(basicWin);
656 ((CTScreenModePositioningStep*)iStep)->RecordTestResultL();
660 @SYMTestCaseID GRAPHICS-WSERV-0103
664 @SYMTestCaseDesc Changing to next screen mode
665 REQUIREMENT: CR PHAR-5SJGAM, PREQ673
666 API: RWindowBase::SetPosition(),RWindowBase::InquireOffset(), RWindowBase::AbsPosition(),RWindowBase::Position()
668 @SYMTestPriority High
670 @SYMTestStatus Implemented
672 @SYMTestActions Sets the new screen mode, creates a new child window and then changes to the next screen mode with non-zero origin,
673 checks windows are in the expected position for the origin of the new screen mode.
675 @SYMTestExpectedResults Checks both the windows are positioned correctly for the origin of the new screen mode.
678 void CTScreenModePositioning::NextScreenModeTestL(TPoint aPos)
680 ((CTScreenModePositioningStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0103"));
681 if (iCurrentScreenModeOrigin==TPoint())
685 TInt numOfModes=TheClient->iScreenModes.Count();
686 TInt defaultMode=TheClient->iScreenModes[0];
687 TInt lastMode=TheClient->iScreenModes[numOfModes-1];
688 TInt mode=(iCurrentMode<lastMode? iCurrentMode:defaultMode);
689 // find current mode index
692 for (ii=0; ii<numOfModes; ++ii)
694 if (mode==TheClient->iScreenModes[ii])
700 TPoint screenModeOrigin(0,0);
701 TPixelsAndRotation pixelsAndRotation;
702 while (screenModeOrigin==TPoint()||(pixelsAndRotation.iRotation!=CFbsBitGc::EGraphicsOrientationNormal))
704 mode=(mode==lastMode? defaultMode : TheClient->iScreenModes[++modeIdx]);
705 if (mode==iCurrentMode)
709 else if (mode==lastMode)
713 screenModeOrigin=TheClient->iScreen->GetScreenModeOrigin(mode);
714 TheClient->iScreen->GetScreenModeSizeAndRotation(mode,pixelsAndRotation);
716 SetScreenMode(TheClient,iCurrentMode,ESizeEnforcementPixelsAndRotation);
717 iTestWin->SetExt(aPos,iTestWinSize);
718 iTestWin->SetVisible(ETrue);
720 CBasicWin* basicWin=new(ELeave) CBasicWin;
721 CleanupStack::PushL(basicWin);
722 basicWin->ConstructExtLD(*iTestWin,TPoint(),TSize(iTestWinSize.iWidth/5,iTestWinSize.iHeight/5));
723 User::LeaveIfError(basicWin->BaseWin()->SetRequiredDisplayMode(EColor256));
724 basicWin->AssignGC(*TheClient->iGc);
725 basicWin->BaseWin()->SetShadowDisabled(ETrue);
726 basicWin->BaseWin()->SetShadowHeight(0);
727 basicWin->Activate();
728 TPoint pos(iTestWinSize.iWidth/3,iTestWinSize.iWidth/4);
729 basicWin->SetPos(pos);
731 TheClient->WaitForRedrawsToFinish();
732 TestChildWindowPositionAPIs(pos,aPos,basicWin->BaseWin(),iTestWin->BaseWin());
733 iCurrentScreenModeScale=TheClient->iScreen->GetScreenModeScale(mode);
734 iCurrentScreenModeOrigin=TheClient->iScreen->GetScreenModeOrigin(mode);
735 iTestWinSize.iWidth/=(iCurrentScreenModeScale.iWidth > 1 ? iCurrentScreenModeScale.iWidth*2 : iCurrentScreenModeScale.iWidth);
736 iTestWinSize.iHeight/=(iCurrentScreenModeScale.iHeight > 1 ? iCurrentScreenModeScale.iHeight*2 : iCurrentScreenModeScale.iHeight);
737 iTestWin->SetExt(aPos,iTestWinSize);
738 SetScreenMode(TheClient,mode,ESizeEnforcementPixelsAndRotation);
739 CopyScreenAndChangeBackToDefScrModeL();
740 iTestWin->SetPos(aPos+iCurrentScreenModeOrigin);
741 basicWin->SetPos(pos);
742 iConnection2->DrawBitmapWin();
744 iConnection2->BitmapWin()->SetVisible(EFalse);
745 iTestWin->SetVisible(EFalse);
746 CleanupStack::PopAndDestroy(basicWin);
747 iCurrentScreenModeOrigin=TheClient->iScreen->GetScreenModeOrigin(iCurrentMode);
748 ((CTScreenModePositioningStep*)iStep)->RecordTestResultL();
751 void CTScreenModePositioning::CopyScreenAndChangeBackToDefScrModeL()
753 // clear the content of bitmap before it is used for copying
754 ClearBitmap(iConnection2->iScreenBitmap);
756 // Copy the current content of the screen before moving to screen sizemode 0.
757 if (!iScalingSupported)
759 TPoint pt=(Copy2ndHalfOfScreen? TPoint(FullScreenModeSize.iWidth/2,0) : TPoint());
760 User::LeaveIfError(iConnection2->iClient->iScreen->CopyScreenToBitmap(iConnection2->iScreenBitmap,TRect(pt,TSize(FullScreenModeSize.iWidth/2,FullScreenModeSize.iHeight))));
764 TPoint pt=(Copy2ndHalfOfScreen? TPoint((iCurrentScreenModeSize.iWidth+iCurrentScreenModeOrigin.iX)/2,0) : -iCurrentScreenModeOrigin);
765 TPoint ptBottom(FullScreenModeSize.iWidth/2,FullScreenModeSize.iHeight);
766 ptBottom-=iCurrentScreenModeOrigin;
767 ptBottom.iX=(ptBottom.iX>=0 ? ptBottom.iX/iCurrentScreenModeScale.iWidth : ((-ptBottom.iX)*iCurrentScreenModeScale.iWidth+ptBottom.iX)/iCurrentScreenModeScale.iWidth+ptBottom.iX);
768 ptBottom.iY=(ptBottom.iY>=0 ? ptBottom.iY/iCurrentScreenModeScale.iHeight : ((-ptBottom.iY)*iCurrentScreenModeScale.iHeight+ptBottom.iY)/iCurrentScreenModeScale.iHeight+ptBottom.iY);
769 User::LeaveIfError(iConnection2->iClient->iScreen->CopyScreenToBitmap(iConnection2->iScreenBitmap,TRect(pt,ptBottom)));
772 SetScreenMode(TheClient,TheClient->iScreenModes[0],ESizeEnforcementPixelsAndRotation);
773 TPixelsAndRotation dummySize;
774 dummySize.iPixelSize=TSize(0,0);
775 iConnection2->iClient->iScreen->SetScreenSizeAndRotation(dummySize); //to force an update in the server when we do the next line
776 TPixelsAndRotation pixelsAndRotation;
777 TheClient->iScreen->GetDefaultScreenSizeAndRotation(pixelsAndRotation);
778 iConnection2->iClient->iScreen->SetScreenSizeAndRotation(pixelsAndRotation);
779 iConnection2->iClient->iScreen->SetScreenModeEnforcement(ESizeEnforcementPixelsAndRotation);
780 iConnection2->iClient->iScreen->SetScreenMode(TheClient->iScreenModes[0]);
783 TBool CTScreenModePositioning::TestRect()
785 TSize size(FullScreenModeSize.iWidth/2,FullScreenModeSize.iHeight);
786 TRect right(TPoint(FullScreenModeSize.iWidth/2,0),size);
787 TBool retVal=TheClient->iScreen->RectCompare(TRect(size),right);
788 // User::After(2000000);
789 //Let the pixels cool down for a bit
794 _LIT(KLog,"Left and Right halves of display don't match. RightHalf=(%d,%d,%d,%d)");
795 LOG_MESSAGE5(KLog,right.iTl.iX,right.iTl.iY,right.iBr.iX,right.iBr.iY);
801 @SYMTestCaseID GRAPHICS-WSERV-0104
803 @SYMDEF DEF081259, DEF111847
805 @SYMTestCaseDesc Sprite Tests
806 REQUIREMENT: CR PHAR-5SJGAM, PREQ673
807 API: RWsSprite::SetPosition()
809 @SYMTestPriority High
811 @SYMTestStatus Implemented
813 @SYMTestActions Test sprites associated with group windows in screen modes with non-zero origin:
814 Sets such a new screen mode and creates 2 sprites.
815 compares these sprites with some blitted onto the screen in the expected position.
816 Sets the rotation of screen mode to be 180 deg, sets the position of the sprites
817 and does the same as above to compare expected position.
818 Then changes back to screen mode 0 and sets a new positions of the sprites,changes to the new
819 screen mode and checks the sprites have been moved to the correct position.
820 Additionally, as part of defect fix DEF111847, this also loops through all display modes above and including Color256,
821 and if possible tests each with the above described method. Previously, it use to only test Color256.
822 Display modes lower than EColor256 are not tested as they are not supported for origin change.
824 @SYMTestExpectedResults Checks the sprites are positioned correctly according to the origin
825 of the new screen mode.
828 void CTScreenModePositioning::SpriteTestL()
831 #if defined(__WINS__)
833 if (iScalingSupported)
835 TDisplayMode curDispMode; // Holds the current display mode being tested
837 for(curDispMode = EColor256; curDispMode < EColorLast; curDispMode = TDisplayMode(curDispMode+1))
839 if (curDispMode == ERgb)
843 // Set screen mode to 3
845 SetScreenMode(TheClient,iCurrentMode,ESizeEnforcementPixelsAndRotation);
846 TPoint topLeft(-TheClient->iScreen->GetScreenModeOrigin(iCurrentMode));
847 TPoint botRight(TheClient->iScreen->SizeInPixels().AsPoint());
849 // Create a sprite at position (0,0) from current origin
851 TSize spriteSize=iSpriteBitmap.SizeInPixels();
852 SetUpSpriteLC(sprite,TheClient->iWs,*iBlankWin->BaseWin());
854 if (botRight.iX<spriteSize.iWidth)
856 winPos.iX=botRight.iX-spriteSize.iWidth;
857 iBlankWin->BaseWin()->SetPosition(winPos);
860 // Now create a spritewin at top left of the visible screen
861 CSpriteWin* spriteWin=new(ELeave) CSpriteWin(iSpriteBitmap);
862 CleanupStack::PushL(spriteWin);
863 spriteWin->ConstructExtLD(*TheClient->iGroup,topLeft,spriteSize);
865 // Set the display mode of the base window
866 TInt setBlankWinDispMode = iBlankWin->BaseWin()->SetRequiredDisplayMode(curDispMode);
867 // Set the display mode of the sprite window
868 TInt setSpriteWinDispMode = spriteWin->BaseWin()->SetRequiredDisplayMode(curDispMode);
870 //Only do the tests if the requested mode was actually set on both windows
871 if(curDispMode == setBlankWinDispMode && curDispMode == setSpriteWinDispMode)
873 //Create and show DisplayMode details message
874 _LIT(KModeDetails, "Display Mode: ");
875 TBuf<30> modeDetailsMessage(KModeDetails);
876 modeDetailsMessage.Append(DisplayModeAsString(curDispMode));
877 LOG_MESSAGE(modeDetailsMessage);
879 spriteWin->AssignGC(*TheClient->iGc);
880 spriteWin->SetState(3);
881 spriteWin->Activate();
882 spriteWin->DrawNow();
883 TheClient->WaitForRedrawsToFinish();
884 retVal=TheClient->iScreen->RectCompare(TRect(topLeft,spriteSize),TRect(winPos,spriteSize),CWsScreenDevice::EIncludeSprite);
888 _LIT(KLog,"Initial Drawing of sprite fails - does not compare to same bitmap drawn in window.");
892 // Move position of the window and sprite and then test
893 TPoint spritePos(Min(20,botRight.iX-spriteSize.iWidth-winPos.iX),20);
894 spriteWin->SetExt(topLeft+spritePos,spriteSize);
895 sprite.SetPosition(spritePos);
896 spriteWin->DrawNow();
897 TheClient->WaitForRedrawsToFinish();
898 retVal=TheClient->iScreen->RectCompare(TRect(topLeft+spritePos,spriteSize),TRect(winPos+spritePos,spriteSize),CWsScreenDevice::EIncludeSprite);
902 _LIT(KLog,"Second position of sprite fails - does not compare to same bitmap drawn in window.");
905 iBlankWin->BaseWin()->SetPosition(TPoint());
907 // Now test the same by moving into other screen mode
909 SetScreenMode(TheClient,iCurrentMode,ESizeEnforcementNone);
910 spritePos.SetXY(0,160);
911 sprite.SetPosition(spritePos);
912 spriteWin->SetExt(TPoint(),spriteSize);
913 spriteWin->DrawNow();
914 TheClient->WaitForRedrawsToFinish();
915 retVal=TheClient->iScreen->RectCompare(TRect(TPoint(),spriteSize),TRect(spritePos,spriteSize),CWsScreenDevice::EIncludeSprite);
919 _LIT(KLog,"Third position of sprite fails - does not compare to same bitmap drawn in window.");
924 CleanupStack::PopAndDestroy(spriteWin);
925 CleanupStack::PopAndDestroy(&sprite);
931 const TInt KScreenModeWithOffset = 2;
932 TheClient->iGroup->GroupWin()->EnableScreenChangeEvents();
933 iTestWin->SetVisible(EFalse);
935 iConnection2->iClient->Flush();
936 TheClient->WaitForRedrawsToFinish();
937 TPixelsAndRotation pixelsAndRotation1;
938 TheClient->iScreen->GetScreenModeSizeAndRotation(KScreenModeWithOffset,pixelsAndRotation1);
939 ChangeScreenMode(TheClient,pixelsAndRotation1,KScreenModeWithOffset);
941 for (TInt ii=0;ii<2;ii++)
943 SetUpSpriteLC(sprite[ii],TheClient->iWs,*TheClient->iGroup->WinTreeNode());
946 TheClient->WaitForRedrawsToFinish();
947 TPixelsAndRotation pixelsAndRotation2;
948 TheClient->iScreen->GetScreenModeSizeAndRotation(0,pixelsAndRotation2);
949 iConnection2->iSpriteWin->UpdateState(0);
950 iConnection2->iSpriteWin->SetVisible(ETrue);
951 iConnection2->iClient->Flush();
952 TSize spriteSize=iSpriteBitmap.SizeInPixels();
953 TPoint screenMode2Origin;
954 screenMode2Origin=TheClient->iScreen->GetScreenModeOrigin(KScreenModeWithOffset);
955 //Check all reference bitmaps can be drawn inside the screen
956 MDisplayControl* interface = static_cast<MDisplayControl*>
957 (TheClient->iScreen->GetInterface(MDisplayControl::ETypeId));
960 TDisplayConfiguration config;
961 interface->GetConfiguration(config);
963 config.GetResolution(screenSize);
964 TEST(screenSize.iWidth > screenMode2Origin.iX+CheckSpritePos.iX+spriteSize.iWidth+30
965 && screenSize.iHeight > screenMode2Origin.iY+CheckSpritePos.iY + spriteSize.iHeight+30);
968 retVal = iConnection2->iClient->iScreen->RectCompare(TRect(screenMode2Origin+CheckSpritePos,spriteSize),TRect(screenMode2Origin,spriteSize),CWsScreenDevice::EIncludeSprite);
971 INFO_PRINTF3(_L("iConnection2->iClient->iScreen->RectCompare() return value - Expected: %d, Actual: %d"), ETrue, retVal);
973 TheClient->iScreen->SetCurrentRotations(KScreenModeWithOffset,CFbsBitGc::EGraphicsOrientationRotated180);
974 ChangeScreenMode(TheClient,pixelsAndRotation1,KScreenModeWithOffset);
976 sprite[0].SetPosition(TPoint(0,0));
977 sprite[1].SetPosition(TPoint(30,30));
979 TheClient->WaitForRedrawsToFinish();
980 iConnection2->iSpriteWin->UpdateState(1);
981 iConnection2->iClient->Flush();
982 retVal = iConnection2->iClient->iScreen->RectCompare(TRect(screenMode2Origin+CheckSpritePos,spriteSize+TPoint(30,30)),TRect(screenMode2Origin,spriteSize+TPoint(30,30)),CWsScreenDevice::EIncludeSprite);
985 INFO_PRINTF3(_L("iConnection2->iClient->iScreen->RectCompare() return value - Expected: %d, Actual: %d"), ETrue, retVal);
987 TheClient->iScreen->SetCurrentRotations(KScreenModeWithOffset,CFbsBitGc::EGraphicsOrientationNormal);
988 ChangeScreenMode(TheClient,pixelsAndRotation2,0);
989 iConnection2->iSpriteWin->SetExt(TPoint(215,0),TSize(218,240));
991 TheClient->WaitForRedrawsToFinish();
992 sprite[0].SetPosition(TPoint(-10,20));
993 sprite[1].SetPosition(TPoint(-10,40));
995 TheClient->WaitForRedrawsToFinish();
996 ChangeScreenMode(TheClient,pixelsAndRotation1,ESizeEnforcementPixelsAndRotation,KScreenModeWithOffset);
998 TheClient->WaitForRedrawsToFinish();
999 iConnection2->iSpriteWin->UpdateState(2);
1000 iConnection2->iClient->Flush();
1001 retVal = iConnection2->iClient->iScreen->RectCompare(TRect(screenMode2Origin+CheckSpritePos+TPoint(0,20),spriteSize+TPoint(-10,20)),TRect(screenMode2Origin+TPoint(0,20),spriteSize+TPoint(-10,20)),CWsScreenDevice::EIncludeSprite);
1004 INFO_PRINTF3(_L("iConnection2->iClient->iScreen->RectCompare() return value - Expected: %d, Actual: %d"), ETrue, retVal);
1006 CleanupStack::PopAndDestroy(2,&sprite[0]);
1007 iConnection2->iSpriteWin->SetVisible(EFalse);
1008 ChangeScreenMode(TheClient,pixelsAndRotation2,ESizeEnforcementPixelsAndRotation,0);
1010 TheClient->WaitForRedrawsToFinish();
1016 @SYMTestCaseID GRAPHICS-WSERV-0105
1020 @SYMTestCaseDesc Rotation Tests
1021 REQUIREMENT: CR PHAR-5SJGAM, PREQ673
1022 API: RWindowBase::InquireOffset(), RWindowBase::AbsPosition(),RWindowBase::Position()
1024 @SYMTestPriority High
1026 @SYMTestStatus Implemented
1028 @SYMTestActions Goes through all the screen modes defined in the wsini file and all the rotations in
1029 each screen mode. For each case sets the new screen mode and the the rotation on the current
1030 client's screen device. Then sets a suitable size and position of 2 windows (an RWindow
1031 and a child RBackedUpWindow) whose group window has the above screen device.
1033 @SYMTestExpectedResults Checks the windows are positioned correctly according to the origin and rotation
1034 of the new screen mode.
1037 void CTScreenModePositioning::RotationTestsL()
1039 RBlankWindow color256(TheClient->iWs);
1040 User::LeaveIfError(color256.Construct(*TheClient->iGroup->GroupWin(),ENullWsHandle));
1041 CleanupClosePushL(color256);
1042 color256.SetRequiredDisplayMode(EColor256);
1043 color256.SetOrdinalPosition(2);
1044 color256.Activate();
1046 for (ii=0;ii<TheClient->iScreenModes.Count();)
1048 iCurrentMode=TheClient->iScreenModes[ii];
1049 SetScreenMode(TheClient,iCurrentMode,ESizeEnforcementPixelsAndRotation);
1050 TPixelsAndRotation pixelsAndRotation;
1051 TheClient->iScreen->GetDefaultScreenSizeAndRotation(pixelsAndRotation);
1052 TInt oldCurrentMode=iCurrentMode;
1053 CArrayFixFlat<TInt>* rotations=new(ELeave) CArrayFixFlat<TInt>(1);
1054 CleanupStack::PushL(rotations);
1055 User::LeaveIfError(TheClient->iScreen->GetRotationsList(iCurrentMode,rotations));
1056 TInt count=rotations->Count();
1060 for (jj=0;jj<count;)
1062 if ((*rotations)[jj++]==pixelsAndRotation.iRotation)
1076 TInt currentRotation=(*rotations)[jj];
1077 TheClient->iScreen->SetCurrentRotations(oldCurrentMode,REINTERPRET_CAST(CFbsBitGc::TGraphicsOrientation&,currentRotation));
1078 CleanupStack::PopAndDestroy(rotations);
1079 iCurrentScreenModeOrigin=TheClient->iScreen->GetScreenModeOrigin(oldCurrentMode);
1080 iCurrentScreenModeOrigin=TheClient->iScreen->GetScreenModeScaledOrigin(oldCurrentMode);
1081 TPoint point1(iCurrentScreenModeOrigin.iX,iCurrentScreenModeOrigin.iY+(iCurrentScreenModeOrigin.iY+pixelsAndRotation.iPixelSize.iHeight)/2);
1082 TPoint point2(iCurrentScreenModeOrigin.iX+(iCurrentScreenModeOrigin.iX+pixelsAndRotation.iPixelSize.iWidth)/2,pixelsAndRotation.iPixelSize.iHeight+iCurrentScreenModeOrigin.iY);
1083 TRect rect0(point1,point2);
1084 iTestWin->SetExtL(TPoint(),rect0.Size());
1085 iTestWin->Invalidate();
1087 iTestWin->SetVisible(ETrue);
1089 TheClient->WaitForRedrawsToFinish();
1090 TestTopClientWindowPositionAPIs(TPoint(),iTestWin->BaseWin());
1091 TPoint backedUpWinPt=TPoint(rect0.Width()/3,rect0.Height()/4);
1092 iBackedUpWin->SetVisible(ETrue);
1094 CleanupStack::PushL(TCleanupSetVisible<EFalse>(iBackedUpWin));
1095 CleanupStack::PushL(TCleanupSetVisible<EFalse>(iTestWin));
1098 iBackedUpWin->SetExtL(backedUpWinPt,TSize(rect0.Width()/6,rect0.Height()/6));
1099 TestChildWindowPositionAPIs(backedUpWinPt,TPoint(),iBackedUpWin->BaseWin(),iTestWin->BaseWin());
1101 CleanupStack::PopAndDestroy(2,iBackedUpWin); //TCleanupSetVisible
1103 CleanupStack::PopAndDestroy(&color256);
1106 TBool CTScreenModePositioning::ScalingSupportedByDisplayMode()
1108 //PeterI Standard ScreenDriver only supports scaling in EColor256 and EColor64k
1109 //see CDrawBitmap::CanBeScaled(), as mk3 is always in 16mu the tests will not pass.
1111 TDisplayMode mode=TheClient->iScreen->DisplayMode();
1112 if (mode==EColor64K || mode==EColor256)
1118 void CTScreenModePositioning::RunTestCaseL(TInt /*aCurTestCase*/)
1120 _LIT(KWindowTests,"Window Tests");
1121 _LIT(KSpriteTest,"Sprite Test");
1122 _LIT(KRotationTests,"Rotation Tests");
1123 ((CTScreenModePositioningStep*)iStep)->SetTestStepID(KUnknownSYMTestCaseIDName);
1124 switch(iTest->iState)
1127 ((CTScreenModePositioningStep*)iStep)->SetTestStepID(KNotATestSYMTestCaseIDName);
1128 if (!CheckNonZeroOriginsSupportedOrNot())
1130 _LIT(KLog,"Non Zero Origins not supported");
1137 iTest->LogSubTest(KWindowTests);
1138 if(ScalingSupportedByDisplayMode())
1140 ((CTScreenModePositioningStep*)iStep)->SetOverallTestStepID(_L("GRAPHICS-WSERV-0098"));
1143 ((CTScreenModePositioningStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0104"));
1144 iTest->LogSubTest(KSpriteTest);
1145 if(ScalingSupportedByDisplayMode())
1149 ((CTScreenModePositioningStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0105"));
1150 iTest->LogSubTest(KRotationTests);
1154 ((CTScreenModePositioningStep*)iStep)->SetTestStepID(KNotATestSYMTestCaseIDName);
1155 ((CTScreenModePositioningStep*)iStep)->CloseTMSGraphicsStep();
1156 RestoreScreenMode();
1160 ((CTScreenModePositioningStep*)iStep)->RecordTestResultL();
1161 ++iTest->iState; // still used in the remaining code
1164 __WS_CONSTRUCT_STEP__(ScreenModePositioning)