os/graphics/windowing/windowserver/test/tauto/TSCRDEVRESSWITCH.CPP
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/test/tauto/TSCRDEVRESSWITCH.CPP	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,581 @@
     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 +// Screen device test code
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +/**
    1.22 + @file
    1.23 + @test
    1.24 + @internalComponent - Internal Symbian test code
    1.25 +*/
    1.26 +
    1.27 +#include "TSCRDEVRESSWITCH.H"
    1.28 +
    1.29 +//Define this to get visible pauses (in test 6: DeviceResSwitchL)
    1.30 +//#define VISIBLE_PAUSES
    1.31 +
    1.32 +//Define this to get extra logging which may be useful in tracking down a fail
    1.33 +//#define EXTRA_LOGGING
    1.34 +
    1.35 +CTScreenDeviceResSwitch::CTScreenDeviceResSwitch(CTestStep* aStep) : CTWsGraphicsBase(aStep)
    1.36 +	{}
    1.37 +
    1.38 +CTScreenDeviceResSwitch::~CTScreenDeviceResSwitch()
    1.39 +	{}
    1.40 +
    1.41 +void CTScreenDeviceResSwitch::ConstructL()
    1.42 +	{
    1.43 +	//The following is just another test... it doesn't leave any resources for use by the test class AFAICT...
    1.44 +	RWsSession aSession;
    1.45 +	CWsScreenDevice *device1;
    1.46 +	CWsScreenDevice *device2;
    1.47 +	CWsScreenDevice *device3;
    1.48 +
    1.49 +	aSession.Connect();
    1.50 +	device1=new(ELeave) CWsScreenDevice(aSession);
    1.51 +	device1->Construct(iTest->iScreenNumber);
    1.52 +	delete device1;
    1.53 +	device1=new(ELeave) CWsScreenDevice(aSession);
    1.54 +	device1->Construct(iTest->iScreenNumber);
    1.55 +	device2=new(ELeave) CWsScreenDevice(aSession);
    1.56 +	device2->Construct(iTest->iScreenNumber);
    1.57 +	device3=new(ELeave) CWsScreenDevice(aSession);
    1.58 +	device3->Construct(iTest->iScreenNumber);
    1.59 +	delete device3;
    1.60 +	CFbsFont *font;
    1.61 +	User::LeaveIfError(device1->GetNearestFontToDesignHeightInTwips((CFont *&)font,TFontSpec()));
    1.62 +	RWindowGroup group(aSession);
    1.63 +	group.Construct(777);
    1.64 +	group.SetOwningWindowGroup(TheClient->iGroup->GroupWin()->Identifier());
    1.65 +	RWindow win(aSession);
    1.66 +	win.Construct(group,77);
    1.67 +	CWindowGc *gc=new(ELeave) CWindowGc(device1);
    1.68 +	gc->Construct();
    1.69 +	gc->Activate(win);
    1.70 +	gc->UseFont(font);
    1.71 +	device1->ReleaseFont(font);
    1.72 +	aSession.Flush();
    1.73 +	delete gc;
    1.74 +	win.Close();
    1.75 +	group.Close();
    1.76 +	delete device1;
    1.77 +	delete device2;
    1.78 +	aSession.Close();
    1.79 +	}
    1.80 +
    1.81 +	
    1.82 +class CPrimaryColoursWin : public CTWin
    1.83 +	{
    1.84 +public:
    1.85 +	enum	//various size factors	
    1.86 +		{  	
    1.87 +			kShrinkFactor=5,
    1.88 +			kPlotSize=16,
    1.89 +			kPlotMargin=4,
    1.90 +			kPlotWithMargin=kPlotSize+kPlotMargin,
    1.91 +			kPlotsAccross=3,
    1.92 +			kPlotsDown=1,
    1.93 +			kMinWidth=kPlotWithMargin*kPlotsAccross+kPlotMargin,
    1.94 +			kMinHeight=kPlotWithMargin*kPlotsDown+kPlotMargin,
    1.95 +		    KNumChannels=3,
    1.96 +		    KNumColours=256
    1.97 +		};
    1.98 +		
    1.99 +	CPrimaryColoursWin();
   1.100 +	~CPrimaryColoursWin();
   1.101 +	//Virtual Function from CTBaseWin
   1.102 +	void Draw();
   1.103 +	TInt CountUniquePlottedColours();
   1.104 +	TInt iDrawn;
   1.105 +	TInt iNumColours;
   1.106 +	TBool iBadPixels[KNumChannels][KNumColours];
   1.107 +	TBuf<0x40> iDisplayText;
   1.108 +	};
   1.109 +	
   1.110 +CPrimaryColoursWin::CPrimaryColoursWin()
   1.111 +	{
   1.112 +	for (TInt channelnum=0;channelnum<KNumChannels;channelnum++)
   1.113 +		{
   1.114 +		for (TInt colour=0;colour<KNumColours;colour++)
   1.115 +			{
   1.116 +			iBadPixels[channelnum][colour]=EFalse;
   1.117 +			}
   1.118 +		}
   1.119 +		
   1.120 +	iDisplayText.Zero();
   1.121 +	iDisplayText.Format(_L("Test text"));
   1.122 +	}
   1.123 +	
   1.124 +CPrimaryColoursWin::~CPrimaryColoursWin()
   1.125 +	{
   1.126 +
   1.127 +	}
   1.128 +	
   1.129 +void CPrimaryColoursWin::Draw()
   1.130 +	{
   1.131 +	iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
   1.132 +	iGc->SetPenStyle(CGraphicsContext::ESolidPen);
   1.133 +	iGc->SetPenColor(TRgb(255, 255, 255));
   1.134 +	iGc->SetBrushColor(TRgb(0, 0, 0));
   1.135 +	TSize winSize = Size();
   1.136 +	iGc->DrawRect(TRect(winSize));
   1.137 +	
   1.138 +	CFont* font;
   1.139 +	TFontSpec fontSpec(_L(""), 300);
   1.140 +	TheClient->iScreen->GetNearestFontInTwips(font, fontSpec);
   1.141 +	
   1.142 +	if (font)
   1.143 +		{
   1.144 +		iGc->UseFont(font);
   1.145 +		TRect r(TPoint(0, 0), Size());
   1.146 +		r.Shrink(kMinHeight, kMinHeight);
   1.147 +		iGc->DrawText(iDisplayText, r, font->AscentInPixels(), iGc->ECenter, 0);
   1.148 +		iGc->DiscardFont();
   1.149 +		TheClient->iScreen->ReleaseFont(font);
   1.150 +		}
   1.151 +	
   1.152 +	iNumColours = 0;
   1.153 +	TPoint lhsAbs = Win()->AbsPosition();
   1.154 +	
   1.155 +	for(TInt channelnum = 0, channelmul = 1, xoordinate = kPlotMargin; channelnum < KNumChannels; channelnum++, channelmul <<= 8, xoordinate += kPlotWithMargin)
   1.156 +		{
   1.157 +		TRgb lastPixel(255, 255, 255, 255);
   1.158 +		
   1.159 +		for(TInt colour = 0; colour < KNumColours; colour++)
   1.160 +			{
   1.161 +			if(!iBadPixels[channelnum][colour])
   1.162 +				{
   1.163 +				iGc->SetPenColor(TRgb(colour * channelmul));				
   1.164 +				}
   1.165 +			else
   1.166 +				{
   1.167 +				iGc->SetPenColor(TRgb(255, 255, 255));			
   1.168 +				}
   1.169 +
   1.170 +			TPoint point = TPoint(xoordinate + (colour & 0x0f), kPlotMargin + (colour >> 4));
   1.171 +			iGc->Plot(point);
   1.172 +			}
   1.173 +		}
   1.174 +		
   1.175 +	iDrawn=ETrue;
   1.176 +	}
   1.177 +	
   1.178 +TInt CPrimaryColoursWin::CountUniquePlottedColours()
   1.179 +	{
   1.180 +	iNumColours = 0;
   1.181 +	TPoint lhsAbs = Win()->AbsPosition();
   1.182 +	
   1.183 +	for(TInt channelnum = 0, channelmul = 1, xoordinate = kPlotMargin; channelnum < 3; channelnum++, channelmul <<=8 , xoordinate += kPlotWithMargin)
   1.184 +		{
   1.185 +		TRgb lastPixel(255, 255, 255, 255);
   1.186 +		
   1.187 +		for(TInt colour = 0; colour < 256; colour++)
   1.188 +			{
   1.189 +			TRgb readPixel;
   1.190 + 			TPoint point = TPoint(xoordinate + (colour & 0x0f), kPlotMargin + (colour >> 4));
   1.191 +			TheClient->iScreen->GetPixel(readPixel, lhsAbs + point);
   1.192 +			
   1.193 +			if(readPixel != lastPixel)
   1.194 +				{
   1.195 +				lastPixel = readPixel;
   1.196 +				iNumColours++;
   1.197 +				iBadPixels[channelnum][colour] = EFalse;
   1.198 +				}
   1.199 +			else
   1.200 +				{
   1.201 +				iBadPixels[channelnum][colour] = ETrue;
   1.202 +				}
   1.203 +			} // for loop 
   1.204 +		} // for loop
   1.205 +		
   1.206 +	return iNumColours;
   1.207 +	}
   1.208 +	
   1.209 +/**
   1.210 +	Intended primarily as a visual check that the mode is displayed correctly,
   1.211 +	for each rotated mode.
   1.212 +**/
   1.213 +void    CTScreenDeviceResSwitch::DeviceResSwitchWithRotationsL()
   1.214 +	{
   1.215 +	CWsScreenDevice *screen=TheClient->iScreen;
   1.216 +	TInt originalScreenMode = screen->CurrentScreenMode();
   1.217 +	TPixelsTwipsAndRotation originalModeSettings;
   1.218 +	screen->GetScreenModeSizeAndRotation(originalScreenMode,originalModeSettings);
   1.219 +	CArrayFixFlat<TInt> *rotations=new(ELeave) CArrayFixFlat<TInt>(1);
   1.220 +	CleanupStack::PushL(rotations);
   1.221 +	INFO_PRINTF2(_L("ScreenMode and rotation with colour depth. ScreenModes=%i"),TheClient->iScreenModes.Count());
   1.222 +	
   1.223 +	for (TInt rr=0,maxrr=3;rr<maxrr;++rr)
   1.224 +	for (TInt ii=0,maxii=TheClient->iScreenModes.Count();ii<maxii;++ii)
   1.225 +		{
   1.226 +		TInt newMode=TheClient->iScreenModes[ii];
   1.227 +		if (	screen->GetScreenModeOrigin(ii)!=TPoint(0,0)	||	screen->GetScreenModeScale(ii)!=TSize(1,1)	)
   1.228 +			{
   1.229 +			INFO_PRINTF2(_L("ScreenMode %i skipped: has scalind and/ or rotation"),ii);
   1.230 +			INFO_PRINTF1(_L("This scaling code is known to be broken if all modes do not support scaling"));
   1.231 +			INFO_PRINTF1(_L("See defect DEF111847 and break request 2226"));
   1.232 +			INFO_PRINTF5(_L("Origin: %i %i Scale %i %i"),
   1.233 +					screen->GetScreenModeOrigin(ii).iX,screen->GetScreenModeOrigin(ii).iY,
   1.234 +					screen->GetScreenModeScale(ii).iWidth,screen->GetScreenModeScale(ii).iHeight
   1.235 +				);
   1.236 +			continue;
   1.237 +			}
   1.238 +			
   1.239 +		screen->SetAppScreenMode(newMode);
   1.240 +		screen->SetScreenMode(newMode);
   1.241 +		TInt currentScreenMode = screen->CurrentScreenMode();
   1.242 +		TEST(currentScreenMode == newMode);
   1.243 +
   1.244 +		User::LeaveIfError(screen->GetRotationsList(newMode,rotations));
   1.245 +		INFO_PRINTF4(_L("ScreenMode and rotation with colour depth. Mode#%i=%i. Rotations=%i"),ii,newMode,rotations->Count());
   1.246 +		TPixelsTwipsAndRotation currentModeSettings;
   1.247 +		screen->GetDefaultScreenSizeAndRotation(currentModeSettings);
   1.248 +		screen->SetScreenSizeAndRotation(currentModeSettings);
   1.249 +		for (TInt jj=0,maxjj=rotations->Count();jj<maxjj;jj++)
   1.250 +			{
   1.251 +			CFbsBitGc::TGraphicsOrientation newOrientation=STATIC_CAST(CFbsBitGc::TGraphicsOrientation,rotations[0][jj]);
   1.252 +			INFO_PRINTF3(_L("ScreenMode and rotation with colour depth. Rotation#%i=%i(0..3)"),jj,newOrientation);
   1.253 +			screen->SetCurrentRotations(newMode,newOrientation);
   1.254 +			TheClient->iWs.Flush();
   1.255 +			
   1.256 +			TPixelsAndRotation modeSettings;
   1.257 +			TheClient->iScreen->GetDefaultScreenSizeAndRotation(modeSettings);
   1.258 +			TRect screenRect(TPoint(0,0),modeSettings.iPixelSize);
   1.259 +
   1.260 +			//move the debug windows to inside the area 
   1.261 +			//actually don't bother yet!
   1.262 +			if (screenRect.Width()>screenRect.Height())
   1.263 +				{
   1.264 +				}
   1.265 +			else
   1.266 +				{
   1.267 +				}
   1.268 +			DeviceResSwitchL();
   1.269 +			}
   1.270 +		screen->SetCurrentRotations(newMode,currentModeSettings.iRotation);
   1.271 +		screen->SetScreenSizeAndRotation(currentModeSettings);
   1.272 +		}
   1.273 +	
   1.274 +	CleanupStack::PopAndDestroy();
   1.275 +	screen->SetScreenMode(originalScreenMode);
   1.276 +	screen->SetCurrentRotations(originalScreenMode,originalModeSettings.iRotation);
   1.277 +	screen->SetScreenSizeAndRotation(originalModeSettings);
   1.278 +	}
   1.279 +	
   1.280 +/**
   1.281 +	Intended primarily as a visual check that the mode is displayed correctly, 
   1.282 +	this code also verifies that the number of physical colours matches the reported mode.
   1.283 +	Note that although written to test GCE, this test is general and applies to all display versions.
   1.284 +**/	
   1.285 +void CTScreenDeviceResSwitch::DeviceResSwitchL()
   1.286 +	{		
   1.287 +	INFO_PRINTF1(_L("DeviceResSwitchL: Entering function"));
   1.288 +	TInt error = KErrNone;
   1.289 +	TInt isTransparencySupportedResult = KErrNone;
   1.290 +		
   1.291 +	TRAP(error, isTransparencySupportedResult = IsTransparencySupportedL());
   1.292 +	
   1.293 +	if(error != KErrNone)
   1.294 +		{
   1.295 +		INFO_PRINTF1(_L("DeviceResSwitchL: Transparency is not supported. Exits."));
   1.296 +		return;
   1.297 +		}	
   1.298 +	
   1.299 +	TRAP(error, CalculateDisplayPropertiesL());
   1.300 +	
   1.301 +	if(error != KErrNone)
   1.302 +		{
   1.303 +		INFO_PRINTF1(_L("DeviceResSwitchL: Could not calculate display properties. Test not supported. Exits."));
   1.304 +		return;		
   1.305 +		}	
   1.306 +
   1.307 +	TDisplayMode startDisplayMode = TheClient->iScreen->DisplayMode();
   1.308 +	TInt startColoursPixel = TDisplayModeUtils::NumDisplayModeColors(startDisplayMode);
   1.309 +		
   1.310 +	TPixelsAndRotation modeSettings;
   1.311 +	TheClient->iScreen->GetDefaultScreenSizeAndRotation(modeSettings);
   1.312 +	TRect r(TPoint(0, 0), modeSettings.iPixelSize);
   1.313 +
   1.314 +	// Starts off full-screen. Only shrink it if it will still be large enough to run the test
   1.315 +	// It should be... the test only needs 60x20 pixels
   1.316 +	
   1.317 +	if(r.Width() > r.Height())
   1.318 +		{
   1.319 +		if(r.Width() > (CPrimaryColoursWin::kMinWidth) * (CPrimaryColoursWin::kShrinkFactor-2) * 3 / (CPrimaryColoursWin::kShrinkFactor * 2))
   1.320 +			{
   1.321 +			r.iTl.iX = r.iBr.iX / 3;				
   1.322 +			}
   1.323 +		}
   1.324 +	else
   1.325 +		{
   1.326 +		if (r.Height() > (CPrimaryColoursWin::kMinHeight) * (CPrimaryColoursWin::kShrinkFactor - 2) * 3/ (CPrimaryColoursWin::kShrinkFactor * 2))
   1.327 +			{
   1.328 +			r.iTl.iY = r.iBr.iY / 3;				
   1.329 +			}
   1.330 +		}
   1.331 +	if(r.Width() > (CPrimaryColoursWin::kMinWidth) * (CPrimaryColoursWin::kShrinkFactor - 2) / CPrimaryColoursWin::kShrinkFactor)
   1.332 +		{
   1.333 +		if(r.Height() > (CPrimaryColoursWin::kMinHeight) * (CPrimaryColoursWin::kShrinkFactor - 2) / CPrimaryColoursWin::kShrinkFactor)
   1.334 +			{
   1.335 +			r.Shrink(r.Width() / CPrimaryColoursWin::kShrinkFactor, r.Height() / CPrimaryColoursWin::kShrinkFactor);
   1.336 +			}
   1.337 +		}
   1.338 +		
   1.339 +	for(TInt i = 0; i < EColorLast; i++)
   1.340 +		{
   1.341 +		TDisplayMode tryMode = TDisplayMode(i);
   1.342 +		TInt tryColoursPixel = NumDisplayModeColors(tryMode);		
   1.343 +		
   1.344 +		INFO_PRINTF3(_L("DeviceResSwitchL: tryColoursPixel = %d, tryMode = %d"), tryColoursPixel, tryMode);
   1.345 +		
   1.346 +		if(TDisplayModeUtils::IsDisplayModeColor(tryMode) && startColoursPixel <= tryColoursPixel)
   1.347 +			{
   1.348 +				  //Create a test window at this mode, and see if it changes the screen mode
   1.349 +				{ // The braces define the lifetime of testWin. It must be destroyed before we check if mode changed back successfully.
   1.350 +				
   1.351 +				CPrimaryColoursWin* testWin1 = new (ELeave) CPrimaryColoursWin;
   1.352 +				CleanupStack::PushL(testWin1);
   1.353 +				
   1.354 +				TInt expectedColoursPerChannel = 1;
   1.355 +				TInt tt;
   1.356 +				
   1.357 +				testWin1->SetUpL(r.iTl, r.Size(), TheClient->iGroup, *TheClient->iGc, &tryMode);
   1.358 +				TheClient->iWs.Flush();
   1.359 +				TDisplayMode newDisplayMode = TheClient->iScreen->DisplayMode();
   1.360 +				
   1.361 +				TEST(TDisplayModeUtils::NumDisplayModeColors(newDisplayMode) >= tryColoursPixel);	
   1.362 +				
   1.363 +				if(!(TDisplayModeUtils::NumDisplayModeColors(newDisplayMode) >= tryColoursPixel))
   1.364 +					{
   1.365 +					ERR_PRINTF3(_L("testWin1: newDisplayMode = %d, tryColoursPixel = %d"), newDisplayMode, tryColoursPixel);
   1.366 +					}
   1.367 +				
   1.368 +				// Estimate the minimum number of shades of primary colours given the bits per pixel.
   1.369 +				// The maximum is twice this. Very appoximate but seems to work OK for 256 colours. Probably not good for grey modes. 
   1.370 +				for(tt = tryColoursPixel; tt >= 8; tt >>= 3)
   1.371 +					{
   1.372 +					expectedColoursPerChannel <<= 1;
   1.373 +					}
   1.374 +					
   1.375 +				// Draw some test data on the test window.
   1.376 +			    testWin1->DrawNow();
   1.377 +				TheClient->iWs.Flush();
   1.378 +				 
   1.379 +#ifdef VISIBLE_PAUSES
   1.380 +			    TheClient->StdLogWindow().LogMessage(EFalse, _L("Mode: "), tryMode);
   1.381 +				User::After(1000000);
   1.382 +#endif 
   1.383 +				TInt numUniqueColours = testWin1->CountUniquePlottedColours();
   1.384 +				INFO_PRINTF2(_L("testWin1: numUniqueColours = %d"), numUniqueColours);
   1.385 +			    testWin1->DrawNow();
   1.386 +			    TheClient->StdLogWindow().LogMessage(EFalse, _L("Channel Colours: "), numUniqueColours);
   1.387 +				TheClient->iWs.Flush();
   1.388 +				
   1.389 +#ifdef VISIBLE_PAUSES
   1.390 +				User::After(1000000); 
   1.391 +#endif
   1.392 +				// Read it back and see if it has the expected quality
   1.393 +				TEST(numUniqueColours >= (expectedColoursPerChannel * 3));
   1.394 +				
   1.395 +				if(!(numUniqueColours >= (expectedColoursPerChannel * 3)))
   1.396 +					{
   1.397 +					ERR_PRINTF3(_L("testWin1: numUniqueColours = %d, (expectedColoursPerChannel * 3) = %d"), numUniqueColours, (expectedColoursPerChannel * 3));
   1.398 +					}				
   1.399 +		
   1.400 +				/*
   1.401 +				 * Defect 107176 was rejected. This test for transparency is therefore removed.
   1.402 +				 * 
   1.403 +				 */
   1.404 +				if (false) //newDisplayMode != startDisplayMode)	 // Hide the window under a startmode window and see if we switch back?
   1.405 +				if (isTransparencySupportedResult==KErrNone && newDisplayMode != startDisplayMode)	 // Hide the window under a startmode window and see if we switch back?
   1.406 +				/*
   1.407 +				 * Defect 107176 was rejected. This test for transparency is therefore removed.
   1.408 +				 * The crash demonstrated by this code is related to the inconsistant support for origin and scale
   1.409 +				 * See defect DEF111847 and break request 2226
   1.410 +				 */
   1.411 +				if (false) //newDisplayMode != startDisplayMode)	 // Hide the window under a startmode window and see if we switch back?
   1.412 +					{
   1.413 +					// Demonstration of defect 107176
   1.414 +					// Create a translucent window which obscures the high-colour window
   1.415 +					// The existing code reduces the display colour depth because it thinks the obscured window is not visible any more
   1.416 +					// However, the obscured window is actually visible trough the transparency
   1.417 +					CPrimaryColoursWin* testWin2 = new (ELeave) CPrimaryColoursWin;
   1.418 +					CleanupStack::PushL(testWin2);
   1.419 +	
   1.420 +					testWin2->SetUpL(r.iTl - TPoint(20,20), r.Size() + TSize(40,40), TheClient->iGroup, *TheClient->iGc, &startDisplayMode, ETrue, 0x80);
   1.421 +					TheClient->iWs.Flush();
   1.422 +				    testWin2->DrawNow();
   1.423 +					TheClient->iWs.Flush();
   1.424 +					
   1.425 +					TDisplayMode newnewDisplayMode = TheClient->iScreen->DisplayMode();
   1.426 +					TInt newNumUniqueColours = testWin2->CountUniquePlottedColours();	
   1.427 +					INFO_PRINTF2(_L("testWin2: newNumUniqueColours = %d"), newNumUniqueColours);		
   1.428 +					
   1.429 +					TEST(newnewDisplayMode == newDisplayMode);				
   1.430 +				  
   1.431 +					if(!(newnewDisplayMode == newDisplayMode))
   1.432 +						{
   1.433 +						ERR_PRINTF3(_L("testWin2: newnewDisplayMode = %d, newDisplayMode = %d"), newnewDisplayMode, newDisplayMode);
   1.434 +						}
   1.435 +					  
   1.436 +				    testWin2->DrawNow();
   1.437 +					TheClient->iWs.Flush();
   1.438 +					
   1.439 +#ifdef VISIBLE_PAUSES
   1.440 +					User::After(1000000); 
   1.441 +#endif
   1.442 +					TheClient->iWs.Flush();
   1.443 +					
   1.444 +					CleanupStack::PopAndDestroy(testWin2);
   1.445 +					testWin2 = NULL;						
   1.446 +					}
   1.447 +					
   1.448 +					CleanupStack::PopAndDestroy(testWin1);
   1.449 +					testWin1 = NULL;
   1.450 +				}
   1.451 +			 
   1.452 +				TDisplayMode afterDisplayMode = TheClient->iScreen->DisplayMode();
   1.453 +				TEST(afterDisplayMode == startDisplayMode);
   1.454 +				
   1.455 +				if(afterDisplayMode != startDisplayMode)
   1.456 +					{
   1.457 +					ERR_PRINTF3(_L("DeviceResSwitchL: Original colour depth not restored. Was %i, now %i (TDisplayMode)"), startDisplayMode, afterDisplayMode);						
   1.458 +					}
   1.459 +
   1.460 +#ifdef VISIBLE_PAUSES
   1.461 +				User::After(1000000); 
   1.462 +#endif			
   1.463 +			} // context 
   1.464 +		} // for loop ends
   1.465 +		
   1.466 +	INFO_PRINTF1(_L("DeviceResSwitchL: Returning from function"));		
   1.467 +	}
   1.468 +	
   1.469 +void CTScreenDeviceResSwitch::CalculateDisplayPropertiesL()
   1.470 +	{
   1.471 +	INFO_PRINTF1(_L("CalculateDisplayPropertiesL: Entering function"));
   1.472 +	
   1.473 +	TDisplayMode tryMode = (TDisplayMode) (EColorLast - 1);
   1.474 +	TPixelsAndRotation modeSettings;
   1.475 +	TheClient->iScreen->GetDefaultScreenSizeAndRotation(modeSettings);
   1.476 +	TRect r(TPoint(0, 0), modeSettings.iPixelSize);
   1.477 +
   1.478 +	CPrimaryColoursWin* tempWin = new (ELeave) CPrimaryColoursWin;
   1.479 +	CleanupStack::PushL(tempWin);
   1.480 +	
   1.481 +	tempWin->SetUpL(r.iTl, r.Size(), TheClient->iGroup, *TheClient->iGc, &tryMode);
   1.482 +	TheClient->iWs.Flush();
   1.483 +	
   1.484 +	iMaxDisplayMode = TheClient->iScreen->DisplayMode();
   1.485 +	INFO_PRINTF2(_L("CalculateDisplayPropertiesL: iMaxDisplayMode %d"), iMaxDisplayMode);
   1.486 +	iMaxDisplayModeColors = TDisplayModeUtils::NumDisplayModeColors(iMaxDisplayMode);
   1.487 +	INFO_PRINTF2(_L("CalculateDisplayPropertiesL: iMaxDisplayModeColors %d"), iMaxDisplayModeColors);	
   1.488 +	
   1.489 +	CleanupStack::PopAndDestroy(tempWin);
   1.490 +	INFO_PRINTF1(_L("CalculateDisplayPropertiesL: Returning from function"));
   1.491 +	}
   1.492 +	
   1.493 +TInt CTScreenDeviceResSwitch::NumDisplayModeColors(TDisplayMode aDispMode)
   1.494 +	{
   1.495 +	TInt dispModeColors = TDisplayModeUtils::NumDisplayModeColors(aDispMode);
   1.496 +	
   1.497 +	if(dispModeColors > iMaxDisplayModeColors)
   1.498 +		{
   1.499 +		return iMaxDisplayModeColors;
   1.500 +		}
   1.501 +		
   1.502 +	return dispModeColors;
   1.503 +	}
   1.504 +	
   1.505 +TInt CTScreenDeviceResSwitch::IsTransparencySupportedL()
   1.506 +	{
   1.507 +	INFO_PRINTF1(_L("IsTransparencySupportedL: Entering function"));
   1.508 +	// Creates a window and sets the transparency, if this feature
   1.509 +	// is not enabled, KErrNotSupported will be returned
   1.510 +	const TRgb KTransparencyColor(85,85,85);		
   1.511 +	RWindow win(TheClient->iWs);
   1.512 +	win.Construct(*TheClient->iGroup->GroupWin(), ENullWsHandle);	
   1.513 +	win.SetExtent(TPoint(0,0), TSize(50,50));	
   1.514 +	win.SetRequiredDisplayMode(EColor256);
   1.515 +	TInt ret = win.SetTransparencyFactor(KTransparencyColor);
   1.516 +	win.Close();
   1.517 +	
   1.518 +	if(!ret)
   1.519 +		{
   1.520 +		INFO_PRINTF1(_L("IsTransparencySupportedL: Transparency is supported"));
   1.521 +		}
   1.522 +	else
   1.523 +		{
   1.524 +		INFO_PRINTF1(_L("IsTransparencySupportedL: Transparency is not supported"));
   1.525 +		}
   1.526 +	
   1.527 +	INFO_PRINTF1(_L("IsTransparencySupportedL: Returning from function"));
   1.528 +	return ret;
   1.529 +	}
   1.530 +
   1.531 +void CTScreenDeviceResSwitch::RunTestCaseL(TInt /*aCurTestCase*/)
   1.532 +	{
   1.533 +	((CTScreenDeviceResSwitchStep*)iStep)->SetTestStepID(KUnknownSYMTestCaseIDName);
   1.534 +	switch(++iTest->iState)
   1.535 +		{
   1.536 +/**
   1.537 +@SYMTestCaseID		GRAPHICS-WSERV-0440
   1.538 +
   1.539 +@SYMDEF             DEF107176
   1.540 +
   1.541 +@SYMTestCaseDesc    Intended primarily as a visual check that the mode is displayed correctly. Checks correct display mode is set.
   1.542 +                    The test also verifies that the number of physical colours matches the reported mode.
   1.543 +                    Note that although written to test GCE, this test is general and applies to all display versions.               
   1.544 +
   1.545 +@SYMTestPriority    High
   1.546 +
   1.547 +@SYMTestStatus      Implemented
   1.548 +
   1.549 +@SYMTestActions     Creates a windows with a higher display mode. Then creates a transparent
   1.550 +                    window with lower display mode that completely covers the first window.
   1.551 +                    Checks the display mode is not changed to the lower diplay mode when 
   1.552 +                    the higher display mode window is visible through transparency.
   1.553 +
   1.554 +@SYMTestExpectedResults The higher display mode should still be set after the second window is drawn.
   1.555 +*/
   1.556 +		case 1:
   1.557 +			((CTScreenDeviceResSwitchStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0440"));
   1.558 +			iTest->LogSubTest(_L("Device resolution switching"));
   1.559 +			DeviceResSwitchL();		
   1.560 +			break;			
   1.561 +/**
   1.562 +@SYMTestCaseID		GRAPHICS-WSERV-0520
   1.563 +
   1.564 +@SYMTestCaseDesc	Test for device switching when mode increased.
   1.565 +
   1.566 +@SYMTestActions     Windows are created in increasing modes and pixel colours written and read back.
   1.567 +					This code verifies that the mode change actually takes place.
   1.568 +					I am using this visually to verify that the new GCE is actually changing the mode.
   1.569 +
   1.570 +**/
   1.571 +		case 2:
   1.572 +			((CTScreenDeviceResSwitchStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0520"));
   1.573 +			iTest->LogSubTest(_L("More device resolution switching"));
   1.574 +			DeviceResSwitchWithRotationsL();
   1.575 +			break;
   1.576 +		default:
   1.577 +			((CTScreenDeviceResSwitchStep*)iStep)->SetTestStepID(KNotATestSYMTestCaseIDName);
   1.578 +			((CTScreenDeviceResSwitchStep*)iStep)->CloseTMSGraphicsStep();
   1.579 +			TestComplete();
   1.580 +		}
   1.581 +	((CTScreenDeviceResSwitchStep*)iStep)->RecordTestResultL();
   1.582 +	}
   1.583 +
   1.584 +__WS_CONSTRUCT_STEP__(ScreenDeviceResSwitch)