os/graphics/windowing/windowserver/test/tauto/TSCREENMODEPOSITIONING.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 positioning CR
sl@0
    15
// GT 0164 Uikon: A3.26. IM 9.
sl@0
    16
// Test code for the positioning part of Change Request PHAR-5SJGAM
sl@0
    17
// ("Enable screen mode positioning and scaling").
sl@0
    18
// Note this feature is also in GT0199 as PREQ673"Screen Positioning".
sl@0
    19
// Tests screen position being configurable for a screen mode -
sl@0
    20
// eg it is now possible to set in wsini.ini the position on the
sl@0
    21
// physical screen where the origin of the screen mode's screen will appear.
sl@0
    22
// 
sl@0
    23
//
sl@0
    24
sl@0
    25
/**
sl@0
    26
 @file
sl@0
    27
 @test
sl@0
    28
 @internalComponent - Internal Symbian test code
sl@0
    29
*/
sl@0
    30
sl@0
    31
#include "TSCREENMODEPOSITIONING.H"
sl@0
    32
#include <graphics/displaycontrol.h>
sl@0
    33
sl@0
    34
//#define LOGGING on		//Uncomment this line to get extra logging useful when there is a tests that fails
sl@0
    35
sl@0
    36
LOCAL_D TSize FullScreenModeSize;
sl@0
    37
LOCAL_D TDisplayMode ScreenDisplayMode;
sl@0
    38
LOCAL_D TInt Copy2ndHalfOfScreen;
sl@0
    39
sl@0
    40
sl@0
    41
void CBasicWin::Draw()
sl@0
    42
	{
sl@0
    43
	iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
sl@0
    44
	iGc->SetPenStyle(CGraphicsContext::ENullPen);
sl@0
    45
	iGc->SetBrushColor(TRgb(255,0,0));
sl@0
    46
	TSize winSize=Size();
sl@0
    47
	iGc->DrawRect(TRect(winSize));
sl@0
    48
	iGc->SetBrushColor(TRgb(0,221,221));
sl@0
    49
	iGc->DrawEllipse(TRect(TPoint(winSize.iWidth/2,winSize.iHeight/2),winSize));
sl@0
    50
	iGc->DrawEllipse(TRect(TPoint(-winSize.iWidth/2,-winSize.iHeight/2),winSize));
sl@0
    51
	iDrawn=ETrue;
sl@0
    52
	}
sl@0
    53
sl@0
    54
void CSpriteWin::UpdateState(TInt aState)
sl@0
    55
	{
sl@0
    56
	SetState(aState);
sl@0
    57
	DrawNow();
sl@0
    58
	}
sl@0
    59
sl@0
    60
TPoint CheckSpritePos(233,60);
sl@0
    61
TPoint CheckSpritePos2(18,60);
sl@0
    62
sl@0
    63
void CSpriteWin::Draw()
sl@0
    64
	{
sl@0
    65
	switch(iState)
sl@0
    66
		{
sl@0
    67
		case 0:
sl@0
    68
			iGc->BitBlt(CheckSpritePos,&iSpriteBitmap);
sl@0
    69
			break;
sl@0
    70
		case 1:
sl@0
    71
			iGc->BitBlt(CheckSpritePos+TPoint(30,30),&iSpriteBitmap);
sl@0
    72
			iGc->BitBlt(CheckSpritePos,&iSpriteBitmap);
sl@0
    73
			break;
sl@0
    74
		case 2:
sl@0
    75
			iGc->BitBlt(CheckSpritePos2+TPoint(-10,40),&iSpriteBitmap);
sl@0
    76
			iGc->BitBlt(CheckSpritePos2+TPoint(-10,20),&iSpriteBitmap);
sl@0
    77
			break;
sl@0
    78
		case 3:
sl@0
    79
			iGc->BitBlt(TPoint(),&iSpriteBitmap);
sl@0
    80
			break;
sl@0
    81
		default:
sl@0
    82
			break;
sl@0
    83
		}
sl@0
    84
	}
sl@0
    85
sl@0
    86
CSpriteWin::~CSpriteWin()
sl@0
    87
	{
sl@0
    88
	}
sl@0
    89
sl@0
    90
void CBmpWin::Draw()
sl@0
    91
	{
sl@0
    92
	iGc->BitBlt(TPoint(),&iScreenBmp);
sl@0
    93
	}
sl@0
    94
sl@0
    95
CConnection2::~CConnection2()
sl@0
    96
	{
sl@0
    97
	delete iScreenBitmap;
sl@0
    98
	delete iBitmapWin;
sl@0
    99
	delete iSpriteWin;
sl@0
   100
	iGroup->GroupWin()->EnableReceiptOfFocus(EFalse);
sl@0
   101
	delete iGroup;
sl@0
   102
	delete iClient;
sl@0
   103
	}
sl@0
   104
sl@0
   105
void CConnection2::ConstructL(CTestBase *aTest,CFbsBitmap& aBitmap)
sl@0
   106
	{
sl@0
   107
	iClient=new(ELeave) CTClient;
sl@0
   108
	iClient->SetScreenNumber(aTest->ScreenNumber());
sl@0
   109
	iClient->ConstructL();
sl@0
   110
	iGroup=new(ELeave) CConnection2Group(iClient,this,aTest);
sl@0
   111
	iGroup->ConstructL();
sl@0
   112
	iGroup->GroupWin()->EnableScreenChangeEvents();
sl@0
   113
	iClient->Flush();
sl@0
   114
	iSpriteWin=new(ELeave) CSpriteWin(aBitmap);
sl@0
   115
	iSpriteWin->ConstructExtLD(*iGroup,TPoint(),TSize(433,240));
sl@0
   116
	User::LeaveIfError(iSpriteWin->BaseWin()->SetRequiredDisplayMode(EColor256));
sl@0
   117
	iSpriteWin->AssignGC(*iClient->iGc);
sl@0
   118
	iSpriteWin->Activate();
sl@0
   119
	iSpriteWin->SetVisible(EFalse);
sl@0
   120
	iSpriteWin->BaseWin()->SetShadowDisabled(ETrue);
sl@0
   121
	iSpriteWin->BaseWin()->SetShadowHeight(0);
sl@0
   122
	iScreenBitmap=new(ELeave) CFbsBitmap();
sl@0
   123
	User::LeaveIfError(iScreenBitmap->Create(TSize(FullScreenModeSize.iWidth/2,FullScreenModeSize.iHeight), ScreenDisplayMode));
sl@0
   124
	iBitmapWin=new(ELeave) CBmpWin(*iScreenBitmap);
sl@0
   125
	iBitmapWin->ConstructExtLD(*iGroup,TPoint(FullScreenModeSize.iWidth/2,0),iScreenBitmap->SizeInPixels());
sl@0
   126
	User::LeaveIfError(iBitmapWin->BaseWin()->SetRequiredDisplayMode(EColor256));
sl@0
   127
	iBitmapWin->AssignGC(*iClient->iGc);
sl@0
   128
	iBitmapWin->Activate();
sl@0
   129
	iBitmapWin->SetVisible(EFalse);
sl@0
   130
	iBitmapWin->BaseWin()->SetShadowDisabled(ETrue);
sl@0
   131
	iBitmapWin->BaseWin()->SetShadowHeight(0);
sl@0
   132
	}
sl@0
   133
sl@0
   134
void CConnection2::DrawBitmapWin()
sl@0
   135
	{
sl@0
   136
	TPoint pos=(Copy2ndHalfOfScreen? TPoint() : TPoint(FullScreenModeSize.iWidth/2,0));
sl@0
   137
	iBitmapWin->SetPos(pos);
sl@0
   138
	iBitmapWin->SetVisible(ETrue);
sl@0
   139
	iBitmapWin->DrawNow();
sl@0
   140
	iClient->Flush();
sl@0
   141
	}
sl@0
   142
sl@0
   143
CConnection2Group::CConnection2Group(CTClient *aClient, CConnection2 *aSecondConnection, CTestBase *aTest) : CTWindowGroup(aClient), iTest(aTest), iConnection2(aSecondConnection)
sl@0
   144
	{}
sl@0
   145
sl@0
   146
sl@0
   147
sl@0
   148
sl@0
   149
//CTScreenModePositioning
sl@0
   150
CTScreenModePositioning::CTScreenModePositioning(CTestStep* aStep) : CTWsGraphicsBase(aStep)
sl@0
   151
	{
sl@0
   152
	}
sl@0
   153
sl@0
   154
sl@0
   155
CTScreenModePositioning::~CTScreenModePositioning()
sl@0
   156
	{
sl@0
   157
	delete iTestWin;
sl@0
   158
	delete iConnection2;
sl@0
   159
	delete iBlankWin;
sl@0
   160
	delete iBackedUpWin;
sl@0
   161
	delete iTestChildWin;
sl@0
   162
	}
sl@0
   163
sl@0
   164
void CTScreenModePositioning::ConstructL()
sl@0
   165
	{
sl@0
   166
	User::LeaveIfError(iSpriteBitmap.Load(TEST_BITMAP_NAME,0));
sl@0
   167
	iScalingSupported=CheckScalingSupportedOrNot();
sl@0
   168
	TheClient->iScreen->SetScreenMode(TheClient->iScreenModes[0]);
sl@0
   169
	FullScreenModeSize=TheClient->iScreen->SizeInPixels();
sl@0
   170
	ScreenDisplayMode=TheClient->iScreen->DisplayMode();
sl@0
   171
	iConnection2=new(ELeave) CConnection2;
sl@0
   172
	iConnection2->ConstructL(iTest,iSpriteBitmap);
sl@0
   173
	iBlankWin=new(ELeave) CTBlankWindow();
sl@0
   174
	iBlankWin->ConstructL(*TheClient->iGroup);
sl@0
   175
	User::LeaveIfError(iBlankWin->BaseWin()->SetRequiredDisplayMode(EColor256));
sl@0
   176
	iBlankWin->SetExt(TPoint(),FullScreenModeSize);
sl@0
   177
	iBlankWin->SetVisible(EFalse);
sl@0
   178
	iBlankWin->Activate();
sl@0
   179
	iTestWin=new(ELeave) CBasicWin;
sl@0
   180
	iTestWin->ConstructExtLD(*TheClient->iGroup,TPoint(),FullScreenModeSize);
sl@0
   181
	User::LeaveIfError(iTestWin->BaseWin()->SetRequiredDisplayMode(EColor256));
sl@0
   182
	iTestWin->AssignGC(*TheClient->iGc);
sl@0
   183
	iTestWin->BaseWin()->SetShadowDisabled(ETrue);
sl@0
   184
	iTestWin->BaseWin()->SetShadowHeight(0);
sl@0
   185
	iTestWin->SetVisible(EFalse);
sl@0
   186
	iTestWin->Activate();
sl@0
   187
	iBackedUpWin=new(ELeave) CTBackedUpWin(EColor256);
sl@0
   188
	iBackedUpWin->ConstructExtLD(*iTestWin,TPoint(),FullScreenModeSize);
sl@0
   189
	iBackedUpWin->SetVisible(EFalse);
sl@0
   190
	iBackedUpWin->Activate();
sl@0
   191
	iTestChildWin=new(ELeave) CTBlankWindow();
sl@0
   192
	iTestChildWin->ConstructL(*iTestWin);
sl@0
   193
	User::LeaveIfError(iTestChildWin->BaseWin()->SetRequiredDisplayMode(EColor256));
sl@0
   194
	iTestChildWin->BaseWin()->SetShadowDisabled(ETrue);
sl@0
   195
	iTestChildWin->SetColor(KRgbGreen);
sl@0
   196
	iTestChildWin->BaseWin()->SetVisible(EFalse);
sl@0
   197
	iTestChildWin->Activate();
sl@0
   198
	//The Cursor appearing on screen will affect the result of RectCompare function. 
sl@0
   199
	//Set it to the position out of the screen
sl@0
   200
	TheClient->iWs.SetPointerCursorPosition(TPoint(-1,-1));
sl@0
   201
	}
sl@0
   202
sl@0
   203
void CTScreenModePositioning::ChangeScreenMode(CTClient* aClient,TPixelsAndRotation aPixelsAndRotation,TInt aMode)
sl@0
   204
	{
sl@0
   205
	ChangeScreenMode(aClient,aPixelsAndRotation,ESizeEnforcementNone,aMode);
sl@0
   206
	}
sl@0
   207
sl@0
   208
void CTScreenModePositioning::ChangeScreenMode(CTClient* aClient,TPixelsAndRotation aPixelsAndRotation,TScreenModeEnforcement aScreenModeEnforcement,TInt aMode)
sl@0
   209
	{
sl@0
   210
	aClient->iScreen->SetScreenSizeAndRotation(aPixelsAndRotation);
sl@0
   211
	aClient->iScreen->SetScreenModeEnforcement(aScreenModeEnforcement);
sl@0
   212
	aClient->iScreen->SetScreenMode(aMode);
sl@0
   213
	}
sl@0
   214
sl@0
   215
void CTScreenModePositioning::SetScreenMode(CTClient* aClient,TInt aMode,TScreenModeEnforcement aScreenModeEnforcement)
sl@0
   216
	{
sl@0
   217
	TPixelsAndRotation pixelsAndRotation;
sl@0
   218
	aClient->iScreen->SetScreenModeEnforcement(aScreenModeEnforcement);
sl@0
   219
	aClient->iScreen->SetScreenMode(aMode);
sl@0
   220
	aClient->iScreen->GetDefaultScreenSizeAndRotation(pixelsAndRotation);
sl@0
   221
	aClient->iScreen->SetScreenSizeAndRotation(pixelsAndRotation);
sl@0
   222
	aClient->Flush();
sl@0
   223
	}
sl@0
   224
sl@0
   225
void CTScreenModePositioning::SetUpSpriteLC(RWsSprite &aSprite, RWsSession &aSession, RWindowTreeNode &aWindow,TInt aFlags)
sl@0
   226
	{
sl@0
   227
	aSprite=RWsSprite(aSession);
sl@0
   228
	User::LeaveIfError(aSprite.Construct(aWindow,TPoint(),aFlags));
sl@0
   229
	CleanupClosePushL(aSprite);
sl@0
   230
	TSpriteMember member;
sl@0
   231
	iTest->SetUpMember(member);
sl@0
   232
	member.iBitmap=&iSpriteBitmap;
sl@0
   233
	User::LeaveIfError(aSprite.AppendMember(member));
sl@0
   234
	User::LeaveIfError(aSprite.Activate());
sl@0
   235
	}
sl@0
   236
sl@0
   237
/**
sl@0
   238
@SYMTestCaseID		GRAPHICS-WSERV-0098
sl@0
   239
sl@0
   240
@SYMDEF  			DEF081259
sl@0
   241
sl@0
   242
@SYMTestCaseDesc    Window Tests. Please see test cases GRAPHICS-WSERV-(0099-0103) which are a subset of this test case.
sl@0
   243
					REQUIREMENT: CR PHAR-5SJGAM, PREQ673
sl@0
   244
sl@0
   245
@SYMTestPriority    High
sl@0
   246
sl@0
   247
@SYMTestStatus      Implemented
sl@0
   248
sl@0
   249
@SYMTestActions     Tests on windows in different screen modes each with differing screen mode origin's defined in the
sl@0
   250
					wsini file. This test case only tests screen modes with 0 orientation.
sl@0
   251
					Goes through each screen mode defined in the wsini file and exercises test cases GRAPHICS-WSERV-(0099-0103) for each mode.
sl@0
   252
					For more details see test cases GRAPHICS-WSERV-(0099-0103) which are a subset of this test case.
sl@0
   253
sl@0
   254
@SYMTestExpectedResults
sl@0
   255
sl@0
   256
*/
sl@0
   257
void CTScreenModePositioning::WindowTestsL()
sl@0
   258
	{
sl@0
   259
	TheClient->iGroup->GroupWin()->EnableScreenChangeEvents();
sl@0
   260
	TInt numOfModes=TheClient->iScreenModes.Count();
sl@0
   261
	TInt ii;
sl@0
   262
	for (ii=0; ii<numOfModes; ++ii)
sl@0
   263
		{
sl@0
   264
		iCurrentMode=TheClient->iScreenModes[ii];
sl@0
   265
		TPixelsAndRotation pixelsAndRotation;
sl@0
   266
		iCurrentScreenModeOrigin=TheClient->iScreen->GetScreenModeScaledOrigin(iCurrentMode);
sl@0
   267
		iCurrentScreenModeScale=TheClient->iScreen->GetScreenModeScale(iCurrentMode);
sl@0
   268
		TheClient->iScreen->GetScreenModeSizeAndRotation(iCurrentMode,pixelsAndRotation);
sl@0
   269
		iCurrentScreenModeSize=pixelsAndRotation.iPixelSize;
sl@0
   270
		if (iCurrentScreenModeOrigin.iX<=FullScreenModeSize.iWidth/2-10 /*&& iCurrentScreenModeOrigin!=TPoint() */&& pixelsAndRotation.iRotation==CFbsBitGc::EGraphicsOrientationNormal)
sl@0
   271
			{
sl@0
   272
		#if defined(LOGGING)
sl@0
   273
			_LIT(KLog,"Test mode %d");
sl@0
   274
			LOG_MESSAGE2(KLog,ii);
sl@0
   275
		#endif
sl@0
   276
			TRAPD(ret,DoWindowTestsL());
sl@0
   277
			if (ret==KErrNone)
sl@0
   278
				continue;
sl@0
   279
			RestoreScreenMode();
sl@0
   280
			if (ret<KErrNone)
sl@0
   281
				TEST(EFalse);
sl@0
   282
			else
sl@0
   283
				User::Leave(ret);
sl@0
   284
			}
sl@0
   285
		}
sl@0
   286
	}
sl@0
   287
sl@0
   288
void CTScreenModePositioning::DoWindowTestsL()
sl@0
   289
	{
sl@0
   290
	// Make this visible so that the display mode remains EColor256
sl@0
   291
	iBlankWin->SetVisible(ETrue);
sl@0
   292
	Copy2ndHalfOfScreen=(iCurrentScreenModeOrigin.iX>FullScreenModeSize.iWidth/2? 1 : 0);
sl@0
   293
	TInt testWinWidth=Max(FullScreenModeSize.iWidth/2-iCurrentScreenModeOrigin.iX,iCurrentScreenModeOrigin.iX-FullScreenModeSize.iWidth/2);
sl@0
   294
	iTestWinSize=TSize(testWinWidth,FullScreenModeSize.iHeight-iCurrentScreenModeOrigin.iY-60);
sl@0
   295
	iTestWinSize.iWidth/=(iCurrentScreenModeScale.iWidth > 1 ? iCurrentScreenModeScale.iWidth*2 : iCurrentScreenModeScale.iWidth);
sl@0
   296
	iTestWinSize.iHeight/=(iCurrentScreenModeScale.iHeight > 1 ? iCurrentScreenModeScale.iHeight*2 : iCurrentScreenModeScale.iHeight);
sl@0
   297
#if defined(LOGGING)
sl@0
   298
	_LIT(KLog1,"  PosTest1");
sl@0
   299
	LOG_MESSAGE(KLog1);
sl@0
   300
#endif
sl@0
   301
	PositionTest1L(TPoint());
sl@0
   302
#if defined(LOGGING)
sl@0
   303
	_LIT(KLog2,"  PosTest2");
sl@0
   304
	LOG_MESSAGE(KLog2);
sl@0
   305
#endif
sl@0
   306
	PositionTest1L(TPoint(25,35));
sl@0
   307
#if defined(LOGGING)
sl@0
   308
	_LIT(KLog3,"  PosTest3");
sl@0
   309
	LOG_MESSAGE(KLog3);
sl@0
   310
#endif
sl@0
   311
	PositionTest2L(TPoint(10,10));
sl@0
   312
#if defined(LOGGING)
sl@0
   313
	_LIT(KLog4,"  GetInvalidRegion");
sl@0
   314
	LOG_MESSAGE(KLog4);
sl@0
   315
#endif
sl@0
   316
	GetInvalidRegionTestL(TPoint(10,10));
sl@0
   317
#if defined(LOGGING)
sl@0
   318
	_LIT(KLog5,"  CreateWin1");
sl@0
   319
	LOG_MESSAGE(KLog5);
sl@0
   320
#endif
sl@0
   321
	CreateWindowsTestL(TPoint());
sl@0
   322
#if defined(LOGGING)
sl@0
   323
	_LIT(KLog6,"  CreateWin2");
sl@0
   324
	LOG_MESSAGE(KLog6);
sl@0
   325
#endif
sl@0
   326
	CreateWindowsTestL(TPoint(33,15));
sl@0
   327
#if defined(LOGGING)
sl@0
   328
	_LIT(KLog7,"  NextMode");
sl@0
   329
	LOG_MESSAGE(KLog7);
sl@0
   330
#endif
sl@0
   331
	NextScreenModeTestL(TPoint(12,6));
sl@0
   332
	}
sl@0
   333
sl@0
   334
/**
sl@0
   335
@SYMTestCaseID		GRAPHICS-WSERV-0099
sl@0
   336
sl@0
   337
@SYMDEF  			DEF081259
sl@0
   338
sl@0
   339
@SYMTestCaseDesc    Position Test 1
sl@0
   340
					REQUIREMENT: CR PHAR-5SJGAM, PREQ673
sl@0
   341
					API: RWindowBase::InquireOffset(), RWindowBase::AbsPosition(),RWindowBase::Position()
sl@0
   342
sl@0
   343
@SYMTestPriority    High
sl@0
   344
sl@0
   345
@SYMTestStatus      Implemented
sl@0
   346
sl@0
   347
@SYMTestActions     Sets the new screen mode on the main client's screen device. Checks that an window whose group window
sl@0
   348
					has this screen device is in the correct position and for the origin of the new screen mode.
sl@0
   349
					(Does this by copying the window to a bitmap, switching back to screen mode 0 and then setting the position
sl@0
   350
					of the window to be the expected position. Then the bitmap is blitted to the other half of the screen and the
sl@0
   351
					2 halves of the screen compared)
sl@0
   352
sl@0
   353
@SYMTestExpectedResults Checks the window is positioned correctly for the origin of the new screen mode.
sl@0
   354
sl@0
   355
*/
sl@0
   356
void CTScreenModePositioning::PositionTest1L(TPoint aPos)
sl@0
   357
	{
sl@0
   358
    ((CTScreenModePositioningStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0099"));    
sl@0
   359
	SetScreenMode(TheClient,iCurrentMode,ESizeEnforcementPixelsAndRotation);
sl@0
   360
	iTestWin->SetExt(aPos,iTestWinSize);
sl@0
   361
	iTestWin->SetVisible(ETrue);
sl@0
   362
	iTestWin->Invalidate();
sl@0
   363
	TheClient->Flush();
sl@0
   364
	TestTopClientWindowPositionAPIs(aPos,iTestWin->BaseWin());
sl@0
   365
	TheClient->WaitForRedrawsToFinish();
sl@0
   366
	CopyAndCompareL(aPos);
sl@0
   367
	((CTScreenModePositioningStep*)iStep)->RecordTestResultL();
sl@0
   368
	}
sl@0
   369
sl@0
   370
template <TBool newstate>
sl@0
   371
class TCleanupSetVisible:public TCleanupItem
sl@0
   372
	{
sl@0
   373
	static void Cleanup(void*v)
sl@0
   374
		{
sl@0
   375
			((CTWinBase*)v)[0].SetVisible(newstate);
sl@0
   376
		}
sl@0
   377
	public:
sl@0
   378
	TCleanupSetVisible(CTWinBase* v): 
sl@0
   379
		TCleanupItem(Cleanup,v)	
sl@0
   380
		{}
sl@0
   381
	};
sl@0
   382
sl@0
   383
sl@0
   384
/**
sl@0
   385
@SYMTestCaseID		GRAPHICS-WSERV-0100
sl@0
   386
sl@0
   387
@SYMDEF  			DEF081259
sl@0
   388
sl@0
   389
@SYMTestCaseDesc    Position Test 2
sl@0
   390
					REQUIREMENT: CR PHAR-5SJGAM, PREQ673
sl@0
   391
					API: RWindowBase::SetPosition(),RWindowBase::InquireOffset(), RWindowBase::AbsPosition(),RWindowBase::Position()
sl@0
   392
sl@0
   393
@SYMTestPriority    High
sl@0
   394
sl@0
   395
@SYMTestStatus      Implemented
sl@0
   396
sl@0
   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.
sl@0
   398
sl@0
   399
@SYMTestExpectedResults Checks both the windows are positioned correctly for the origin of the new screen mode.
sl@0
   400
sl@0
   401
*/
sl@0
   402
void CTScreenModePositioning::PositionTest2L(TPoint aPos)
sl@0
   403
	{
sl@0
   404
	((CTScreenModePositioningStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0100"));
sl@0
   405
	SetScreenMode(TheClient,iCurrentMode,ESizeEnforcementPixelsAndRotation);
sl@0
   406
	iTestWin->SetPos(aPos);
sl@0
   407
sl@0
   408
	CleanupStack::PushL(TCleanupSetVisible<EFalse>(iBackedUpWin));
sl@0
   409
	iTestWin->SetVisible(ETrue);
sl@0
   410
	TestTopClientWindowPositionAPIs(aPos,iTestWin->BaseWin());
sl@0
   411
	TPoint backedUpWinPt=TPoint(iTestWinSize.iWidth/3,iTestWinSize.iHeight/4);
sl@0
   412
	iBackedUpWin->SetExtL(backedUpWinPt,TSize(iTestWinSize.iWidth/6,iTestWinSize.iHeight/6));
sl@0
   413
	iBackedUpWin->SetVisible(ETrue);
sl@0
   414
	TestChildWindowPositionAPIs(backedUpWinPt,aPos,iBackedUpWin->BaseWin(),iTestWin->BaseWin());
sl@0
   415
	aPos+=TPoint(20,20);
sl@0
   416
	iTestWin->SetPos(aPos);
sl@0
   417
	TestTopClientWindowPositionAPIs(aPos,iTestWin->BaseWin());
sl@0
   418
	TestChildWindowPositionAPIs(backedUpWinPt,aPos,iBackedUpWin->BaseWin(),iTestWin->BaseWin());
sl@0
   419
	iTestWin->Invalidate();
sl@0
   420
	TheClient->Flush();
sl@0
   421
	TheClient->WaitForRedrawsToFinish();
sl@0
   422
	TestTopClientWindowPositionAPIs(aPos,iTestWin->BaseWin());
sl@0
   423
	TestChildWindowPositionAPIs(backedUpWinPt,aPos,iBackedUpWin->BaseWin(),iTestWin->BaseWin());
sl@0
   424
	CopyAndCompareL(aPos);
sl@0
   425
	CleanupStack::PopAndDestroy(iBackedUpWin);	//TCleanupSetVisible
sl@0
   426
	((CTScreenModePositioningStep*)iStep)->RecordTestResultL();
sl@0
   427
	}
sl@0
   428
sl@0
   429
/**
sl@0
   430
@SYMTestCaseID		GRAPHICS-WSERV-0101
sl@0
   431
sl@0
   432
@SYMDEF  			DEF081259
sl@0
   433
sl@0
   434
@SYMTestCaseDesc    Invalid Region Test
sl@0
   435
					REQUIREMENT: CR PHAR-5SJGAM, PREQ673
sl@0
   436
					API: RWindow::GetInvalidRegion()
sl@0
   437
sl@0
   438
@SYMTestPriority    High
sl@0
   439
sl@0
   440
@SYMTestStatus      Implemented
sl@0
   441
sl@0
   442
@SYMTestActions     Sets the new screen mode, then invalidates different parts of the test window. Checks that the above API gets
sl@0
   443
					the correct invalid area from the server. Also tests moving the invalid area.
sl@0
   444
sl@0
   445
@SYMTestExpectedResults Checks the invalid region is correct for the origin of the new screen mode.
sl@0
   446
sl@0
   447
*/
sl@0
   448
void CTScreenModePositioning::GetInvalidRegionTestL(TPoint aPos)
sl@0
   449
	{
sl@0
   450
	((CTScreenModePositioningStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0101"));
sl@0
   451
	SetScreenMode(TheClient,iCurrentMode,ESizeEnforcementPixelsAndRotation);
sl@0
   452
	iTestWin->SetExt(aPos,iTestWinSize);
sl@0
   453
	iTestWin->SetVisible(ETrue);
sl@0
   454
	iTestChildWin->SetExt(TPoint(iTestWinSize.iWidth>>2,iTestWinSize.iHeight>>2),TSize(iTestWinSize.iWidth>>1,iTestWinSize.iHeight>>1));
sl@0
   455
	iTestChildWin->SetVisible(ETrue);
sl@0
   456
	iTestWin->Win()->BeginRedraw();
sl@0
   457
	iTestWin->Win()->EndRedraw();
sl@0
   458
	const TInt KNumRects=3;
sl@0
   459
	TRect rects[KNumRects];
sl@0
   460
	rects[0]=TRect(1,1,5,2);
sl@0
   461
	rects[1]=TRect(TPoint(iTest->StdTestWindowSize().iWidth>>1,iTest->StdTestWindowSize().iHeight>>1),iTest->StdTestWindowSize());
sl@0
   462
	rects[2]=TRect(2,0,4,5);
sl@0
   463
	RRegion region;
sl@0
   464
	CleanupClosePushL(region);
sl@0
   465
	for (TInt index=0;index<KNumRects;++index)
sl@0
   466
		{
sl@0
   467
		iTestWin->Invalidate(rects[index]);
sl@0
   468
		region.AddRect(rects[index]);
sl@0
   469
		}
sl@0
   470
	//PeterI original wserv assumes a region hidden beneath a child is not invalid
sl@0
   471
	//Mk3 doesn't make this assumption 
sl@0
   472
	//TRect subRect;
sl@0
   473
	//subRect.iTl=iTestChildWin->BaseWin()->InquireOffset(*iTestWin->BaseWin());
sl@0
   474
	//subRect.SetSize(iTestChildWin->Size());
sl@0
   475
	//region.Tidy();
sl@0
   476
	//region.SubRect(subRect);
sl@0
   477
	//region.ClipRect(TRect(iTestWin->Size()));
sl@0
   478
	RRegion invalidRegion;
sl@0
   479
	CleanupClosePushL(invalidRegion);
sl@0
   480
	iTestWin->Win()->GetInvalidRegion(invalidRegion);
sl@0
   481
	CompareRegionsL(region,invalidRegion);
sl@0
   482
	CleanupStack::PopAndDestroy(2,&region);
sl@0
   483
	TheClient->Flush();
sl@0
   484
	TheClient->WaitForRedrawsToFinish();
sl@0
   485
	iTestChildWin->SetVisible(EFalse);
sl@0
   486
	TRect rect1(TPoint(0,0),iTestWinSize);
sl@0
   487
	TestGetInvalidRegionL(rect1);
sl@0
   488
	TInt width=iTestWinSize.iWidth;
sl@0
   489
	TInt height=iTestWinSize.iHeight;
sl@0
   490
	TRect rect2(TPoint(width/6,height/6),TSize(width/3,height/3));
sl@0
   491
	TestGetInvalidRegionL(rect2);
sl@0
   492
	iTestWin->Invalidate();
sl@0
   493
	iTestWin->SetPos(TPoint(15,15));
sl@0
   494
	iTestWin->SetPos(TPoint());
sl@0
   495
	iTestWin->SetPos(TPoint(-15,-15));
sl@0
   496
	iTestWin->SetPos(aPos);
sl@0
   497
	RRegion invalid;
sl@0
   498
	RRegion testRegion(rect1);
sl@0
   499
	CleanupClosePushL(invalid);
sl@0
   500
	CleanupClosePushL(testRegion);
sl@0
   501
	iTestWin->Win()->GetInvalidRegion(invalid);
sl@0
   502
	TBool err=invalid.CheckError();
sl@0
   503
	TEST(!err);
sl@0
   504
	if (err)
sl@0
   505
		{
sl@0
   506
		_LIT(KLog,"Returned Invalid Region has an error");
sl@0
   507
		LOG_MESSAGE(KLog);
sl@0
   508
		}
sl@0
   509
sl@0
   510
	TEST(invalid.BoundingRect().iBr.iX<=iTestWinSize.iWidth);
sl@0
   511
	if (invalid.BoundingRect().iBr.iX>iTestWinSize.iWidth)
sl@0
   512
		{
sl@0
   513
		_LIT(KLog,"Invalid Region extends beyond right edge of window");
sl@0
   514
		LOG_MESSAGE(KLog);
sl@0
   515
		}
sl@0
   516
sl@0
   517
	CompareRegionsL(testRegion,invalid);
sl@0
   518
	CleanupStack::PopAndDestroy(2,&invalid);
sl@0
   519
	iTestWin->DrawNow();
sl@0
   520
	TheClient->Flush();
sl@0
   521
	CopyAndCompareL(aPos);
sl@0
   522
	((CTScreenModePositioningStep*)iStep)->RecordTestResultL();
sl@0
   523
	}
sl@0
   524
sl@0
   525
void CTScreenModePositioning::CopyAndCompareL(TPoint aPos)
sl@0
   526
	{
sl@0
   527
	CopyScreenAndChangeBackToDefScrModeL();
sl@0
   528
	iTestWin->SetPos(iCurrentScreenModeOrigin+aPos);
sl@0
   529
	iConnection2->DrawBitmapWin();
sl@0
   530
	TheClient->WaitForRedrawsToFinish();
sl@0
   531
	TestRect();
sl@0
   532
	iConnection2->BitmapWin()->SetVisible(EFalse);
sl@0
   533
	iTestWin->SetVisible(EFalse);
sl@0
   534
	}
sl@0
   535
sl@0
   536
void CTScreenModePositioning::TestGetInvalidRegionL(TRect& aRect)
sl@0
   537
	{
sl@0
   538
	RRegion testRegion;
sl@0
   539
	RRegion invalid;
sl@0
   540
	iTestWin->Invalidate(aRect);
sl@0
   541
	testRegion.AddRect(aRect);
sl@0
   542
	iTestWin->Win()->GetInvalidRegion(invalid);
sl@0
   543
	CompareRegionsL(testRegion,invalid);
sl@0
   544
	invalid.Close();
sl@0
   545
	testRegion.Close();
sl@0
   546
	TheClient->Flush();
sl@0
   547
	TheClient->WaitForRedrawsToFinish();
sl@0
   548
	}
sl@0
   549
sl@0
   550
void CTScreenModePositioning::CompareRegionsL(const TRegion &aRegion1,const TRegion &aRegion2)
sl@0
   551
	{
sl@0
   552
	_LIT(KLog,"Regions do not contain same area.");
sl@0
   553
	RRegion tmp;
sl@0
   554
	tmp.Copy(aRegion1);
sl@0
   555
	tmp.SubRegion(aRegion2);
sl@0
   556
	if (tmp.CheckError())
sl@0
   557
		User::Leave(KErrNoMemory);
sl@0
   558
	TBool retVal1=tmp.IsEmpty();
sl@0
   559
	TEST(retVal1);
sl@0
   560
	if (!retVal1)
sl@0
   561
		LOG_MESSAGE(KLog);
sl@0
   562
sl@0
   563
	tmp.Copy(aRegion2);
sl@0
   564
	tmp.SubRegion(aRegion1);
sl@0
   565
	if (tmp.CheckError())
sl@0
   566
		User::Leave(KErrNoMemory);
sl@0
   567
	TBool retVal2=tmp.IsEmpty();
sl@0
   568
	TEST(retVal2);
sl@0
   569
	if (!retVal2 && retVal1)
sl@0
   570
		LOG_MESSAGE(KLog);
sl@0
   571
sl@0
   572
	tmp.Close();
sl@0
   573
	}
sl@0
   574
sl@0
   575
void CTScreenModePositioning::TestTopClientWindowPositionAPIs(TPoint aPos,RWindowBase* aWin)
sl@0
   576
	{
sl@0
   577
	TEST(aWin->AbsPosition()==aPos);
sl@0
   578
	TEST(aWin->Position()==aPos);
sl@0
   579
	TEST(aWin->InquireOffset(*TheClient->iGroup->GroupWin())==aPos);
sl@0
   580
	}
sl@0
   581
sl@0
   582
void CTScreenModePositioning::TestChildWindowPositionAPIs(TPoint aPos,TPoint aParentPos,RWindowBase* aWin,RWindowBase* aParentWin)
sl@0
   583
	{
sl@0
   584
	TEST(aWin->AbsPosition()==aParentPos+aPos);
sl@0
   585
	TEST(aWin->Position()==aPos);
sl@0
   586
	TEST(aWin->InquireOffset(*TheClient->iGroup->GroupWin())==aParentPos+aPos);
sl@0
   587
	TEST(aWin->InquireOffset(*aParentWin)==aPos);
sl@0
   588
	}
sl@0
   589
sl@0
   590
void CTScreenModePositioning::RestoreScreenMode()
sl@0
   591
	{
sl@0
   592
	TPixelsAndRotation pixelsAndRotation;
sl@0
   593
	pixelsAndRotation.iPixelSize=FullScreenModeSize;
sl@0
   594
	TheClient->iScreen->GetDefaultScreenSizeAndRotation(pixelsAndRotation);
sl@0
   595
	ChangeScreenMode(TheClient,pixelsAndRotation,ESizeEnforcementNone,TheClient->iScreenModes[0]);
sl@0
   596
	}
sl@0
   597
sl@0
   598
/**
sl@0
   599
@SYMTestCaseID		GRAPHICS-WSERV-0102
sl@0
   600
sl@0
   601
@SYMDEF  			DEF081259
sl@0
   602
sl@0
   603
@SYMTestCaseDesc    Create Windows Test
sl@0
   604
					REQUIREMENT: CR PHAR-5SJGAM, PREQ673
sl@0
   605
					API: RWindowBase::SetPosition(),RWindowBase::InquireOffset(), RWindowBase::AbsPosition(),RWindowBase::Position()
sl@0
   606
sl@0
   607
@SYMTestPriority    High
sl@0
   608
sl@0
   609
@SYMTestStatus      Implemented
sl@0
   610
sl@0
   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
sl@0
   612
sl@0
   613
@SYMTestExpectedResults Checks both the windows are positioned correctly for the origin of the new screen mode.
sl@0
   614
sl@0
   615
*/
sl@0
   616
void CTScreenModePositioning::CreateWindowsTestL(TPoint aPos)
sl@0
   617
	{
sl@0
   618
	((CTScreenModePositioningStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0102"));
sl@0
   619
	SetScreenMode(TheClient,iCurrentMode,ESizeEnforcementPixelsAndRotation);
sl@0
   620
	CBasicWin* basicWin=new(ELeave) CBasicWin;
sl@0
   621
	basicWin->ConstructExtLD(*TheClient->iGroup,aPos,iTestWinSize);
sl@0
   622
	CleanupStack::PushL(basicWin);
sl@0
   623
	TInt mode=basicWin->BaseWin()->SetRequiredDisplayMode(EColor256);
sl@0
   624
	basicWin->AssignGC(*TheClient->iGc);
sl@0
   625
	basicWin->BaseWin()->SetShadowDisabled(ETrue);
sl@0
   626
	basicWin->BaseWin()->SetShadowHeight(0);
sl@0
   627
	basicWin->Activate();
sl@0
   628
	TheClient->Flush();
sl@0
   629
	TheClient->WaitForRedrawsToFinish();
sl@0
   630
	TestTopClientWindowPositionAPIs(aPos,basicWin->BaseWin());
sl@0
   631
	CTBlankWindow* blankChildWin=new(ELeave) CTBlankWindow ;
sl@0
   632
	CleanupStack::PushL(blankChildWin);
sl@0
   633
	blankChildWin->ConstructL(*basicWin);
sl@0
   634
	blankChildWin->BaseWin()->SetRequiredDisplayMode(EColor256);
sl@0
   635
	blankChildWin->BaseWin()->SetShadowDisabled(ETrue);
sl@0
   636
	blankChildWin->SetColor(KRgbYellow);
sl@0
   637
	TPoint childPos(iTestWinSize.iWidth/4,iTestWinSize.iHeight/4);
sl@0
   638
	blankChildWin->SetExtL(childPos,TSize(iTestWinSize.iWidth/2,iTestWinSize.iHeight/2));
sl@0
   639
	blankChildWin->Activate();
sl@0
   640
	TheClient->Flush();
sl@0
   641
	TheClient->WaitForRedrawsToFinish();
sl@0
   642
	TestChildWindowPositionAPIs(childPos,aPos,blankChildWin->BaseWin(),basicWin->BaseWin());
sl@0
   643
	blankChildWin->SetPos(TPoint(-15,-20));
sl@0
   644
	TheClient->Flush();
sl@0
   645
	basicWin->DrawNow();
sl@0
   646
	TestChildWindowPositionAPIs(TPoint(-15,-20),aPos,blankChildWin->BaseWin(),basicWin->BaseWin());
sl@0
   647
	CopyScreenAndChangeBackToDefScrModeL();
sl@0
   648
	basicWin->SetPos(iCurrentScreenModeOrigin+aPos);
sl@0
   649
	iConnection2->DrawBitmapWin();
sl@0
   650
	TheClient->WaitForRedrawsToFinish();
sl@0
   651
	TestRect();
sl@0
   652
	iConnection2->BitmapWin()->SetVisible(EFalse);
sl@0
   653
	iTestWin->SetVisible(EFalse);
sl@0
   654
	CleanupStack::PopAndDestroy(blankChildWin);
sl@0
   655
	CleanupStack::PopAndDestroy(basicWin);
sl@0
   656
	((CTScreenModePositioningStep*)iStep)->RecordTestResultL();
sl@0
   657
	}
sl@0
   658
sl@0
   659
/**
sl@0
   660
@SYMTestCaseID		GRAPHICS-WSERV-0103
sl@0
   661
sl@0
   662
@SYMDEF  			DEF081259
sl@0
   663
sl@0
   664
@SYMTestCaseDesc    Changing to next screen mode
sl@0
   665
					REQUIREMENT: CR PHAR-5SJGAM, PREQ673
sl@0
   666
					API: RWindowBase::SetPosition(),RWindowBase::InquireOffset(), RWindowBase::AbsPosition(),RWindowBase::Position()
sl@0
   667
sl@0
   668
@SYMTestPriority    High
sl@0
   669
sl@0
   670
@SYMTestStatus      Implemented
sl@0
   671
sl@0
   672
@SYMTestActions     Sets the new screen mode, creates a new child window and then changes to the next screen mode with non-zero origin,
sl@0
   673
					checks windows are in the expected position for the origin of the new screen mode.
sl@0
   674
sl@0
   675
@SYMTestExpectedResults Checks both the windows are positioned correctly for the origin of the new screen mode.
sl@0
   676
sl@0
   677
*/
sl@0
   678
void CTScreenModePositioning::NextScreenModeTestL(TPoint aPos)
sl@0
   679
	{
sl@0
   680
	((CTScreenModePositioningStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0103"));
sl@0
   681
	if (iCurrentScreenModeOrigin==TPoint())
sl@0
   682
		{
sl@0
   683
		return;
sl@0
   684
		}
sl@0
   685
	TInt numOfModes=TheClient->iScreenModes.Count();
sl@0
   686
	TInt defaultMode=TheClient->iScreenModes[0];
sl@0
   687
	TInt lastMode=TheClient->iScreenModes[numOfModes-1];
sl@0
   688
	TInt mode=(iCurrentMode<lastMode? iCurrentMode:defaultMode);
sl@0
   689
	// find current mode index
sl@0
   690
	TInt ii;
sl@0
   691
	TInt modeIdx=0;
sl@0
   692
	for (ii=0; ii<numOfModes; ++ii)
sl@0
   693
		{
sl@0
   694
		if (mode==TheClient->iScreenModes[ii])
sl@0
   695
			{
sl@0
   696
			modeIdx=ii;
sl@0
   697
			break;
sl@0
   698
			}
sl@0
   699
		}
sl@0
   700
	TPoint screenModeOrigin(0,0);
sl@0
   701
	TPixelsAndRotation pixelsAndRotation;
sl@0
   702
	while (screenModeOrigin==TPoint()||(pixelsAndRotation.iRotation!=CFbsBitGc::EGraphicsOrientationNormal))
sl@0
   703
		{
sl@0
   704
		mode=(mode==lastMode? defaultMode : TheClient->iScreenModes[++modeIdx]);
sl@0
   705
		if (mode==iCurrentMode)
sl@0
   706
			{
sl@0
   707
			return;
sl@0
   708
			}
sl@0
   709
		else if (mode==lastMode)
sl@0
   710
			{
sl@0
   711
			modeIdx=0;
sl@0
   712
			}		
sl@0
   713
		screenModeOrigin=TheClient->iScreen->GetScreenModeOrigin(mode);
sl@0
   714
		TheClient->iScreen->GetScreenModeSizeAndRotation(mode,pixelsAndRotation);
sl@0
   715
		}
sl@0
   716
	SetScreenMode(TheClient,iCurrentMode,ESizeEnforcementPixelsAndRotation);
sl@0
   717
	iTestWin->SetExt(aPos,iTestWinSize);
sl@0
   718
	iTestWin->SetVisible(ETrue);
sl@0
   719
	TheClient->Flush();
sl@0
   720
	CBasicWin* basicWin=new(ELeave) CBasicWin;
sl@0
   721
	CleanupStack::PushL(basicWin);
sl@0
   722
	basicWin->ConstructExtLD(*iTestWin,TPoint(),TSize(iTestWinSize.iWidth/5,iTestWinSize.iHeight/5));
sl@0
   723
	User::LeaveIfError(basicWin->BaseWin()->SetRequiredDisplayMode(EColor256));
sl@0
   724
	basicWin->AssignGC(*TheClient->iGc);
sl@0
   725
	basicWin->BaseWin()->SetShadowDisabled(ETrue);
sl@0
   726
	basicWin->BaseWin()->SetShadowHeight(0);
sl@0
   727
	basicWin->Activate();
sl@0
   728
	TPoint pos(iTestWinSize.iWidth/3,iTestWinSize.iWidth/4);
sl@0
   729
	basicWin->SetPos(pos);
sl@0
   730
	TheClient->Flush();
sl@0
   731
	TheClient->WaitForRedrawsToFinish();
sl@0
   732
	TestChildWindowPositionAPIs(pos,aPos,basicWin->BaseWin(),iTestWin->BaseWin());
sl@0
   733
	iCurrentScreenModeScale=TheClient->iScreen->GetScreenModeScale(mode);
sl@0
   734
	iCurrentScreenModeOrigin=TheClient->iScreen->GetScreenModeOrigin(mode);
sl@0
   735
	iTestWinSize.iWidth/=(iCurrentScreenModeScale.iWidth > 1 ? iCurrentScreenModeScale.iWidth*2 : iCurrentScreenModeScale.iWidth);
sl@0
   736
	iTestWinSize.iHeight/=(iCurrentScreenModeScale.iHeight > 1 ?  iCurrentScreenModeScale.iHeight*2 : iCurrentScreenModeScale.iHeight);
sl@0
   737
	iTestWin->SetExt(aPos,iTestWinSize);
sl@0
   738
	SetScreenMode(TheClient,mode,ESizeEnforcementPixelsAndRotation);
sl@0
   739
	CopyScreenAndChangeBackToDefScrModeL();
sl@0
   740
	iTestWin->SetPos(aPos+iCurrentScreenModeOrigin);
sl@0
   741
	basicWin->SetPos(pos);
sl@0
   742
	iConnection2->DrawBitmapWin();
sl@0
   743
	TestRect();
sl@0
   744
	iConnection2->BitmapWin()->SetVisible(EFalse);
sl@0
   745
	iTestWin->SetVisible(EFalse);
sl@0
   746
	CleanupStack::PopAndDestroy(basicWin);
sl@0
   747
	iCurrentScreenModeOrigin=TheClient->iScreen->GetScreenModeOrigin(iCurrentMode);
sl@0
   748
	((CTScreenModePositioningStep*)iStep)->RecordTestResultL();
sl@0
   749
	}
sl@0
   750
sl@0
   751
void CTScreenModePositioning::CopyScreenAndChangeBackToDefScrModeL()
sl@0
   752
	{
sl@0
   753
	// clear the content of bitmap before it is used for copying
sl@0
   754
	ClearBitmap(iConnection2->iScreenBitmap);
sl@0
   755
sl@0
   756
	// Copy the current content of the screen before moving to screen sizemode 0.
sl@0
   757
	if (!iScalingSupported)
sl@0
   758
		{
sl@0
   759
		TPoint pt=(Copy2ndHalfOfScreen? TPoint(FullScreenModeSize.iWidth/2,0) : TPoint());
sl@0
   760
		User::LeaveIfError(iConnection2->iClient->iScreen->CopyScreenToBitmap(iConnection2->iScreenBitmap,TRect(pt,TSize(FullScreenModeSize.iWidth/2,FullScreenModeSize.iHeight))));
sl@0
   761
		}
sl@0
   762
	else
sl@0
   763
		{
sl@0
   764
		TPoint pt=(Copy2ndHalfOfScreen? TPoint((iCurrentScreenModeSize.iWidth+iCurrentScreenModeOrigin.iX)/2,0) : -iCurrentScreenModeOrigin);
sl@0
   765
		TPoint ptBottom(FullScreenModeSize.iWidth/2,FullScreenModeSize.iHeight);
sl@0
   766
		ptBottom-=iCurrentScreenModeOrigin;
sl@0
   767
		ptBottom.iX=(ptBottom.iX>=0 ? ptBottom.iX/iCurrentScreenModeScale.iWidth : ((-ptBottom.iX)*iCurrentScreenModeScale.iWidth+ptBottom.iX)/iCurrentScreenModeScale.iWidth+ptBottom.iX);
sl@0
   768
		ptBottom.iY=(ptBottom.iY>=0 ? ptBottom.iY/iCurrentScreenModeScale.iHeight : ((-ptBottom.iY)*iCurrentScreenModeScale.iHeight+ptBottom.iY)/iCurrentScreenModeScale.iHeight+ptBottom.iY);
sl@0
   769
		User::LeaveIfError(iConnection2->iClient->iScreen->CopyScreenToBitmap(iConnection2->iScreenBitmap,TRect(pt,ptBottom)));
sl@0
   770
		}
sl@0
   771
	TheClient->Flush();
sl@0
   772
	SetScreenMode(TheClient,TheClient->iScreenModes[0],ESizeEnforcementPixelsAndRotation);
sl@0
   773
	TPixelsAndRotation dummySize;
sl@0
   774
	dummySize.iPixelSize=TSize(0,0);
sl@0
   775
	iConnection2->iClient->iScreen->SetScreenSizeAndRotation(dummySize); //to force an update in the server when we do the next line
sl@0
   776
	TPixelsAndRotation pixelsAndRotation;
sl@0
   777
	TheClient->iScreen->GetDefaultScreenSizeAndRotation(pixelsAndRotation);
sl@0
   778
	iConnection2->iClient->iScreen->SetScreenSizeAndRotation(pixelsAndRotation);
sl@0
   779
	iConnection2->iClient->iScreen->SetScreenModeEnforcement(ESizeEnforcementPixelsAndRotation);
sl@0
   780
	iConnection2->iClient->iScreen->SetScreenMode(TheClient->iScreenModes[0]);
sl@0
   781
	}
sl@0
   782
sl@0
   783
TBool CTScreenModePositioning::TestRect()
sl@0
   784
	{
sl@0
   785
	TSize size(FullScreenModeSize.iWidth/2,FullScreenModeSize.iHeight);
sl@0
   786
	TRect right(TPoint(FullScreenModeSize.iWidth/2,0),size);
sl@0
   787
	TBool retVal=TheClient->iScreen->RectCompare(TRect(size),right);
sl@0
   788
//	User::After(2000000);
sl@0
   789
	//Let the pixels cool down for a bit
sl@0
   790
	User::After(10);
sl@0
   791
	TEST(retVal);
sl@0
   792
	if(!retVal)
sl@0
   793
		{
sl@0
   794
		_LIT(KLog,"Left and Right halves of display don't match. RightHalf=(%d,%d,%d,%d)");
sl@0
   795
		LOG_MESSAGE5(KLog,right.iTl.iX,right.iTl.iY,right.iBr.iX,right.iBr.iY);
sl@0
   796
		}
sl@0
   797
	return retVal;
sl@0
   798
	}
sl@0
   799
sl@0
   800
/**
sl@0
   801
@SYMTestCaseID		GRAPHICS-WSERV-0104
sl@0
   802
sl@0
   803
@SYMDEF  			DEF081259, DEF111847
sl@0
   804
sl@0
   805
@SYMTestCaseDesc    Sprite Tests
sl@0
   806
					REQUIREMENT: CR PHAR-5SJGAM, PREQ673
sl@0
   807
					API: RWsSprite::SetPosition()
sl@0
   808
sl@0
   809
@SYMTestPriority    High
sl@0
   810
sl@0
   811
@SYMTestStatus      Implemented
sl@0
   812
sl@0
   813
@SYMTestActions     Test sprites associated with group windows in screen modes with non-zero origin:
sl@0
   814
					Sets such a new screen mode and creates 2 sprites.
sl@0
   815
					compares these sprites with	some blitted onto the screen in the expected position.
sl@0
   816
					Sets the rotation of screen mode to be 180 deg, sets the position of the sprites
sl@0
   817
					and does the same as above to compare expected position.
sl@0
   818
					Then changes back to screen mode 0 and sets a new positions of the sprites,changes to the new
sl@0
   819
					screen mode and checks the sprites have been moved to the correct position.
sl@0
   820
					Additionally, as part of defect fix DEF111847, this also loops through all display modes above and including Color256, 
sl@0
   821
					and if possible tests each with the above described method. Previously, it use to only test Color256.
sl@0
   822
					Display modes lower than EColor256 are not tested as they are not supported for origin change.
sl@0
   823
sl@0
   824
@SYMTestExpectedResults Checks the sprites are positioned correctly according to the origin
sl@0
   825
					of the new screen mode.
sl@0
   826
sl@0
   827
*/
sl@0
   828
void CTScreenModePositioning::SpriteTestL()
sl@0
   829
	{
sl@0
   830
sl@0
   831
#if defined(__WINS__)
sl@0
   832
	TBool retVal;
sl@0
   833
	if (iScalingSupported)
sl@0
   834
		{
sl@0
   835
		TDisplayMode curDispMode; // Holds the current display mode being tested 
sl@0
   836
		
sl@0
   837
		for(curDispMode = EColor256; curDispMode < EColorLast; curDispMode = TDisplayMode(curDispMode+1))
sl@0
   838
			{
sl@0
   839
			if (curDispMode == ERgb)
sl@0
   840
				{
sl@0
   841
				continue;
sl@0
   842
				}
sl@0
   843
			// Set screen mode to 3
sl@0
   844
			iCurrentMode=3;
sl@0
   845
			SetScreenMode(TheClient,iCurrentMode,ESizeEnforcementPixelsAndRotation);
sl@0
   846
			TPoint topLeft(-TheClient->iScreen->GetScreenModeOrigin(iCurrentMode));
sl@0
   847
			TPoint botRight(TheClient->iScreen->SizeInPixels().AsPoint());
sl@0
   848
sl@0
   849
			// Create a sprite at position (0,0) from current origin
sl@0
   850
			RWsSprite sprite;
sl@0
   851
			TSize spriteSize=iSpriteBitmap.SizeInPixels();
sl@0
   852
			SetUpSpriteLC(sprite,TheClient->iWs,*iBlankWin->BaseWin());
sl@0
   853
			TPoint winPos;
sl@0
   854
			if (botRight.iX<spriteSize.iWidth)
sl@0
   855
				{
sl@0
   856
				winPos.iX=botRight.iX-spriteSize.iWidth;
sl@0
   857
				iBlankWin->BaseWin()->SetPosition(winPos);
sl@0
   858
				}
sl@0
   859
			
sl@0
   860
			// Now create a spritewin at top left of the visible screen
sl@0
   861
			CSpriteWin* spriteWin=new(ELeave) CSpriteWin(iSpriteBitmap);
sl@0
   862
			CleanupStack::PushL(spriteWin);
sl@0
   863
			spriteWin->ConstructExtLD(*TheClient->iGroup,topLeft,spriteSize);
sl@0
   864
			
sl@0
   865
			// Set the display mode of the base window
sl@0
   866
			TInt setBlankWinDispMode = iBlankWin->BaseWin()->SetRequiredDisplayMode(curDispMode);
sl@0
   867
			// Set the display mode of the sprite window
sl@0
   868
			TInt setSpriteWinDispMode = spriteWin->BaseWin()->SetRequiredDisplayMode(curDispMode);
sl@0
   869
			
sl@0
   870
			//Only do the tests if the requested mode was actually set on both windows
sl@0
   871
			if(curDispMode == setBlankWinDispMode && curDispMode == setSpriteWinDispMode)
sl@0
   872
				{
sl@0
   873
				//Create and show DisplayMode details message
sl@0
   874
				_LIT(KModeDetails, "Display Mode: ");
sl@0
   875
				TBuf<30> modeDetailsMessage(KModeDetails);
sl@0
   876
				modeDetailsMessage.Append(DisplayModeAsString(curDispMode));
sl@0
   877
				LOG_MESSAGE(modeDetailsMessage);
sl@0
   878
			
sl@0
   879
				spriteWin->AssignGC(*TheClient->iGc);
sl@0
   880
				spriteWin->SetState(3);
sl@0
   881
				spriteWin->Activate();
sl@0
   882
				spriteWin->DrawNow();
sl@0
   883
				TheClient->WaitForRedrawsToFinish();
sl@0
   884
				retVal=TheClient->iScreen->RectCompare(TRect(topLeft,spriteSize),TRect(winPos,spriteSize),CWsScreenDevice::EIncludeSprite);
sl@0
   885
				TEST(retVal);
sl@0
   886
				if(!retVal)
sl@0
   887
					{
sl@0
   888
					_LIT(KLog,"Initial Drawing of sprite fails - does not compare to same bitmap drawn in window.");
sl@0
   889
					LOG_MESSAGE(KLog);
sl@0
   890
					}
sl@0
   891
sl@0
   892
				// Move position of the window and sprite and then test
sl@0
   893
				TPoint spritePos(Min(20,botRight.iX-spriteSize.iWidth-winPos.iX),20);
sl@0
   894
				spriteWin->SetExt(topLeft+spritePos,spriteSize);
sl@0
   895
				sprite.SetPosition(spritePos);
sl@0
   896
				spriteWin->DrawNow();
sl@0
   897
				TheClient->WaitForRedrawsToFinish();
sl@0
   898
				retVal=TheClient->iScreen->RectCompare(TRect(topLeft+spritePos,spriteSize),TRect(winPos+spritePos,spriteSize),CWsScreenDevice::EIncludeSprite);
sl@0
   899
				TEST(retVal);
sl@0
   900
				if(!retVal)
sl@0
   901
					{
sl@0
   902
					_LIT(KLog,"Second position of sprite fails - does not compare to same bitmap drawn in window.");
sl@0
   903
					LOG_MESSAGE(KLog);
sl@0
   904
					}
sl@0
   905
				iBlankWin->BaseWin()->SetPosition(TPoint());
sl@0
   906
sl@0
   907
				// Now test the same by moving into other screen mode
sl@0
   908
				iCurrentMode=4;
sl@0
   909
				SetScreenMode(TheClient,iCurrentMode,ESizeEnforcementNone);
sl@0
   910
				spritePos.SetXY(0,160);
sl@0
   911
				sprite.SetPosition(spritePos);
sl@0
   912
				spriteWin->SetExt(TPoint(),spriteSize);
sl@0
   913
				spriteWin->DrawNow();
sl@0
   914
				TheClient->WaitForRedrawsToFinish();
sl@0
   915
				retVal=TheClient->iScreen->RectCompare(TRect(TPoint(),spriteSize),TRect(spritePos,spriteSize),CWsScreenDevice::EIncludeSprite);
sl@0
   916
				TEST(retVal);
sl@0
   917
				if(!retVal)
sl@0
   918
					{
sl@0
   919
					_LIT(KLog,"Third position of sprite fails - does not compare to same bitmap drawn in window.");
sl@0
   920
					LOG_MESSAGE(KLog);
sl@0
   921
					}
sl@0
   922
				}
sl@0
   923
sl@0
   924
			CleanupStack::PopAndDestroy(spriteWin);
sl@0
   925
			CleanupStack::PopAndDestroy(&sprite);
sl@0
   926
			RestoreScreenMode();
sl@0
   927
			}
sl@0
   928
		}
sl@0
   929
	else
sl@0
   930
		{
sl@0
   931
		const TInt KScreenModeWithOffset = 2;
sl@0
   932
		TheClient->iGroup->GroupWin()->EnableScreenChangeEvents();
sl@0
   933
		iTestWin->SetVisible(EFalse);
sl@0
   934
		TheClient->Flush();
sl@0
   935
		iConnection2->iClient->Flush();
sl@0
   936
		TheClient->WaitForRedrawsToFinish();
sl@0
   937
		TPixelsAndRotation pixelsAndRotation1;
sl@0
   938
		TheClient->iScreen->GetScreenModeSizeAndRotation(KScreenModeWithOffset,pixelsAndRotation1);
sl@0
   939
		ChangeScreenMode(TheClient,pixelsAndRotation1,KScreenModeWithOffset);
sl@0
   940
		RWsSprite sprite[2];
sl@0
   941
		for (TInt ii=0;ii<2;ii++)
sl@0
   942
			{
sl@0
   943
			SetUpSpriteLC(sprite[ii],TheClient->iWs,*TheClient->iGroup->WinTreeNode());
sl@0
   944
			}
sl@0
   945
		TheClient->Flush();
sl@0
   946
		TheClient->WaitForRedrawsToFinish();
sl@0
   947
		TPixelsAndRotation pixelsAndRotation2;
sl@0
   948
		TheClient->iScreen->GetScreenModeSizeAndRotation(0,pixelsAndRotation2);
sl@0
   949
		iConnection2->iSpriteWin->UpdateState(0);
sl@0
   950
		iConnection2->iSpriteWin->SetVisible(ETrue);
sl@0
   951
		iConnection2->iClient->Flush();
sl@0
   952
		TSize spriteSize=iSpriteBitmap.SizeInPixels();
sl@0
   953
		TPoint screenMode2Origin;
sl@0
   954
		screenMode2Origin=TheClient->iScreen->GetScreenModeOrigin(KScreenModeWithOffset);
sl@0
   955
		//Check all reference bitmaps can be drawn inside the screen
sl@0
   956
		MDisplayControl* interface = static_cast<MDisplayControl*>
sl@0
   957
					(TheClient->iScreen->GetInterface(MDisplayControl::ETypeId));
sl@0
   958
		if(interface)
sl@0
   959
			{
sl@0
   960
			TDisplayConfiguration config;
sl@0
   961
			interface->GetConfiguration(config);
sl@0
   962
			TSize screenSize;
sl@0
   963
			config.GetResolution(screenSize);
sl@0
   964
			TEST(screenSize.iWidth > screenMode2Origin.iX+CheckSpritePos.iX+spriteSize.iWidth+30
sl@0
   965
					&& screenSize.iHeight > screenMode2Origin.iY+CheckSpritePos.iY + spriteSize.iHeight+30);
sl@0
   966
			}
sl@0
   967
		
sl@0
   968
		retVal = iConnection2->iClient->iScreen->RectCompare(TRect(screenMode2Origin+CheckSpritePos,spriteSize),TRect(screenMode2Origin,spriteSize),CWsScreenDevice::EIncludeSprite);
sl@0
   969
		TEST(retVal);
sl@0
   970
		if(!retVal)
sl@0
   971
			INFO_PRINTF3(_L("iConnection2->iClient->iScreen->RectCompare() return value  - Expected: %d, Actual: %d"), ETrue, retVal);
sl@0
   972
sl@0
   973
		TheClient->iScreen->SetCurrentRotations(KScreenModeWithOffset,CFbsBitGc::EGraphicsOrientationRotated180);
sl@0
   974
		ChangeScreenMode(TheClient,pixelsAndRotation1,KScreenModeWithOffset);
sl@0
   975
		TheClient->Flush();
sl@0
   976
		sprite[0].SetPosition(TPoint(0,0));
sl@0
   977
		sprite[1].SetPosition(TPoint(30,30));
sl@0
   978
		TheClient->Flush();
sl@0
   979
		TheClient->WaitForRedrawsToFinish();
sl@0
   980
		iConnection2->iSpriteWin->UpdateState(1);
sl@0
   981
		iConnection2->iClient->Flush();
sl@0
   982
		retVal = iConnection2->iClient->iScreen->RectCompare(TRect(screenMode2Origin+CheckSpritePos,spriteSize+TPoint(30,30)),TRect(screenMode2Origin,spriteSize+TPoint(30,30)),CWsScreenDevice::EIncludeSprite);
sl@0
   983
		TEST(retVal);
sl@0
   984
		if(!retVal)
sl@0
   985
			INFO_PRINTF3(_L("iConnection2->iClient->iScreen->RectCompare() return value  - Expected: %d, Actual: %d"), ETrue, retVal);
sl@0
   986
sl@0
   987
		TheClient->iScreen->SetCurrentRotations(KScreenModeWithOffset,CFbsBitGc::EGraphicsOrientationNormal);
sl@0
   988
		ChangeScreenMode(TheClient,pixelsAndRotation2,0);
sl@0
   989
		iConnection2->iSpriteWin->SetExt(TPoint(215,0),TSize(218,240));
sl@0
   990
		TheClient->Flush();
sl@0
   991
		TheClient->WaitForRedrawsToFinish();
sl@0
   992
		sprite[0].SetPosition(TPoint(-10,20));
sl@0
   993
		sprite[1].SetPosition(TPoint(-10,40));
sl@0
   994
		TheClient->Flush();
sl@0
   995
		TheClient->WaitForRedrawsToFinish();
sl@0
   996
		ChangeScreenMode(TheClient,pixelsAndRotation1,ESizeEnforcementPixelsAndRotation,KScreenModeWithOffset);
sl@0
   997
		TheClient->Flush();
sl@0
   998
		TheClient->WaitForRedrawsToFinish();
sl@0
   999
		iConnection2->iSpriteWin->UpdateState(2);
sl@0
  1000
		iConnection2->iClient->Flush();
sl@0
  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);
sl@0
  1002
		TEST(retVal);
sl@0
  1003
		if(!retVal)
sl@0
  1004
			INFO_PRINTF3(_L("iConnection2->iClient->iScreen->RectCompare() return value  - Expected: %d, Actual: %d"), ETrue, retVal);
sl@0
  1005
sl@0
  1006
		CleanupStack::PopAndDestroy(2,&sprite[0]);
sl@0
  1007
		iConnection2->iSpriteWin->SetVisible(EFalse);
sl@0
  1008
		ChangeScreenMode(TheClient,pixelsAndRotation2,ESizeEnforcementPixelsAndRotation,0);
sl@0
  1009
		TheClient->Flush();
sl@0
  1010
		TheClient->WaitForRedrawsToFinish();
sl@0
  1011
		}
sl@0
  1012
#endif
sl@0
  1013
	}
sl@0
  1014
sl@0
  1015
/**
sl@0
  1016
@SYMTestCaseID		GRAPHICS-WSERV-0105
sl@0
  1017
sl@0
  1018
@SYMDEF  			DEF081259
sl@0
  1019
sl@0
  1020
@SYMTestCaseDesc    Rotation Tests
sl@0
  1021
					REQUIREMENT: CR PHAR-5SJGAM, PREQ673
sl@0
  1022
					API: RWindowBase::InquireOffset(), RWindowBase::AbsPosition(),RWindowBase::Position()
sl@0
  1023
sl@0
  1024
@SYMTestPriority    High
sl@0
  1025
sl@0
  1026
@SYMTestStatus      Implemented
sl@0
  1027
sl@0
  1028
@SYMTestActions     Goes through all the screen modes defined in the wsini file and all the rotations in
sl@0
  1029
					each screen mode. For each case sets the new screen mode and the the rotation on the current
sl@0
  1030
					client's screen device. Then sets a suitable size and position of 2 windows (an RWindow
sl@0
  1031
					and a child RBackedUpWindow) whose group window has the above screen device.
sl@0
  1032
sl@0
  1033
@SYMTestExpectedResults Checks the windows are positioned correctly according to the origin and rotation
sl@0
  1034
					of the new screen mode.
sl@0
  1035
sl@0
  1036
*/
sl@0
  1037
void CTScreenModePositioning::RotationTestsL()
sl@0
  1038
	{
sl@0
  1039
	RBlankWindow color256(TheClient->iWs);
sl@0
  1040
	User::LeaveIfError(color256.Construct(*TheClient->iGroup->GroupWin(),ENullWsHandle));
sl@0
  1041
	CleanupClosePushL(color256);
sl@0
  1042
	color256.SetRequiredDisplayMode(EColor256);
sl@0
  1043
	color256.SetOrdinalPosition(2);
sl@0
  1044
	color256.Activate();
sl@0
  1045
	TInt ii;
sl@0
  1046
	for (ii=0;ii<TheClient->iScreenModes.Count();)
sl@0
  1047
		{
sl@0
  1048
		iCurrentMode=TheClient->iScreenModes[ii];
sl@0
  1049
		SetScreenMode(TheClient,iCurrentMode,ESizeEnforcementPixelsAndRotation);
sl@0
  1050
		TPixelsAndRotation pixelsAndRotation;
sl@0
  1051
		TheClient->iScreen->GetDefaultScreenSizeAndRotation(pixelsAndRotation);
sl@0
  1052
		TInt oldCurrentMode=iCurrentMode;
sl@0
  1053
		CArrayFixFlat<TInt>* rotations=new(ELeave) CArrayFixFlat<TInt>(1);
sl@0
  1054
		CleanupStack::PushL(rotations);
sl@0
  1055
		User::LeaveIfError(TheClient->iScreen->GetRotationsList(iCurrentMode,rotations));
sl@0
  1056
		TInt count=rotations->Count();
sl@0
  1057
		TInt jj=0;
sl@0
  1058
		if (count>1)
sl@0
  1059
			{
sl@0
  1060
			for (jj=0;jj<count;)
sl@0
  1061
				{
sl@0
  1062
				if ((*rotations)[jj++]==pixelsAndRotation.iRotation)
sl@0
  1063
					{
sl@0
  1064
					break;
sl@0
  1065
					}
sl@0
  1066
				}
sl@0
  1067
			if (jj==count)
sl@0
  1068
				{
sl@0
  1069
				jj=0;
sl@0
  1070
				}
sl@0
  1071
			}
sl@0
  1072
		if (jj==0)
sl@0
  1073
			{
sl@0
  1074
			ii++;
sl@0
  1075
			}
sl@0
  1076
		TInt currentRotation=(*rotations)[jj];
sl@0
  1077
		TheClient->iScreen->SetCurrentRotations(oldCurrentMode,REINTERPRET_CAST(CFbsBitGc::TGraphicsOrientation&,currentRotation));
sl@0
  1078
		CleanupStack::PopAndDestroy(rotations);
sl@0
  1079
		iCurrentScreenModeOrigin=TheClient->iScreen->GetScreenModeOrigin(oldCurrentMode);
sl@0
  1080
		iCurrentScreenModeOrigin=TheClient->iScreen->GetScreenModeScaledOrigin(oldCurrentMode);
sl@0
  1081
		TPoint point1(iCurrentScreenModeOrigin.iX,iCurrentScreenModeOrigin.iY+(iCurrentScreenModeOrigin.iY+pixelsAndRotation.iPixelSize.iHeight)/2);
sl@0
  1082
		TPoint point2(iCurrentScreenModeOrigin.iX+(iCurrentScreenModeOrigin.iX+pixelsAndRotation.iPixelSize.iWidth)/2,pixelsAndRotation.iPixelSize.iHeight+iCurrentScreenModeOrigin.iY);
sl@0
  1083
		TRect rect0(point1,point2);
sl@0
  1084
		iTestWin->SetExtL(TPoint(),rect0.Size());
sl@0
  1085
		iTestWin->Invalidate();
sl@0
  1086
		
sl@0
  1087
		iTestWin->SetVisible(ETrue);
sl@0
  1088
		TheClient->Flush();
sl@0
  1089
		TheClient->WaitForRedrawsToFinish();
sl@0
  1090
		TestTopClientWindowPositionAPIs(TPoint(),iTestWin->BaseWin());
sl@0
  1091
		TPoint backedUpWinPt=TPoint(rect0.Width()/3,rect0.Height()/4);
sl@0
  1092
		iBackedUpWin->SetVisible(ETrue);
sl@0
  1093
sl@0
  1094
		CleanupStack::PushL(TCleanupSetVisible<EFalse>(iBackedUpWin));
sl@0
  1095
		CleanupStack::PushL(TCleanupSetVisible<EFalse>(iTestWin));
sl@0
  1096
sl@0
  1097
		
sl@0
  1098
		iBackedUpWin->SetExtL(backedUpWinPt,TSize(rect0.Width()/6,rect0.Height()/6));
sl@0
  1099
		TestChildWindowPositionAPIs(backedUpWinPt,TPoint(),iBackedUpWin->BaseWin(),iTestWin->BaseWin());
sl@0
  1100
sl@0
  1101
		CleanupStack::PopAndDestroy(2,iBackedUpWin); //TCleanupSetVisible
sl@0
  1102
		}
sl@0
  1103
	CleanupStack::PopAndDestroy(&color256);
sl@0
  1104
	}
sl@0
  1105
sl@0
  1106
TBool CTScreenModePositioning::ScalingSupportedByDisplayMode()
sl@0
  1107
	{
sl@0
  1108
	//PeterI Standard ScreenDriver only supports scaling in EColor256 and EColor64k
sl@0
  1109
	//see CDrawBitmap::CanBeScaled(), as mk3 is always in 16mu the tests will not pass.
sl@0
  1110
	TBool ret=EFalse;
sl@0
  1111
	TDisplayMode mode=TheClient->iScreen->DisplayMode();
sl@0
  1112
	if (mode==EColor64K || mode==EColor256)
sl@0
  1113
		{
sl@0
  1114
		ret=ETrue;
sl@0
  1115
		}
sl@0
  1116
	return ret;
sl@0
  1117
	}
sl@0
  1118
void CTScreenModePositioning::RunTestCaseL(TInt /*aCurTestCase*/)
sl@0
  1119
	{
sl@0
  1120
	_LIT(KWindowTests,"Window Tests");
sl@0
  1121
	_LIT(KSpriteTest,"Sprite Test");
sl@0
  1122
	_LIT(KRotationTests,"Rotation Tests");
sl@0
  1123
	((CTScreenModePositioningStep*)iStep)->SetTestStepID(KUnknownSYMTestCaseIDName);
sl@0
  1124
	switch(iTest->iState)
sl@0
  1125
		{
sl@0
  1126
	case 0:
sl@0
  1127
		((CTScreenModePositioningStep*)iStep)->SetTestStepID(KNotATestSYMTestCaseIDName);
sl@0
  1128
		if (!CheckNonZeroOriginsSupportedOrNot())
sl@0
  1129
			{
sl@0
  1130
			_LIT(KLog,"Non Zero Origins not supported");
sl@0
  1131
			LOG_MESSAGE(KLog);
sl@0
  1132
			TestComplete();
sl@0
  1133
			return;
sl@0
  1134
			}
sl@0
  1135
		break;
sl@0
  1136
	case 1:
sl@0
  1137
		iTest->LogSubTest(KWindowTests);
sl@0
  1138
		if(ScalingSupportedByDisplayMode())
sl@0
  1139
			WindowTestsL();
sl@0
  1140
		((CTScreenModePositioningStep*)iStep)->SetOverallTestStepID(_L("GRAPHICS-WSERV-0098"));
sl@0
  1141
		break;
sl@0
  1142
	case 2:
sl@0
  1143
		((CTScreenModePositioningStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0104"));
sl@0
  1144
		iTest->LogSubTest(KSpriteTest);
sl@0
  1145
		if(ScalingSupportedByDisplayMode())
sl@0
  1146
			SpriteTestL();
sl@0
  1147
		break;
sl@0
  1148
	case 3:
sl@0
  1149
		((CTScreenModePositioningStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0105"));
sl@0
  1150
		iTest->LogSubTest(KRotationTests);
sl@0
  1151
		RotationTestsL();
sl@0
  1152
		break;
sl@0
  1153
	default:
sl@0
  1154
		((CTScreenModePositioningStep*)iStep)->SetTestStepID(KNotATestSYMTestCaseIDName);
sl@0
  1155
  		((CTScreenModePositioningStep*)iStep)->CloseTMSGraphicsStep();
sl@0
  1156
		RestoreScreenMode();
sl@0
  1157
		TestComplete();
sl@0
  1158
		return;
sl@0
  1159
		}
sl@0
  1160
	((CTScreenModePositioningStep*)iStep)->RecordTestResultL();
sl@0
  1161
	++iTest->iState; // still used in the remaining code
sl@0
  1162
	}
sl@0
  1163
sl@0
  1164
__WS_CONSTRUCT_STEP__(ScreenModePositioning)