1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/test/tauto/TScreenModeScaling.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,1104 @@
1.4 +// Copyright (c) 1996-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// Test code for screen mode scaling CR
1.18 +// Test code for the Scaling part of Change Request PHAR-5SJGAM
1.19 +// ("Enable screen mode positioning and scaling").
1.20 +// Tests screen scale being configurable for a screen mode -
1.21 +// eg it is now possible to set in wsini.ini amount by which a screen
1.22 +// mode's screen will be scaled when drawn on the physical screen.
1.23 +//
1.24 +//
1.25 +
1.26 +/**
1.27 + @file
1.28 + @test
1.29 + @internalComponent - Internal Symbian test code
1.30 +*/
1.31 +
1.32 +#include "TScreenModeScaling.h"
1.33 +
1.34 +#define MY_TEST_BITMAP _L("Z:\\WSTEST\\MYTEST.MBM")
1.35 +
1.36 +LOCAL_D TSize FullScreenModeSize;
1.37 +LOCAL_D TInt Copy2ndHalfOfScreen;
1.38 +
1.39 +void ClearBitmap(CFbsBitmap* aBitMap)
1.40 + {
1.41 + // clear the content of bitmap before it is used for copying
1.42 + CFbsBitmapDevice *device=CFbsBitmapDevice::NewL(aBitMap);
1.43 + CleanupStack::PushL(device);
1.44 + CFbsBitGc *gc=NULL;
1.45 + User::LeaveIfError(device->CreateContext(gc));
1.46 + CleanupStack::PushL(gc);
1.47 + gc->Clear();
1.48 + CleanupStack::PopAndDestroy(2,device);
1.49 + }
1.50 +
1.51 +/*CBitMapWin*/
1.52 +
1.53 +void CBitMapWin::Draw()
1.54 + {
1.55 + iGc->BitBlt(TPoint(),&iBackup->Bitmap());
1.56 + }
1.57 +
1.58 +/*CTestSpriteWin*/
1.59 +
1.60 +CTestSpriteWin::~CTestSpriteWin()
1.61 + {
1.62 + }
1.63 +
1.64 +void CTestSpriteWin::UpdateWin(TPoint aOrigin)
1.65 + {
1.66 + SetOrigin(aOrigin);
1.67 + DrawNow();
1.68 + }
1.69 +
1.70 +void CTestSpriteWin::Draw()
1.71 + {
1.72 + iGc->BitBlt(iOrigin,&iSpriteBitmap);
1.73 + }
1.74 +
1.75 +/*CTScreenModeScaling*/
1.76 +
1.77 +CTScreenModeScaling::CTScreenModeScaling(CTestStep* aStep) : CTWsGraphicsBase(aStep)
1.78 + {
1.79 + }
1.80 +
1.81 +CTScreenModeScaling::~CTScreenModeScaling()
1.82 + {
1.83 + delete iTestWin;
1.84 + delete iBlankWin;
1.85 + delete iBackedUpWin;
1.86 + delete iTestChildWin;
1.87 + delete iScreenBitmap;
1.88 + delete iBitmapWin;
1.89 + delete iCheckWin;
1.90 + delete iTransWin;
1.91 + delete iBackgroundWin;
1.92 + delete iCheckBitmap;
1.93 + delete iTransparencyBitmap;
1.94 + delete iBackgroundBitmap;
1.95 + delete iForegroundBitmap;
1.96 + }
1.97 +
1.98 +void CTScreenModeScaling::ConstructL()
1.99 + {
1.100 + iDisplayMode=TheClient->iScreen->DisplayMode();
1.101 + if (iDisplayMode<EColor256)
1.102 + iDisplayMode=EColor256;
1.103 + User::LeaveIfError(iSpriteBitmap.Load(MY_TEST_BITMAP,0));
1.104 +
1.105 + TheClient->iScreen->SetAppScreenMode(TheClient->iScreenModes[0]);
1.106 + FullScreenModeSize=TheClient->iScreen->SizeInPixels();
1.107 + iBlankWin=new(ELeave) CTBlankWindow();
1.108 + iBlankWin->ConstructL(*TheClient->iGroup);
1.109 + User::LeaveIfError(iBlankWin->BaseWin()->SetRequiredDisplayMode(EColor256));
1.110 + iBlankWin->SetExt(TPoint(),FullScreenModeSize);
1.111 + iBlankWin->Activate();
1.112 +
1.113 + iTestWin=new(ELeave) CBasicWin;
1.114 + iTestWin->ConstructExtLD(*TheClient->iGroup,TPoint(),FullScreenModeSize);
1.115 + User::LeaveIfError(iTestWin->BaseWin()->SetRequiredDisplayMode(EColor256));
1.116 + iTestWin->AssignGC(*TheClient->iGc);
1.117 + iTestWin->SetVisible(EFalse);
1.118 + iTestWin->Activate();
1.119 + iTestWin->BaseWin()->SetShadowDisabled(ETrue);
1.120 + iTestWin->BaseWin()->SetShadowHeight(0);
1.121 +
1.122 + iBackedUpWin=new(ELeave) CTBackedUpWin(iDisplayMode);
1.123 + iBackedUpWin->ConstructExtLD(*iTestWin,TPoint(),FullScreenModeSize);
1.124 + iBackedUpWin->SetVisible(EFalse);
1.125 + iBackedUpWin->Activate();
1.126 +
1.127 + iTestChildWin=new(ELeave) CTBlankWindow();
1.128 + iTestChildWin->ConstructL(*iTestWin);
1.129 + User::LeaveIfError(iTestChildWin->BaseWin()->SetRequiredDisplayMode(EColor256));
1.130 + iTestChildWin->BaseWin()->SetShadowDisabled(ETrue);
1.131 + iTestChildWin->SetColor(KRgbGreen);
1.132 + iTestChildWin->BaseWin()->SetVisible(EFalse);
1.133 + iTestChildWin->Activate();
1.134 +
1.135 + iScreenBitmap=new(ELeave) CFbsBitmap();
1.136 + User::LeaveIfError(iScreenBitmap->Create(TSize(FullScreenModeSize.iWidth/2,FullScreenModeSize.iHeight),iDisplayMode));
1.137 +
1.138 + iBitmapWin=new(ELeave) CBmpWin(*iScreenBitmap);
1.139 + iBitmapWin->ConstructExtLD(*TheClient->iGroup,TPoint(),iScreenBitmap->SizeInPixels());
1.140 + User::LeaveIfError(iBitmapWin->BaseWin()->SetRequiredDisplayMode(EColor256));
1.141 + iBitmapWin->AssignGC(*TheClient->iGc);
1.142 + iBitmapWin->Activate();
1.143 + iBitmapWin->SetVisible(EFalse);
1.144 + iBitmapWin->BaseWin()->SetShadowDisabled(ETrue);
1.145 + iBitmapWin->BaseWin()->SetShadowHeight(0);
1.146 +
1.147 + //.. Create all the bitmaps and transparent windows
1.148 + iWinSize.SetSize(20,20);
1.149 + iTransparencyBitmap=CBitmap::NewL(iWinSize,EGray256);
1.150 + iBackgroundBitmap=CBitmap::NewL(iWinSize,iDisplayMode);
1.151 + iForegroundBitmap=CBitmap::NewL(iWinSize,iDisplayMode);
1.152 +
1.153 + CBitMapWin* backgroundWin=new(ELeave) CBitMapWin(iBackgroundBitmap);
1.154 + backgroundWin->ConstructExtLD(*TheClient->iGroup,TPoint(),iWinSize);
1.155 + iBackgroundWin=backgroundWin;
1.156 + User::LeaveIfError(iBackgroundWin->BaseWin()->SetRequiredDisplayMode(EColor256));
1.157 + iBackgroundWin->SetVisible(EFalse);
1.158 + iBackgroundWin->BaseWin()->SetShadowDisabled(ETrue);
1.159 + iBackgroundWin->BaseWin()->SetShadowHeight(0);
1.160 + iBackgroundWin->AssignGC(*TheClient->iGc);
1.161 + iBackgroundWin->Activate();
1.162 +
1.163 + CBitMapWin* transWin=new(ELeave) CBitMapWin(iForegroundBitmap);
1.164 + transWin->ConstructExtLD(*TheClient->iGroup,TPoint(),iWinSize);
1.165 + iTransWin=transWin;
1.166 + RWindowBase& transWinB=*iTransWin->BaseWin();
1.167 + User::LeaveIfError(transWinB.SetRequiredDisplayMode(EColor256));
1.168 + transWinB.SetShadowDisabled(ETrue);
1.169 + transWinB.SetShadowHeight(0);
1.170 + iTransWin->SetVisible(EFalse);
1.171 + iTransWin->AssignGC(*TheClient->iGc);
1.172 + iTransWin->Win()->SetTransparencyBitmap(iTransparencyBitmap->Bitmap());
1.173 + iTransWin->Activate();
1.174 +
1.175 + CTBackedUpWin* checkWin=new(ELeave) CTBackedUpWin(iDisplayMode);
1.176 + checkWin->ConstructExtLD(*TheClient->iGroup,TPoint(iWinSize.iWidth+1,0),iWinSize);
1.177 + iCheckWin=checkWin;
1.178 + RBackedUpWindow& win=*iCheckWin->BackedUpWin();
1.179 + win.SetShadowHeight(0);
1.180 + iCheckWin->Activate();
1.181 + win.MaintainBackup();
1.182 + iCheckBitmap=CBitmap::NewL(win.BitmapHandle());
1.183 + iCheckWin->BaseWin()->SetShadowDisabled(ETrue);
1.184 + iCheckWin->BaseWin()->SetShadowHeight(0);
1.185 + iCheckWin->BaseWin()->SetVisible(EFalse);
1.186 + TheClient->Flush();
1.187 + TheClient->WaitForRedrawsToFinish();
1.188 + }
1.189 +
1.190 +void CTScreenModeScaling::TestTopClientWindowPositionAPIs(TPoint aPos,RWindowBase* aWin)
1.191 + {
1.192 + TEST(aWin->AbsPosition()==aPos);
1.193 + TEST(aWin->Position()==aPos);
1.194 + TEST(aWin->InquireOffset(*TheClient->iGroup->GroupWin())==aPos);
1.195 + }
1.196 +
1.197 +void CTScreenModeScaling::TestChildWindowPositionAPIs(TPoint aPos,TPoint aParentPos,RWindowBase* aWin,RWindowBase* aParentWin)
1.198 + {
1.199 + TEST(aWin->AbsPosition()==aParentPos+aPos);
1.200 + TEST(aWin->Position()==aPos);
1.201 + TEST(aWin->InquireOffset(*TheClient->iGroup->GroupWin())==aParentPos+aPos);
1.202 + TEST(aWin->InquireOffset(*aParentWin)==aPos);
1.203 + }
1.204 +
1.205 +void CTScreenModeScaling::TestRect()
1.206 + {
1.207 + // Here if the width or height of the screen cannot be divided by 2
1.208 + // then make both the rect size same by reducing the first or second which ever is smaller
1.209 + // and make sure that top left corner is not disturbed.
1.210 + TRect rect1=TRect(PhysicalToLogical(TPoint()-iCurrentScreenModeOrigin,iCurrentScreenModeScale),
1.211 + PhysicalToLogical(TPoint(FullScreenModeSize.iWidth/2,FullScreenModeSize.iHeight)-iCurrentScreenModeOrigin,
1.212 + iCurrentScreenModeScale)
1.213 + );
1.214 + TRect rect2=TRect(PhysicalToLogical(TPoint(FullScreenModeSize.iWidth/2,0)-iCurrentScreenModeOrigin,
1.215 + iCurrentScreenModeScale),
1.216 + PhysicalToLogical(FullScreenModeSize.AsPoint()-iCurrentScreenModeOrigin,
1.217 + iCurrentScreenModeScale)
1.218 + );
1.219 + 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)))
1.220 + {
1.221 + rect1.SetRect(rect1.iTl,rect2.Size());
1.222 + }
1.223 + 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)))
1.224 + {
1.225 + rect2.SetRect(rect2.iTl,rect1.Size());
1.226 + }
1.227 + TBool retVal = TheClient->iScreen->RectCompare(rect1,rect2);
1.228 + TEST(retVal);
1.229 + if (!retVal)
1.230 + INFO_PRINTF3(_L("TheClient->iScreen->RectCompare(rect1,rect2) return value - Expected: %d, Actual: %d"), ETrue, retVal);
1.231 + }
1.232 +
1.233 +void CTScreenModeScaling::CompareRegionsL(const TRegion &aRegion1,const TRegion &aRegion2)
1.234 + {
1.235 + RRegion tmp;
1.236 + tmp.Copy(aRegion1);
1.237 + tmp.SubRegion(aRegion2);
1.238 + if (tmp.CheckError())
1.239 + User::Leave(KErrNoMemory);
1.240 + TBool retVal = tmp.IsEmpty();
1.241 + TEST(retVal);
1.242 + if (!retVal)
1.243 + INFO_PRINTF3(_L("RRegion1.IsEmpty() return value - Expected: %d, Actual: %d"), ETrue, retVal);
1.244 + tmp.Copy(aRegion2);
1.245 + tmp.SubRegion(aRegion1);
1.246 + if (tmp.CheckError())
1.247 + User::Leave(KErrNoMemory);
1.248 + retVal = tmp.IsEmpty();
1.249 + TEST(retVal);
1.250 + if (!retVal)
1.251 + INFO_PRINTF3(_L("RRegion2.IsEmpty() return value - Expected: %d, Actual: %d"), ETrue, retVal);
1.252 +
1.253 + tmp.Close();
1.254 + }
1.255 +
1.256 +void CTScreenModeScaling::SetUpSpriteLC(RWsSprite &aSprite, RWsSession &aSession, RWindowTreeNode &aWindow,TInt aFlags)
1.257 + {
1.258 + aSprite=RWsSprite(aSession);
1.259 + User::LeaveIfError(aSprite.Construct(aWindow,TPoint(),aFlags));
1.260 + CleanupClosePushL(aSprite);
1.261 + TSpriteMember member;
1.262 + iTest->SetUpMember(member);
1.263 + member.iBitmap=&iSpriteBitmap;
1.264 + User::LeaveIfError(aSprite.AppendMember(member));
1.265 + User::LeaveIfError(aSprite.Activate());
1.266 + }
1.267 +
1.268 +void CTScreenModeScaling::TestGetInvalidRegionL(TRect& aRect)
1.269 + {
1.270 + RRegion testRegion;
1.271 + RRegion invalid;
1.272 + iTestWin->Invalidate(aRect);
1.273 + testRegion.AddRect(aRect);
1.274 + iTestWin->Win()->GetInvalidRegion(invalid);
1.275 + CleanupClosePushL(testRegion);
1.276 + CleanupClosePushL(invalid);
1.277 + CompareRegionsL(testRegion, invalid);
1.278 + CleanupStack::PopAndDestroy(2, &testRegion);
1.279 + TheClient->WaitForRedrawsToFinish();
1.280 + }
1.281 +
1.282 +void CTScreenModeScaling::CopyAndCompareL()
1.283 + {
1.284 + TInt oldOrdinalPriority = TheClient->iGroup->GroupWin()->OrdinalPriority();
1.285 + TInt oldOrdinalPosition = TheClient->iGroup->GroupWin()->OrdinalPosition();
1.286 + // the following line makes sure that a console object hidden outside of
1.287 + // screens range doesn't affect test results ocerlapping the bitmap window
1.288 + TheClient->iGroup->GroupWin()->SetOrdinalPosition(0, 65535);
1.289 +
1.290 + // clear the content of bitmap before it is used for copying
1.291 + ClearBitmap(iScreenBitmap);
1.292 +
1.293 + // Copy first half or second half of the screen to a bitmap then paste it to second or first half of the screen
1.294 + TRect testWinRect(PhysicalToLogical(TPoint((Copy2ndHalfOfScreen ? FullScreenModeSize.iWidth/2 : 0),0)-iCurrentScreenModeOrigin,iCurrentScreenModeScale),
1.295 + PhysicalToLogical(TPoint((Copy2ndHalfOfScreen ? FullScreenModeSize.iWidth : FullScreenModeSize.iWidth/2),FullScreenModeSize.iHeight)-iCurrentScreenModeOrigin,iCurrentScreenModeScale)
1.296 + );
1.297 + TheClient->iScreen->CopyScreenToBitmap(iScreenBitmap,testWinRect);
1.298 + iBitmapWin->SetExt(PhysicalToLogical(TPoint((Copy2ndHalfOfScreen ? 0 : FullScreenModeSize.iWidth/2),0)-iCurrentScreenModeOrigin,iCurrentScreenModeScale),testWinRect.Size());
1.299 + iBitmapWin->SetVisible(ETrue);
1.300 + iBitmapWin->DrawNow();
1.301 + TheClient->Flush();
1.302 + TestRect();
1.303 + iBitmapWin->SetVisible(EFalse);
1.304 + iTestWin->SetVisible(EFalse);
1.305 + TheClient->Flush();
1.306 +
1.307 + TheClient->iGroup->GroupWin()->SetOrdinalPosition(oldOrdinalPosition, oldOrdinalPriority);
1.308 + }
1.309 +
1.310 +/**
1.311 +@SYMTestCaseID GRAPHICS-WSERV-0093
1.312 +
1.313 +@SYMDEF DEF081259, DEF111847
1.314 +
1.315 +@SYMTestCaseDesc Window tests
1.316 + REQUIREMENT: PREQ673 (Screen Scaling)
1.317 + API: RWindowBase::InquireOffset(), RWindowBase::AbsPosition(),RWindowBase::Position()
1.318 +
1.319 +@SYMTestPriority High
1.320 +
1.321 +@SYMTestStatus Implemented
1.322 +
1.323 +@SYMTestActions Loops through all the screen modes present in the wsini file, and then moves to the test screen
1.324 + mode where it goes on changing the screen scale and origin. In each of the wsini screen modes and test
1.325 + screen modes, it checks the test window's API's RWindowBase::InquireOffset(), RWindowBase::AbsPosition()
1.326 + RWindowBase::Position(). Then it copies the content from either first or second half to second or first
1.327 + half and compares both the regions so that its content are same.
1.328 + Additionally, as part of defect fix DEF111847, this also loops through all the display modes, and if possible
1.329 + tests each with the above described method. Previously, it use to only test Color256.
1.330 +
1.331 +@SYMTestExpectedResults The content of both halves of the screen should match.
1.332 +*/
1.333 +void CTScreenModeScaling::WindowTestsL()
1.334 + {
1.335 + INFO_PRINTF1(_L("AUTO WindowTests : "));
1.336 +
1.337 + TDisplayMode curDispMode; // Holds the current display mode being tested
1.338 +
1.339 + for(curDispMode = EGray2; curDispMode < EColorLast; curDispMode = TDisplayMode(curDispMode+1))
1.340 + {
1.341 + if (curDispMode == ERgb)
1.342 + {
1.343 + continue;
1.344 + }
1.345 + CTClient* client=new(ELeave) CTClient();
1.346 + CleanupStack::PushL(client);
1.347 + client->SetScreenNumber(iTest->iScreenNumber);
1.348 + client->ConstructL();
1.349 + client->iGroup=new(ELeave) TestWindowGroup(client);
1.350 + client->iGroup->ConstructL();
1.351 + client->iGroup->WinTreeNode()->SetOrdinalPosition(1);
1.352 + RBlankWindow testWindow(client->iWs);
1.353 + User::LeaveIfError(testWindow.Construct(*TheClient->iGroup->GroupWin(),ENullWsHandle));
1.354 + CleanupClosePushL(testWindow);
1.355 +
1.356 + TInt setDispMode; // Holds the actual display mode that was set
1.357 + setDispMode = testWindow.SetRequiredDisplayMode(curDispMode);
1.358 +
1.359 + //Only do the tests if the requested mode was actually set
1.360 + if(curDispMode == setDispMode)
1.361 + {
1.362 + //Create and show DisplayMode details message
1.363 + _LIT(KModeDetails, "Display Mode: ");
1.364 + TBuf<30> modeDetailsMessage(KModeDetails);
1.365 + modeDetailsMessage.Append(DisplayModeAsString(curDispMode));
1.366 + LOG_MESSAGE(modeDetailsMessage);
1.367 +
1.368 + testWindow.Activate();
1.369 + TheClient->iGroup->GroupWin()->EnableScreenChangeEvents();
1.370 + TInt numOfModes=TheClient->iScreenModes.Count();
1.371 + TInt ii;
1.372 + for (ii=0; ii<numOfModes; ++ii)
1.373 + {
1.374 + INFO_PRINTF1(_L(" Start of Loop"));
1.375 + iCurrentMode=TheClient->iScreenModes[ii];
1.376 + TPixelsAndRotation pixelsAndRotation;
1.377 + iCurrentScreenModeOrigin=TheClient->iScreen->GetScreenModeOrigin(iCurrentMode);
1.378 + iCurrentScreenModeScale=TheClient->iScreen->GetScreenModeScale(iCurrentMode);
1.379 + TheClient->iScreen->GetScreenModeSizeAndRotation(iCurrentMode,pixelsAndRotation);
1.380 + if (pixelsAndRotation.iRotation==CFbsBitGc::EGraphicsOrientationNormal)
1.381 + {
1.382 + INFO_PRINTF1(_L(" Do Tests"));
1.383 + TRAPD(ret,DoWindowTestsL());
1.384 + TEST(ret==KErrNone);
1.385 + if (ret!=KErrNone)
1.386 + {
1.387 + INFO_PRINTF3(_L("DoWindowTestsL() return value - Expected: %d, Actual: %d"), KErrNone, ret);
1.388 + }
1.389 +
1.390 + INFO_PRINTF1(_L(" Window Trees"));
1.391 + client->iScreen->SetAppScreenMode(iCurrentMode);
1.392 + client->Flush();
1.393 + }
1.394 + }
1.395 + TestDifferentScales(numOfModes-1);
1.396 + }
1.397 + CleanupStack::PopAndDestroy(2,client);
1.398 + }
1.399 + }
1.400 +
1.401 +void CTScreenModeScaling::TestDifferentScales(TInt aLastModeIdx)
1.402 + {
1.403 + if (aLastModeIdx<0) return;
1.404 + TPixelsAndRotation pixelsAndRotation;
1.405 + for (TInt modeCount=aLastModeIdx;modeCount>=0;--modeCount)
1.406 + {
1.407 + TheClient->iScreen->GetScreenModeSizeAndRotation(TheClient->iScreenModes[modeCount],pixelsAndRotation);
1.408 + if (pixelsAndRotation.iRotation==CFbsBitGc::EGraphicsOrientationNormal)
1.409 + break;
1.410 + }
1.411 + iCurrentMode=TheClient->iScreenModes[aLastModeIdx];
1.412 + TheClient->iScreen->SetAppScreenMode(iCurrentMode);
1.413 + TheClient->iScreen->SetScreenMode(iCurrentMode);
1.414 + TSizeMode storeModeData=TheClient->iScreen->GetCurrentScreenModeAttributes();
1.415 + TSizeMode testMode=storeModeData;
1.416 + for (TInt xScale=1;xScale<4;++xScale)
1.417 + {
1.418 + for (TInt yScale=1;yScale<4;++yScale)
1.419 + {
1.420 + testMode.iScreenScale=TSize(xScale,yScale);
1.421 + TestDifferentOrigin(testMode,TPoint(20,20));
1.422 + TestDifferentOrigin(testMode,TPoint(20,30));
1.423 + TestDifferentOrigin(testMode,TPoint(30,20));
1.424 + TestDifferentOrigin(testMode,TPoint(FullScreenModeSize.iWidth/2+640/FullScreenModeSize.iWidth*10,60));
1.425 + }
1.426 + }
1.427 + TheClient->iScreen->SetScreenMode(iCurrentMode);
1.428 + TheClient->iScreen->SetCurrentScreenModeAttributes(storeModeData);
1.429 + TInt defaultMode=TheClient->iScreenModes[0];
1.430 + TheClient->iScreen->SetAppScreenMode(defaultMode);
1.431 + TheClient->iScreen->SetScreenMode(defaultMode);
1.432 + }
1.433 +
1.434 +void CTScreenModeScaling::TestDifferentOrigin(TSizeMode &aMode,TPoint aOrigin)
1.435 + {
1.436 + TheClient->iScreen->SetScreenMode(iCurrentMode);//.. this is required because at the end of next screenmode test it will be set to zero screen mode
1.437 + aMode.iOrigin=aOrigin;
1.438 + TheClient->iScreen->SetCurrentScreenModeAttributes(aMode);
1.439 + TheClient->iScreen->SetAppScreenMode(iCurrentMode);
1.440 + TheClient->iScreen->SetScreenMode(iCurrentMode);
1.441 + iCurrentScreenModeOrigin=TheClient->iScreen->GetScreenModeOrigin(iCurrentMode);
1.442 + iCurrentScreenModeScale=TheClient->iScreen->GetScreenModeScale(iCurrentMode);
1.443 + TRAPD(ret,DoWindowTestsL());
1.444 + TEST(ret==KErrNone);
1.445 + if (ret!=KErrNone)
1.446 + INFO_PRINTF3(_L("DoWindowTestsL() return value - Expected: %d, Actual: %d"), KErrNone, ret);
1.447 + }
1.448 +
1.449 +void CTScreenModeScaling::DoWindowTestsL()
1.450 + {
1.451 + TheClient->iScreen->SetAppScreenMode(iCurrentMode);
1.452 + TheClient->iScreen->SetScreenMode(iCurrentMode);
1.453 + Copy2ndHalfOfScreen=(iCurrentScreenModeOrigin.iX>FullScreenModeSize.iWidth/2? 1 : 0);
1.454 + TRect testWinRect(PhysicalToLogical(TPoint(),iCurrentScreenModeScale),
1.455 + PhysicalToLogical(TPoint((Copy2ndHalfOfScreen ? FullScreenModeSize.iWidth
1.456 + : FullScreenModeSize.iWidth/2),
1.457 + FullScreenModeSize.iHeight)-iCurrentScreenModeOrigin,iCurrentScreenModeScale)
1.458 + );
1.459 + testWinRect.Shrink(10,10);
1.460 + iTestWinSize=testWinRect.Size();
1.461 + PositionTestL(testWinRect.iTl);
1.462 + testWinRect.Shrink(10,10);
1.463 + iTestWinSize=testWinRect.Size();
1.464 + PositionTestL(testWinRect.iTl);
1.465 + BackedUpChildWindowTestL(testWinRect.iTl);
1.466 + GetInvalidRegionTestL(testWinRect.iTl);
1.467 + //NextScreenModeTestL(testWinRect.iTl); //This test needs a lot more work ###
1.468 + }
1.469 +
1.470 +void CTScreenModeScaling::PositionTestL(TPoint aPostion)
1.471 + {
1.472 + iTestWin->SetExt(aPostion,iTestWinSize);
1.473 + iTestWin->SetVisible(ETrue);
1.474 + iTestWin->Invalidate();
1.475 + TheClient->Flush();
1.476 + TheClient->WaitForRedrawsToFinish();
1.477 + TestTopClientWindowPositionAPIs(aPostion,iTestWin->BaseWin());
1.478 + CopyAndCompareL();
1.479 + }
1.480 +
1.481 +void CTScreenModeScaling::BackedUpChildWindowTestL(TPoint aPostion)
1.482 + {
1.483 + iTestWin->SetVisible(ETrue);
1.484 + TPoint backedUpWinPt=TPoint(iTestWinSize.iWidth/3,iTestWinSize.iHeight/4);
1.485 + iBackedUpWin->SetExtL(backedUpWinPt,TSize(iTestWinSize.iWidth/6,iTestWinSize.iHeight/6));
1.486 + iBackedUpWin->SetVisible(ETrue);
1.487 + TestChildWindowPositionAPIs(backedUpWinPt,aPostion,iBackedUpWin->BaseWin(),iTestWin->BaseWin());
1.488 + aPostion+=TPoint(10,10);
1.489 + iTestWin->SetPos(aPostion);
1.490 + TestTopClientWindowPositionAPIs(aPostion,iTestWin->BaseWin());
1.491 + TestChildWindowPositionAPIs(backedUpWinPt,aPostion,iBackedUpWin->BaseWin(),iTestWin->BaseWin());
1.492 + iTestWin->Invalidate();
1.493 + TheClient->Flush();
1.494 + TheClient->WaitForRedrawsToFinish();
1.495 + TestTopClientWindowPositionAPIs(aPostion,iTestWin->BaseWin());
1.496 + TestChildWindowPositionAPIs(backedUpWinPt,aPostion,iBackedUpWin->BaseWin(),iTestWin->BaseWin());
1.497 + CopyAndCompareL();
1.498 + iBackedUpWin->SetVisible(EFalse);
1.499 + }
1.500 +
1.501 +void CTScreenModeScaling::NextScreenModeTestL(TPoint aPos)
1.502 + {
1.503 + TInt numOfModes=TheClient->iScreenModes.Count();
1.504 + TInt defaultMode=TheClient->iScreenModes[0];
1.505 + TInt lastMode=TheClient->iScreenModes[numOfModes-1];
1.506 + TInt mode=(iCurrentMode<lastMode? iCurrentMode:defaultMode);
1.507 + // find current mode index
1.508 + TInt ii;
1.509 + TInt modeIdx=0;
1.510 + for (ii=0; ii<numOfModes; ++ii)
1.511 + {
1.512 + if (mode==TheClient->iScreenModes[ii])
1.513 + {
1.514 + modeIdx=ii;
1.515 + break;
1.516 + }
1.517 + }
1.518 + TPoint screenModeOrigin(0,0);
1.519 + TPixelsAndRotation pixelsAndRotation;
1.520 + while (screenModeOrigin==TPoint()||(pixelsAndRotation.iRotation!=CFbsBitGc::EGraphicsOrientationNormal))
1.521 + {
1.522 + mode=(mode==lastMode? defaultMode : TheClient->iScreenModes[++modeIdx]);
1.523 + if (mode==iCurrentMode)
1.524 + {
1.525 + return;
1.526 + }
1.527 + screenModeOrigin=TheClient->iScreen->GetScreenModeOrigin(mode);
1.528 + TheClient->iScreen->GetScreenModeSizeAndRotation(mode,pixelsAndRotation);
1.529 + }
1.530 + iTestWin->SetExt(aPos,iTestWinSize);
1.531 + iTestWin->SetVisible(ETrue);
1.532 + TheClient->Flush();
1.533 + CBasicWin* basicWin=new(ELeave) CBasicWin;
1.534 + CleanupStack::PushL(basicWin);
1.535 + basicWin->ConstructExtLD(*iTestWin,TPoint(),TSize(iTestWinSize.iWidth/5,iTestWinSize.iHeight/5));
1.536 + User::LeaveIfError(basicWin->BaseWin()->SetRequiredDisplayMode(EColor256));
1.537 + basicWin->AssignGC(*TheClient->iGc);
1.538 + basicWin->BaseWin()->SetShadowDisabled(ETrue);
1.539 + basicWin->BaseWin()->SetShadowHeight(0);
1.540 + basicWin->Activate();
1.541 + TPoint pos(iTestWinSize.iWidth/3,iTestWinSize.iWidth/4);
1.542 + basicWin->SetPos(pos);
1.543 + TheClient->Flush();
1.544 + TheClient->WaitForRedrawsToFinish();
1.545 + TestChildWindowPositionAPIs(pos,aPos,basicWin->BaseWin(),iTestWin->BaseWin());
1.546 + iCurrentScreenModeScale=TheClient->iScreen->GetScreenModeScale(mode);
1.547 + iCurrentScreenModeOrigin=TheClient->iScreen->GetScreenModeOrigin(mode);
1.548 + Copy2ndHalfOfScreen=(iCurrentScreenModeOrigin.iX>FullScreenModeSize.iWidth/2? 1 : 0);
1.549 + TheClient->iScreen->SetAppScreenMode(mode);
1.550 + TheClient->iScreen->SetScreenMode(mode);
1.551 + iTestWin->SetVisible(ETrue);
1.552 + CopyAndCompareL();
1.553 + TheClient->iScreen->SetAppScreenMode(defaultMode);
1.554 + TheClient->iScreen->SetScreenMode(defaultMode);
1.555 + CleanupStack::PopAndDestroy(basicWin);
1.556 + }
1.557 +
1.558 +void CTScreenModeScaling::GetInvalidRegionTestL(TPoint aPos)
1.559 + {
1.560 + iTestWin->SetExt(aPos,iTestWinSize);
1.561 + iTestWin->SetVisible(ETrue);
1.562 + iTestChildWin->SetExt(TPoint(iTestWinSize.iWidth>>2,iTestWinSize.iHeight>>2),TSize(iTestWinSize.iWidth>>1,iTestWinSize.iHeight>>1));
1.563 + iTestChildWin->SetVisible(ETrue);
1.564 + TheClient->Flush(); // ensure testchildwin is on-screen
1.565 +
1.566 + CArrayFixFlat<TRect> *rectList=new(ELeave) CArrayFixFlat<TRect>(3);
1.567 + CleanupStack::PushL(rectList);
1.568 + rectList->AppendL(TRect(1,1,5,2));
1.569 + rectList->AppendL(TRect(iTest->StdTestWindowSize().iWidth>>1,iTest->StdTestWindowSize().iHeight>>1,iTest->StdTestWindowSize().iWidth,iTest->StdTestWindowSize().iHeight));
1.570 + rectList->AppendL(TRect(2,0,4,5));
1.571 +
1.572 + // set iTestWin to a 'clean state' before invalidating rects in the window
1.573 + iTestWin->DrawNow();
1.574 + TheClient->Flush();
1.575 +
1.576 + // invalidate the various rectangles in iTestWin & then initiate a redraw of the window
1.577 + RRegion invalidRegion;
1.578 + RRegion region;
1.579 + for (TInt index=0;index<rectList->Count();index++)
1.580 + {
1.581 + const TRect& myRect = (*rectList)[index];
1.582 + iTestWin->Invalidate(myRect);
1.583 + region.AddRect(myRect);
1.584 + }
1.585 + CleanupStack::PopAndDestroy(rectList);
1.586 + CleanupClosePushL(invalidRegion);
1.587 + CleanupClosePushL(region);
1.588 + iTestWin->Win()->GetInvalidRegion(invalidRegion);
1.589 + CompareRegionsL(region, invalidRegion);
1.590 + CleanupStack::PopAndDestroy(2,&invalidRegion);
1.591 + iTestChildWin->SetVisible(EFalse);
1.592 +
1.593 + // ensure the test child win is removed
1.594 + TheClient->Flush();
1.595 + TheClient->WaitForRedrawsToFinish();
1.596 +
1.597 + TRect rect1(iTestWinSize);
1.598 + TestGetInvalidRegionL(rect1);
1.599 + TInt width=iTestWinSize.iWidth;
1.600 + TInt height=iTestWinSize.iHeight;
1.601 + TRect rect2(TPoint(width/6,height/6),TSize(width/3,height/3));
1.602 + TestGetInvalidRegionL(rect2);
1.603 +
1.604 + // invalidate the entire test window
1.605 + iTestWin->Invalidate();
1.606 + TheClient->Flush();
1.607 +
1.608 + iTestWin->SetPos(TPoint(15,15));
1.609 + iTestWin->SetPos(TPoint());
1.610 + iTestWin->SetPos(TPoint(-15,-15));
1.611 + iTestWin->SetPos(aPos);
1.612 + RRegion invalid;
1.613 + RRegion testRegion(rect1);
1.614 + CleanupClosePushL(invalid);
1.615 + CleanupClosePushL(testRegion);
1.616 + iTestWin->Win()->GetInvalidRegion(invalid);
1.617 + TBool retVal = !invalid.CheckError();
1.618 + TEST(retVal);
1.619 + if (!retVal)
1.620 + INFO_PRINTF3(_L("RRegion.CheckError() return value - Expected: %d, Actual: %d"), ETrue, retVal);
1.621 + TEST(invalid.BoundingRect().iBr.iX<=iTestWinSize.iWidth);
1.622 + if (invalid.BoundingRect().iBr.iX>iTestWinSize.iWidth)
1.623 + INFO_PRINTF3(_L("invalid.BoundingRect().iBr.iX<=iTestWinSize.iWidth - Expected: %d, Actual: %d"), invalid.BoundingRect().iBr.iX, iTestWinSize.iWidth);
1.624 + CompareRegionsL(testRegion,invalid);
1.625 + CleanupStack::PopAndDestroy(2,&invalid);
1.626 +
1.627 + // redraw the test window & confirm
1.628 + iTestWin->DrawNow();
1.629 + TheClient->Flush();
1.630 + CopyAndCompareL();
1.631 + }
1.632 +
1.633 +/**
1.634 +@SYMTestCaseID GRAPHICS-WSERV-0094
1.635 +
1.636 +@SYMDEF DEF081259
1.637 +
1.638 +@SYMTestCaseDesc SpriteTestL
1.639 + REQUIREMENT: PREQ673 (Screen Scaling)
1.640 + API: RWsSprite::SetPosition()
1.641 +
1.642 +@SYMTestPriority High
1.643 +
1.644 +@SYMTestStatus Implemented
1.645 +
1.646 +@SYMTestActions In the same way as in window tests it shifts the screen modes.
1.647 + In each screen modes it creates a sprite window and then it moves slightly
1.648 + either side or bottom of the sprite, then it compares both the regions
1.649 + to check whether content are same.
1.650 +
1.651 +@SYMTestExpectedResults The content of both halves of the screen should match.
1.652 +*/
1.653 +void CTScreenModeScaling::SpriteTestL()
1.654 + {
1.655 + CTClient* client=new(ELeave) CTClient();
1.656 + CleanupStack::PushL(client);
1.657 + client->SetScreenNumber(iTest->iScreenNumber);
1.658 + client->ConstructL();
1.659 + client->iGroup=new(ELeave) TestWindowGroup(client);
1.660 + client->iGroup->ConstructL();
1.661 + client->iGroup->WinTreeNode()->SetOrdinalPosition(1);
1.662 + RBlankWindow color256(client->iWs);
1.663 + User::LeaveIfError(color256.Construct(*TheClient->iGroup->GroupWin(),ENullWsHandle));
1.664 + CleanupClosePushL(color256);
1.665 + color256.SetRequiredDisplayMode(EColor256);
1.666 + color256.Activate();
1.667 + TInt numOfModes=TheClient->iScreenModes.Count();
1.668 + TInt flushState=TheClient->iWs.SetAutoFlush(ETrue);
1.669 + TInt ii;
1.670 + for (ii=0; ii<numOfModes; ++ii)
1.671 + {
1.672 + iCurrentMode=TheClient->iScreenModes[ii];
1.673 + TPixelsAndRotation pixelsAndRotation;
1.674 + iCurrentScreenModeOrigin=TheClient->iScreen->GetScreenModeOrigin(iCurrentMode);
1.675 + iCurrentScreenModeScale=TheClient->iScreen->GetScreenModeScale(iCurrentMode);
1.676 + TheClient->iScreen->GetScreenModeSizeAndRotation(iCurrentMode,pixelsAndRotation);
1.677 + DoSpriteTestsL();
1.678 + client->iScreen->SetAppScreenMode(iCurrentMode);
1.679 + client->Flush();
1.680 + }
1.681 + iCurrentMode=TheClient->iScreenModes[numOfModes-1];
1.682 + TheClient->iScreen->SetAppScreenMode(iCurrentMode);
1.683 + TheClient->iScreen->SetScreenMode(iCurrentMode);
1.684 + TSizeMode storeModeData=TheClient->iScreen->GetCurrentScreenModeAttributes();
1.685 + TSizeMode testMode=storeModeData;
1.686 + for (TInt xScale=1;xScale<4;xScale++)
1.687 + {
1.688 + for (TInt yScale=1;yScale<4;yScale++)
1.689 + {
1.690 + testMode.iScreenScale=TSize(xScale,yScale);
1.691 + TestDifferentOriginAndScaleForSpritesL(testMode,TPoint(20,20));
1.692 + TestDifferentOriginAndScaleForSpritesL(testMode,TPoint(20,30));
1.693 + TestDifferentOriginAndScaleForSpritesL(testMode,TPoint(30,20));
1.694 + TestDifferentOriginAndScaleForSpritesL(testMode,TPoint(FullScreenModeSize.iWidth/2+10,60));
1.695 + }
1.696 + }
1.697 + TheClient->iScreen->SetScreenMode(iCurrentMode);
1.698 + TheClient->iScreen->SetCurrentScreenModeAttributes(storeModeData);
1.699 + TInt defaultMode=TheClient->iScreenModes[0];
1.700 + TheClient->iScreen->SetAppScreenMode(defaultMode);
1.701 + TheClient->iScreen->SetScreenMode(defaultMode);
1.702 + CleanupStack::PopAndDestroy(2,client);
1.703 + TheClient->iWs.SetAutoFlush(flushState);
1.704 + }
1.705 +
1.706 +void CTScreenModeScaling::TestDifferentOriginAndScaleForSpritesL(TSizeMode &aMode, TPoint aOrigin)
1.707 + {
1.708 + TheClient->iScreen->SetScreenMode(iCurrentMode);
1.709 + aMode.iOrigin=aOrigin;
1.710 + TheClient->iScreen->SetCurrentScreenModeAttributes(aMode);
1.711 + iCurrentScreenModeOrigin=TheClient->iScreen->GetScreenModeOrigin(iCurrentMode);
1.712 + iCurrentScreenModeScale=TheClient->iScreen->GetScreenModeScale(iCurrentMode);
1.713 + DoSpriteTestsL();
1.714 + }
1.715 +
1.716 +void CTScreenModeScaling::DoSpriteTestsL()
1.717 + {
1.718 + TheClient->iScreen->SetAppScreenMode(iCurrentMode);
1.719 + TheClient->iScreen->SetScreenMode(iCurrentMode);
1.720 + TPixelsAndRotation pixelsAndRotation;
1.721 + TheClient->iScreen->GetScreenModeSizeAndRotation(iCurrentMode,pixelsAndRotation);
1.722 + RWsSprite sprite;
1.723 + TSize spriteSize=iSpriteBitmap.SizeInPixels();
1.724 + if (spriteSize.iWidth*iCurrentScreenModeScale.iWidth>FullScreenModeSize.iWidth/2)
1.725 + spriteSize.iWidth=(FullScreenModeSize.iWidth/2-20)/iCurrentScreenModeScale.iWidth;
1.726 + SetUpSpriteLC(sprite,TheClient->iWs,*iBlankWin->BaseWin());
1.727 + sprite.SetPosition(TPoint());
1.728 + CTestSpriteWin* spriteWin=new(ELeave) CTestSpriteWin(iSpriteBitmap);
1.729 + CleanupStack::PushL(spriteWin);
1.730 + spriteWin->ConstructExtLD(*TheClient->iGroup,PhysicalToLogical(TPoint()-iCurrentScreenModeOrigin,iCurrentScreenModeScale),spriteSize);
1.731 + User::LeaveIfError(spriteWin->BaseWin()->SetRequiredDisplayMode(EColor256));
1.732 + spriteWin->AssignGC(*TheClient->iGc);
1.733 + spriteWin->SetVisible(ETrue);
1.734 + spriteWin->Activate();
1.735 + spriteWin->UpdateWin(TPoint());
1.736 + spriteWin->BaseWin()->SetShadowDisabled(ETrue);
1.737 + spriteWin->BaseWin()->SetShadowHeight(0);
1.738 + TheClient->Flush();
1.739 + TheClient->WaitForRedrawsToFinish();
1.740 + TPoint spritePosition;
1.741 + if (iCurrentScreenModeOrigin.iX<=spriteSize.iWidth || iCurrentScreenModeOrigin.iY<=spriteSize.iHeight)
1.742 + {
1.743 + if (pixelsAndRotation.iRotation==CFbsBitGc::EGraphicsOrientationNormal || pixelsAndRotation.iRotation==CFbsBitGc::EGraphicsOrientationRotated180)
1.744 + spritePosition=TPoint(spriteSize.iWidth+1,0);
1.745 + else
1.746 + spritePosition=TPoint(0,spriteSize.iHeight+1);
1.747 + }
1.748 + sprite.SetPosition(spritePosition);
1.749 + const TInt KAnimationGrace = 35000; //defined in server.cpp, but can be changed in wsini.ini
1.750 + User::After(KAnimationGrace);
1.751 + TBool retVal = TheClient->iScreen->RectCompare(TRect(PhysicalToLogical(TPoint()-iCurrentScreenModeOrigin,iCurrentScreenModeScale),spriteSize),TRect(spritePosition,spriteSize),CWsScreenDevice::EIncludeSprite);
1.752 + TEST(retVal);
1.753 + if (!retVal)
1.754 + INFO_PRINTF3(_L("TheClient->iScreen->RectCompare(rect1,rect2) return value - Expected: %d, Actual: %d"), ETrue, retVal);
1.755 +
1.756 + sprite.SetPosition(TPoint());
1.757 + CleanupStack::PopAndDestroy(spriteWin);
1.758 + CleanupStack::PopAndDestroy(&sprite);
1.759 + }
1.760 +
1.761 +/**
1.762 +@SYMTestCaseID GRAPHICS-WSERV-0095
1.763 +
1.764 +@SYMDEF DEF081259
1.765 +
1.766 +@SYMTestCaseDesc Rotation Tests
1.767 + REQUIREMENT: PREQ673 (Screen Scaling)
1.768 + API: RWindowBase::InquireOffset(), RWindowBase::AbsPosition(),RWindowBase::Position()
1.769 +
1.770 +@SYMTestPriority High
1.771 +
1.772 +@SYMTestStatus Implemented
1.773 +
1.774 +@SYMTestActions For each of the screen mode with all its rotation it checks whether the window
1.775 + is correctly placed in particular screen mode. Then it creates a child window
1.776 + and checks whether it s correctly placed.
1.777 +
1.778 +@SYMTestExpectedResults Checks the windows are positioned correctly according to the origin,scale and rotation
1.779 + of the new screen mode.
1.780 +*/
1.781 +void CTScreenModeScaling::RotationTestsL()
1.782 + {
1.783 + CTClient* client=new(ELeave) CTClient();
1.784 + CleanupStack::PushL(client);
1.785 + client->SetScreenNumber(iTest->iScreenNumber);
1.786 + client->ConstructL();
1.787 + client->iGroup=new(ELeave) TestWindowGroup(client);
1.788 + client->iGroup->ConstructL();
1.789 + client->iGroup->WinTreeNode()->SetOrdinalPosition(1);
1.790 + RBlankWindow color256(client->iWs);
1.791 + User::LeaveIfError(color256.Construct(*TheClient->iGroup->GroupWin(),ENullWsHandle));
1.792 + CleanupClosePushL(color256);
1.793 + color256.SetRequiredDisplayMode(EColor256);
1.794 + color256.Activate();
1.795 + TInt oldCurrentMode=0;
1.796 + TInt ii;
1.797 + //TInt screenMode=TheClient->iScreen->CurrentScreenMode();
1.798 + for (ii=0;ii<TheClient->iScreenModes.Count();)
1.799 + {
1.800 + iCurrentMode=TheClient->iScreenModes[ii];
1.801 + if (iCurrentMode!=oldCurrentMode)
1.802 + {
1.803 + client->iScreen->SetAppScreenMode(iCurrentMode);
1.804 + TheClient->iScreen->SetScreenMode(iCurrentMode);
1.805 + TheClient->iScreen->SetAppScreenMode(iCurrentMode);
1.806 + }
1.807 + TPixelsAndRotation pixelsAndRotation;
1.808 + TheClient->iScreen->GetDefaultScreenSizeAndRotation(pixelsAndRotation);
1.809 + oldCurrentMode=iCurrentMode;
1.810 + CArrayFixFlat<TInt>* rotations=new(ELeave) CArrayFixFlat<TInt>(1);
1.811 + CleanupStack::PushL(rotations);
1.812 + User::LeaveIfError(TheClient->iScreen->GetRotationsList(iCurrentMode,rotations));
1.813 + TInt count=rotations->Count();
1.814 + TInt jj=0;
1.815 + if (count>1)
1.816 + {
1.817 + for (jj=0;jj<count;)
1.818 + {
1.819 + if ((*rotations)[jj++]==pixelsAndRotation.iRotation)
1.820 + {
1.821 + break;
1.822 + }
1.823 + }
1.824 + if (jj==count)
1.825 + {
1.826 + jj=0;
1.827 + }
1.828 + }
1.829 + if (jj==0)
1.830 + {
1.831 + ii++;
1.832 + }
1.833 + TInt currentRotation=(*rotations)[jj];
1.834 + TheClient->iScreen->SetCurrentRotations(oldCurrentMode,REINTERPRET_CAST(CFbsBitGc::TGraphicsOrientation&,currentRotation));
1.835 + CleanupStack::PopAndDestroy(rotations);
1.836 + iCurrentScreenModeOrigin=TheClient->iScreen->GetScreenModeOrigin(oldCurrentMode);
1.837 + iCurrentScreenModeScale=TheClient->iScreen->GetScreenModeScale(oldCurrentMode);
1.838 + TRect testWinRect(PhysicalToLogical(TPoint(),iCurrentScreenModeScale),
1.839 + PhysicalToLogical(TPoint((Copy2ndHalfOfScreen ? FullScreenModeSize.iWidth : FullScreenModeSize.iWidth/2),FullScreenModeSize.iHeight)-iCurrentScreenModeOrigin,iCurrentScreenModeScale)
1.840 + );
1.841 + testWinRect.Shrink(10,10);
1.842 + iTestWin->SetExtL(testWinRect.iTl,testWinRect.Size());
1.843 + iTestWin->Invalidate();
1.844 + iTestWin->SetVisible(ETrue);
1.845 + TheClient->Flush();
1.846 + TheClient->WaitForRedrawsToFinish();
1.847 + TestTopClientWindowPositionAPIs(testWinRect.iTl,iTestWin->BaseWin());
1.848 + TPoint backedUpWinPt=TPoint(testWinRect.Width()/3,testWinRect.Height()/4);
1.849 + iBackedUpWin->SetVisible(ETrue);
1.850 + iBackedUpWin->SetExtL(backedUpWinPt,TSize(testWinRect.Width()/6,testWinRect.Height()/6));
1.851 + TestChildWindowPositionAPIs(backedUpWinPt,testWinRect.iTl,iBackedUpWin->BaseWin(),iTestWin->BaseWin());
1.852 + iTestWin->SetVisible(EFalse);
1.853 + iBackedUpWin->SetVisible(EFalse);
1.854 + }
1.855 + CleanupStack::PopAndDestroy(2,client);
1.856 + }
1.857 +
1.858 +void CTScreenModeScaling::DrawTransparentWindows()
1.859 + {
1.860 + //.. First Draw on Backgroundbitmap
1.861 + iBackgroundBitmap->Gc().SetBrushColor(TRgb(255,0,255));
1.862 + iBackgroundBitmap->Gc().SetBrushStyle(CGraphicsContext::ESolidBrush);
1.863 + iBackgroundBitmap->Gc().SetPenStyle(CGraphicsContext::ENullPen);
1.864 + iBackgroundBitmap->Gc().DrawRect(iWinSize);
1.865 +
1.866 + //.. Invalidate the background bitmap and do bitBlt to iCheckBitmap also
1.867 + iBackgroundWin->BaseWin()->SetVisible(ETrue);
1.868 + iBackgroundWin->DrawNow();
1.869 +
1.870 + //.. Copy to checkbitmap
1.871 + iCheckBitmap->Gc().SetFaded(EFalse);
1.872 + iCheckBitmap->Gc().BitBlt(TPoint(),&iBackgroundBitmap->Bitmap());
1.873 +
1.874 + //.. Set the grade of transperency
1.875 + iTransparencyBitmap->Gc().SetBrushColor(TRgb::Gray256(128));
1.876 + iTransparencyBitmap->Gc().SetBrushStyle(CGraphicsContext::ESolidBrush);
1.877 + iTransparencyBitmap->Gc().SetPenStyle(CGraphicsContext::ENullPen);
1.878 + iTransparencyBitmap->Gc().DrawRect(iWinSize);
1.879 +
1.880 + //.. Then draw to the fore ground bitmap and invalidate the second window
1.881 + iForegroundBitmap->Gc().Reset();
1.882 + iForegroundBitmap->Gc().SetPenStyle(CGraphicsContext::ESolidPen);
1.883 + iForegroundBitmap->Gc().SetPenSize(TSize(1,1));
1.884 + iForegroundBitmap->Gc().SetPenColor(TRgb(0,0,0));
1.885 + iForegroundBitmap->Gc().DrawLine(TPoint(0,0),TPoint(iWinSize.iWidth,iWinSize.iHeight));
1.886 + iForegroundBitmap->Gc().DrawLine(TPoint(iWinSize.iWidth,0),TPoint(0,iWinSize.iHeight));
1.887 + iTransWin->BaseWin()->SetVisible(ETrue);
1.888 + iTransWin->Invalidate();
1.889 + iTransWin->DrawNow();
1.890 +
1.891 + iCheckBitmap->Gc().AlphaBlendBitmaps(TPoint(0,0),&iForegroundBitmap->Bitmap(),&iCheckBitmap->Bitmap()
1.892 + ,TRect(iWinSize),TPoint(0,0),&iTransparencyBitmap->Bitmap(),TPoint(0,0));
1.893 + iCheckWin->BaseWin()->SetVisible(ETrue);
1.894 + iCheckWin->BackedUpWin()->UpdateScreen();
1.895 + TheClient->Flush();
1.896 + TheClient->WaitForRedrawsToFinish();
1.897 + CheckRect(iTransWin,iCheckWin,TRect(iWinSize),_L("DrawTransparentWindows() CheckRect failed"));
1.898 + }
1.899 +
1.900 +// !!! THE COMMENT BELOW IS DISABLED BECAUSE TransparentTests() METHOD IS NOT USED !!!
1.901 +//**
1.902 +//@SYMTestCaseID GRAPHICS-WSERV-0096
1.903 +//
1.904 +//@SYMDEF DEF081259
1.905 +//
1.906 +//@SYMTestCaseDesc TransparentTests
1.907 +// REQUIREMENT: PREQ673 (Screen Scaling)
1.908 +// API: CWindowGc::AlphaBlendBitmaps()
1.909 +//
1.910 +//@SYMTestPriority High
1.911 +//
1.912 +//@SYMTestStatus Implemented
1.913 +//
1.914 +//@SYMTestActions The main logic behind this test is to copy the content of the background window
1.915 +// bitmap to checkwindow bitmap and then use the foreground window bitmap and transparency bitmap
1.916 +// with the function AlphaBlendBitmaps() to get the content present on the combination of
1.917 +// foreground(transparent) window and background window. Then compare both the regions of the
1.918 +// window to check whether the content is same.
1.919 +//
1.920 +//@SYMTestExpectedResults The content of both halves of the screen should match.
1.921 +//*/
1.922 +void CTScreenModeScaling::TransparentTestsL()
1.923 + {
1.924 + TInt flushState=TheClient->iWs.SetAutoFlush(ETrue);
1.925 + TInt defaultMode=TheClient->iScreenModes[0];
1.926 + TheClient->iScreen->SetAppScreenMode(defaultMode);
1.927 + TheClient->iScreen->SetScreenMode(defaultMode);
1.928 + CTClient* client=new(ELeave) CTClient();
1.929 + CleanupStack::PushL(client);
1.930 + client->SetScreenNumber(iTest->iScreenNumber);
1.931 + client->ConstructL();
1.932 + client->iGroup=new(ELeave) TestWindowGroup(client);
1.933 + client->iGroup->ConstructL();
1.934 + client->iGroup->WinTreeNode()->SetOrdinalPosition(1);
1.935 + RBlankWindow color256(client->iWs);
1.936 + User::LeaveIfError(color256.Construct(*TheClient->iGroup->GroupWin(),ENullWsHandle));
1.937 + CleanupClosePushL(color256);
1.938 + color256.SetRequiredDisplayMode(EColor256);
1.939 + color256.Activate();
1.940 + client->Flush();
1.941 + DrawTransparentWindows();
1.942 + iCurrentMode=TheClient->iScreenModes[TheClient->iScreenModes.Count()-1];
1.943 + TheClient->iScreen->SetAppScreenMode(iCurrentMode);
1.944 + TheClient->iScreen->SetScreenMode(iCurrentMode);
1.945 + TSizeMode storeModeData=TheClient->iScreen->GetCurrentScreenModeAttributes();
1.946 + TSizeMode testMode=storeModeData;
1.947 + for (TInt xScale=1;xScale<4;xScale++)
1.948 + {
1.949 + for (TInt yScale=1;yScale<4;yScale++)
1.950 + {
1.951 + testMode.iScreenScale=TSize(xScale,yScale);
1.952 + TestDifferentOriginAndScaleForTranspWin(testMode,TPoint(20,20));
1.953 + TestDifferentOriginAndScaleForTranspWin(testMode,TPoint(20,30));
1.954 + TestDifferentOriginAndScaleForTranspWin(testMode,TPoint(30,20));
1.955 + TestDifferentOriginAndScaleForTranspWin(testMode,TPoint(FullScreenModeSize.iWidth/2+1,60));
1.956 + }
1.957 + }
1.958 + TheClient->iScreen->SetScreenMode(iCurrentMode);
1.959 + TheClient->iScreen->SetCurrentScreenModeAttributes(storeModeData);
1.960 + client->iScreen->SetAppScreenMode(iCurrentMode);
1.961 + client->Flush();
1.962 + TheClient->iScreen->SetAppScreenMode(defaultMode);
1.963 + TheClient->iScreen->SetScreenMode(defaultMode);
1.964 + TheClient->iWs.SetAutoFlush(flushState);
1.965 + CleanupStack::PopAndDestroy(2,client);
1.966 + }
1.967 +
1.968 +void CTScreenModeScaling::TestDifferentOriginAndScaleForTranspWin(TSizeMode &aMode,TPoint aOrigin)
1.969 + {
1.970 + TheClient->iScreen->SetScreenMode(iCurrentMode);
1.971 + aMode.iOrigin=aOrigin;
1.972 + TheClient->iScreen->SetCurrentScreenModeAttributes(aMode);
1.973 + TheClient->iScreen->SetAppScreenMode(iCurrentMode);
1.974 + TheClient->iScreen->SetScreenMode(iCurrentMode);
1.975 + TRAPD(ret,DrawTransparentWindows());
1.976 + TEST(ret==KErrNone);
1.977 + if (ret!=KErrNone)
1.978 + INFO_PRINTF3(_L("DrawTransparentWindows() return value - Expected: %d, Actual: %d"), KErrNone, ret);
1.979 +
1.980 + }
1.981 +
1.982 +/**
1.983 +@SYMTestCaseID GRAPHICS-WSERV-0097
1.984 +
1.985 +@SYMDEF DEF081259
1.986 +
1.987 +@SYMTestCaseDesc AppScreenModeTest
1.988 + REQUIREMENT: PREQ673 (Screen Scaling)
1.989 + API: CWsScreenDevice::SetAppScreenMode()
1.990 +
1.991 +@SYMTestPriority High
1.992 +
1.993 +@SYMTestStatus Implemented
1.994 +
1.995 +@SYMTestActions Enable the visibility of Test window, Call SetAppScreenMode() API with different
1.996 + screen mode. Check the variable which is set in its draw function.
1.997 +
1.998 +@SYMTestExpectedResults The variable should not be set when the application screen mode is different
1.999 + then current screen mode.
1.1000 +*/
1.1001 +void CTScreenModeScaling::AppScreenModeTestL()
1.1002 + {
1.1003 + TheClient->iScreen->SetAppScreenMode(0);
1.1004 + TheClient->iScreen->SetScreenMode(0);
1.1005 + iTestWin->iDrawn=EFalse;
1.1006 + iTestWin->SetExtL(TPoint(),TSize(FullScreenModeSize.iWidth/2,FullScreenModeSize.iHeight));
1.1007 + iTestWin->SetVisible(ETrue);
1.1008 + TheClient->Flush();
1.1009 + TheClient->WaitForRedrawsToFinish();
1.1010 + TEST(iTestWin->iDrawn);
1.1011 + if (!iTestWin->iDrawn)
1.1012 + INFO_PRINTF3(_L("iTestWin->iDrawn - Expected: %d, Actual: %d"), ETrue, iTestWin->iDrawn);
1.1013 +
1.1014 + iTestWin->iDrawn=EFalse;
1.1015 + TheClient->iScreen->SetAppScreenMode(2);
1.1016 + TheClient->iScreen->SetScreenMode(0);
1.1017 + iTestWin->Invalidate();
1.1018 + TheClient->Flush();
1.1019 + TEST(!iTestWin->iDrawn);
1.1020 + if (iTestWin->iDrawn)
1.1021 + INFO_PRINTF3(_L("iTestWin->iDrawn - Expected: %d, Actual: %d"), EFalse, iTestWin->iDrawn);
1.1022 +
1.1023 + TheClient->iScreen->SetAppScreenMode(0);
1.1024 + TheClient->Flush();
1.1025 + TheClient->WaitForRedrawsToFinish();
1.1026 + TEST(iTestWin->iDrawn);
1.1027 + if (!iTestWin->iDrawn)
1.1028 + INFO_PRINTF3(_L("iTestWin->iDrawn - Expected: %d, Actual: %d"), ETrue, iTestWin->iDrawn);
1.1029 +
1.1030 + iTestWin->iDrawn=EFalse;
1.1031 + TheClient->iScreen->SetScreenMode(1);
1.1032 + iTestWin->Invalidate();
1.1033 + TheClient->Flush();
1.1034 + TEST(!iTestWin->iDrawn);
1.1035 + if (iTestWin->iDrawn)
1.1036 + INFO_PRINTF3(_L("iTestWin->iDrawn - Expected: %d, Actual: %d"), EFalse, iTestWin->iDrawn);
1.1037 +
1.1038 + iTestWin->SetVisible(EFalse);
1.1039 + TheClient->iScreen->SetAppScreenMode(0);
1.1040 + TheClient->iScreen->SetScreenMode(0);
1.1041 + }
1.1042 +
1.1043 +void CTScreenModeScaling::RunTestCaseL(TInt /*aCurTestCase*/)
1.1044 + {
1.1045 + _LIT(KWindowTests,"Window Tests");
1.1046 + _LIT(KSpriteTest,"Sprite Test");
1.1047 + _LIT(KRotationTests,"Rotation Tests");
1.1048 + _LIT(KTransparentTests,"Transparent Tests");
1.1049 + _LIT(KAppScreenModeTest,"AppScreenMode Test");
1.1050 + _LIT(KScalling,"Scaling not Supported");
1.1051 + _LIT(KModes,"Only one Screen Size Mode");
1.1052 +
1.1053 + ((CTScreenModeScalingStep*)iStep)->SetTestStepID(KUnknownSYMTestCaseIDName);
1.1054 + switch(++iTest->iState)
1.1055 + {
1.1056 + case 1:
1.1057 + {
1.1058 + ((CTScreenModeScalingStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0097"));
1.1059 + TInt numScrModes=TheClient->iScreen->NumScreenModes();
1.1060 + if (numScrModes<2 || !CheckScalingSupportedOrNot())
1.1061 + {
1.1062 + if (numScrModes<2)
1.1063 + LOG_MESSAGE(KModes);
1.1064 + else
1.1065 + LOG_MESSAGE(KScalling);
1.1066 + TestComplete();
1.1067 + return;
1.1068 + }
1.1069 + iTest->LogSubTest(KAppScreenModeTest);
1.1070 + AppScreenModeTestL();
1.1071 + }
1.1072 + break;
1.1073 + case 2:
1.1074 + ((CTScreenModeScalingStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0093"));
1.1075 + iTest->LogSubTest(KWindowTests);
1.1076 + WindowTestsL();
1.1077 + break;
1.1078 + case 3:
1.1079 + ((CTScreenModeScalingStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0094"));
1.1080 + iTest->LogSubTest(KSpriteTest);
1.1081 + SpriteTestL();
1.1082 + break;
1.1083 + case 4:
1.1084 + ((CTScreenModeScalingStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0095"));
1.1085 + iTest->LogSubTest(KRotationTests);
1.1086 + RotationTestsL();
1.1087 + break;
1.1088 + case 5:
1.1089 + ((CTScreenModeScalingStep*)iStep)->SetTestStepID(KNotATestSYMTestCaseIDName);
1.1090 + iTest->LogSubTest(KTransparentTests);
1.1091 + //TransparentTestsL(); //This tests currently fails sometimes for reasons not understood ####
1.1092 + break;
1.1093 + default:
1.1094 + {
1.1095 + TInt defaultMode=TheClient->iScreenModes[0];
1.1096 + TheClient->iScreen->SetAppScreenMode(defaultMode);
1.1097 + TheClient->iScreen->SetScreenMode(defaultMode);
1.1098 + }
1.1099 + ((CTScreenModeScalingStep*)iStep)->SetTestStepID(KNotATestSYMTestCaseIDName);
1.1100 + ((CTScreenModeScalingStep*)iStep)->CloseTMSGraphicsStep();
1.1101 + TestComplete();
1.1102 + return;
1.1103 + }
1.1104 + ((CTScreenModeScalingStep*)iStep)->RecordTestResultL();
1.1105 + }
1.1106 +
1.1107 +__WS_CONSTRUCT_STEP__(ScreenModeScaling)