os/graphics/windowing/windowserver/test/tauto/TScreenModeScaling.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1996-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
// Test code for screen mode scaling CR
sl@0
    15
// Test code for the Scaling part of Change Request PHAR-5SJGAM 
sl@0
    16
// ("Enable screen mode positioning and scaling").
sl@0
    17
// Tests screen scale being configurable for a screen mode -  
sl@0
    18
// eg it is now possible to set in wsini.ini amount by which a screen 
sl@0
    19
// mode's screen will be scaled when drawn on the physical screen. 
sl@0
    20
// 
sl@0
    21
//
sl@0
    22
sl@0
    23
/**
sl@0
    24
 @file
sl@0
    25
 @test
sl@0
    26
 @internalComponent - Internal Symbian test code
sl@0
    27
*/
sl@0
    28
sl@0
    29
#include "TScreenModeScaling.h"
sl@0
    30
sl@0
    31
#define MY_TEST_BITMAP _L("Z:\\WSTEST\\MYTEST.MBM")
sl@0
    32
sl@0
    33
LOCAL_D TSize FullScreenModeSize;
sl@0
    34
LOCAL_D TInt Copy2ndHalfOfScreen;
sl@0
    35
sl@0
    36
void ClearBitmap(CFbsBitmap* aBitMap)
sl@0
    37
	{
sl@0
    38
	// clear the content of bitmap before it is used for copying
sl@0
    39
	CFbsBitmapDevice *device=CFbsBitmapDevice::NewL(aBitMap);
sl@0
    40
	CleanupStack::PushL(device);
sl@0
    41
	CFbsBitGc *gc=NULL;
sl@0
    42
	User::LeaveIfError(device->CreateContext(gc));
sl@0
    43
	CleanupStack::PushL(gc);
sl@0
    44
	gc->Clear();
sl@0
    45
	CleanupStack::PopAndDestroy(2,device);
sl@0
    46
	}
sl@0
    47
sl@0
    48
/*CBitMapWin*/
sl@0
    49
sl@0
    50
void CBitMapWin::Draw()
sl@0
    51
	{
sl@0
    52
	iGc->BitBlt(TPoint(),&iBackup->Bitmap());
sl@0
    53
	}
sl@0
    54
sl@0
    55
/*CTestSpriteWin*/
sl@0
    56
sl@0
    57
CTestSpriteWin::~CTestSpriteWin()
sl@0
    58
	{
sl@0
    59
	}
sl@0
    60
sl@0
    61
void CTestSpriteWin::UpdateWin(TPoint aOrigin)
sl@0
    62
	{
sl@0
    63
	SetOrigin(aOrigin);
sl@0
    64
	DrawNow();
sl@0
    65
	}
sl@0
    66
sl@0
    67
void CTestSpriteWin::Draw()
sl@0
    68
	{
sl@0
    69
	iGc->BitBlt(iOrigin,&iSpriteBitmap);
sl@0
    70
	}
sl@0
    71
sl@0
    72
/*CTScreenModeScaling*/
sl@0
    73
sl@0
    74
CTScreenModeScaling::CTScreenModeScaling(CTestStep* aStep) : CTWsGraphicsBase(aStep)
sl@0
    75
	{
sl@0
    76
	}
sl@0
    77
	
sl@0
    78
CTScreenModeScaling::~CTScreenModeScaling()
sl@0
    79
	{
sl@0
    80
	delete iTestWin;
sl@0
    81
	delete iBlankWin;
sl@0
    82
	delete iBackedUpWin;
sl@0
    83
	delete iTestChildWin;
sl@0
    84
	delete iScreenBitmap;
sl@0
    85
	delete iBitmapWin;
sl@0
    86
	delete iCheckWin;
sl@0
    87
	delete iTransWin;
sl@0
    88
	delete iBackgroundWin;
sl@0
    89
	delete iCheckBitmap;
sl@0
    90
	delete iTransparencyBitmap;
sl@0
    91
	delete iBackgroundBitmap;
sl@0
    92
	delete iForegroundBitmap;
sl@0
    93
	}
sl@0
    94
sl@0
    95
void CTScreenModeScaling::ConstructL()
sl@0
    96
	{
sl@0
    97
	iDisplayMode=TheClient->iScreen->DisplayMode();
sl@0
    98
	if (iDisplayMode<EColor256)
sl@0
    99
		iDisplayMode=EColor256;
sl@0
   100
	User::LeaveIfError(iSpriteBitmap.Load(MY_TEST_BITMAP,0));
sl@0
   101
sl@0
   102
	TheClient->iScreen->SetAppScreenMode(TheClient->iScreenModes[0]);
sl@0
   103
	FullScreenModeSize=TheClient->iScreen->SizeInPixels();
sl@0
   104
	iBlankWin=new(ELeave) CTBlankWindow();
sl@0
   105
	iBlankWin->ConstructL(*TheClient->iGroup);
sl@0
   106
	User::LeaveIfError(iBlankWin->BaseWin()->SetRequiredDisplayMode(EColor256));
sl@0
   107
	iBlankWin->SetExt(TPoint(),FullScreenModeSize);
sl@0
   108
	iBlankWin->Activate();
sl@0
   109
sl@0
   110
	iTestWin=new(ELeave) CBasicWin;
sl@0
   111
	iTestWin->ConstructExtLD(*TheClient->iGroup,TPoint(),FullScreenModeSize);
sl@0
   112
	User::LeaveIfError(iTestWin->BaseWin()->SetRequiredDisplayMode(EColor256));
sl@0
   113
	iTestWin->AssignGC(*TheClient->iGc);
sl@0
   114
	iTestWin->SetVisible(EFalse);
sl@0
   115
	iTestWin->Activate();
sl@0
   116
	iTestWin->BaseWin()->SetShadowDisabled(ETrue);
sl@0
   117
	iTestWin->BaseWin()->SetShadowHeight(0);
sl@0
   118
sl@0
   119
	iBackedUpWin=new(ELeave) CTBackedUpWin(iDisplayMode);
sl@0
   120
	iBackedUpWin->ConstructExtLD(*iTestWin,TPoint(),FullScreenModeSize);
sl@0
   121
	iBackedUpWin->SetVisible(EFalse);
sl@0
   122
	iBackedUpWin->Activate();
sl@0
   123
sl@0
   124
	iTestChildWin=new(ELeave) CTBlankWindow();
sl@0
   125
	iTestChildWin->ConstructL(*iTestWin);
sl@0
   126
	User::LeaveIfError(iTestChildWin->BaseWin()->SetRequiredDisplayMode(EColor256));
sl@0
   127
	iTestChildWin->BaseWin()->SetShadowDisabled(ETrue);
sl@0
   128
	iTestChildWin->SetColor(KRgbGreen);
sl@0
   129
	iTestChildWin->BaseWin()->SetVisible(EFalse);
sl@0
   130
	iTestChildWin->Activate();
sl@0
   131
sl@0
   132
	iScreenBitmap=new(ELeave) CFbsBitmap();
sl@0
   133
	User::LeaveIfError(iScreenBitmap->Create(TSize(FullScreenModeSize.iWidth/2,FullScreenModeSize.iHeight),iDisplayMode));
sl@0
   134
sl@0
   135
	iBitmapWin=new(ELeave) CBmpWin(*iScreenBitmap);
sl@0
   136
	iBitmapWin->ConstructExtLD(*TheClient->iGroup,TPoint(),iScreenBitmap->SizeInPixels());
sl@0
   137
	User::LeaveIfError(iBitmapWin->BaseWin()->SetRequiredDisplayMode(EColor256));
sl@0
   138
	iBitmapWin->AssignGC(*TheClient->iGc);
sl@0
   139
	iBitmapWin->Activate();
sl@0
   140
	iBitmapWin->SetVisible(EFalse);
sl@0
   141
	iBitmapWin->BaseWin()->SetShadowDisabled(ETrue);
sl@0
   142
	iBitmapWin->BaseWin()->SetShadowHeight(0);
sl@0
   143
sl@0
   144
	//.. Create all the bitmaps and transparent windows
sl@0
   145
	iWinSize.SetSize(20,20);
sl@0
   146
	iTransparencyBitmap=CBitmap::NewL(iWinSize,EGray256);
sl@0
   147
	iBackgroundBitmap=CBitmap::NewL(iWinSize,iDisplayMode);
sl@0
   148
	iForegroundBitmap=CBitmap::NewL(iWinSize,iDisplayMode);
sl@0
   149
sl@0
   150
	CBitMapWin* backgroundWin=new(ELeave) CBitMapWin(iBackgroundBitmap);
sl@0
   151
	backgroundWin->ConstructExtLD(*TheClient->iGroup,TPoint(),iWinSize);
sl@0
   152
	iBackgroundWin=backgroundWin;
sl@0
   153
	User::LeaveIfError(iBackgroundWin->BaseWin()->SetRequiredDisplayMode(EColor256));
sl@0
   154
	iBackgroundWin->SetVisible(EFalse);
sl@0
   155
	iBackgroundWin->BaseWin()->SetShadowDisabled(ETrue);
sl@0
   156
	iBackgroundWin->BaseWin()->SetShadowHeight(0);
sl@0
   157
	iBackgroundWin->AssignGC(*TheClient->iGc);
sl@0
   158
	iBackgroundWin->Activate();
sl@0
   159
sl@0
   160
	CBitMapWin* transWin=new(ELeave) CBitMapWin(iForegroundBitmap);
sl@0
   161
	transWin->ConstructExtLD(*TheClient->iGroup,TPoint(),iWinSize);
sl@0
   162
	iTransWin=transWin;
sl@0
   163
	RWindowBase& transWinB=*iTransWin->BaseWin();
sl@0
   164
	User::LeaveIfError(transWinB.SetRequiredDisplayMode(EColor256));
sl@0
   165
	transWinB.SetShadowDisabled(ETrue);
sl@0
   166
	transWinB.SetShadowHeight(0);
sl@0
   167
	iTransWin->SetVisible(EFalse);
sl@0
   168
	iTransWin->AssignGC(*TheClient->iGc);
sl@0
   169
	iTransWin->Win()->SetTransparencyBitmap(iTransparencyBitmap->Bitmap());
sl@0
   170
	iTransWin->Activate();
sl@0
   171
sl@0
   172
	CTBackedUpWin* checkWin=new(ELeave) CTBackedUpWin(iDisplayMode);
sl@0
   173
	checkWin->ConstructExtLD(*TheClient->iGroup,TPoint(iWinSize.iWidth+1,0),iWinSize);
sl@0
   174
	iCheckWin=checkWin;
sl@0
   175
	RBackedUpWindow& win=*iCheckWin->BackedUpWin();
sl@0
   176
	win.SetShadowHeight(0);
sl@0
   177
	iCheckWin->Activate();
sl@0
   178
	win.MaintainBackup();
sl@0
   179
	iCheckBitmap=CBitmap::NewL(win.BitmapHandle());
sl@0
   180
	iCheckWin->BaseWin()->SetShadowDisabled(ETrue);
sl@0
   181
	iCheckWin->BaseWin()->SetShadowHeight(0);
sl@0
   182
	iCheckWin->BaseWin()->SetVisible(EFalse);
sl@0
   183
	TheClient->Flush();
sl@0
   184
	TheClient->WaitForRedrawsToFinish();
sl@0
   185
	}
sl@0
   186
sl@0
   187
void CTScreenModeScaling::TestTopClientWindowPositionAPIs(TPoint aPos,RWindowBase* aWin)
sl@0
   188
	{
sl@0
   189
	TEST(aWin->AbsPosition()==aPos);
sl@0
   190
	TEST(aWin->Position()==aPos);
sl@0
   191
	TEST(aWin->InquireOffset(*TheClient->iGroup->GroupWin())==aPos);
sl@0
   192
	}
sl@0
   193
sl@0
   194
void CTScreenModeScaling::TestChildWindowPositionAPIs(TPoint aPos,TPoint aParentPos,RWindowBase* aWin,RWindowBase* aParentWin)
sl@0
   195
	{
sl@0
   196
	TEST(aWin->AbsPosition()==aParentPos+aPos);
sl@0
   197
	TEST(aWin->Position()==aPos);
sl@0
   198
	TEST(aWin->InquireOffset(*TheClient->iGroup->GroupWin())==aParentPos+aPos);
sl@0
   199
	TEST(aWin->InquireOffset(*aParentWin)==aPos);
sl@0
   200
	}
sl@0
   201
sl@0
   202
void CTScreenModeScaling::TestRect()
sl@0
   203
	{
sl@0
   204
	// Here if the width or height of the screen cannot be divided by 2 
sl@0
   205
	// then make both the rect size same by reducing the first or second which ever is smaller
sl@0
   206
	// and make sure that top left corner is not disturbed.
sl@0
   207
	TRect rect1=TRect(PhysicalToLogical(TPoint()-iCurrentScreenModeOrigin,iCurrentScreenModeScale),
sl@0
   208
					  PhysicalToLogical(TPoint(FullScreenModeSize.iWidth/2,FullScreenModeSize.iHeight)-iCurrentScreenModeOrigin,
sl@0
   209
										iCurrentScreenModeScale)
sl@0
   210
					  );
sl@0
   211
	TRect rect2=TRect(PhysicalToLogical(TPoint(FullScreenModeSize.iWidth/2,0)-iCurrentScreenModeOrigin,
sl@0
   212
										iCurrentScreenModeScale),
sl@0
   213
					  PhysicalToLogical(FullScreenModeSize.AsPoint()-iCurrentScreenModeOrigin,
sl@0
   214
										iCurrentScreenModeScale)
sl@0
   215
					  );
sl@0
   216
	if ((Abs(rect1.iBr.iX-rect1.iTl.iX)>Abs(rect2.iBr.iX-rect2.iTl.iX)) || (Abs(rect1.iBr.iY-rect1.iTl.iY)>Abs(rect2.iBr.iY-rect2.iTl.iY)))
sl@0
   217
		{
sl@0
   218
		rect1.SetRect(rect1.iTl,rect2.Size());
sl@0
   219
		}
sl@0
   220
	if ((Abs(rect1.iBr.iX-rect1.iTl.iX)<Abs(rect2.iBr.iX-rect2.iTl.iX)) || (Abs(rect1.iBr.iY-rect1.iTl.iY)<Abs(rect2.iBr.iY-rect2.iTl.iY)))
sl@0
   221
		{
sl@0
   222
		rect2.SetRect(rect2.iTl,rect1.Size());
sl@0
   223
		}
sl@0
   224
	TBool retVal = TheClient->iScreen->RectCompare(rect1,rect2);
sl@0
   225
	TEST(retVal);
sl@0
   226
	if (!retVal)
sl@0
   227
		INFO_PRINTF3(_L("TheClient->iScreen->RectCompare(rect1,rect2) return value  - Expected: %d, Actual: %d"), ETrue, retVal);		
sl@0
   228
	}
sl@0
   229
sl@0
   230
void CTScreenModeScaling::CompareRegionsL(const TRegion &aRegion1,const TRegion &aRegion2)
sl@0
   231
	{
sl@0
   232
	RRegion tmp;
sl@0
   233
	tmp.Copy(aRegion1);
sl@0
   234
	tmp.SubRegion(aRegion2);
sl@0
   235
	if (tmp.CheckError())
sl@0
   236
		User::Leave(KErrNoMemory);	
sl@0
   237
	TBool retVal = tmp.IsEmpty();
sl@0
   238
	TEST(retVal);
sl@0
   239
	if (!retVal)
sl@0
   240
		INFO_PRINTF3(_L("RRegion1.IsEmpty() return value  - Expected: %d, Actual: %d"), ETrue, retVal);		
sl@0
   241
	tmp.Copy(aRegion2);
sl@0
   242
	tmp.SubRegion(aRegion1);
sl@0
   243
	if (tmp.CheckError())
sl@0
   244
		User::Leave(KErrNoMemory);
sl@0
   245
	retVal = tmp.IsEmpty();
sl@0
   246
	TEST(retVal);
sl@0
   247
	if (!retVal)
sl@0
   248
		INFO_PRINTF3(_L("RRegion2.IsEmpty() return value  - Expected: %d, Actual: %d"), ETrue, retVal);		
sl@0
   249
sl@0
   250
	tmp.Close();
sl@0
   251
	}
sl@0
   252
sl@0
   253
void CTScreenModeScaling::SetUpSpriteLC(RWsSprite &aSprite, RWsSession &aSession, RWindowTreeNode &aWindow,TInt aFlags)
sl@0
   254
	{
sl@0
   255
	aSprite=RWsSprite(aSession);
sl@0
   256
	User::LeaveIfError(aSprite.Construct(aWindow,TPoint(),aFlags));
sl@0
   257
	CleanupClosePushL(aSprite);
sl@0
   258
	TSpriteMember member;
sl@0
   259
	iTest->SetUpMember(member);
sl@0
   260
	member.iBitmap=&iSpriteBitmap;
sl@0
   261
	User::LeaveIfError(aSprite.AppendMember(member));
sl@0
   262
	User::LeaveIfError(aSprite.Activate());
sl@0
   263
	}
sl@0
   264
sl@0
   265
void CTScreenModeScaling::TestGetInvalidRegionL(TRect& aRect)
sl@0
   266
	{
sl@0
   267
	RRegion testRegion;
sl@0
   268
	RRegion invalid;
sl@0
   269
	iTestWin->Invalidate(aRect);
sl@0
   270
	testRegion.AddRect(aRect);
sl@0
   271
	iTestWin->Win()->GetInvalidRegion(invalid);
sl@0
   272
	CleanupClosePushL(testRegion);
sl@0
   273
	CleanupClosePushL(invalid);
sl@0
   274
	CompareRegionsL(testRegion, invalid);
sl@0
   275
	CleanupStack::PopAndDestroy(2, &testRegion);
sl@0
   276
	TheClient->WaitForRedrawsToFinish();
sl@0
   277
	}
sl@0
   278
sl@0
   279
void CTScreenModeScaling::CopyAndCompareL()
sl@0
   280
	{
sl@0
   281
	TInt oldOrdinalPriority = TheClient->iGroup->GroupWin()->OrdinalPriority();
sl@0
   282
	TInt oldOrdinalPosition = TheClient->iGroup->GroupWin()->OrdinalPosition();
sl@0
   283
	// the following line makes sure that a console object hidden outside of
sl@0
   284
	// screens range doesn't affect test results ocerlapping the bitmap window
sl@0
   285
	TheClient->iGroup->GroupWin()->SetOrdinalPosition(0, 65535); 
sl@0
   286
sl@0
   287
	// clear the content of bitmap before it is used for copying
sl@0
   288
	ClearBitmap(iScreenBitmap);	
sl@0
   289
sl@0
   290
	// Copy first half or second half of the screen to a bitmap then paste it to second or first half of the screen
sl@0
   291
	TRect testWinRect(PhysicalToLogical(TPoint((Copy2ndHalfOfScreen ? FullScreenModeSize.iWidth/2 : 0),0)-iCurrentScreenModeOrigin,iCurrentScreenModeScale),
sl@0
   292
					  PhysicalToLogical(TPoint((Copy2ndHalfOfScreen ? FullScreenModeSize.iWidth : FullScreenModeSize.iWidth/2),FullScreenModeSize.iHeight)-iCurrentScreenModeOrigin,iCurrentScreenModeScale)
sl@0
   293
					  );
sl@0
   294
	TheClient->iScreen->CopyScreenToBitmap(iScreenBitmap,testWinRect);
sl@0
   295
	iBitmapWin->SetExt(PhysicalToLogical(TPoint((Copy2ndHalfOfScreen ? 0 : FullScreenModeSize.iWidth/2),0)-iCurrentScreenModeOrigin,iCurrentScreenModeScale),testWinRect.Size());
sl@0
   296
	iBitmapWin->SetVisible(ETrue);
sl@0
   297
	iBitmapWin->DrawNow();
sl@0
   298
	TheClient->Flush();
sl@0
   299
	TestRect();
sl@0
   300
	iBitmapWin->SetVisible(EFalse);
sl@0
   301
	iTestWin->SetVisible(EFalse);
sl@0
   302
	TheClient->Flush();
sl@0
   303
sl@0
   304
	TheClient->iGroup->GroupWin()->SetOrdinalPosition(oldOrdinalPosition, oldOrdinalPriority); 
sl@0
   305
	}
sl@0
   306
sl@0
   307
/**
sl@0
   308
@SYMTestCaseID		GRAPHICS-WSERV-0093
sl@0
   309
sl@0
   310
@SYMDEF             DEF081259, DEF111847
sl@0
   311
sl@0
   312
@SYMTestCaseDesc    Window tests
sl@0
   313
					REQUIREMENT: PREQ673 (Screen Scaling)
sl@0
   314
					API: RWindowBase::InquireOffset(), RWindowBase::AbsPosition(),RWindowBase::Position()
sl@0
   315
sl@0
   316
@SYMTestPriority    High
sl@0
   317
sl@0
   318
@SYMTestStatus      Implemented
sl@0
   319
sl@0
   320
@SYMTestActions     Loops through all the screen modes present in the wsini file, and then moves to the test screen
sl@0
   321
	mode where it goes on changing the screen scale and origin. In each of the wsini screen modes and test
sl@0
   322
	screen modes, it checks the test window's API's RWindowBase::InquireOffset(), RWindowBase::AbsPosition()
sl@0
   323
	RWindowBase::Position(). Then it copies the content from either first or second half to second or first
sl@0
   324
	half and compares both the regions so that its content are same.
sl@0
   325
	Additionally, as part of defect fix DEF111847, this also loops through all the display modes, and if possible
sl@0
   326
	tests each with the above described method. Previously, it use to only test Color256.
sl@0
   327
sl@0
   328
@SYMTestExpectedResults The content of both halves of the screen should match.
sl@0
   329
*/		
sl@0
   330
void CTScreenModeScaling::WindowTestsL()
sl@0
   331
	{
sl@0
   332
	INFO_PRINTF1(_L("AUTO  WindowTests : "));
sl@0
   333
	
sl@0
   334
	TDisplayMode curDispMode; // Holds the current display mode being tested 
sl@0
   335
	
sl@0
   336
	for(curDispMode = EGray2; curDispMode < EColorLast; curDispMode = TDisplayMode(curDispMode+1))
sl@0
   337
		{
sl@0
   338
		if (curDispMode == ERgb)
sl@0
   339
			{
sl@0
   340
			continue;
sl@0
   341
			}
sl@0
   342
		CTClient* client=new(ELeave) CTClient();
sl@0
   343
		CleanupStack::PushL(client);
sl@0
   344
		client->SetScreenNumber(iTest->iScreenNumber);
sl@0
   345
		client->ConstructL();
sl@0
   346
		client->iGroup=new(ELeave) TestWindowGroup(client);
sl@0
   347
		client->iGroup->ConstructL();
sl@0
   348
		client->iGroup->WinTreeNode()->SetOrdinalPosition(1);
sl@0
   349
		RBlankWindow testWindow(client->iWs);
sl@0
   350
		User::LeaveIfError(testWindow.Construct(*TheClient->iGroup->GroupWin(),ENullWsHandle));
sl@0
   351
		CleanupClosePushL(testWindow);
sl@0
   352
	
sl@0
   353
		TInt setDispMode; // Holds the actual display mode that was set
sl@0
   354
		setDispMode = testWindow.SetRequiredDisplayMode(curDispMode);
sl@0
   355
		
sl@0
   356
		//Only do the tests if the requested mode was actually set
sl@0
   357
		if(curDispMode == setDispMode)
sl@0
   358
			{
sl@0
   359
			//Create and show DisplayMode details message
sl@0
   360
			_LIT(KModeDetails, "Display Mode: ");
sl@0
   361
			TBuf<30> modeDetailsMessage(KModeDetails);
sl@0
   362
			modeDetailsMessage.Append(DisplayModeAsString(curDispMode));
sl@0
   363
			LOG_MESSAGE(modeDetailsMessage);
sl@0
   364
			
sl@0
   365
			testWindow.Activate();
sl@0
   366
			TheClient->iGroup->GroupWin()->EnableScreenChangeEvents();
sl@0
   367
			TInt numOfModes=TheClient->iScreenModes.Count();
sl@0
   368
			TInt ii;
sl@0
   369
			for (ii=0; ii<numOfModes; ++ii)
sl@0
   370
				{
sl@0
   371
				INFO_PRINTF1(_L(" Start of Loop"));
sl@0
   372
				iCurrentMode=TheClient->iScreenModes[ii];
sl@0
   373
				TPixelsAndRotation pixelsAndRotation;
sl@0
   374
				iCurrentScreenModeOrigin=TheClient->iScreen->GetScreenModeOrigin(iCurrentMode);
sl@0
   375
				iCurrentScreenModeScale=TheClient->iScreen->GetScreenModeScale(iCurrentMode);
sl@0
   376
				TheClient->iScreen->GetScreenModeSizeAndRotation(iCurrentMode,pixelsAndRotation);
sl@0
   377
				if (pixelsAndRotation.iRotation==CFbsBitGc::EGraphicsOrientationNormal)
sl@0
   378
					{
sl@0
   379
					INFO_PRINTF1(_L(" Do Tests"));
sl@0
   380
					TRAPD(ret,DoWindowTestsL());
sl@0
   381
					TEST(ret==KErrNone);
sl@0
   382
					if (ret!=KErrNone)
sl@0
   383
						{
sl@0
   384
						INFO_PRINTF3(_L("DoWindowTestsL() return value  - Expected: %d, Actual: %d"), KErrNone, ret);		
sl@0
   385
						}
sl@0
   386
sl@0
   387
					INFO_PRINTF1(_L(" Window Trees"));
sl@0
   388
					client->iScreen->SetAppScreenMode(iCurrentMode);
sl@0
   389
					client->Flush();
sl@0
   390
					}
sl@0
   391
				}
sl@0
   392
				TestDifferentScales(numOfModes-1);
sl@0
   393
			}
sl@0
   394
		CleanupStack::PopAndDestroy(2,client);
sl@0
   395
		}
sl@0
   396
	}
sl@0
   397
sl@0
   398
void CTScreenModeScaling::TestDifferentScales(TInt aLastModeIdx)
sl@0
   399
	{
sl@0
   400
	if (aLastModeIdx<0) return;
sl@0
   401
	TPixelsAndRotation pixelsAndRotation;
sl@0
   402
	for (TInt modeCount=aLastModeIdx;modeCount>=0;--modeCount)
sl@0
   403
		{
sl@0
   404
		TheClient->iScreen->GetScreenModeSizeAndRotation(TheClient->iScreenModes[modeCount],pixelsAndRotation);
sl@0
   405
		if (pixelsAndRotation.iRotation==CFbsBitGc::EGraphicsOrientationNormal)
sl@0
   406
			break;
sl@0
   407
		}
sl@0
   408
	iCurrentMode=TheClient->iScreenModes[aLastModeIdx];
sl@0
   409
	TheClient->iScreen->SetAppScreenMode(iCurrentMode);
sl@0
   410
	TheClient->iScreen->SetScreenMode(iCurrentMode);
sl@0
   411
	TSizeMode storeModeData=TheClient->iScreen->GetCurrentScreenModeAttributes();
sl@0
   412
	TSizeMode testMode=storeModeData;
sl@0
   413
	for (TInt xScale=1;xScale<4;++xScale)
sl@0
   414
		{
sl@0
   415
		for (TInt yScale=1;yScale<4;++yScale)
sl@0
   416
			{
sl@0
   417
			testMode.iScreenScale=TSize(xScale,yScale);
sl@0
   418
			TestDifferentOrigin(testMode,TPoint(20,20));
sl@0
   419
			TestDifferentOrigin(testMode,TPoint(20,30));
sl@0
   420
			TestDifferentOrigin(testMode,TPoint(30,20));
sl@0
   421
			TestDifferentOrigin(testMode,TPoint(FullScreenModeSize.iWidth/2+640/FullScreenModeSize.iWidth*10,60));
sl@0
   422
			}
sl@0
   423
		}
sl@0
   424
	TheClient->iScreen->SetScreenMode(iCurrentMode);
sl@0
   425
	TheClient->iScreen->SetCurrentScreenModeAttributes(storeModeData);
sl@0
   426
	TInt defaultMode=TheClient->iScreenModes[0];
sl@0
   427
	TheClient->iScreen->SetAppScreenMode(defaultMode);
sl@0
   428
	TheClient->iScreen->SetScreenMode(defaultMode);
sl@0
   429
	}
sl@0
   430
sl@0
   431
void CTScreenModeScaling::TestDifferentOrigin(TSizeMode &aMode,TPoint aOrigin)
sl@0
   432
	{
sl@0
   433
	TheClient->iScreen->SetScreenMode(iCurrentMode);//.. this is required because at the end of next screenmode test it will be set to zero screen mode
sl@0
   434
	aMode.iOrigin=aOrigin;
sl@0
   435
	TheClient->iScreen->SetCurrentScreenModeAttributes(aMode);
sl@0
   436
	TheClient->iScreen->SetAppScreenMode(iCurrentMode);
sl@0
   437
	TheClient->iScreen->SetScreenMode(iCurrentMode);
sl@0
   438
	iCurrentScreenModeOrigin=TheClient->iScreen->GetScreenModeOrigin(iCurrentMode);
sl@0
   439
	iCurrentScreenModeScale=TheClient->iScreen->GetScreenModeScale(iCurrentMode);
sl@0
   440
	TRAPD(ret,DoWindowTestsL());
sl@0
   441
	TEST(ret==KErrNone);
sl@0
   442
	if (ret!=KErrNone)
sl@0
   443
		INFO_PRINTF3(_L("DoWindowTestsL() return value  - Expected: %d, Actual: %d"), KErrNone, ret);		
sl@0
   444
	}
sl@0
   445
sl@0
   446
void CTScreenModeScaling::DoWindowTestsL()
sl@0
   447
	{
sl@0
   448
	TheClient->iScreen->SetAppScreenMode(iCurrentMode);
sl@0
   449
	TheClient->iScreen->SetScreenMode(iCurrentMode);
sl@0
   450
	Copy2ndHalfOfScreen=(iCurrentScreenModeOrigin.iX>FullScreenModeSize.iWidth/2? 1 : 0);
sl@0
   451
	TRect testWinRect(PhysicalToLogical(TPoint(),iCurrentScreenModeScale),
sl@0
   452
					  PhysicalToLogical(TPoint((Copy2ndHalfOfScreen ? FullScreenModeSize.iWidth 
sl@0
   453
																	: FullScreenModeSize.iWidth/2),
sl@0
   454
											   FullScreenModeSize.iHeight)-iCurrentScreenModeOrigin,iCurrentScreenModeScale) 
sl@0
   455
					  );
sl@0
   456
	testWinRect.Shrink(10,10);
sl@0
   457
	iTestWinSize=testWinRect.Size();
sl@0
   458
	PositionTestL(testWinRect.iTl);
sl@0
   459
	testWinRect.Shrink(10,10);
sl@0
   460
	iTestWinSize=testWinRect.Size();
sl@0
   461
	PositionTestL(testWinRect.iTl);
sl@0
   462
	BackedUpChildWindowTestL(testWinRect.iTl);
sl@0
   463
	GetInvalidRegionTestL(testWinRect.iTl);
sl@0
   464
	//NextScreenModeTestL(testWinRect.iTl);		//This test needs a lot more work ###
sl@0
   465
	}
sl@0
   466
sl@0
   467
void CTScreenModeScaling::PositionTestL(TPoint aPostion)
sl@0
   468
	{
sl@0
   469
	iTestWin->SetExt(aPostion,iTestWinSize);
sl@0
   470
	iTestWin->SetVisible(ETrue);
sl@0
   471
	iTestWin->Invalidate();
sl@0
   472
	TheClient->Flush();
sl@0
   473
	TheClient->WaitForRedrawsToFinish();
sl@0
   474
	TestTopClientWindowPositionAPIs(aPostion,iTestWin->BaseWin());
sl@0
   475
	CopyAndCompareL();
sl@0
   476
	}
sl@0
   477
sl@0
   478
void CTScreenModeScaling::BackedUpChildWindowTestL(TPoint aPostion)
sl@0
   479
	{
sl@0
   480
	iTestWin->SetVisible(ETrue);
sl@0
   481
	TPoint backedUpWinPt=TPoint(iTestWinSize.iWidth/3,iTestWinSize.iHeight/4);
sl@0
   482
	iBackedUpWin->SetExtL(backedUpWinPt,TSize(iTestWinSize.iWidth/6,iTestWinSize.iHeight/6));
sl@0
   483
	iBackedUpWin->SetVisible(ETrue);
sl@0
   484
	TestChildWindowPositionAPIs(backedUpWinPt,aPostion,iBackedUpWin->BaseWin(),iTestWin->BaseWin());
sl@0
   485
	aPostion+=TPoint(10,10);
sl@0
   486
	iTestWin->SetPos(aPostion);
sl@0
   487
	TestTopClientWindowPositionAPIs(aPostion,iTestWin->BaseWin());
sl@0
   488
	TestChildWindowPositionAPIs(backedUpWinPt,aPostion,iBackedUpWin->BaseWin(),iTestWin->BaseWin());
sl@0
   489
	iTestWin->Invalidate();
sl@0
   490
	TheClient->Flush();
sl@0
   491
	TheClient->WaitForRedrawsToFinish();
sl@0
   492
	TestTopClientWindowPositionAPIs(aPostion,iTestWin->BaseWin());
sl@0
   493
	TestChildWindowPositionAPIs(backedUpWinPt,aPostion,iBackedUpWin->BaseWin(),iTestWin->BaseWin());
sl@0
   494
	CopyAndCompareL();
sl@0
   495
	iBackedUpWin->SetVisible(EFalse);
sl@0
   496
	}
sl@0
   497
sl@0
   498
void CTScreenModeScaling::NextScreenModeTestL(TPoint aPos)
sl@0
   499
	{
sl@0
   500
	TInt numOfModes=TheClient->iScreenModes.Count();
sl@0
   501
	TInt defaultMode=TheClient->iScreenModes[0];
sl@0
   502
	TInt lastMode=TheClient->iScreenModes[numOfModes-1];
sl@0
   503
	TInt mode=(iCurrentMode<lastMode? iCurrentMode:defaultMode);
sl@0
   504
	// find current mode index
sl@0
   505
	TInt ii;
sl@0
   506
	TInt modeIdx=0;
sl@0
   507
	for (ii=0; ii<numOfModes; ++ii)
sl@0
   508
		{
sl@0
   509
		if (mode==TheClient->iScreenModes[ii])
sl@0
   510
			{
sl@0
   511
			modeIdx=ii;
sl@0
   512
			break;
sl@0
   513
			}
sl@0
   514
		}
sl@0
   515
	TPoint screenModeOrigin(0,0);
sl@0
   516
	TPixelsAndRotation pixelsAndRotation;
sl@0
   517
	while (screenModeOrigin==TPoint()||(pixelsAndRotation.iRotation!=CFbsBitGc::EGraphicsOrientationNormal))
sl@0
   518
		{
sl@0
   519
		mode=(mode==lastMode? defaultMode : TheClient->iScreenModes[++modeIdx]);
sl@0
   520
		if (mode==iCurrentMode)
sl@0
   521
			{
sl@0
   522
			return;
sl@0
   523
			}
sl@0
   524
		screenModeOrigin=TheClient->iScreen->GetScreenModeOrigin(mode);
sl@0
   525
		TheClient->iScreen->GetScreenModeSizeAndRotation(mode,pixelsAndRotation);
sl@0
   526
		}
sl@0
   527
	iTestWin->SetExt(aPos,iTestWinSize);
sl@0
   528
	iTestWin->SetVisible(ETrue);
sl@0
   529
	TheClient->Flush();
sl@0
   530
	CBasicWin* basicWin=new(ELeave) CBasicWin;
sl@0
   531
	CleanupStack::PushL(basicWin);
sl@0
   532
	basicWin->ConstructExtLD(*iTestWin,TPoint(),TSize(iTestWinSize.iWidth/5,iTestWinSize.iHeight/5));
sl@0
   533
	User::LeaveIfError(basicWin->BaseWin()->SetRequiredDisplayMode(EColor256));
sl@0
   534
	basicWin->AssignGC(*TheClient->iGc);
sl@0
   535
	basicWin->BaseWin()->SetShadowDisabled(ETrue);
sl@0
   536
	basicWin->BaseWin()->SetShadowHeight(0);
sl@0
   537
	basicWin->Activate();
sl@0
   538
	TPoint pos(iTestWinSize.iWidth/3,iTestWinSize.iWidth/4);
sl@0
   539
	basicWin->SetPos(pos);
sl@0
   540
	TheClient->Flush();
sl@0
   541
	TheClient->WaitForRedrawsToFinish();
sl@0
   542
	TestChildWindowPositionAPIs(pos,aPos,basicWin->BaseWin(),iTestWin->BaseWin());
sl@0
   543
	iCurrentScreenModeScale=TheClient->iScreen->GetScreenModeScale(mode);
sl@0
   544
	iCurrentScreenModeOrigin=TheClient->iScreen->GetScreenModeOrigin(mode);
sl@0
   545
	Copy2ndHalfOfScreen=(iCurrentScreenModeOrigin.iX>FullScreenModeSize.iWidth/2? 1 : 0);
sl@0
   546
	TheClient->iScreen->SetAppScreenMode(mode);
sl@0
   547
	TheClient->iScreen->SetScreenMode(mode);
sl@0
   548
	iTestWin->SetVisible(ETrue);
sl@0
   549
	CopyAndCompareL();
sl@0
   550
	TheClient->iScreen->SetAppScreenMode(defaultMode);
sl@0
   551
	TheClient->iScreen->SetScreenMode(defaultMode);
sl@0
   552
	CleanupStack::PopAndDestroy(basicWin);
sl@0
   553
	}
sl@0
   554
sl@0
   555
void CTScreenModeScaling::GetInvalidRegionTestL(TPoint aPos)
sl@0
   556
	{
sl@0
   557
	iTestWin->SetExt(aPos,iTestWinSize);
sl@0
   558
	iTestWin->SetVisible(ETrue);
sl@0
   559
	iTestChildWin->SetExt(TPoint(iTestWinSize.iWidth>>2,iTestWinSize.iHeight>>2),TSize(iTestWinSize.iWidth>>1,iTestWinSize.iHeight>>1));
sl@0
   560
	iTestChildWin->SetVisible(ETrue);
sl@0
   561
	TheClient->Flush(); // ensure testchildwin is on-screen
sl@0
   562
sl@0
   563
	CArrayFixFlat<TRect> *rectList=new(ELeave) CArrayFixFlat<TRect>(3);
sl@0
   564
	CleanupStack::PushL(rectList);
sl@0
   565
	rectList->AppendL(TRect(1,1,5,2));
sl@0
   566
	rectList->AppendL(TRect(iTest->StdTestWindowSize().iWidth>>1,iTest->StdTestWindowSize().iHeight>>1,iTest->StdTestWindowSize().iWidth,iTest->StdTestWindowSize().iHeight));
sl@0
   567
	rectList->AppendL(TRect(2,0,4,5));
sl@0
   568
	
sl@0
   569
	// set iTestWin to a 'clean state' before invalidating rects in the window
sl@0
   570
	iTestWin->DrawNow();
sl@0
   571
	TheClient->Flush();
sl@0
   572
sl@0
   573
	// invalidate the various rectangles in iTestWin & then initiate a redraw of the window
sl@0
   574
	RRegion invalidRegion;
sl@0
   575
	RRegion region;
sl@0
   576
	for (TInt index=0;index<rectList->Count();index++)
sl@0
   577
		{
sl@0
   578
		const TRect& myRect = (*rectList)[index];
sl@0
   579
		iTestWin->Invalidate(myRect);
sl@0
   580
		region.AddRect(myRect);
sl@0
   581
		}
sl@0
   582
	CleanupStack::PopAndDestroy(rectList);
sl@0
   583
	CleanupClosePushL(invalidRegion);
sl@0
   584
	CleanupClosePushL(region);
sl@0
   585
	iTestWin->Win()->GetInvalidRegion(invalidRegion);
sl@0
   586
	CompareRegionsL(region, invalidRegion);
sl@0
   587
	CleanupStack::PopAndDestroy(2,&invalidRegion);
sl@0
   588
	iTestChildWin->SetVisible(EFalse);
sl@0
   589
sl@0
   590
	// ensure the test child win is removed
sl@0
   591
	TheClient->Flush();
sl@0
   592
	TheClient->WaitForRedrawsToFinish();
sl@0
   593
sl@0
   594
	TRect rect1(iTestWinSize);
sl@0
   595
	TestGetInvalidRegionL(rect1);
sl@0
   596
	TInt width=iTestWinSize.iWidth;
sl@0
   597
	TInt height=iTestWinSize.iHeight;
sl@0
   598
	TRect rect2(TPoint(width/6,height/6),TSize(width/3,height/3));
sl@0
   599
	TestGetInvalidRegionL(rect2);
sl@0
   600
	
sl@0
   601
	// invalidate the entire test window
sl@0
   602
	iTestWin->Invalidate();
sl@0
   603
	TheClient->Flush();
sl@0
   604
sl@0
   605
	iTestWin->SetPos(TPoint(15,15));
sl@0
   606
	iTestWin->SetPos(TPoint());
sl@0
   607
	iTestWin->SetPos(TPoint(-15,-15));
sl@0
   608
	iTestWin->SetPos(aPos);	
sl@0
   609
	RRegion invalid;
sl@0
   610
	RRegion testRegion(rect1);
sl@0
   611
	CleanupClosePushL(invalid);
sl@0
   612
	CleanupClosePushL(testRegion);
sl@0
   613
	iTestWin->Win()->GetInvalidRegion(invalid);
sl@0
   614
	TBool retVal = !invalid.CheckError();
sl@0
   615
	TEST(retVal);
sl@0
   616
	if (!retVal)
sl@0
   617
		INFO_PRINTF3(_L("RRegion.CheckError() return value  - Expected: %d, Actual: %d"), ETrue, retVal);		
sl@0
   618
	TEST(invalid.BoundingRect().iBr.iX<=iTestWinSize.iWidth);
sl@0
   619
	if (invalid.BoundingRect().iBr.iX>iTestWinSize.iWidth)
sl@0
   620
		INFO_PRINTF3(_L("invalid.BoundingRect().iBr.iX<=iTestWinSize.iWidth  - Expected: %d, Actual: %d"), invalid.BoundingRect().iBr.iX, iTestWinSize.iWidth);		
sl@0
   621
	CompareRegionsL(testRegion,invalid);
sl@0
   622
	CleanupStack::PopAndDestroy(2,&invalid);
sl@0
   623
sl@0
   624
	// redraw the test window & confirm
sl@0
   625
	iTestWin->DrawNow();
sl@0
   626
	TheClient->Flush();
sl@0
   627
	CopyAndCompareL();
sl@0
   628
	}
sl@0
   629
sl@0
   630
/**
sl@0
   631
@SYMTestCaseID		GRAPHICS-WSERV-0094
sl@0
   632
sl@0
   633
@SYMDEF             DEF081259
sl@0
   634
sl@0
   635
@SYMTestCaseDesc    SpriteTestL
sl@0
   636
					REQUIREMENT: PREQ673 (Screen Scaling)
sl@0
   637
					API: RWsSprite::SetPosition()
sl@0
   638
sl@0
   639
@SYMTestPriority    High
sl@0
   640
sl@0
   641
@SYMTestStatus      Implemented
sl@0
   642
sl@0
   643
@SYMTestActions     In the same way as in window tests it shifts the screen modes.
sl@0
   644
					In each screen modes it creates a sprite window and then it moves slightly
sl@0
   645
					either side or bottom of the sprite, then it compares both the regions
sl@0
   646
					to check whether content are same.
sl@0
   647
sl@0
   648
@SYMTestExpectedResults The content of both halves of the screen should match.
sl@0
   649
*/		
sl@0
   650
void CTScreenModeScaling::SpriteTestL()
sl@0
   651
	{
sl@0
   652
	CTClient* client=new(ELeave) CTClient();
sl@0
   653
	CleanupStack::PushL(client);
sl@0
   654
	client->SetScreenNumber(iTest->iScreenNumber);
sl@0
   655
	client->ConstructL();
sl@0
   656
	client->iGroup=new(ELeave) TestWindowGroup(client);
sl@0
   657
	client->iGroup->ConstructL();
sl@0
   658
	client->iGroup->WinTreeNode()->SetOrdinalPosition(1);
sl@0
   659
	RBlankWindow color256(client->iWs);
sl@0
   660
	User::LeaveIfError(color256.Construct(*TheClient->iGroup->GroupWin(),ENullWsHandle));
sl@0
   661
	CleanupClosePushL(color256);
sl@0
   662
	color256.SetRequiredDisplayMode(EColor256);
sl@0
   663
	color256.Activate();
sl@0
   664
	TInt numOfModes=TheClient->iScreenModes.Count();
sl@0
   665
	TInt flushState=TheClient->iWs.SetAutoFlush(ETrue);
sl@0
   666
	TInt ii;
sl@0
   667
	for (ii=0; ii<numOfModes; ++ii)
sl@0
   668
		{
sl@0
   669
		iCurrentMode=TheClient->iScreenModes[ii];
sl@0
   670
		TPixelsAndRotation pixelsAndRotation;
sl@0
   671
		iCurrentScreenModeOrigin=TheClient->iScreen->GetScreenModeOrigin(iCurrentMode);
sl@0
   672
		iCurrentScreenModeScale=TheClient->iScreen->GetScreenModeScale(iCurrentMode);
sl@0
   673
		TheClient->iScreen->GetScreenModeSizeAndRotation(iCurrentMode,pixelsAndRotation);
sl@0
   674
		DoSpriteTestsL();
sl@0
   675
		client->iScreen->SetAppScreenMode(iCurrentMode);
sl@0
   676
		client->Flush();
sl@0
   677
		}
sl@0
   678
	iCurrentMode=TheClient->iScreenModes[numOfModes-1];
sl@0
   679
	TheClient->iScreen->SetAppScreenMode(iCurrentMode);
sl@0
   680
	TheClient->iScreen->SetScreenMode(iCurrentMode);
sl@0
   681
	TSizeMode storeModeData=TheClient->iScreen->GetCurrentScreenModeAttributes();
sl@0
   682
	TSizeMode testMode=storeModeData;
sl@0
   683
	for (TInt xScale=1;xScale<4;xScale++)
sl@0
   684
		{
sl@0
   685
		for (TInt yScale=1;yScale<4;yScale++)
sl@0
   686
			{
sl@0
   687
			testMode.iScreenScale=TSize(xScale,yScale);
sl@0
   688
			TestDifferentOriginAndScaleForSpritesL(testMode,TPoint(20,20));
sl@0
   689
			TestDifferentOriginAndScaleForSpritesL(testMode,TPoint(20,30));
sl@0
   690
			TestDifferentOriginAndScaleForSpritesL(testMode,TPoint(30,20));
sl@0
   691
			TestDifferentOriginAndScaleForSpritesL(testMode,TPoint(FullScreenModeSize.iWidth/2+10,60));
sl@0
   692
			}
sl@0
   693
		}
sl@0
   694
	TheClient->iScreen->SetScreenMode(iCurrentMode);
sl@0
   695
	TheClient->iScreen->SetCurrentScreenModeAttributes(storeModeData);
sl@0
   696
	TInt defaultMode=TheClient->iScreenModes[0];
sl@0
   697
	TheClient->iScreen->SetAppScreenMode(defaultMode);
sl@0
   698
	TheClient->iScreen->SetScreenMode(defaultMode);
sl@0
   699
	CleanupStack::PopAndDestroy(2,client);
sl@0
   700
	TheClient->iWs.SetAutoFlush(flushState);
sl@0
   701
	}
sl@0
   702
sl@0
   703
void CTScreenModeScaling::TestDifferentOriginAndScaleForSpritesL(TSizeMode &aMode, TPoint aOrigin)
sl@0
   704
	{
sl@0
   705
	TheClient->iScreen->SetScreenMode(iCurrentMode);
sl@0
   706
	aMode.iOrigin=aOrigin;
sl@0
   707
	TheClient->iScreen->SetCurrentScreenModeAttributes(aMode);
sl@0
   708
	iCurrentScreenModeOrigin=TheClient->iScreen->GetScreenModeOrigin(iCurrentMode);
sl@0
   709
	iCurrentScreenModeScale=TheClient->iScreen->GetScreenModeScale(iCurrentMode);
sl@0
   710
	DoSpriteTestsL();
sl@0
   711
	}
sl@0
   712
sl@0
   713
void CTScreenModeScaling::DoSpriteTestsL()
sl@0
   714
	{
sl@0
   715
	TheClient->iScreen->SetAppScreenMode(iCurrentMode);
sl@0
   716
	TheClient->iScreen->SetScreenMode(iCurrentMode);
sl@0
   717
	TPixelsAndRotation pixelsAndRotation;
sl@0
   718
	TheClient->iScreen->GetScreenModeSizeAndRotation(iCurrentMode,pixelsAndRotation);
sl@0
   719
	RWsSprite sprite;
sl@0
   720
	TSize spriteSize=iSpriteBitmap.SizeInPixels();
sl@0
   721
	if (spriteSize.iWidth*iCurrentScreenModeScale.iWidth>FullScreenModeSize.iWidth/2)
sl@0
   722
		spriteSize.iWidth=(FullScreenModeSize.iWidth/2-20)/iCurrentScreenModeScale.iWidth;
sl@0
   723
	SetUpSpriteLC(sprite,TheClient->iWs,*iBlankWin->BaseWin());
sl@0
   724
	sprite.SetPosition(TPoint());
sl@0
   725
	CTestSpriteWin* spriteWin=new(ELeave) CTestSpriteWin(iSpriteBitmap);
sl@0
   726
	CleanupStack::PushL(spriteWin);
sl@0
   727
	spriteWin->ConstructExtLD(*TheClient->iGroup,PhysicalToLogical(TPoint()-iCurrentScreenModeOrigin,iCurrentScreenModeScale),spriteSize);
sl@0
   728
	User::LeaveIfError(spriteWin->BaseWin()->SetRequiredDisplayMode(EColor256));
sl@0
   729
	spriteWin->AssignGC(*TheClient->iGc);
sl@0
   730
	spriteWin->SetVisible(ETrue);
sl@0
   731
	spriteWin->Activate();
sl@0
   732
	spriteWin->UpdateWin(TPoint());
sl@0
   733
	spriteWin->BaseWin()->SetShadowDisabled(ETrue);
sl@0
   734
	spriteWin->BaseWin()->SetShadowHeight(0);
sl@0
   735
	TheClient->Flush();
sl@0
   736
	TheClient->WaitForRedrawsToFinish();
sl@0
   737
	TPoint spritePosition;
sl@0
   738
	if (iCurrentScreenModeOrigin.iX<=spriteSize.iWidth || iCurrentScreenModeOrigin.iY<=spriteSize.iHeight)
sl@0
   739
		{
sl@0
   740
		if (pixelsAndRotation.iRotation==CFbsBitGc::EGraphicsOrientationNormal || pixelsAndRotation.iRotation==CFbsBitGc::EGraphicsOrientationRotated180)
sl@0
   741
			spritePosition=TPoint(spriteSize.iWidth+1,0);
sl@0
   742
		else
sl@0
   743
			spritePosition=TPoint(0,spriteSize.iHeight+1);
sl@0
   744
		}
sl@0
   745
	sprite.SetPosition(spritePosition);	
sl@0
   746
	const TInt KAnimationGrace = 35000; //defined in server.cpp, but can be changed in wsini.ini
sl@0
   747
	User::After(KAnimationGrace);
sl@0
   748
	TBool retVal = TheClient->iScreen->RectCompare(TRect(PhysicalToLogical(TPoint()-iCurrentScreenModeOrigin,iCurrentScreenModeScale),spriteSize),TRect(spritePosition,spriteSize),CWsScreenDevice::EIncludeSprite);
sl@0
   749
	TEST(retVal);
sl@0
   750
	if (!retVal)
sl@0
   751
		INFO_PRINTF3(_L("TheClient->iScreen->RectCompare(rect1,rect2) return value  - Expected: %d, Actual: %d"), ETrue, retVal);		
sl@0
   752
sl@0
   753
	sprite.SetPosition(TPoint());	
sl@0
   754
	CleanupStack::PopAndDestroy(spriteWin);
sl@0
   755
	CleanupStack::PopAndDestroy(&sprite);
sl@0
   756
	}
sl@0
   757
sl@0
   758
/**
sl@0
   759
@SYMTestCaseID		GRAPHICS-WSERV-0095
sl@0
   760
sl@0
   761
@SYMDEF             DEF081259
sl@0
   762
sl@0
   763
@SYMTestCaseDesc    Rotation Tests
sl@0
   764
					REQUIREMENT: PREQ673 (Screen Scaling)
sl@0
   765
					API: RWindowBase::InquireOffset(), RWindowBase::AbsPosition(),RWindowBase::Position()
sl@0
   766
sl@0
   767
@SYMTestPriority    High
sl@0
   768
sl@0
   769
@SYMTestStatus      Implemented
sl@0
   770
sl@0
   771
@SYMTestActions     For each of the screen mode with all its rotation it checks whether the window
sl@0
   772
					is correctly placed in particular screen mode. Then it creates a child window
sl@0
   773
					and checks whether it s correctly placed.
sl@0
   774
sl@0
   775
@SYMTestExpectedResults Checks the windows are positioned correctly according to the origin,scale and rotation 
sl@0
   776
					of the new screen mode.
sl@0
   777
*/		
sl@0
   778
void CTScreenModeScaling::RotationTestsL()
sl@0
   779
	{
sl@0
   780
	CTClient* client=new(ELeave) CTClient();
sl@0
   781
	CleanupStack::PushL(client);
sl@0
   782
	client->SetScreenNumber(iTest->iScreenNumber);
sl@0
   783
	client->ConstructL();
sl@0
   784
	client->iGroup=new(ELeave) TestWindowGroup(client);
sl@0
   785
	client->iGroup->ConstructL();
sl@0
   786
	client->iGroup->WinTreeNode()->SetOrdinalPosition(1);
sl@0
   787
	RBlankWindow color256(client->iWs);
sl@0
   788
	User::LeaveIfError(color256.Construct(*TheClient->iGroup->GroupWin(),ENullWsHandle));
sl@0
   789
	CleanupClosePushL(color256);
sl@0
   790
	color256.SetRequiredDisplayMode(EColor256);
sl@0
   791
	color256.Activate();
sl@0
   792
	TInt oldCurrentMode=0;
sl@0
   793
	TInt ii;
sl@0
   794
	//TInt screenMode=TheClient->iScreen->CurrentScreenMode();
sl@0
   795
	for (ii=0;ii<TheClient->iScreenModes.Count();)
sl@0
   796
		{
sl@0
   797
		iCurrentMode=TheClient->iScreenModes[ii];
sl@0
   798
		if (iCurrentMode!=oldCurrentMode)
sl@0
   799
			{
sl@0
   800
			client->iScreen->SetAppScreenMode(iCurrentMode);
sl@0
   801
			TheClient->iScreen->SetScreenMode(iCurrentMode);
sl@0
   802
			TheClient->iScreen->SetAppScreenMode(iCurrentMode);
sl@0
   803
			}
sl@0
   804
		TPixelsAndRotation pixelsAndRotation;
sl@0
   805
		TheClient->iScreen->GetDefaultScreenSizeAndRotation(pixelsAndRotation);
sl@0
   806
		oldCurrentMode=iCurrentMode;
sl@0
   807
		CArrayFixFlat<TInt>* rotations=new(ELeave) CArrayFixFlat<TInt>(1);
sl@0
   808
		CleanupStack::PushL(rotations);
sl@0
   809
		User::LeaveIfError(TheClient->iScreen->GetRotationsList(iCurrentMode,rotations));
sl@0
   810
		TInt count=rotations->Count();
sl@0
   811
		TInt jj=0;
sl@0
   812
		if (count>1)
sl@0
   813
			{
sl@0
   814
			for (jj=0;jj<count;)
sl@0
   815
				{
sl@0
   816
				if ((*rotations)[jj++]==pixelsAndRotation.iRotation)
sl@0
   817
					{
sl@0
   818
					break;
sl@0
   819
					}
sl@0
   820
				}
sl@0
   821
			if (jj==count)
sl@0
   822
				{
sl@0
   823
				jj=0;
sl@0
   824
				}
sl@0
   825
			}
sl@0
   826
		if (jj==0)
sl@0
   827
			{
sl@0
   828
			ii++;
sl@0
   829
			}
sl@0
   830
		TInt currentRotation=(*rotations)[jj];
sl@0
   831
		TheClient->iScreen->SetCurrentRotations(oldCurrentMode,REINTERPRET_CAST(CFbsBitGc::TGraphicsOrientation&,currentRotation));
sl@0
   832
		CleanupStack::PopAndDestroy(rotations);
sl@0
   833
		iCurrentScreenModeOrigin=TheClient->iScreen->GetScreenModeOrigin(oldCurrentMode);
sl@0
   834
		iCurrentScreenModeScale=TheClient->iScreen->GetScreenModeScale(oldCurrentMode);
sl@0
   835
		TRect testWinRect(PhysicalToLogical(TPoint(),iCurrentScreenModeScale),
sl@0
   836
						  PhysicalToLogical(TPoint((Copy2ndHalfOfScreen ? FullScreenModeSize.iWidth : FullScreenModeSize.iWidth/2),FullScreenModeSize.iHeight)-iCurrentScreenModeOrigin,iCurrentScreenModeScale) 
sl@0
   837
						 );
sl@0
   838
		testWinRect.Shrink(10,10);
sl@0
   839
		iTestWin->SetExtL(testWinRect.iTl,testWinRect.Size());
sl@0
   840
		iTestWin->Invalidate();
sl@0
   841
		iTestWin->SetVisible(ETrue);
sl@0
   842
		TheClient->Flush();
sl@0
   843
		TheClient->WaitForRedrawsToFinish();
sl@0
   844
		TestTopClientWindowPositionAPIs(testWinRect.iTl,iTestWin->BaseWin());
sl@0
   845
		TPoint backedUpWinPt=TPoint(testWinRect.Width()/3,testWinRect.Height()/4);
sl@0
   846
		iBackedUpWin->SetVisible(ETrue);
sl@0
   847
		iBackedUpWin->SetExtL(backedUpWinPt,TSize(testWinRect.Width()/6,testWinRect.Height()/6));
sl@0
   848
		TestChildWindowPositionAPIs(backedUpWinPt,testWinRect.iTl,iBackedUpWin->BaseWin(),iTestWin->BaseWin());
sl@0
   849
		iTestWin->SetVisible(EFalse);
sl@0
   850
		iBackedUpWin->SetVisible(EFalse);
sl@0
   851
		}
sl@0
   852
	CleanupStack::PopAndDestroy(2,client);
sl@0
   853
	}
sl@0
   854
sl@0
   855
void CTScreenModeScaling::DrawTransparentWindows()
sl@0
   856
	{
sl@0
   857
	//.. First Draw on Backgroundbitmap
sl@0
   858
	iBackgroundBitmap->Gc().SetBrushColor(TRgb(255,0,255));
sl@0
   859
	iBackgroundBitmap->Gc().SetBrushStyle(CGraphicsContext::ESolidBrush);
sl@0
   860
	iBackgroundBitmap->Gc().SetPenStyle(CGraphicsContext::ENullPen);
sl@0
   861
	iBackgroundBitmap->Gc().DrawRect(iWinSize);
sl@0
   862
	
sl@0
   863
	//.. Invalidate the background bitmap and do bitBlt to iCheckBitmap also
sl@0
   864
	iBackgroundWin->BaseWin()->SetVisible(ETrue);
sl@0
   865
	iBackgroundWin->DrawNow();
sl@0
   866
sl@0
   867
	//.. Copy to checkbitmap
sl@0
   868
	iCheckBitmap->Gc().SetFaded(EFalse);
sl@0
   869
	iCheckBitmap->Gc().BitBlt(TPoint(),&iBackgroundBitmap->Bitmap());
sl@0
   870
sl@0
   871
	//.. Set the grade of transperency
sl@0
   872
	iTransparencyBitmap->Gc().SetBrushColor(TRgb::Gray256(128));
sl@0
   873
	iTransparencyBitmap->Gc().SetBrushStyle(CGraphicsContext::ESolidBrush);
sl@0
   874
	iTransparencyBitmap->Gc().SetPenStyle(CGraphicsContext::ENullPen);
sl@0
   875
	iTransparencyBitmap->Gc().DrawRect(iWinSize);
sl@0
   876
sl@0
   877
	//.. Then draw to the fore ground bitmap and invalidate the second window
sl@0
   878
	iForegroundBitmap->Gc().Reset();
sl@0
   879
	iForegroundBitmap->Gc().SetPenStyle(CGraphicsContext::ESolidPen);
sl@0
   880
	iForegroundBitmap->Gc().SetPenSize(TSize(1,1));
sl@0
   881
	iForegroundBitmap->Gc().SetPenColor(TRgb(0,0,0));
sl@0
   882
	iForegroundBitmap->Gc().DrawLine(TPoint(0,0),TPoint(iWinSize.iWidth,iWinSize.iHeight));
sl@0
   883
	iForegroundBitmap->Gc().DrawLine(TPoint(iWinSize.iWidth,0),TPoint(0,iWinSize.iHeight));
sl@0
   884
	iTransWin->BaseWin()->SetVisible(ETrue);
sl@0
   885
	iTransWin->Invalidate();
sl@0
   886
	iTransWin->DrawNow();
sl@0
   887
sl@0
   888
	iCheckBitmap->Gc().AlphaBlendBitmaps(TPoint(0,0),&iForegroundBitmap->Bitmap(),&iCheckBitmap->Bitmap()
sl@0
   889
													,TRect(iWinSize),TPoint(0,0),&iTransparencyBitmap->Bitmap(),TPoint(0,0));
sl@0
   890
	iCheckWin->BaseWin()->SetVisible(ETrue);
sl@0
   891
	iCheckWin->BackedUpWin()->UpdateScreen();
sl@0
   892
	TheClient->Flush();
sl@0
   893
	TheClient->WaitForRedrawsToFinish();
sl@0
   894
	CheckRect(iTransWin,iCheckWin,TRect(iWinSize),_L("DrawTransparentWindows() CheckRect failed"));
sl@0
   895
	}
sl@0
   896
sl@0
   897
// !!! THE COMMENT BELOW IS DISABLED BECAUSE TransparentTests() METHOD IS NOT USED !!!
sl@0
   898
//**
sl@0
   899
//@SYMTestCaseID		GRAPHICS-WSERV-0096
sl@0
   900
//
sl@0
   901
//@SYMDEF             DEF081259
sl@0
   902
//
sl@0
   903
//@SYMTestCaseDesc    TransparentTests
sl@0
   904
//					REQUIREMENT: PREQ673 (Screen Scaling)
sl@0
   905
//					API: CWindowGc::AlphaBlendBitmaps()
sl@0
   906
//
sl@0
   907
//@SYMTestPriority    High
sl@0
   908
//
sl@0
   909
//@SYMTestStatus      Implemented
sl@0
   910
//
sl@0
   911
//@SYMTestActions     The main logic behind this test is to copy the content of the background window
sl@0
   912
//					bitmap to checkwindow bitmap and then use the foreground window bitmap and transparency bitmap
sl@0
   913
//					with the function AlphaBlendBitmaps() to get the content present on the combination of 
sl@0
   914
//					foreground(transparent) window and background window. Then compare both the regions of the 
sl@0
   915
//					window to check whether the content is same.
sl@0
   916
//
sl@0
   917
//@SYMTestExpectedResults The content of both halves of the screen should match.
sl@0
   918
//*/		
sl@0
   919
void CTScreenModeScaling::TransparentTestsL()
sl@0
   920
	{
sl@0
   921
	TInt flushState=TheClient->iWs.SetAutoFlush(ETrue);
sl@0
   922
	TInt defaultMode=TheClient->iScreenModes[0];
sl@0
   923
	TheClient->iScreen->SetAppScreenMode(defaultMode);
sl@0
   924
	TheClient->iScreen->SetScreenMode(defaultMode);
sl@0
   925
	CTClient* client=new(ELeave) CTClient();
sl@0
   926
	CleanupStack::PushL(client);
sl@0
   927
	client->SetScreenNumber(iTest->iScreenNumber);
sl@0
   928
	client->ConstructL();
sl@0
   929
	client->iGroup=new(ELeave) TestWindowGroup(client);
sl@0
   930
	client->iGroup->ConstructL();
sl@0
   931
	client->iGroup->WinTreeNode()->SetOrdinalPosition(1);
sl@0
   932
	RBlankWindow color256(client->iWs);
sl@0
   933
	User::LeaveIfError(color256.Construct(*TheClient->iGroup->GroupWin(),ENullWsHandle));
sl@0
   934
	CleanupClosePushL(color256);
sl@0
   935
	color256.SetRequiredDisplayMode(EColor256);
sl@0
   936
	color256.Activate();
sl@0
   937
	client->Flush();
sl@0
   938
	DrawTransparentWindows();
sl@0
   939
	iCurrentMode=TheClient->iScreenModes[TheClient->iScreenModes.Count()-1];
sl@0
   940
	TheClient->iScreen->SetAppScreenMode(iCurrentMode);
sl@0
   941
	TheClient->iScreen->SetScreenMode(iCurrentMode);
sl@0
   942
	TSizeMode storeModeData=TheClient->iScreen->GetCurrentScreenModeAttributes();
sl@0
   943
	TSizeMode testMode=storeModeData;
sl@0
   944
	for (TInt xScale=1;xScale<4;xScale++)
sl@0
   945
		{
sl@0
   946
		for (TInt yScale=1;yScale<4;yScale++)
sl@0
   947
			{
sl@0
   948
			testMode.iScreenScale=TSize(xScale,yScale);
sl@0
   949
			TestDifferentOriginAndScaleForTranspWin(testMode,TPoint(20,20));
sl@0
   950
			TestDifferentOriginAndScaleForTranspWin(testMode,TPoint(20,30));
sl@0
   951
			TestDifferentOriginAndScaleForTranspWin(testMode,TPoint(30,20));
sl@0
   952
			TestDifferentOriginAndScaleForTranspWin(testMode,TPoint(FullScreenModeSize.iWidth/2+1,60));
sl@0
   953
			}
sl@0
   954
		}
sl@0
   955
	TheClient->iScreen->SetScreenMode(iCurrentMode);
sl@0
   956
	TheClient->iScreen->SetCurrentScreenModeAttributes(storeModeData);
sl@0
   957
	client->iScreen->SetAppScreenMode(iCurrentMode);
sl@0
   958
	client->Flush();
sl@0
   959
	TheClient->iScreen->SetAppScreenMode(defaultMode);
sl@0
   960
	TheClient->iScreen->SetScreenMode(defaultMode);
sl@0
   961
	TheClient->iWs.SetAutoFlush(flushState);
sl@0
   962
	CleanupStack::PopAndDestroy(2,client);
sl@0
   963
	}
sl@0
   964
sl@0
   965
void CTScreenModeScaling::TestDifferentOriginAndScaleForTranspWin(TSizeMode &aMode,TPoint aOrigin)
sl@0
   966
	{
sl@0
   967
	TheClient->iScreen->SetScreenMode(iCurrentMode);
sl@0
   968
	aMode.iOrigin=aOrigin;
sl@0
   969
	TheClient->iScreen->SetCurrentScreenModeAttributes(aMode);
sl@0
   970
	TheClient->iScreen->SetAppScreenMode(iCurrentMode);
sl@0
   971
	TheClient->iScreen->SetScreenMode(iCurrentMode);
sl@0
   972
	TRAPD(ret,DrawTransparentWindows());
sl@0
   973
	TEST(ret==KErrNone);
sl@0
   974
	if (ret!=KErrNone)
sl@0
   975
		INFO_PRINTF3(_L("DrawTransparentWindows() return value  - Expected: %d, Actual: %d"), KErrNone, ret);		
sl@0
   976
sl@0
   977
	}
sl@0
   978
sl@0
   979
/**
sl@0
   980
@SYMTestCaseID		GRAPHICS-WSERV-0097
sl@0
   981
sl@0
   982
@SYMDEF             DEF081259
sl@0
   983
sl@0
   984
@SYMTestCaseDesc    AppScreenModeTest
sl@0
   985
					REQUIREMENT: PREQ673 (Screen Scaling)
sl@0
   986
					API: CWsScreenDevice::SetAppScreenMode()
sl@0
   987
sl@0
   988
@SYMTestPriority    High
sl@0
   989
sl@0
   990
@SYMTestStatus      Implemented
sl@0
   991
sl@0
   992
@SYMTestActions     Enable the visibility of Test window, Call SetAppScreenMode() API with different
sl@0
   993
					screen mode. Check the variable which is set in its draw function. 
sl@0
   994
sl@0
   995
@SYMTestExpectedResults The variable should not be set when the application screen mode is different 
sl@0
   996
					then current screen mode. 
sl@0
   997
*/
sl@0
   998
void CTScreenModeScaling::AppScreenModeTestL()
sl@0
   999
	{
sl@0
  1000
	TheClient->iScreen->SetAppScreenMode(0);
sl@0
  1001
	TheClient->iScreen->SetScreenMode(0);
sl@0
  1002
	iTestWin->iDrawn=EFalse;
sl@0
  1003
	iTestWin->SetExtL(TPoint(),TSize(FullScreenModeSize.iWidth/2,FullScreenModeSize.iHeight));
sl@0
  1004
	iTestWin->SetVisible(ETrue);
sl@0
  1005
	TheClient->Flush();
sl@0
  1006
	TheClient->WaitForRedrawsToFinish();
sl@0
  1007
	TEST(iTestWin->iDrawn);
sl@0
  1008
	if (!iTestWin->iDrawn)
sl@0
  1009
		INFO_PRINTF3(_L("iTestWin->iDrawn  - Expected: %d, Actual: %d"), ETrue, iTestWin->iDrawn);
sl@0
  1010
sl@0
  1011
	iTestWin->iDrawn=EFalse;
sl@0
  1012
	TheClient->iScreen->SetAppScreenMode(2);
sl@0
  1013
	TheClient->iScreen->SetScreenMode(0);
sl@0
  1014
	iTestWin->Invalidate();
sl@0
  1015
	TheClient->Flush();
sl@0
  1016
	TEST(!iTestWin->iDrawn);
sl@0
  1017
	if (iTestWin->iDrawn)
sl@0
  1018
		INFO_PRINTF3(_L("iTestWin->iDrawn  - Expected: %d, Actual: %d"), EFalse, iTestWin->iDrawn);
sl@0
  1019
sl@0
  1020
	TheClient->iScreen->SetAppScreenMode(0);
sl@0
  1021
	TheClient->Flush();
sl@0
  1022
	TheClient->WaitForRedrawsToFinish();
sl@0
  1023
	TEST(iTestWin->iDrawn);
sl@0
  1024
	if (!iTestWin->iDrawn)
sl@0
  1025
		INFO_PRINTF3(_L("iTestWin->iDrawn  - Expected: %d, Actual: %d"), ETrue, iTestWin->iDrawn);
sl@0
  1026
sl@0
  1027
	iTestWin->iDrawn=EFalse;
sl@0
  1028
	TheClient->iScreen->SetScreenMode(1);
sl@0
  1029
	iTestWin->Invalidate();
sl@0
  1030
	TheClient->Flush();
sl@0
  1031
	TEST(!iTestWin->iDrawn);
sl@0
  1032
	if (iTestWin->iDrawn)
sl@0
  1033
		INFO_PRINTF3(_L("iTestWin->iDrawn  - Expected: %d, Actual: %d"), EFalse, iTestWin->iDrawn);
sl@0
  1034
sl@0
  1035
	iTestWin->SetVisible(EFalse);
sl@0
  1036
	TheClient->iScreen->SetAppScreenMode(0);
sl@0
  1037
	TheClient->iScreen->SetScreenMode(0);
sl@0
  1038
	}
sl@0
  1039
sl@0
  1040
void CTScreenModeScaling::RunTestCaseL(TInt /*aCurTestCase*/)
sl@0
  1041
	{
sl@0
  1042
	_LIT(KWindowTests,"Window Tests");
sl@0
  1043
	_LIT(KSpriteTest,"Sprite Test");
sl@0
  1044
	_LIT(KRotationTests,"Rotation Tests");
sl@0
  1045
	_LIT(KTransparentTests,"Transparent Tests");
sl@0
  1046
	_LIT(KAppScreenModeTest,"AppScreenMode Test");
sl@0
  1047
	_LIT(KScalling,"Scaling not Supported");
sl@0
  1048
	_LIT(KModes,"Only one Screen Size Mode");
sl@0
  1049
	
sl@0
  1050
	((CTScreenModeScalingStep*)iStep)->SetTestStepID(KUnknownSYMTestCaseIDName);
sl@0
  1051
	switch(++iTest->iState)
sl@0
  1052
		{
sl@0
  1053
		case 1:
sl@0
  1054
			{
sl@0
  1055
			((CTScreenModeScalingStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0097"));
sl@0
  1056
			TInt numScrModes=TheClient->iScreen->NumScreenModes();
sl@0
  1057
			if (numScrModes<2 || !CheckScalingSupportedOrNot())
sl@0
  1058
				{
sl@0
  1059
				if (numScrModes<2)
sl@0
  1060
					LOG_MESSAGE(KModes);
sl@0
  1061
				else
sl@0
  1062
					LOG_MESSAGE(KScalling);
sl@0
  1063
				TestComplete();
sl@0
  1064
				return;
sl@0
  1065
				}
sl@0
  1066
			iTest->LogSubTest(KAppScreenModeTest);
sl@0
  1067
			AppScreenModeTestL();
sl@0
  1068
			}
sl@0
  1069
			break;
sl@0
  1070
		case 2:
sl@0
  1071
			((CTScreenModeScalingStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0093"));
sl@0
  1072
			iTest->LogSubTest(KWindowTests);
sl@0
  1073
			WindowTestsL();
sl@0
  1074
			break;
sl@0
  1075
		case 3:
sl@0
  1076
			((CTScreenModeScalingStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0094"));
sl@0
  1077
			iTest->LogSubTest(KSpriteTest);
sl@0
  1078
			SpriteTestL();
sl@0
  1079
			break;
sl@0
  1080
		case 4:
sl@0
  1081
			((CTScreenModeScalingStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0095"));
sl@0
  1082
			iTest->LogSubTest(KRotationTests);
sl@0
  1083
			RotationTestsL();
sl@0
  1084
			break;
sl@0
  1085
		case 5:
sl@0
  1086
			((CTScreenModeScalingStep*)iStep)->SetTestStepID(KNotATestSYMTestCaseIDName);
sl@0
  1087
			iTest->LogSubTest(KTransparentTests);
sl@0
  1088
			//TransparentTestsL();		//This tests currently fails sometimes for reasons not understood ####
sl@0
  1089
			break;
sl@0
  1090
		default:
sl@0
  1091
			{
sl@0
  1092
			TInt defaultMode=TheClient->iScreenModes[0];
sl@0
  1093
			TheClient->iScreen->SetAppScreenMode(defaultMode);
sl@0
  1094
			TheClient->iScreen->SetScreenMode(defaultMode);
sl@0
  1095
			}
sl@0
  1096
			((CTScreenModeScalingStep*)iStep)->SetTestStepID(KNotATestSYMTestCaseIDName);
sl@0
  1097
			((CTScreenModeScalingStep*)iStep)->CloseTMSGraphicsStep();
sl@0
  1098
			TestComplete();
sl@0
  1099
			return;
sl@0
  1100
		}
sl@0
  1101
	((CTScreenModeScalingStep*)iStep)->RecordTestResultL();
sl@0
  1102
	}
sl@0
  1103
sl@0
  1104
__WS_CONSTRUCT_STEP__(ScreenModeScaling)