os/graphics/windowing/windowserver/test/t_integ/src/t_wservintegstepbasic.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 /**
    17  @file
    18  @test
    19  @internalComponent
    20 */
    21 
    22 #include "t_wservintegstepbasic.h"
    23 #include <test/tefunit.h>
    24 #include <e32const.h>	//KNullUidValue
    25 #include <pixelformats.h>
    26 
    27 namespace t_wservintegstepbasic
    28 	{
    29 	static const TUint delay=100000;	//0.5 sec
    30 
    31 	const TInt KSurfaceWidth = 50;
    32 	const TInt KSurfaceHeight = 50;
    33 	const TUidPixelFormat KSurfaceFormat = EUidPixelFormatXRGB_8888;
    34 	const TInt KBytesPerPixel = 4;	// Four bytes per pixel for the format above.
    35 
    36 	// Events delivered to this handle are thrown away
    37 	const TUint32 ENullWsHandle = 0xFFFFFFFF;
    38 	_LIT(KT_WServIntegStepBasicTestId,"testid");
    39 	_LIT(KT_BasicStepPanicTxt, "t_wservintegstepbasic");
    40 	}
    41 
    42 using namespace t_wservintegstepbasic;
    43 
    44 CT_WServIntegStepBasic::CT_WServIntegStepBasic()
    45 	{
    46 	SetTestStepName(KT_WServIntegStepBasic);
    47 	}
    48 
    49 
    50 CT_WServIntegStepBasic::~CT_WServIntegStepBasic()
    51 	{
    52 	delete iGc;
    53 	delete iScreen;
    54 	iWinGroup.Close();
    55 	iWsSession.Flush();
    56 	iWsSession.Close();
    57 	}
    58 
    59 
    60 enum TVerdict CT_WServIntegStepBasic::doTestStepPreambleL()
    61 	{
    62 	TVerdict ret=CTestStep::doTestStepPreambleL();
    63 
    64 	if ( !GetIntFromConfig( ConfigSection(), KT_WServIntegStepBasicTestId, iTestId ) )
    65 		{
    66 		User::Leave(KErrNotFound);
    67 		}
    68 	else
    69 		{
    70 		User::LeaveIfError(iWsSession.Connect());
    71 		iScreen = new (ELeave) CWsScreenDevice(iWsSession);
    72 		User::LeaveIfError(iScreen->Construct());
    73 		iWinGroup  = RWindowGroup(iWsSession);
    74 		User::LeaveIfError(iWinGroup.Construct(ENullWsHandle) );
    75 		iWinGroup.AutoForeground(ETrue);
    76 		iGc = new (ELeave) CWindowGc(iScreen);
    77 		User::LeaveIfError(iGc->Construct());
    78 		iWsSession.Flush();
    79 		}
    80 	return ret;
    81 	}
    82 
    83 enum TVerdict CT_WServIntegStepBasic::doTestStepPostambleL()
    84 	{
    85 	return TestStepResult();
    86 	}
    87 
    88 /**
    89 Starts test step
    90 More detail on each test step can be
    91 found in the respective script file.
    92 @internalComponent
    93 @return TVerdict pass / fail
    94 @pre N/A
    95 @post N/A
    96 */
    97 enum TVerdict CT_WServIntegStepBasic::doTestStepL()
    98 	{
    99 	__UHEAP_MARK;
   100 
   101 	RWindow win;
   102 	RBlankWindow blankWin;
   103 
   104 	switch( iTestId )
   105 		{
   106 		case 1:
   107 			Graphics_Wserv_Gce_1L(win);
   108 			break;
   109 		case 2:
   110 			Graphics_Wserv_Gce_2L(blankWin);
   111 			break;
   112 		case 3:
   113 			Graphics_Wserv_Gce_3L();
   114 			break;
   115 		case 4:
   116 			Graphics_Wserv_Gce_4L(win);
   117 			break;
   118 		case 5:
   119 			Graphics_Wserv_Gce_5L(win);
   120 			break;
   121 		case 6:
   122 			Graphics_Wserv_Gce_6L(win);
   123 			break;
   124 		case 7:
   125 			//Test removed in CR1489
   126 			break;
   127 		case 8:
   128 			//Test removed in CR1489
   129 			break;
   130 		case 9:
   131 			//Test removed in CR1489
   132 			break;
   133 		case 10:
   134 			//Test removed in CR1489
   135 			break;
   136 		case 11:
   137 			Graphics_Wserv_Gce_11L(win);
   138 			break;
   139 		case 12:
   140 			//Test removed in CR1489
   141 			break;
   142 		case 13:
   143 			Graphics_Wserv_Gce_13L(win);
   144 			break;
   145 		case 14:
   146 			//Test removed in CR1489
   147 			break;
   148 		case 15:
   149 			Graphics_Wserv_Gce_15L(win);
   150 			break;
   151 		case 16:
   152 			//Test removed in CR1489
   153 			break;
   154 		case 17:
   155 			Graphics_Wserv_Gce_17L(win);
   156 			break;
   157 		case 18:
   158 			//Test removed in CR1489
   159 			break;
   160 		case 19:
   161 			Graphics_Wserv_Gce_19L(win);
   162 			break;
   163 		case 20:
   164 			//Test removed in CR1489
   165 			break;
   166 		case 21:
   167 			Graphics_Wserv_Gce_21L(win);
   168 			break;
   169 		case 22:
   170 			Graphics_Wserv_Gce_22L(win);
   171 			break;
   172 		case 23:
   173 			//Test removed in CR1489
   174 			break;
   175 		case 24:
   176 			//Test removed in CR1489
   177 			break;
   178 		case 25:
   179 			//Test removed in CR1489
   180 			break;
   181 		case 26:
   182 			//Test removed in CR1489
   183 			break;
   184 		case 27:
   185 			//Test removed in CR1489
   186 			break;
   187 		case 28:
   188 			//Test removed in CR1489
   189 			break;
   190 		case 29:
   191 			//Test removed in CR1489
   192 			break;
   193 		case 30:
   194 			//Test removed in CR1489
   195 			break;
   196 		case 31:
   197 			Graphics_Wserv_Gce_31L(blankWin);
   198 			break;
   199 		case 32:
   200 			Graphics_Wserv_Gce_32L(win);
   201 			break;
   202 		case 33:
   203 			Graphics_Wserv_Gce_33L(win);
   204 			break;
   205 		case 34:
   206 			Graphics_Wserv_Gce_34L(win);
   207 			break;
   208 		case 35:
   209 			Graphics_Wserv_Gce_35L(win);
   210 			break;
   211 		case 36:
   212 			Graphics_Wserv_Gce_36L(win);
   213 			break;
   214 		case 37:
   215 			//Test removed in CR1489
   216 			break;
   217 		default:
   218 			User::Panic(KT_BasicStepPanicTxt, KErrNotFound);  //Unexpected value!
   219 		}
   220 
   221 	__UHEAP_MARKEND;
   222 	return TestStepResult();
   223 	}
   224 
   225 //Test setting a surface as the background of a window
   226 void CT_WServIntegStepBasic::Graphics_Wserv_Gce_1L(RWindow& aWin)
   227 	{
   228 	CreateSurfaceL(iSurfaceId);
   229 	CreateRWindowL(aWin);
   230 	TEST(KErrNone==aWin.SetBackgroundSurface(iSurfaceId));
   231 	ForceWindowToRedraw(aWin);
   232 	DestroySurface();
   233 	aWin.Close();
   234 	}
   235 //Test setting a surface as the background of a RBlankWindow
   236 void CT_WServIntegStepBasic::Graphics_Wserv_Gce_2L(RBlankWindow& aBlankWin)
   237 	{
   238 	CreateSurfaceL(iSurfaceId);
   239 	CreateRBlankWindowL(aBlankWin);
   240 	TEST(KErrNone==aBlankWin.SetBackgroundSurface(iSurfaceId));
   241 	ForceWindowToRedraw(aBlankWin);
   242 	DestroySurface();
   243 	aBlankWin.Close();
   244 	}
   245 
   246 //Negative test for setting a surface as the background of a RBackedUpWindow
   247 void CT_WServIntegStepBasic::Graphics_Wserv_Gce_3L()
   248 	{
   249 	CreateSurfaceL(iSurfaceId);
   250 	RBackedUpWindow backedUpWindow( iWsSession );
   251 	CleanupClosePushL( backedUpWindow );
   252 	User::LeaveIfError( backedUpWindow.Construct( iWinGroup, EColor16MA, ENullWsHandle) );
   253 	backedUpWindow.SetSizeErr( iScreen->SizeInPixels() );
   254 	backedUpWindow.SetVisible( ETrue );
   255 	backedUpWindow.Activate();
   256 	iWsSession.Flush();
   257 	User::After(delay);
   258 	// Expect a panic here - TClientPanic::EWservPanicDrawable
   259 	backedUpWindow.SetBackgroundSurface( iSurfaceId );
   260 	DestroySurface();
   261 	CleanupStack::PopAndDestroy( &backedUpWindow );
   262 	}
   263 
   264 //Test for moving a window with its background set
   265 void CT_WServIntegStepBasic::Graphics_Wserv_Gce_4L(RWindow& aWin)
   266 	{
   267 	// Create window and assign a surface to it
   268 	ASSERT_EQUALS( EPass, SetSurfaceL(aWin,iSurfaceId));
   269 	TSize scrSize(iScreen->SizeInPixels());
   270 	// move the window around
   271 	aWin.SetPosition( TPoint( (scrSize.iWidth)-KTempWindowWidth, 0) );
   272 	iWsSession.Flush();
   273 	User::After(delay);
   274 	aWin.SetPosition( TPoint(aWin.Position().iX, (scrSize.iHeight)-KTempWindowHeight ));
   275 	iWsSession.Flush();
   276 	User::After(delay);
   277 	aWin.SetPosition( TPoint(0, (scrSize.iHeight)-KTempWindowHeight) );
   278 	iWsSession.Flush();
   279 	User::After(delay);
   280 	aWin.SetPosition(TPoint(0,0));
   281 	iWsSession.Flush();
   282 	User::After(delay);
   283 	DestroySurface();
   284 	aWin.Close();
   285 		}
   286 
   287 //Test moving a window with its background set partially and wholly offscreen
   288 void CT_WServIntegStepBasic::Graphics_Wserv_Gce_5L(RWindow& aWin)
   289 	{
   290 	ASSERT_EQUALS( EPass, SetSurfaceL(aWin,iSurfaceId));
   291 	TSize screenSize(iScreen->SizeInPixels());
   292 	// partially off screen
   293 	TUint xCord=(screenSize.iWidth-KTempWindowWidth)+(KTempWindowWidth/2);
   294 	TUint yCord=(screenSize.iHeight-KTempWindowHeight)+(KTempWindowHeight/2);
   295 	aWin.SetPosition(TPoint(xCord,yCord));
   296 	iWsSession.Flush();
   297 	User::After(delay);
   298 	// wholly off screen
   299 	aWin.SetPosition( TPoint(screenSize.iWidth, screenSize.iHeight) );
   300 	iWsSession.Flush();
   301 	User::After(delay);
   302 	DestroySurface();
   303 	aWin.Close();
   304 	}
   305 
   306 //Test resizing a window with its background set to a surface
   307 void CT_WServIntegStepBasic::Graphics_Wserv_Gce_6L(RWindow& aWin)
   308 	{
   309 	ASSERT_EQUALS( EPass, SetSurfaceL(aWin,iSurfaceId));
   310 	TSize sz(aWin.Size());
   311 	aWin.SetSize( sz+TPoint(20,0) );
   312 	iWsSession.Flush();
   313 	User::After( delay );
   314 	aWin.SetSize( sz+TPoint(0,20) );
   315 	iWsSession.Flush();
   316 	User::After( delay );
   317 	aWin.SetSize( sz+TPoint(20,20) );
   318 	iWsSession.Flush();
   319 	User::After( delay );
   320 	aWin.SetSize( TSize(KSurfaceWidth, KSurfaceHeight ) );
   321 	iWsSession.Flush();
   322 	User::After( delay );
   323   	DestroySurface();
   324 	aWin.Close();
   325 	}
   326 
   327 
   328 // Test Opaque drawing in front of a background surface
   329 void CT_WServIntegStepBasic::Graphics_Wserv_Gce_11L(RWindow& aWin)
   330 	{
   331 	ASSERT_EQUALS( EPass, SetSurfaceL(aWin,iSurfaceId));
   332 	// Opaque drawing on bkgd surface
   333 	DrawShape( aWin, 0x0000FF00 );
   334 	DestroySurface();
   335 	aWin.Close();
   336 	}
   337 
   338 //Test Semi-transparent drawing in front of a background surface
   339 void CT_WServIntegStepBasic::Graphics_Wserv_Gce_13L(RWindow& aWin)
   340 	{
   341 	ASSERT_EQUALS( EPass, SetSurfaceL(aWin,iSurfaceId));
   342 	// semi Transp on bkgd surface
   343 	DrawShape( aWin, 0x8000FF00 );
   344 	DestroySurface();
   345 	aWin.Close();
   346 	}
   347 
   348 //Test that an opaque window can be put in front of an Rwindow with background surface
   349 void CT_WServIntegStepBasic::Graphics_Wserv_Gce_15L(RWindow& aWin)
   350 	{
   351 	ASSERT_EQUALS( EPass, SetSurfaceL(aWin,iSurfaceId));
   352 	CleanupClosePushL(aWin);
   353 	// draw 2nd window partially over the first one
   354 	RWindow win2;
   355 	CreateRWindowL(win2, TPoint(10,10), KRgbGreen );
   356 	DestroySurface();
   357 	CleanupStack::PopAndDestroy(&aWin);
   358 	win2.Close();
   359 	aWin.Close();
   360 	}
   361 
   362 //Test that a semi-transparent window can be put in front of a Rwindow with surface
   363 void CT_WServIntegStepBasic::Graphics_Wserv_Gce_17L(RWindow& aWin)
   364 	{
   365 	ASSERT_EQUALS( EPass, SetSurfaceL(aWin,iSurfaceId));
   366 	CleanupClosePushL(aWin);
   367 	// draw semi Transp win partially over first win with surface
   368 	RWindow win2;
   369 	CreateRWindowL(win2, TPoint(10,10));
   370 	INFO_PRINTF1(_L("Destroy Surface"));
   371 	DestroySurface();
   372 	CleanupStack::PopAndDestroy(&aWin);
   373 	win2.Close();
   374 	aWin.Close();
   375 	}
   376 
   377 //Test updating a background surface
   378 void CT_WServIntegStepBasic::Graphics_Wserv_Gce_19L(RWindow& aWin)
   379 	{
   380 	ASSERT_EQUALS( EPass, SetSurfaceL(aWin,iSurfaceId));
   381 	CleanupClosePushL(aWin);
   382 	// create a 2nd surface
   383 	TSurfaceId surfaceId2;
   384 	CreateSurfaceL(surfaceId2, 0x0000FF00);
   385 	ASSERT_EQUALS( KErrNone, aWin.SetBackgroundSurface(surfaceId2) );
   386 	ForceWindowToRedraw(aWin);
   387 	TInt ret = iSurfaceManager.CloseSurface(surfaceId2);
   388 	if(ret!=KErrNone)
   389 		{
   390 		INFO_PRINTF1(_L("Surface manager failed to close surface"));
   391 		}
   392 	// destroys iSurfaceId plus closes iSurfaceUpdateSession,iChunk,iSurfaceManager
   393 	DestroySurface();
   394 	CleanupStack::PopAndDestroy(&aWin);
   395 	}
   396 
   397 //Test shape of a window is applied to window a surface
   398 void CT_WServIntegStepBasic::Graphics_Wserv_Gce_21L(RWindow& aWin)
   399 	{
   400 	ASSERT_EQUALS( EPass, SetSurfaceL(aWin,iSurfaceId));
   401 	TRect rc[2] = { TRect(0,0,100,200),TRect(100,120,200,200) };
   402 	RRegion region(2, rc);
   403 	aWin.SetShape( region );
   404 	User::After(delay);	// For DEBUG
   405 	DestroySurface();
   406 	aWin.Close();
   407 	}
   408 
   409 //Test that a valid key color is returned when a surface
   410 //has been set as the background of a window
   411 void CT_WServIntegStepBasic::Graphics_Wserv_Gce_22L(RWindow& aWin)
   412 	{
   413 	ASSERT_EQUALS( EPass, SetSurfaceL(aWin,iSurfaceId));
   414 	TRgb colValue(aWin.KeyColor());
   415 	if ( aWin.DisplayMode()==EColor16MA || aWin.DisplayMode()==EColor16MAP )
   416 		{
   417 		TEST(aWin.KeyColor().Internal()==0x00000000);
   418 		}
   419 	else
   420 		{
   421 		TEST(aWin.KeyColor().Alpha()==0xFF);
   422 		}
   423 	aWin.Close();
   424 	}
   425 
   426 //Test that the use of SetColor() i.e. with no parameters removes
   427 //any surface assigned to the window
   428 void CT_WServIntegStepBasic::Graphics_Wserv_Gce_31L(RBlankWindow& aBlankWin)
   429 	{
   430 	CreateSurfaceL(iSurfaceId);
   431 	CreateRBlankWindowL(aBlankWin);
   432 	ASSERT_EQUALS(KErrNone, aBlankWin.SetBackgroundSurface(iSurfaceId));
   433 	ForceWindowToRedraw(aBlankWin);
   434 	aBlankWin.SetColor();
   435 	ForceWindowToRedraw(aBlankWin);
   436 	DestroySurface();
   437 	aBlankWin.Close();
   438 	}
   439 
   440 //Test that the shaped window maintains the surface when moved
   441 void CT_WServIntegStepBasic::Graphics_Wserv_Gce_32L(RWindow& aWin)
   442 	{
   443 	ASSERT_EQUALS( EPass, SetSurfaceL(aWin,iSurfaceId));
   444 	TRect rc[2] = { TRect(0,0,100,200),TRect(100,120,200,200) };
   445 	RRegion region(2, rc);
   446 	aWin.SetShape( region );
   447 	User::After(delay);
   448 	aWin.SetPosition( TPoint( aWin.Position().iX+10, aWin.Position().iY+10 ) );
   449 	iWsSession.Flush();
   450 	User::After(delay);
   451 	DestroySurface();
   452 	aWin.Close();
   453 	}
   454 
   455 //Test that window and surface scale to the new size when a shaped
   456 //window with surface is resized
   457 void CT_WServIntegStepBasic::Graphics_Wserv_Gce_33L(RWindow& aWin)
   458 	{
   459 	ASSERT_EQUALS( EPass, SetSurfaceL(aWin,iSurfaceId));
   460 	TRect rc[2] = { TRect(0,0,100,200),TRect(100,120,200,200) };
   461 	RRegion region(2, rc);
   462 	aWin.SetShape( region );
   463 	User::After(delay);
   464 	aWin.SetSize( TSize(200,150) );
   465 	iWsSession.Flush();
   466 	User::After(delay);
   467 	DestroySurface();
   468 	aWin.Close();
   469 	}
   470 
   471 //Test that the background surface blends with the semi transparent window
   472 void CT_WServIntegStepBasic::Graphics_Wserv_Gce_34L(RWindow& aWin)
   473 	{
   474 	ASSERT_EQUALS( EPass, SetSurfaceL(aWin,iSurfaceId));
   475 	CleanupClosePushL(aWin);
   476 	ForceWindowToRedraw(aWin);
   477 	RWindow win2;
   478 	CreateRWindowL(win2,TPoint(10,0), 0x80A9B9C9);
   479 	// draw semi Transp on window bkgd
   480 	DrawShape( win2, 0x8000FF00 );
   481 	DestroySurface();
   482 	CleanupStack::PopAndDestroy(&aWin);
   483 	win2.Close();
   484 	aWin.Close();
   485 	}
   486 
   487 // Test that the corner style is applied to the window with surface
   488 void CT_WServIntegStepBasic::Graphics_Wserv_Gce_35L(RWindow& aWin)
   489 	{
   490 	ASSERT_EQUALS( EPass, SetSurfaceL(aWin,iSurfaceId));
   491 	aWin.SetCornerType( EWindowCorner5 );
   492 	User::After(delay);
   493 	DestroySurface();
   494 	aWin.Close();
   495 	}
   496 
   497 /***
   498 Test that shaped windows with background surfaces arranged such that
   499 the back window overlaps the front's bounding box, but not its shaped
   500 region (e.g. the front is L-shaped and the back overlaps the area within
   501 the 'L'). In this situation, the back window's surface should be visible
   502 in the overlap area
   503 */
   504 void CT_WServIntegStepBasic::Graphics_Wserv_Gce_36L(RWindow& aWin)
   505 	{
   506 	ASSERT_EQUALS( EPass, SetSurfaceL(aWin,iSurfaceId));
   507 	CleanupClosePushL(aWin);
   508 	TRect rc1[2] = { TRect(110,20,150,80),TRect(150,60,200,100) };
   509 	RRegion region1(2, rc1);
   510 	aWin.SetShape( region1 );
   511 	User::After(delay);
   512 
   513 	// create a 2nd surface
   514 	TSurfaceId surfaceId2;
   515 	CreateSurfaceL(surfaceId2,0x00ABCDEF);
   516 	RWindow win2;
   517 	CreateRWindowL(win2);
   518 	ASSERT_EQUALS( KErrNone, win2.SetBackgroundSurface(surfaceId2));
   519 	User::After(delay);
   520 	TRect rc2[2] = { TRect(0,0,100,200),TRect(100,120,200,200) };
   521 	RRegion region2(2, rc2);
   522 	win2.SetShape( region2 );
   523 	User::After(delay);
   524 
   525 	TInt ret = iSurfaceManager.CloseSurface(surfaceId2);
   526 	if(ret!=KErrNone)
   527 		{
   528 		INFO_PRINTF1(_L("Surface manager failed to close surface"));
   529 		}
   530 	// destroys iSurfaceId plus closes iSurfaceUpdateSession,iChunk,iSurfaceManager
   531 	DestroySurface();
   532 	CleanupStack::PopAndDestroy(&aWin);
   533 	win2.Close();
   534 	aWin.Close();
   535 	}
   536 
   537 
   538 /**
   539 Creates a RWindow
   540 
   541 @param aWin	The window object
   542 @param aPos	The Position of the window
   543 @param aBkgdColor The background color of the window
   544 @param aSize The size of the window
   545 */
   546 void CT_WServIntegStepBasic::CreateRWindowL(RWindow& aWin, const TPoint& aPos, const TRgb& aBkgdColor, const TSize& aWinSize)
   547 	{
   548 	aWin = RWindow( iWsSession );
   549 	CleanupClosePushL( aWin );
   550 	User::LeaveIfError( aWin.Construct( iWinGroup, ENullWsHandle ) );
   551 	CleanupStack::Pop(&aWin);
   552 	aWin.SetExtent(aPos, aWinSize);
   553 	aWin.SetBackgroundColor( aBkgdColor );
   554 	aWin.Activate();
   555 	aWin.BeginRedraw();
   556 	aWin.EndRedraw();
   557 	aWin.SetVisible( ETrue );
   558 	iWsSession.Flush();
   559 	User::After(delay);
   560 	}
   561 
   562 /**
   563 Creates a RBlankWindow
   564 
   565 @param aBlankWin The window object
   566 */
   567 void CT_WServIntegStepBasic::CreateRBlankWindowL(RBlankWindow& aBlankWin)
   568 	{
   569 	aBlankWin = RBlankWindow(iWsSession);
   570 	CleanupClosePushL(aBlankWin);
   571 	User::LeaveIfError(aBlankWin.Construct(iWinGroup, ENullWsHandle) );
   572 	TSize sz( KTempWindowWidth, KTempWindowHeight );
   573 	aBlankWin.SetSize(sz);
   574 	aBlankWin.SetColor(TRgb(0x800000FF));	// 0xAABBGGRR
   575 	aBlankWin.Activate();
   576 	CleanupStack::Pop(&aBlankWin);
   577 	iWsSession.Flush();
   578 	User::After(delay);
   579 	}
   580 
   581 void CT_WServIntegStepBasic::ForceWindowToRedraw(RWindowBase& aWin)
   582 	{
   583 	aWin.SetVisible( EFalse );
   584 	iWsSession.Flush();
   585 	aWin.SetVisible( ETrue );
   586 	iWsSession.Flush();
   587 	User::After(delay);
   588 	}
   589 
   590 void CT_WServIntegStepBasic::CreateSurfaceManager()
   591 	{
   592 	INFO_PRINTF1(_L("Loading the device driver"));
   593 	TInt ret = iSurfaceManager.Open();
   594 	if(ret==KErrNone)
   595 		{
   596 		INFO_PRINTF1(_L("Creating surface manager OK"));
   597 		}
   598 	}
   599 
   600 /**
   601 Set up code for creating a surface and fill it with a color
   602 
   603 @param aSurfaceId The surface object, to be initialized.
   604 @param aColorPattern The color to fill the surface with.
   605 */
   606 void CT_WServIntegStepBasic::CreateSurfaceL(TSurfaceId& aSurfaceId, TUint aColorPattern)
   607 	{
   608 	INFO_PRINTF1(_L("Creating a surface manager"));
   609 	CreateSurfaceManager();
   610 
   611 	INFO_PRINTF1(_L("Setting up surface attributes"));
   612 	RSurfaceManager::TSurfaceCreationAttributesBuf attribs;
   613 	RSurfaceManager::TSurfaceCreationAttributes& surfaceCreationAtribs=attribs();
   614 
   615 	surfaceCreationAtribs.iSize.iWidth = KSurfaceWidth;
   616 	surfaceCreationAtribs.iSize.iHeight = KSurfaceHeight;
   617 	surfaceCreationAtribs.iBuffers = 1;
   618 	surfaceCreationAtribs.iPixelFormat = KSurfaceFormat;
   619 	surfaceCreationAtribs.iStride = KBytesPerPixel*KSurfaceWidth;
   620 	surfaceCreationAtribs.iOffsetToFirstBuffer = 0;
   621 	surfaceCreationAtribs.iAlignment = 4;
   622 	surfaceCreationAtribs.iContiguous = EFalse;
   623 	surfaceCreationAtribs.iMappable = ETrue;
   624 	INFO_PRINTF1(_L("Call to CreateSurfaceL()"));
   625 	TInt err = iSurfaceManager.CreateSurface(attribs, aSurfaceId);
   626 	if (err == KErrNone)
   627 		{
   628 		//we have a surface, so map it in
   629 		INFO_PRINTF1(_L("Surface created ok, mapping to it"));
   630 		TInt err = iSurfaceManager.MapSurface(aSurfaceId, iChunk);
   631 		User::LeaveIfError(err);
   632 		TUint32* surfacePtr = reinterpret_cast<TUint32*>(iChunk.Base());
   633 		TUint32* linePtr = surfacePtr;
   634 
   635 		// Fill first line
   636 		for (TInt xx = 0; xx < KSurfaceWidth; xx++)
   637 			{
   638 			surfacePtr[xx] = aColorPattern;
   639 			}
   640 
   641 		// Now copy that to the other lines
   642 		TInt stride = KBytesPerPixel * KSurfaceWidth;
   643 		for (TInt yy = 1; yy < KSurfaceHeight; yy++)
   644 			{
   645 			linePtr += KSurfaceWidth;
   646 			Mem::Move(linePtr, surfacePtr, stride);
   647 			}
   648 		}
   649 
   650 	INFO_PRINTF1(_L("Create Surface update session"));
   651 	CreateSurfaceUpdateSessionL();
   652 	err = iSurfaceUpdateSession.SubmitUpdate(KAllScreens, aSurfaceId, 0, NULL);
   653 	if (err!=KErrNone)
   654 		{
   655 	   INFO_PRINTF1(_L("Fail in submitting update"));
   656 		}
   657 	}
   658 
   659 void CT_WServIntegStepBasic::CreateSurfaceUpdateSessionL()
   660 	{
   661 	TInt ret = iSurfaceUpdateSession.Connect();
   662 
   663 	if (ret==KErrAlreadyExists)
   664 		{
   665 		INFO_PRINTF1(_L("Device driver already loaded"));
   666 		}
   667 	else if (ret==KErrNone)
   668 		{
   669 		INFO_PRINTF1(_L("Connected to surface update server"));
   670 		}
   671 	else
   672 		{
   673 		INFO_PRINTF1(_L("Fatal error connecting to surface update server"));
   674 		User::LeaveIfError(ret);
   675 		}
   676 	}
   677 
   678 void CT_WServIntegStepBasic::DestroySurface()
   679 	{
   680 	INFO_PRINTF1(_L("Destroy Surface update session"));
   681 	iSurfaceUpdateSession.Close();
   682 
   683 	//close the chunk
   684 	INFO_PRINTF1(_L("Closing chunk"));
   685 	iChunk.Close();
   686 
   687 	INFO_PRINTF1(_L("Closing surface"));
   688 	TInt ret = iSurfaceManager.CloseSurface(iSurfaceId);
   689 	if(ret!=KErrNone)
   690 		{
   691 		INFO_PRINTF1(_L("Surface manager failed to close"));
   692 		}
   693 
   694 	INFO_PRINTF1(_L("Destroy Surface Manager"));
   695 	iSurfaceManager.Close();
   696 	}
   697 
   698 /**
   699 Common set up code for assigning a surface to the window. Calls other utility
   700 functions for creating a window and a surface
   701 
   702 @param aWin	The window object
   703 @param aSurfaceId	The surface object, to be initialized.
   704 */
   705 TVerdict CT_WServIntegStepBasic::SetSurfaceL(RWindow& aWin, TSurfaceId& aSurfaceId)
   706 	{
   707 	TVerdict verdict=EPass;
   708 	CreateRWindowL(aWin);
   709 	CleanupClosePushL(aWin);
   710 	CreateSurfaceL( aSurfaceId );
   711 	CleanupStack::Pop(&aWin);
   712 	if ( aWin.SetBackgroundSurface(aSurfaceId)!=KErrNone)
   713 		{
   714 		verdict=EFail;
   715 		}
   716 	iWsSession.Flush();
   717 	ForceWindowToRedraw(aWin);
   718 	return verdict;
   719 	}
   720 
   721 /**
   722 Draw an Ellipse shape
   723 
   724 @param aWin	The window object, connected to a session
   725 @param aColor The (transparent/opaque)color which the shape is filled with
   726 */
   727 void CT_WServIntegStepBasic::DrawShape(RWindow& aWin, const TRgb& aColor)
   728 	{
   729    	iGc->Activate( aWin );
   730    	iGc->SetBrushColor( aColor );
   731    	iGc->SetBrushStyle( CGraphicsContext::ESolidBrush );
   732    	TRect rect(TPoint(0,0), TPoint(aWin.Size().iWidth, aWin.Size().iHeight));
   733    	iGc->DrawEllipse(rect);
   734    	iWsSession.Flush();
   735    	User::After(delay);
   736    	iGc->Deactivate();
   737 	}
   738