os/graphics/windowing/windowserver/test/tauto/TSCRDEVRESSWITCH.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
// Screen device test code
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 @file
sl@0
    20
 @test
sl@0
    21
 @internalComponent - Internal Symbian test code
sl@0
    22
*/
sl@0
    23
sl@0
    24
#include "TSCRDEVRESSWITCH.H"
sl@0
    25
sl@0
    26
//Define this to get visible pauses (in test 6: DeviceResSwitchL)
sl@0
    27
//#define VISIBLE_PAUSES
sl@0
    28
sl@0
    29
//Define this to get extra logging which may be useful in tracking down a fail
sl@0
    30
//#define EXTRA_LOGGING
sl@0
    31
sl@0
    32
CTScreenDeviceResSwitch::CTScreenDeviceResSwitch(CTestStep* aStep) : CTWsGraphicsBase(aStep)
sl@0
    33
	{}
sl@0
    34
sl@0
    35
CTScreenDeviceResSwitch::~CTScreenDeviceResSwitch()
sl@0
    36
	{}
sl@0
    37
sl@0
    38
void CTScreenDeviceResSwitch::ConstructL()
sl@0
    39
	{
sl@0
    40
	//The following is just another test... it doesn't leave any resources for use by the test class AFAICT...
sl@0
    41
	RWsSession aSession;
sl@0
    42
	CWsScreenDevice *device1;
sl@0
    43
	CWsScreenDevice *device2;
sl@0
    44
	CWsScreenDevice *device3;
sl@0
    45
sl@0
    46
	aSession.Connect();
sl@0
    47
	device1=new(ELeave) CWsScreenDevice(aSession);
sl@0
    48
	device1->Construct(iTest->iScreenNumber);
sl@0
    49
	delete device1;
sl@0
    50
	device1=new(ELeave) CWsScreenDevice(aSession);
sl@0
    51
	device1->Construct(iTest->iScreenNumber);
sl@0
    52
	device2=new(ELeave) CWsScreenDevice(aSession);
sl@0
    53
	device2->Construct(iTest->iScreenNumber);
sl@0
    54
	device3=new(ELeave) CWsScreenDevice(aSession);
sl@0
    55
	device3->Construct(iTest->iScreenNumber);
sl@0
    56
	delete device3;
sl@0
    57
	CFbsFont *font;
sl@0
    58
	User::LeaveIfError(device1->GetNearestFontToDesignHeightInTwips((CFont *&)font,TFontSpec()));
sl@0
    59
	RWindowGroup group(aSession);
sl@0
    60
	group.Construct(777);
sl@0
    61
	group.SetOwningWindowGroup(TheClient->iGroup->GroupWin()->Identifier());
sl@0
    62
	RWindow win(aSession);
sl@0
    63
	win.Construct(group,77);
sl@0
    64
	CWindowGc *gc=new(ELeave) CWindowGc(device1);
sl@0
    65
	gc->Construct();
sl@0
    66
	gc->Activate(win);
sl@0
    67
	gc->UseFont(font);
sl@0
    68
	device1->ReleaseFont(font);
sl@0
    69
	aSession.Flush();
sl@0
    70
	delete gc;
sl@0
    71
	win.Close();
sl@0
    72
	group.Close();
sl@0
    73
	delete device1;
sl@0
    74
	delete device2;
sl@0
    75
	aSession.Close();
sl@0
    76
	}
sl@0
    77
sl@0
    78
	
sl@0
    79
class CPrimaryColoursWin : public CTWin
sl@0
    80
	{
sl@0
    81
public:
sl@0
    82
	enum	//various size factors	
sl@0
    83
		{  	
sl@0
    84
			kShrinkFactor=5,
sl@0
    85
			kPlotSize=16,
sl@0
    86
			kPlotMargin=4,
sl@0
    87
			kPlotWithMargin=kPlotSize+kPlotMargin,
sl@0
    88
			kPlotsAccross=3,
sl@0
    89
			kPlotsDown=1,
sl@0
    90
			kMinWidth=kPlotWithMargin*kPlotsAccross+kPlotMargin,
sl@0
    91
			kMinHeight=kPlotWithMargin*kPlotsDown+kPlotMargin,
sl@0
    92
		    KNumChannels=3,
sl@0
    93
		    KNumColours=256
sl@0
    94
		};
sl@0
    95
		
sl@0
    96
	CPrimaryColoursWin();
sl@0
    97
	~CPrimaryColoursWin();
sl@0
    98
	//Virtual Function from CTBaseWin
sl@0
    99
	void Draw();
sl@0
   100
	TInt CountUniquePlottedColours();
sl@0
   101
	TInt iDrawn;
sl@0
   102
	TInt iNumColours;
sl@0
   103
	TBool iBadPixels[KNumChannels][KNumColours];
sl@0
   104
	TBuf<0x40> iDisplayText;
sl@0
   105
	};
sl@0
   106
	
sl@0
   107
CPrimaryColoursWin::CPrimaryColoursWin()
sl@0
   108
	{
sl@0
   109
	for (TInt channelnum=0;channelnum<KNumChannels;channelnum++)
sl@0
   110
		{
sl@0
   111
		for (TInt colour=0;colour<KNumColours;colour++)
sl@0
   112
			{
sl@0
   113
			iBadPixels[channelnum][colour]=EFalse;
sl@0
   114
			}
sl@0
   115
		}
sl@0
   116
		
sl@0
   117
	iDisplayText.Zero();
sl@0
   118
	iDisplayText.Format(_L("Test text"));
sl@0
   119
	}
sl@0
   120
	
sl@0
   121
CPrimaryColoursWin::~CPrimaryColoursWin()
sl@0
   122
	{
sl@0
   123
sl@0
   124
	}
sl@0
   125
	
sl@0
   126
void CPrimaryColoursWin::Draw()
sl@0
   127
	{
sl@0
   128
	iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
sl@0
   129
	iGc->SetPenStyle(CGraphicsContext::ESolidPen);
sl@0
   130
	iGc->SetPenColor(TRgb(255, 255, 255));
sl@0
   131
	iGc->SetBrushColor(TRgb(0, 0, 0));
sl@0
   132
	TSize winSize = Size();
sl@0
   133
	iGc->DrawRect(TRect(winSize));
sl@0
   134
	
sl@0
   135
	CFont* font;
sl@0
   136
	TFontSpec fontSpec(_L(""), 300);
sl@0
   137
	TheClient->iScreen->GetNearestFontInTwips(font, fontSpec);
sl@0
   138
	
sl@0
   139
	if (font)
sl@0
   140
		{
sl@0
   141
		iGc->UseFont(font);
sl@0
   142
		TRect r(TPoint(0, 0), Size());
sl@0
   143
		r.Shrink(kMinHeight, kMinHeight);
sl@0
   144
		iGc->DrawText(iDisplayText, r, font->AscentInPixels(), iGc->ECenter, 0);
sl@0
   145
		iGc->DiscardFont();
sl@0
   146
		TheClient->iScreen->ReleaseFont(font);
sl@0
   147
		}
sl@0
   148
	
sl@0
   149
	iNumColours = 0;
sl@0
   150
	TPoint lhsAbs = Win()->AbsPosition();
sl@0
   151
	
sl@0
   152
	for(TInt channelnum = 0, channelmul = 1, xoordinate = kPlotMargin; channelnum < KNumChannels; channelnum++, channelmul <<= 8, xoordinate += kPlotWithMargin)
sl@0
   153
		{
sl@0
   154
		TRgb lastPixel(255, 255, 255, 255);
sl@0
   155
		
sl@0
   156
		for(TInt colour = 0; colour < KNumColours; colour++)
sl@0
   157
			{
sl@0
   158
			if(!iBadPixels[channelnum][colour])
sl@0
   159
				{
sl@0
   160
				iGc->SetPenColor(TRgb(colour * channelmul));				
sl@0
   161
				}
sl@0
   162
			else
sl@0
   163
				{
sl@0
   164
				iGc->SetPenColor(TRgb(255, 255, 255));			
sl@0
   165
				}
sl@0
   166
sl@0
   167
			TPoint point = TPoint(xoordinate + (colour & 0x0f), kPlotMargin + (colour >> 4));
sl@0
   168
			iGc->Plot(point);
sl@0
   169
			}
sl@0
   170
		}
sl@0
   171
		
sl@0
   172
	iDrawn=ETrue;
sl@0
   173
	}
sl@0
   174
	
sl@0
   175
TInt CPrimaryColoursWin::CountUniquePlottedColours()
sl@0
   176
	{
sl@0
   177
	iNumColours = 0;
sl@0
   178
	TPoint lhsAbs = Win()->AbsPosition();
sl@0
   179
	
sl@0
   180
	for(TInt channelnum = 0, channelmul = 1, xoordinate = kPlotMargin; channelnum < 3; channelnum++, channelmul <<=8 , xoordinate += kPlotWithMargin)
sl@0
   181
		{
sl@0
   182
		TRgb lastPixel(255, 255, 255, 255);
sl@0
   183
		
sl@0
   184
		for(TInt colour = 0; colour < 256; colour++)
sl@0
   185
			{
sl@0
   186
			TRgb readPixel;
sl@0
   187
 			TPoint point = TPoint(xoordinate + (colour & 0x0f), kPlotMargin + (colour >> 4));
sl@0
   188
			TheClient->iScreen->GetPixel(readPixel, lhsAbs + point);
sl@0
   189
			
sl@0
   190
			if(readPixel != lastPixel)
sl@0
   191
				{
sl@0
   192
				lastPixel = readPixel;
sl@0
   193
				iNumColours++;
sl@0
   194
				iBadPixels[channelnum][colour] = EFalse;
sl@0
   195
				}
sl@0
   196
			else
sl@0
   197
				{
sl@0
   198
				iBadPixels[channelnum][colour] = ETrue;
sl@0
   199
				}
sl@0
   200
			} // for loop 
sl@0
   201
		} // for loop
sl@0
   202
		
sl@0
   203
	return iNumColours;
sl@0
   204
	}
sl@0
   205
	
sl@0
   206
/**
sl@0
   207
	Intended primarily as a visual check that the mode is displayed correctly,
sl@0
   208
	for each rotated mode.
sl@0
   209
**/
sl@0
   210
void    CTScreenDeviceResSwitch::DeviceResSwitchWithRotationsL()
sl@0
   211
	{
sl@0
   212
	CWsScreenDevice *screen=TheClient->iScreen;
sl@0
   213
	TInt originalScreenMode = screen->CurrentScreenMode();
sl@0
   214
	TPixelsTwipsAndRotation originalModeSettings;
sl@0
   215
	screen->GetScreenModeSizeAndRotation(originalScreenMode,originalModeSettings);
sl@0
   216
	CArrayFixFlat<TInt> *rotations=new(ELeave) CArrayFixFlat<TInt>(1);
sl@0
   217
	CleanupStack::PushL(rotations);
sl@0
   218
	INFO_PRINTF2(_L("ScreenMode and rotation with colour depth. ScreenModes=%i"),TheClient->iScreenModes.Count());
sl@0
   219
	
sl@0
   220
	for (TInt rr=0,maxrr=3;rr<maxrr;++rr)
sl@0
   221
	for (TInt ii=0,maxii=TheClient->iScreenModes.Count();ii<maxii;++ii)
sl@0
   222
		{
sl@0
   223
		TInt newMode=TheClient->iScreenModes[ii];
sl@0
   224
		if (	screen->GetScreenModeOrigin(ii)!=TPoint(0,0)	||	screen->GetScreenModeScale(ii)!=TSize(1,1)	)
sl@0
   225
			{
sl@0
   226
			INFO_PRINTF2(_L("ScreenMode %i skipped: has scalind and/ or rotation"),ii);
sl@0
   227
			INFO_PRINTF1(_L("This scaling code is known to be broken if all modes do not support scaling"));
sl@0
   228
			INFO_PRINTF1(_L("See defect DEF111847 and break request 2226"));
sl@0
   229
			INFO_PRINTF5(_L("Origin: %i %i Scale %i %i"),
sl@0
   230
					screen->GetScreenModeOrigin(ii).iX,screen->GetScreenModeOrigin(ii).iY,
sl@0
   231
					screen->GetScreenModeScale(ii).iWidth,screen->GetScreenModeScale(ii).iHeight
sl@0
   232
				);
sl@0
   233
			continue;
sl@0
   234
			}
sl@0
   235
			
sl@0
   236
		screen->SetAppScreenMode(newMode);
sl@0
   237
		screen->SetScreenMode(newMode);
sl@0
   238
		TInt currentScreenMode = screen->CurrentScreenMode();
sl@0
   239
		TEST(currentScreenMode == newMode);
sl@0
   240
sl@0
   241
		User::LeaveIfError(screen->GetRotationsList(newMode,rotations));
sl@0
   242
		INFO_PRINTF4(_L("ScreenMode and rotation with colour depth. Mode#%i=%i. Rotations=%i"),ii,newMode,rotations->Count());
sl@0
   243
		TPixelsTwipsAndRotation currentModeSettings;
sl@0
   244
		screen->GetDefaultScreenSizeAndRotation(currentModeSettings);
sl@0
   245
		screen->SetScreenSizeAndRotation(currentModeSettings);
sl@0
   246
		for (TInt jj=0,maxjj=rotations->Count();jj<maxjj;jj++)
sl@0
   247
			{
sl@0
   248
			CFbsBitGc::TGraphicsOrientation newOrientation=STATIC_CAST(CFbsBitGc::TGraphicsOrientation,rotations[0][jj]);
sl@0
   249
			INFO_PRINTF3(_L("ScreenMode and rotation with colour depth. Rotation#%i=%i(0..3)"),jj,newOrientation);
sl@0
   250
			screen->SetCurrentRotations(newMode,newOrientation);
sl@0
   251
			TheClient->iWs.Flush();
sl@0
   252
			
sl@0
   253
			TPixelsAndRotation modeSettings;
sl@0
   254
			TheClient->iScreen->GetDefaultScreenSizeAndRotation(modeSettings);
sl@0
   255
			TRect screenRect(TPoint(0,0),modeSettings.iPixelSize);
sl@0
   256
sl@0
   257
			//move the debug windows to inside the area 
sl@0
   258
			//actually don't bother yet!
sl@0
   259
			if (screenRect.Width()>screenRect.Height())
sl@0
   260
				{
sl@0
   261
				}
sl@0
   262
			else
sl@0
   263
				{
sl@0
   264
				}
sl@0
   265
			DeviceResSwitchL();
sl@0
   266
			}
sl@0
   267
		screen->SetCurrentRotations(newMode,currentModeSettings.iRotation);
sl@0
   268
		screen->SetScreenSizeAndRotation(currentModeSettings);
sl@0
   269
		}
sl@0
   270
	
sl@0
   271
	CleanupStack::PopAndDestroy();
sl@0
   272
	screen->SetScreenMode(originalScreenMode);
sl@0
   273
	screen->SetCurrentRotations(originalScreenMode,originalModeSettings.iRotation);
sl@0
   274
	screen->SetScreenSizeAndRotation(originalModeSettings);
sl@0
   275
	}
sl@0
   276
	
sl@0
   277
/**
sl@0
   278
	Intended primarily as a visual check that the mode is displayed correctly, 
sl@0
   279
	this code also verifies that the number of physical colours matches the reported mode.
sl@0
   280
	Note that although written to test GCE, this test is general and applies to all display versions.
sl@0
   281
**/	
sl@0
   282
void CTScreenDeviceResSwitch::DeviceResSwitchL()
sl@0
   283
	{		
sl@0
   284
	INFO_PRINTF1(_L("DeviceResSwitchL: Entering function"));
sl@0
   285
	TInt error = KErrNone;
sl@0
   286
	TInt isTransparencySupportedResult = KErrNone;
sl@0
   287
		
sl@0
   288
	TRAP(error, isTransparencySupportedResult = IsTransparencySupportedL());
sl@0
   289
	
sl@0
   290
	if(error != KErrNone)
sl@0
   291
		{
sl@0
   292
		INFO_PRINTF1(_L("DeviceResSwitchL: Transparency is not supported. Exits."));
sl@0
   293
		return;
sl@0
   294
		}	
sl@0
   295
	
sl@0
   296
	TRAP(error, CalculateDisplayPropertiesL());
sl@0
   297
	
sl@0
   298
	if(error != KErrNone)
sl@0
   299
		{
sl@0
   300
		INFO_PRINTF1(_L("DeviceResSwitchL: Could not calculate display properties. Test not supported. Exits."));
sl@0
   301
		return;		
sl@0
   302
		}	
sl@0
   303
sl@0
   304
	TDisplayMode startDisplayMode = TheClient->iScreen->DisplayMode();
sl@0
   305
	TInt startColoursPixel = TDisplayModeUtils::NumDisplayModeColors(startDisplayMode);
sl@0
   306
		
sl@0
   307
	TPixelsAndRotation modeSettings;
sl@0
   308
	TheClient->iScreen->GetDefaultScreenSizeAndRotation(modeSettings);
sl@0
   309
	TRect r(TPoint(0, 0), modeSettings.iPixelSize);
sl@0
   310
sl@0
   311
	// Starts off full-screen. Only shrink it if it will still be large enough to run the test
sl@0
   312
	// It should be... the test only needs 60x20 pixels
sl@0
   313
	
sl@0
   314
	if(r.Width() > r.Height())
sl@0
   315
		{
sl@0
   316
		if(r.Width() > (CPrimaryColoursWin::kMinWidth) * (CPrimaryColoursWin::kShrinkFactor-2) * 3 / (CPrimaryColoursWin::kShrinkFactor * 2))
sl@0
   317
			{
sl@0
   318
			r.iTl.iX = r.iBr.iX / 3;				
sl@0
   319
			}
sl@0
   320
		}
sl@0
   321
	else
sl@0
   322
		{
sl@0
   323
		if (r.Height() > (CPrimaryColoursWin::kMinHeight) * (CPrimaryColoursWin::kShrinkFactor - 2) * 3/ (CPrimaryColoursWin::kShrinkFactor * 2))
sl@0
   324
			{
sl@0
   325
			r.iTl.iY = r.iBr.iY / 3;				
sl@0
   326
			}
sl@0
   327
		}
sl@0
   328
	if(r.Width() > (CPrimaryColoursWin::kMinWidth) * (CPrimaryColoursWin::kShrinkFactor - 2) / CPrimaryColoursWin::kShrinkFactor)
sl@0
   329
		{
sl@0
   330
		if(r.Height() > (CPrimaryColoursWin::kMinHeight) * (CPrimaryColoursWin::kShrinkFactor - 2) / CPrimaryColoursWin::kShrinkFactor)
sl@0
   331
			{
sl@0
   332
			r.Shrink(r.Width() / CPrimaryColoursWin::kShrinkFactor, r.Height() / CPrimaryColoursWin::kShrinkFactor);
sl@0
   333
			}
sl@0
   334
		}
sl@0
   335
		
sl@0
   336
	for(TInt i = 0; i < EColorLast; i++)
sl@0
   337
		{
sl@0
   338
		TDisplayMode tryMode = TDisplayMode(i);
sl@0
   339
		TInt tryColoursPixel = NumDisplayModeColors(tryMode);		
sl@0
   340
		
sl@0
   341
		INFO_PRINTF3(_L("DeviceResSwitchL: tryColoursPixel = %d, tryMode = %d"), tryColoursPixel, tryMode);
sl@0
   342
		
sl@0
   343
		if(TDisplayModeUtils::IsDisplayModeColor(tryMode) && startColoursPixel <= tryColoursPixel)
sl@0
   344
			{
sl@0
   345
				  //Create a test window at this mode, and see if it changes the screen mode
sl@0
   346
				{ // The braces define the lifetime of testWin. It must be destroyed before we check if mode changed back successfully.
sl@0
   347
				
sl@0
   348
				CPrimaryColoursWin* testWin1 = new (ELeave) CPrimaryColoursWin;
sl@0
   349
				CleanupStack::PushL(testWin1);
sl@0
   350
				
sl@0
   351
				TInt expectedColoursPerChannel = 1;
sl@0
   352
				TInt tt;
sl@0
   353
				
sl@0
   354
				testWin1->SetUpL(r.iTl, r.Size(), TheClient->iGroup, *TheClient->iGc, &tryMode);
sl@0
   355
				TheClient->iWs.Flush();
sl@0
   356
				TDisplayMode newDisplayMode = TheClient->iScreen->DisplayMode();
sl@0
   357
				
sl@0
   358
				TEST(TDisplayModeUtils::NumDisplayModeColors(newDisplayMode) >= tryColoursPixel);	
sl@0
   359
				
sl@0
   360
				if(!(TDisplayModeUtils::NumDisplayModeColors(newDisplayMode) >= tryColoursPixel))
sl@0
   361
					{
sl@0
   362
					ERR_PRINTF3(_L("testWin1: newDisplayMode = %d, tryColoursPixel = %d"), newDisplayMode, tryColoursPixel);
sl@0
   363
					}
sl@0
   364
				
sl@0
   365
				// Estimate the minimum number of shades of primary colours given the bits per pixel.
sl@0
   366
				// The maximum is twice this. Very appoximate but seems to work OK for 256 colours. Probably not good for grey modes. 
sl@0
   367
				for(tt = tryColoursPixel; tt >= 8; tt >>= 3)
sl@0
   368
					{
sl@0
   369
					expectedColoursPerChannel <<= 1;
sl@0
   370
					}
sl@0
   371
					
sl@0
   372
				// Draw some test data on the test window.
sl@0
   373
			    testWin1->DrawNow();
sl@0
   374
				TheClient->iWs.Flush();
sl@0
   375
				 
sl@0
   376
#ifdef VISIBLE_PAUSES
sl@0
   377
			    TheClient->StdLogWindow().LogMessage(EFalse, _L("Mode: "), tryMode);
sl@0
   378
				User::After(1000000);
sl@0
   379
#endif 
sl@0
   380
				TInt numUniqueColours = testWin1->CountUniquePlottedColours();
sl@0
   381
				INFO_PRINTF2(_L("testWin1: numUniqueColours = %d"), numUniqueColours);
sl@0
   382
			    testWin1->DrawNow();
sl@0
   383
			    TheClient->StdLogWindow().LogMessage(EFalse, _L("Channel Colours: "), numUniqueColours);
sl@0
   384
				TheClient->iWs.Flush();
sl@0
   385
				
sl@0
   386
#ifdef VISIBLE_PAUSES
sl@0
   387
				User::After(1000000); 
sl@0
   388
#endif
sl@0
   389
				// Read it back and see if it has the expected quality
sl@0
   390
				TEST(numUniqueColours >= (expectedColoursPerChannel * 3));
sl@0
   391
				
sl@0
   392
				if(!(numUniqueColours >= (expectedColoursPerChannel * 3)))
sl@0
   393
					{
sl@0
   394
					ERR_PRINTF3(_L("testWin1: numUniqueColours = %d, (expectedColoursPerChannel * 3) = %d"), numUniqueColours, (expectedColoursPerChannel * 3));
sl@0
   395
					}				
sl@0
   396
		
sl@0
   397
				/*
sl@0
   398
				 * Defect 107176 was rejected. This test for transparency is therefore removed.
sl@0
   399
				 * 
sl@0
   400
				 */
sl@0
   401
				if (false) //newDisplayMode != startDisplayMode)	 // Hide the window under a startmode window and see if we switch back?
sl@0
   402
				if (isTransparencySupportedResult==KErrNone && newDisplayMode != startDisplayMode)	 // Hide the window under a startmode window and see if we switch back?
sl@0
   403
				/*
sl@0
   404
				 * Defect 107176 was rejected. This test for transparency is therefore removed.
sl@0
   405
				 * The crash demonstrated by this code is related to the inconsistant support for origin and scale
sl@0
   406
				 * See defect DEF111847 and break request 2226
sl@0
   407
				 */
sl@0
   408
				if (false) //newDisplayMode != startDisplayMode)	 // Hide the window under a startmode window and see if we switch back?
sl@0
   409
					{
sl@0
   410
					// Demonstration of defect 107176
sl@0
   411
					// Create a translucent window which obscures the high-colour window
sl@0
   412
					// The existing code reduces the display colour depth because it thinks the obscured window is not visible any more
sl@0
   413
					// However, the obscured window is actually visible trough the transparency
sl@0
   414
					CPrimaryColoursWin* testWin2 = new (ELeave) CPrimaryColoursWin;
sl@0
   415
					CleanupStack::PushL(testWin2);
sl@0
   416
	
sl@0
   417
					testWin2->SetUpL(r.iTl - TPoint(20,20), r.Size() + TSize(40,40), TheClient->iGroup, *TheClient->iGc, &startDisplayMode, ETrue, 0x80);
sl@0
   418
					TheClient->iWs.Flush();
sl@0
   419
				    testWin2->DrawNow();
sl@0
   420
					TheClient->iWs.Flush();
sl@0
   421
					
sl@0
   422
					TDisplayMode newnewDisplayMode = TheClient->iScreen->DisplayMode();
sl@0
   423
					TInt newNumUniqueColours = testWin2->CountUniquePlottedColours();	
sl@0
   424
					INFO_PRINTF2(_L("testWin2: newNumUniqueColours = %d"), newNumUniqueColours);		
sl@0
   425
					
sl@0
   426
					TEST(newnewDisplayMode == newDisplayMode);				
sl@0
   427
				  
sl@0
   428
					if(!(newnewDisplayMode == newDisplayMode))
sl@0
   429
						{
sl@0
   430
						ERR_PRINTF3(_L("testWin2: newnewDisplayMode = %d, newDisplayMode = %d"), newnewDisplayMode, newDisplayMode);
sl@0
   431
						}
sl@0
   432
					  
sl@0
   433
				    testWin2->DrawNow();
sl@0
   434
					TheClient->iWs.Flush();
sl@0
   435
					
sl@0
   436
#ifdef VISIBLE_PAUSES
sl@0
   437
					User::After(1000000); 
sl@0
   438
#endif
sl@0
   439
					TheClient->iWs.Flush();
sl@0
   440
					
sl@0
   441
					CleanupStack::PopAndDestroy(testWin2);
sl@0
   442
					testWin2 = NULL;						
sl@0
   443
					}
sl@0
   444
					
sl@0
   445
					CleanupStack::PopAndDestroy(testWin1);
sl@0
   446
					testWin1 = NULL;
sl@0
   447
				}
sl@0
   448
			 
sl@0
   449
				TDisplayMode afterDisplayMode = TheClient->iScreen->DisplayMode();
sl@0
   450
				TEST(afterDisplayMode == startDisplayMode);
sl@0
   451
				
sl@0
   452
				if(afterDisplayMode != startDisplayMode)
sl@0
   453
					{
sl@0
   454
					ERR_PRINTF3(_L("DeviceResSwitchL: Original colour depth not restored. Was %i, now %i (TDisplayMode)"), startDisplayMode, afterDisplayMode);						
sl@0
   455
					}
sl@0
   456
sl@0
   457
#ifdef VISIBLE_PAUSES
sl@0
   458
				User::After(1000000); 
sl@0
   459
#endif			
sl@0
   460
			} // context 
sl@0
   461
		} // for loop ends
sl@0
   462
		
sl@0
   463
	INFO_PRINTF1(_L("DeviceResSwitchL: Returning from function"));		
sl@0
   464
	}
sl@0
   465
	
sl@0
   466
void CTScreenDeviceResSwitch::CalculateDisplayPropertiesL()
sl@0
   467
	{
sl@0
   468
	INFO_PRINTF1(_L("CalculateDisplayPropertiesL: Entering function"));
sl@0
   469
	
sl@0
   470
	TDisplayMode tryMode = (TDisplayMode) (EColorLast - 1);
sl@0
   471
	TPixelsAndRotation modeSettings;
sl@0
   472
	TheClient->iScreen->GetDefaultScreenSizeAndRotation(modeSettings);
sl@0
   473
	TRect r(TPoint(0, 0), modeSettings.iPixelSize);
sl@0
   474
sl@0
   475
	CPrimaryColoursWin* tempWin = new (ELeave) CPrimaryColoursWin;
sl@0
   476
	CleanupStack::PushL(tempWin);
sl@0
   477
	
sl@0
   478
	tempWin->SetUpL(r.iTl, r.Size(), TheClient->iGroup, *TheClient->iGc, &tryMode);
sl@0
   479
	TheClient->iWs.Flush();
sl@0
   480
	
sl@0
   481
	iMaxDisplayMode = TheClient->iScreen->DisplayMode();
sl@0
   482
	INFO_PRINTF2(_L("CalculateDisplayPropertiesL: iMaxDisplayMode %d"), iMaxDisplayMode);
sl@0
   483
	iMaxDisplayModeColors = TDisplayModeUtils::NumDisplayModeColors(iMaxDisplayMode);
sl@0
   484
	INFO_PRINTF2(_L("CalculateDisplayPropertiesL: iMaxDisplayModeColors %d"), iMaxDisplayModeColors);	
sl@0
   485
	
sl@0
   486
	CleanupStack::PopAndDestroy(tempWin);
sl@0
   487
	INFO_PRINTF1(_L("CalculateDisplayPropertiesL: Returning from function"));
sl@0
   488
	}
sl@0
   489
	
sl@0
   490
TInt CTScreenDeviceResSwitch::NumDisplayModeColors(TDisplayMode aDispMode)
sl@0
   491
	{
sl@0
   492
	TInt dispModeColors = TDisplayModeUtils::NumDisplayModeColors(aDispMode);
sl@0
   493
	
sl@0
   494
	if(dispModeColors > iMaxDisplayModeColors)
sl@0
   495
		{
sl@0
   496
		return iMaxDisplayModeColors;
sl@0
   497
		}
sl@0
   498
		
sl@0
   499
	return dispModeColors;
sl@0
   500
	}
sl@0
   501
	
sl@0
   502
TInt CTScreenDeviceResSwitch::IsTransparencySupportedL()
sl@0
   503
	{
sl@0
   504
	INFO_PRINTF1(_L("IsTransparencySupportedL: Entering function"));
sl@0
   505
	// Creates a window and sets the transparency, if this feature
sl@0
   506
	// is not enabled, KErrNotSupported will be returned
sl@0
   507
	const TRgb KTransparencyColor(85,85,85);		
sl@0
   508
	RWindow win(TheClient->iWs);
sl@0
   509
	win.Construct(*TheClient->iGroup->GroupWin(), ENullWsHandle);	
sl@0
   510
	win.SetExtent(TPoint(0,0), TSize(50,50));	
sl@0
   511
	win.SetRequiredDisplayMode(EColor256);
sl@0
   512
	TInt ret = win.SetTransparencyFactor(KTransparencyColor);
sl@0
   513
	win.Close();
sl@0
   514
	
sl@0
   515
	if(!ret)
sl@0
   516
		{
sl@0
   517
		INFO_PRINTF1(_L("IsTransparencySupportedL: Transparency is supported"));
sl@0
   518
		}
sl@0
   519
	else
sl@0
   520
		{
sl@0
   521
		INFO_PRINTF1(_L("IsTransparencySupportedL: Transparency is not supported"));
sl@0
   522
		}
sl@0
   523
	
sl@0
   524
	INFO_PRINTF1(_L("IsTransparencySupportedL: Returning from function"));
sl@0
   525
	return ret;
sl@0
   526
	}
sl@0
   527
sl@0
   528
void CTScreenDeviceResSwitch::RunTestCaseL(TInt /*aCurTestCase*/)
sl@0
   529
	{
sl@0
   530
	((CTScreenDeviceResSwitchStep*)iStep)->SetTestStepID(KUnknownSYMTestCaseIDName);
sl@0
   531
	switch(++iTest->iState)
sl@0
   532
		{
sl@0
   533
/**
sl@0
   534
@SYMTestCaseID		GRAPHICS-WSERV-0440
sl@0
   535
sl@0
   536
@SYMDEF             DEF107176
sl@0
   537
sl@0
   538
@SYMTestCaseDesc    Intended primarily as a visual check that the mode is displayed correctly. Checks correct display mode is set.
sl@0
   539
                    The test also verifies that the number of physical colours matches the reported mode.
sl@0
   540
                    Note that although written to test GCE, this test is general and applies to all display versions.               
sl@0
   541
sl@0
   542
@SYMTestPriority    High
sl@0
   543
sl@0
   544
@SYMTestStatus      Implemented
sl@0
   545
sl@0
   546
@SYMTestActions     Creates a windows with a higher display mode. Then creates a transparent
sl@0
   547
                    window with lower display mode that completely covers the first window.
sl@0
   548
                    Checks the display mode is not changed to the lower diplay mode when 
sl@0
   549
                    the higher display mode window is visible through transparency.
sl@0
   550
sl@0
   551
@SYMTestExpectedResults The higher display mode should still be set after the second window is drawn.
sl@0
   552
*/
sl@0
   553
		case 1:
sl@0
   554
			((CTScreenDeviceResSwitchStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0440"));
sl@0
   555
			iTest->LogSubTest(_L("Device resolution switching"));
sl@0
   556
			DeviceResSwitchL();		
sl@0
   557
			break;			
sl@0
   558
/**
sl@0
   559
@SYMTestCaseID		GRAPHICS-WSERV-0520
sl@0
   560
sl@0
   561
@SYMTestCaseDesc	Test for device switching when mode increased.
sl@0
   562
sl@0
   563
@SYMTestActions     Windows are created in increasing modes and pixel colours written and read back.
sl@0
   564
					This code verifies that the mode change actually takes place.
sl@0
   565
					I am using this visually to verify that the new GCE is actually changing the mode.
sl@0
   566
sl@0
   567
**/
sl@0
   568
		case 2:
sl@0
   569
			((CTScreenDeviceResSwitchStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0520"));
sl@0
   570
			iTest->LogSubTest(_L("More device resolution switching"));
sl@0
   571
			DeviceResSwitchWithRotationsL();
sl@0
   572
			break;
sl@0
   573
		default:
sl@0
   574
			((CTScreenDeviceResSwitchStep*)iStep)->SetTestStepID(KNotATestSYMTestCaseIDName);
sl@0
   575
			((CTScreenDeviceResSwitchStep*)iStep)->CloseTMSGraphicsStep();
sl@0
   576
			TestComplete();
sl@0
   577
		}
sl@0
   578
	((CTScreenDeviceResSwitchStep*)iStep)->RecordTestResultL();
sl@0
   579
	}
sl@0
   580
sl@0
   581
__WS_CONSTRUCT_STEP__(ScreenDeviceResSwitch)