os/graphics/windowing/windowserver/test/tauto/TAlphaChannel.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
// An alpha channel test case. 
sl@0
    15
// Output different graphics primitives in each window using three graphics modes
sl@0
    16
// for pen and brush : semi-transparent,transparent, opaque
sl@0
    17
// Test also exercises anti-aliasing and fading for 16MA display mode
sl@0
    18
// Moves sprite on the window. Tests a sprite functionality.
sl@0
    19
// Creates RBackedUpWindow window and moves it over transparent window,
sl@0
    20
// hides and shows it.
sl@0
    21
// Moves windows on the screen, overlaps them
sl@0
    22
// Actions:
sl@0
    23
// Create a background window, and five foreground windows:
sl@0
    24
// -transparent and semi-transparent 
sl@0
    25
// -transparent with transparency factor
sl@0
    26
// -not transparent
sl@0
    27
// 
sl@0
    28
//
sl@0
    29
sl@0
    30
#include "TAlphaChannel.H"
sl@0
    31
sl@0
    32
const TInt KWindowIndention = 2;
sl@0
    33
const TInt KSizeKoeff = 15;
sl@0
    34
sl@0
    35
sl@0
    36
LOCAL_D TPtrC ColumnName[]={
sl@0
    37
	_L("Opaque"),
sl@0
    38
	_L("Semi-transparent"),
sl@0
    39
	_L("Transparent"),
sl@0
    40
	_L(""),
sl@0
    41
	_L(""),
sl@0
    42
	_L(""),
sl@0
    43
	};
sl@0
    44
sl@0
    45
LOCAL_D TPtrC RowName[]={
sl@0
    46
	_L("n"),
sl@0
    47
	_L("and"),
sl@0
    48
	_L("or"),
sl@0
    49
	_L("xor"),
sl@0
    50
	_L(""),
sl@0
    51
	_L(""),
sl@0
    52
	};
sl@0
    53
sl@0
    54
sl@0
    55
//
sl@0
    56
//
sl@0
    57
CTAlphaChannel::CTAlphaChannel(CTestStep* aStep):
sl@0
    58
	CTWsGraphicsBase(aStep), iArrWindow(8)
sl@0
    59
	{
sl@0
    60
	}
sl@0
    61
sl@0
    62
CTAlphaChannel::~CTAlphaChannel()
sl@0
    63
	{
sl@0
    64
	delete iBitmap64K_1;
sl@0
    65
	delete iBitmap16MA_1;
sl@0
    66
	delete iBitmap64K_2;
sl@0
    67
	delete iBitmap16MA_2;
sl@0
    68
	delete iBitmap64K_3;
sl@0
    69
	delete iBitmap16MA_3;
sl@0
    70
sl@0
    71
	delete iBitmapMask;
sl@0
    72
	delete iBitmapGray256Mask;
sl@0
    73
	
sl@0
    74
	delete iBitmapContext64K_1;
sl@0
    75
	delete iBitmapContext16MA_1;
sl@0
    76
	delete iBitmapContext64K_2;
sl@0
    77
	delete iBitmapContext16MA_2;
sl@0
    78
	delete iBitmapContext64K_3;
sl@0
    79
	delete iBitmapContext16MA_3;
sl@0
    80
sl@0
    81
	delete iBitmapDevice64K_1;
sl@0
    82
	delete iBitmapDevice16MA_1;
sl@0
    83
	delete iBitmapDevice64K_2;
sl@0
    84
	delete iBitmapDevice16MA_2;
sl@0
    85
	delete iBitmapDevice64K_3;
sl@0
    86
	delete iBitmapDevice16MA_3;
sl@0
    87
sl@0
    88
	delete iBackgroundWindow;
sl@0
    89
	
sl@0
    90
	
sl@0
    91
	iArrWindow.ResetAndDestroy();
sl@0
    92
	
sl@0
    93
	if(iFont)
sl@0
    94
		TheClient->iScreen->ReleaseFont(iFont);
sl@0
    95
	if(iFont1)
sl@0
    96
		TheClient->iScreen->ReleaseFont(iFont1);
sl@0
    97
	
sl@0
    98
	BaseWin->SetVisible(ETrue);
sl@0
    99
	TestWin->SetVisible(ETrue);
sl@0
   100
	}
sl@0
   101
sl@0
   102
void CTAlphaChannel::ConstructL()
sl@0
   103
	{
sl@0
   104
	const TInt KIndent = 10;
sl@0
   105
	BaseWin->SetVisible(EFalse);
sl@0
   106
	TestWin->SetVisible(EFalse);
sl@0
   107
sl@0
   108
	iText = _L("This is a text");
sl@0
   109
	iBrushStyle = CGraphicsContext::ESolidBrush;
sl@0
   110
	iPenTable = KRgbBlack;
sl@0
   111
sl@0
   112
	TSize screenSize=TheClient->iGroup->Size();
sl@0
   113
	TInt winWidth=(screenSize.iWidth)-KIndent;
sl@0
   114
	TInt winHeight=screenSize.iHeight-KIndent;
sl@0
   115
	TDisplayMode dispMode = EColor64K;
sl@0
   116
	
sl@0
   117
	//background opaque window
sl@0
   118
	iBackgroundWindow = new (ELeave) CTWinAlpha();
sl@0
   119
	iBackgroundWindow->SetUpL(TPoint(5,5),TSize(winWidth,winHeight),TheClient->iGroup,*TheClient->iGc, &dispMode);
sl@0
   120
	RWindow *theWin = (RWindow*) (iBackgroundWindow->DrawableWin());
sl@0
   121
	theWin->SetBackgroundColor(TRgb(255, 0, 0));
sl@0
   122
	iBackgroundWindow->DrawNow();
sl@0
   123
sl@0
   124
	iSizeForegroundWindow.iWidth = (winWidth - KWindowIndention * 4) / 5 ;
sl@0
   125
	iSizeForegroundWindow.iHeight = winHeight;
sl@0
   126
	
sl@0
   127
	CalculateSizePrimitives(iSizeForegroundWindow);
sl@0
   128
sl@0
   129
	//-------------create bitmaps
sl@0
   130
	//create 64K bitmap
sl@0
   131
	iBitmap64K_1 = new (ELeave) CFbsBitmap ;
sl@0
   132
	iBitmap64K_1->Create(iBitmapSize,EColor64K);
sl@0
   133
	iBitmap64K_2 = new (ELeave) CFbsBitmap ;
sl@0
   134
	iBitmap64K_2->Create(iBitmapSize,EColor64K);
sl@0
   135
	iBitmap64K_3 = new (ELeave) CFbsBitmap ;
sl@0
   136
	iBitmap64K_3->Create(iBitmapSize,EColor64K);
sl@0
   137
	iBitmapDevice64K_1 = CFbsBitmapDevice::NewL(iBitmap64K_1);
sl@0
   138
	iBitmapDevice64K_1->CreateContext(iBitmapContext64K_1);
sl@0
   139
	iBitmapDevice64K_2 = CFbsBitmapDevice::NewL(iBitmap64K_2);
sl@0
   140
	iBitmapDevice64K_2->CreateContext(iBitmapContext64K_2);
sl@0
   141
	iBitmapDevice64K_3 = CFbsBitmapDevice::NewL(iBitmap64K_3);
sl@0
   142
	iBitmapDevice64K_3->CreateContext(iBitmapContext64K_3);
sl@0
   143
	
sl@0
   144
	//create 16MA bitmap
sl@0
   145
	iBitmap16MA_1 = new (ELeave) CFbsBitmap ;
sl@0
   146
	iBitmap16MA_1->Create(iBitmapSize, EColor16MA);
sl@0
   147
	iBitmap16MA_2 = new (ELeave) CFbsBitmap ;
sl@0
   148
	iBitmap16MA_2->Create(iBitmapSize, EColor16MA);
sl@0
   149
	iBitmap16MA_3 = new (ELeave) CFbsBitmap ;
sl@0
   150
	iBitmap16MA_3->Create(iBitmapSize, EColor16MA);
sl@0
   151
sl@0
   152
	iBitmapDevice16MA_1 = CFbsBitmapDevice::NewL(iBitmap16MA_1);
sl@0
   153
	iBitmapDevice16MA_1->CreateContext(iBitmapContext16MA_1);
sl@0
   154
	iBitmapDevice16MA_2 = CFbsBitmapDevice::NewL(iBitmap16MA_2);
sl@0
   155
	iBitmapDevice16MA_2->CreateContext(iBitmapContext16MA_2);
sl@0
   156
	iBitmapDevice16MA_3 = CFbsBitmapDevice::NewL(iBitmap16MA_3);
sl@0
   157
	iBitmapDevice16MA_3->CreateContext(iBitmapContext16MA_3);
sl@0
   158
sl@0
   159
	//create mask bitmap
sl@0
   160
	iBitmapMask = new (ELeave) CFbsBitmap ;
sl@0
   161
	iBitmapMask->Create(iBitmapSize, EGray2);
sl@0
   162
	
sl@0
   163
	CFbsBitmapDevice* theBitmapDevice = CFbsBitmapDevice::NewL(iBitmapMask);
sl@0
   164
	CGraphicsContext*  theBitmapContext = NULL;
sl@0
   165
	theBitmapDevice->CreateContext(theBitmapContext);
sl@0
   166
	TRect rect = TRect(iBitmapMask->SizeInPixels());
sl@0
   167
	theBitmapContext->SetBrushColor(KRgbWhite);
sl@0
   168
   	theBitmapContext->SetPenColor(KRgbWhite);
sl@0
   169
   	theBitmapContext->SetBrushStyle(CGraphicsContext::ESolidBrush);
sl@0
   170
	theBitmapContext->DrawRect(rect);
sl@0
   171
sl@0
   172
	rect.Shrink(4, 4);
sl@0
   173
	theBitmapContext->SetBrushColor(KRgbBlack);
sl@0
   174
	theBitmapContext->SetPenColor(KRgbBlack);
sl@0
   175
	theBitmapContext->DrawEllipse(rect);
sl@0
   176
	delete theBitmapContext;
sl@0
   177
	delete theBitmapDevice;
sl@0
   178
	
sl@0
   179
	//create 256gray bitmap mask
sl@0
   180
	iBitmapGray256Mask = new (ELeave) CFbsBitmap;
sl@0
   181
	iBitmapGray256Mask->Create(iBitmapSize, EGray256);
sl@0
   182
	theBitmapDevice = CFbsBitmapDevice::NewL(iBitmapGray256Mask);
sl@0
   183
	theBitmapDevice->CreateContext(theBitmapContext);
sl@0
   184
	
sl@0
   185
	if(iBitmapSize != TSize(0, 0))
sl@0
   186
		{
sl@0
   187
	//fill bitmap with 256 gradation of gray
sl@0
   188
		TInt theStep = 256 / iBitmapGray256Mask->SizeInPixels().iWidth;
sl@0
   189
	
sl@0
   190
		for(TInt ii = 0; ii < iBitmapGray256Mask->SizeInPixels().iWidth; ii++)
sl@0
   191
			{
sl@0
   192
			TInt theSingleCol = theStep * ii; 
sl@0
   193
			TRgb theCol(theSingleCol, theSingleCol, theSingleCol);
sl@0
   194
			theBitmapContext->SetBrushColor(theCol);
sl@0
   195
			theBitmapContext->SetPenColor(theCol);
sl@0
   196
			TPoint ptFrom(ii, 0);
sl@0
   197
			TPoint ptTo(ii, iBitmapGray256Mask->SizeInPixels().iHeight);
sl@0
   198
			theBitmapContext->DrawLine(ptFrom, ptTo);
sl@0
   199
			}
sl@0
   200
		}
sl@0
   201
	delete theBitmapContext;
sl@0
   202
	delete theBitmapDevice;
sl@0
   203
	//--------------
sl@0
   204
	TFontSpec fontSpec(KTestFontTypefaceName,600);
sl@0
   205
sl@0
   206
	fontSpec.iFontStyle.SetStrokeWeight(EStrokeWeightBold);
sl@0
   207
	fontSpec.iFontStyle.SetBitmapType(EAntiAliasedGlyphBitmap);
sl@0
   208
	
sl@0
   209
	User::LeaveIfError(TheClient->iScreen->GetNearestFontToDesignHeightInTwips(iFont, fontSpec));
sl@0
   210
	
sl@0
   211
	TFontSpec fontSpec1(KTestFontTypefaceName,100);
sl@0
   212
	User::LeaveIfError(TheClient->iScreen->GetNearestFontToDesignHeightInTwips(iFont1, fontSpec1));
sl@0
   213
	}
sl@0
   214
sl@0
   215
void CTAlphaChannel::CalculateSizePrimitives(const TSize& aSize)
sl@0
   216
	{
sl@0
   217
	TInt theLen = aSize.iWidth / KSizeKoeff;
sl@0
   218
	
sl@0
   219
	iBitmapSize = TSize(2 * theLen, 2 * theLen);
sl@0
   220
	iRectangleSize = TSize(2 * theLen, 2 * theLen);
sl@0
   221
	iEllipseSize = TSize(4 * theLen, 2 * theLen);
sl@0
   222
	iTriangleSize = TSize(3 * theLen, 2 * theLen);
sl@0
   223
	iFirstCellWidth = static_cast <TInt> (1.2 * theLen);
sl@0
   224
	iFirstCellHeight = static_cast <TInt> (1.5 * theLen);
sl@0
   225
	}
sl@0
   226
sl@0
   227
void CTAlphaChannel::DrawOffscreenBitmapsL(const TRgb& /*aPen*/, const TRgb& aBrush,
sl@0
   228
										CGraphicsContext* aBitmapContext64K, CGraphicsContext* aBitmapContext16MA, 
sl@0
   229
										CFbsBitmap* aBitmap64K, CFbsBitmap* aBitmap16MA)
sl@0
   230
	{
sl@0
   231
sl@0
   232
	if(aBitmapContext64K && aBitmap64K)
sl@0
   233
		{
sl@0
   234
		SEpocBitmapHeader header = aBitmap64K->Header();
sl@0
   235
		TInt source_buffer_size = header.iBitmapSize / header.iSizeInPixels.iHeight * header.iBitsPerPixel ;
sl@0
   236
		TUint8* buffer = new(ELeave) TUint8[source_buffer_size];
sl@0
   237
		TPtr8 source_ptr(buffer, source_buffer_size, source_buffer_size);
sl@0
   238
		
sl@0
   239
		TUint16* bufferCur = reinterpret_cast<TUint16*> (buffer);
sl@0
   240
		TInt ii;
sl@0
   241
		for(ii = 0; ii < header.iSizeInPixels.iWidth; ++ii)
sl@0
   242
			{
sl@0
   243
			*bufferCur = aBrush._Color64K();
sl@0
   244
			bufferCur ++;
sl@0
   245
			}
sl@0
   246
	
sl@0
   247
		for(ii = 0; ii < header.iSizeInPixels.iHeight; ++ii)
sl@0
   248
			{
sl@0
   249
			aBitmap64K -> SetScanLine(source_ptr, ii);
sl@0
   250
			}
sl@0
   251
		
sl@0
   252
		delete [] buffer;
sl@0
   253
		}
sl@0
   254
		
sl@0
   255
	if(aBitmapContext16MA && aBitmap16MA)
sl@0
   256
		{
sl@0
   257
		SEpocBitmapHeader header = aBitmap16MA -> Header();
sl@0
   258
		TInt source_buffer_size = header.iBitmapSize / header.iSizeInPixels.iHeight * header.iBitsPerPixel ;
sl@0
   259
		TUint8* buffer = new(ELeave) TUint8[source_buffer_size];
sl@0
   260
		TPtr8 source_ptr(buffer, source_buffer_size, source_buffer_size);
sl@0
   261
		
sl@0
   262
		TUint32* bufferCur = reinterpret_cast<TUint32*> (buffer);
sl@0
   263
		TInt ii;
sl@0
   264
		for(ii = 0; ii < header.iSizeInPixels.iWidth; ++ii)
sl@0
   265
			{
sl@0
   266
			*bufferCur = aBrush._Color16MA();
sl@0
   267
			bufferCur ++;
sl@0
   268
			}
sl@0
   269
	
sl@0
   270
		for(ii = 0; ii < header.iSizeInPixels.iHeight; ++ii)
sl@0
   271
			{
sl@0
   272
			aBitmap16MA -> SetScanLine(source_ptr, ii);
sl@0
   273
			}
sl@0
   274
		
sl@0
   275
		delete [] buffer;
sl@0
   276
		}
sl@0
   277
	
sl@0
   278
	}
sl@0
   279
sl@0
   280
enum {EOpaque, ESemiTrans, ETrans};
sl@0
   281
sl@0
   282
TRgb CTAlphaChannel::GetBrush(TInt aIndex) const
sl@0
   283
	{
sl@0
   284
	switch(aIndex)
sl@0
   285
		{
sl@0
   286
			case EOpaque:
sl@0
   287
			return TRgb(0, 0, 255, 255);
sl@0
   288
			case ESemiTrans:
sl@0
   289
			return TRgb(0, 0, 255, 128);
sl@0
   290
			case ETrans:
sl@0
   291
			return TRgb(0, 0, 255, 0);
sl@0
   292
			default : break;
sl@0
   293
		}
sl@0
   294
		
sl@0
   295
	return 	TRgb(0, 0, 255, 255);
sl@0
   296
	}
sl@0
   297
sl@0
   298
TRgb CTAlphaChannel::GetPen(TInt aIndex) const
sl@0
   299
	{
sl@0
   300
	switch(aIndex)
sl@0
   301
		{
sl@0
   302
			case EOpaque:
sl@0
   303
			return TRgb(0, 0, 255, 255);
sl@0
   304
			case ESemiTrans:
sl@0
   305
			return TRgb(0, 0, 255, 128);
sl@0
   306
			case ETrans:
sl@0
   307
			return TRgb(0, 0, 255, 0);
sl@0
   308
			default : break;
sl@0
   309
		}
sl@0
   310
		
sl@0
   311
	return 	TRgb(0, 0, 255, 255);
sl@0
   312
	}
sl@0
   313
   
sl@0
   314
CGraphicsContext::TDrawMode CTAlphaChannel::GetDrawMode(TInt /*aIndex*/) const
sl@0
   315
	{
sl@0
   316
	return CGraphicsContext::EDrawModePEN;
sl@0
   317
	}
sl@0
   318
sl@0
   319
enum {EAll64K, EAll16MA, EAllDifferent};// later may add EAll16M
sl@0
   320
void CTAlphaChannel::SetDisplayModeConfiguration(TInt aConfig)
sl@0
   321
	{
sl@0
   322
	switch (aConfig)
sl@0
   323
		{
sl@0
   324
	case EAll64K:
sl@0
   325
		if(iForegroundWindowOpaque)
sl@0
   326
			iForegroundWindowOpaque->SetDisplayMode(EColor64K);
sl@0
   327
		if(iForegroundWindowSemiTrans)
sl@0
   328
			iForegroundWindowSemiTrans->SetDisplayMode(EColor64K);
sl@0
   329
		if(iForegroundWindowTrans)
sl@0
   330
			iForegroundWindowTrans->SetDisplayMode(EColor64K);
sl@0
   331
		break;
sl@0
   332
	case EAll16MA:
sl@0
   333
		if(iForegroundWindowOpaque)
sl@0
   334
			iForegroundWindowOpaque->SetDisplayMode(EColor16MA);
sl@0
   335
		if(iForegroundWindowSemiTrans)
sl@0
   336
			iForegroundWindowSemiTrans->SetDisplayMode(EColor16MA);
sl@0
   337
		if(iForegroundWindowTrans)
sl@0
   338
			iForegroundWindowTrans->SetDisplayMode(EColor16MA);
sl@0
   339
		break;
sl@0
   340
	case EAllDifferent:
sl@0
   341
		if(iForegroundWindowOpaque)
sl@0
   342
			iForegroundWindowOpaque->SetDisplayMode(EColor256);
sl@0
   343
		if(iForegroundWindowSemiTrans)
sl@0
   344
			iForegroundWindowSemiTrans->SetDisplayMode(EColor64K);
sl@0
   345
		if(iForegroundWindowTrans)
sl@0
   346
			iForegroundWindowTrans->SetDisplayMode(EColor16MA);
sl@0
   347
		break;
sl@0
   348
		}
sl@0
   349
	}
sl@0
   350
sl@0
   351
enum {ETiled, EOverlapping};
sl@0
   352
sl@0
   353
void CTAlphaChannel::SetPositionConfiguration(TInt aConfig)
sl@0
   354
	{
sl@0
   355
	TSize screenSize=TheClient->iGroup->Size();
sl@0
   356
	TInt winWidth=(screenSize.iWidth)-10;
sl@0
   357
	TInt winHeight=screenSize.iHeight-10;
sl@0
   358
	if (aConfig==ETiled)
sl@0
   359
		{
sl@0
   360
		if(iForegroundWindowOpaque)
sl@0
   361
			iForegroundWindowOpaque->SetPos(TPoint(winWidth/5, 0));
sl@0
   362
		if(iForegroundWindowSemiTrans)
sl@0
   363
			iForegroundWindowSemiTrans->SetPos(TPoint(2*winWidth/5, 0));
sl@0
   364
		if(iForegroundWindowTrans)
sl@0
   365
			iForegroundWindowTrans->SetPos(TPoint(3*winWidth/5, 0));
sl@0
   366
		}
sl@0
   367
	else
sl@0
   368
		{
sl@0
   369
		if(iForegroundWindowOpaque)
sl@0
   370
			iForegroundWindowOpaque->SetPos(TPoint(winWidth/3, -winHeight/3));
sl@0
   371
		if(iForegroundWindowSemiTrans)
sl@0
   372
			iForegroundWindowSemiTrans->SetPos(TPoint(2*winWidth/5, winHeight/3));
sl@0
   373
		if(iForegroundWindowTrans)
sl@0
   374
			iForegroundWindowTrans->SetPos(TPoint(winWidth/2, -winHeight/3));
sl@0
   375
		}
sl@0
   376
	if (iForegroundWindowBottom)
sl@0
   377
		iForegroundWindowBottom->SetPos(TPoint(0, 0));
sl@0
   378
	if (iForegroundWindowTop)
sl@0
   379
		iForegroundWindowTop->SetPos(TPoint(4*winWidth/5, 0));
sl@0
   380
	}
sl@0
   381
sl@0
   382
enum {EVaryingTransparency, EVaryingColour};
sl@0
   383
sl@0
   384
void CTAlphaChannel::SetColourConfiguration(TInt aConfig)
sl@0
   385
	{
sl@0
   386
	RWindow* win;
sl@0
   387
	if (aConfig==EVaryingTransparency)
sl@0
   388
		{
sl@0
   389
		// red background, green foregrounds of varying transparency
sl@0
   390
		win = (RWindow*)(iBackgroundWindow->DrawableWin());
sl@0
   391
		win->SetBackgroundColor(TRgb(255,0,0,255));
sl@0
   392
sl@0
   393
		if(iForegroundWindowOpaque)
sl@0
   394
			iForegroundWindowOpaque->SetBackgroundColor(TRgb(0,255,0,255));
sl@0
   395
		if(iForegroundWindowSemiTrans)
sl@0
   396
			iForegroundWindowSemiTrans->SetBackgroundColor(TRgb(0,255,0,128));
sl@0
   397
		if(iForegroundWindowTrans)
sl@0
   398
			iForegroundWindowTrans->SetBackgroundColor(TRgb(0,255,0,0));
sl@0
   399
		}
sl@0
   400
	else
sl@0
   401
		{
sl@0
   402
		// white background, semi-transparent foregrounds in primary colours
sl@0
   403
		win = (RWindow*)(iBackgroundWindow->DrawableWin());
sl@0
   404
		win->SetBackgroundColor(TRgb(255,255,255,255));
sl@0
   405
sl@0
   406
		if(iForegroundWindowOpaque)
sl@0
   407
			iForegroundWindowOpaque->SetBackgroundColor(TRgb(255,0,0,128));
sl@0
   408
		if(iForegroundWindowSemiTrans)
sl@0
   409
			iForegroundWindowSemiTrans->SetBackgroundColor(TRgb(0,255,0,128));
sl@0
   410
		if(iForegroundWindowTrans)
sl@0
   411
			iForegroundWindowTrans->SetBackgroundColor(TRgb(0,0,255,128));
sl@0
   412
		}
sl@0
   413
	}
sl@0
   414
sl@0
   415
void CTAlphaChannel::DoMoving()
sl@0
   416
	{
sl@0
   417
	TPoint pos;
sl@0
   418
	for (TInt i = 0; i<20; i++)
sl@0
   419
		{
sl@0
   420
		if (iForegroundWindowBottom)
sl@0
   421
			{
sl@0
   422
			pos = iForegroundWindowBottom->Position();
sl@0
   423
			pos += TPoint(1,5);
sl@0
   424
			iForegroundWindowBottom->SetPos(pos);
sl@0
   425
			}
sl@0
   426
sl@0
   427
		if (iForegroundWindowOpaque)
sl@0
   428
			{
sl@0
   429
			pos = iForegroundWindowOpaque->Position();
sl@0
   430
			pos += TPoint(1,5);
sl@0
   431
			iForegroundWindowOpaque->SetPos(pos);
sl@0
   432
			}
sl@0
   433
sl@0
   434
		if (iForegroundWindowSemiTrans)
sl@0
   435
			{
sl@0
   436
			pos = iForegroundWindowSemiTrans->Position();
sl@0
   437
			pos += TPoint(1,5);
sl@0
   438
			iForegroundWindowSemiTrans->SetPos(pos);
sl@0
   439
			}
sl@0
   440
sl@0
   441
		if (iForegroundWindowTrans)
sl@0
   442
			{
sl@0
   443
			pos = iForegroundWindowTrans->Position();
sl@0
   444
			pos += TPoint(1,5);
sl@0
   445
			iForegroundWindowTrans->SetPos(pos);
sl@0
   446
			}
sl@0
   447
sl@0
   448
		if (iForegroundWindowTop)
sl@0
   449
			{
sl@0
   450
			pos = iForegroundWindowTop->Position();
sl@0
   451
			pos += TPoint(1,5);
sl@0
   452
			iForegroundWindowTop->SetPos(pos);
sl@0
   453
			}
sl@0
   454
sl@0
   455
		TheClient->iWs.Flush();	
sl@0
   456
		User::After(TTimeIntervalMicroSeconds32(50000));
sl@0
   457
		}
sl@0
   458
sl@0
   459
	}
sl@0
   460
sl@0
   461
void CTAlphaChannel::DoMoveBehind()
sl@0
   462
	{
sl@0
   463
	TPoint pos = iBackgroundWindow->Position();
sl@0
   464
	for (TInt i = 0; i<20; i++)
sl@0
   465
		{
sl@0
   466
		pos += TPoint(0,5);
sl@0
   467
		iBackgroundWindow->SetPos(pos);
sl@0
   468
sl@0
   469
		TheClient->iWs.Flush();	
sl@0
   470
		User::After(TTimeIntervalMicroSeconds32(50000));
sl@0
   471
		}
sl@0
   472
	iBackgroundWindow->SetPos(TPoint(5,5));
sl@0
   473
	}
sl@0
   474
sl@0
   475
void CTAlphaChannel::DoInvisibility()
sl@0
   476
	{
sl@0
   477
	RWindow* win;
sl@0
   478
	if (iForegroundWindowBottom)
sl@0
   479
		{
sl@0
   480
		win = (RWindow*)(iForegroundWindowBottom->DrawableWin());
sl@0
   481
		win->SetVisible(EFalse);
sl@0
   482
		TheClient->iWs.Flush();	
sl@0
   483
		User::After(TTimeIntervalMicroSeconds32(1000000));
sl@0
   484
sl@0
   485
		win->SetVisible(ETrue);
sl@0
   486
		TheClient->iWs.Flush();	
sl@0
   487
		User::After(TTimeIntervalMicroSeconds32(1000000));
sl@0
   488
		}
sl@0
   489
	if (iForegroundWindowOpaque)
sl@0
   490
		{
sl@0
   491
		win = (RWindow*)(iForegroundWindowOpaque->DrawableWin());
sl@0
   492
		win->SetVisible(EFalse);
sl@0
   493
		TheClient->iWs.Flush();	
sl@0
   494
		User::After(TTimeIntervalMicroSeconds32(1000000));
sl@0
   495
sl@0
   496
		win->SetVisible(ETrue);
sl@0
   497
		TheClient->iWs.Flush();	
sl@0
   498
		User::After(TTimeIntervalMicroSeconds32(1000000));
sl@0
   499
		}
sl@0
   500
	if (iForegroundWindowSemiTrans)
sl@0
   501
		{
sl@0
   502
		win = (RWindow*)(iForegroundWindowSemiTrans->DrawableWin());
sl@0
   503
		win->SetVisible(EFalse);
sl@0
   504
		TheClient->iWs.Flush();	
sl@0
   505
		User::After(TTimeIntervalMicroSeconds32(1000000));
sl@0
   506
sl@0
   507
		win->SetVisible(ETrue);
sl@0
   508
		TheClient->iWs.Flush();	
sl@0
   509
		User::After(TTimeIntervalMicroSeconds32(1000000));
sl@0
   510
		}
sl@0
   511
	if (iForegroundWindowTrans)
sl@0
   512
		{
sl@0
   513
		win = (RWindow*)(iForegroundWindowTrans->DrawableWin());
sl@0
   514
		win->SetVisible(EFalse);
sl@0
   515
		TheClient->iWs.Flush();	
sl@0
   516
		User::After(TTimeIntervalMicroSeconds32(1000000));
sl@0
   517
sl@0
   518
		win->SetVisible(ETrue);
sl@0
   519
		TheClient->iWs.Flush();	
sl@0
   520
		User::After(TTimeIntervalMicroSeconds32(1000000));
sl@0
   521
		}
sl@0
   522
	if (iForegroundWindowTop)
sl@0
   523
		{
sl@0
   524
		win = (RWindow*)(iForegroundWindowTop->DrawableWin());
sl@0
   525
		win->SetVisible(EFalse);
sl@0
   526
		TheClient->iWs.Flush();	
sl@0
   527
		User::After(TTimeIntervalMicroSeconds32(1000000));
sl@0
   528
sl@0
   529
		win->SetVisible(ETrue);
sl@0
   530
		TheClient->iWs.Flush();	
sl@0
   531
		User::After(TTimeIntervalMicroSeconds32(1000000));
sl@0
   532
		}
sl@0
   533
	}
sl@0
   534
sl@0
   535
/** 
sl@0
   536
	@SYMTestCaseID	GRAPHICS-WSERV-0328
sl@0
   537
  	
sl@0
   538
  	@SYMTestCaseDesc			Testing a Fading.
sl@0
   539
  	
sl@0
   540
  	@SYMTestPriority			High
sl@0
   541
  	
sl@0
   542
  	@SYMTestStatus      		Implemented
sl@0
   543
  	
sl@0
   544
  	@SYMTestActions		
sl@0
   545
		 Set fading parameters. Draw all graphics primitives and bitmaps with 
sl@0
   546
		 various transparency				.
sl@0
   547
 
sl@0
   548
  	@SYMTestExpectedResults
sl@0
   549
 				All windows should be drawn according their fading values. 
sl@0
   550
 */
sl@0
   551
sl@0
   552
void CTAlphaChannel::TestFading()
sl@0
   553
	{
sl@0
   554
	iIsFading = ETrue;
sl@0
   555
	iBlackFading = 0;
sl@0
   556
	iWhiteFading = 128;
sl@0
   557
	iText.Format(_L("Fading. %dX%d"), iBlackFading, iWhiteFading);
sl@0
   558
	INFO_PRINTF1(iText);
sl@0
   559
	DrawTestWindowsNow();
sl@0
   560
sl@0
   561
	User::After(TTimeIntervalMicroSeconds32(1000000 * 1));
sl@0
   562
	iIsFading = EFalse;
sl@0
   563
	DrawTestWindowsNow();
sl@0
   564
	iIsFading = ETrue;
sl@0
   565
	iBlackFading = 128;
sl@0
   566
	iWhiteFading = 255;
sl@0
   567
	iText.Format(_L("Fading. %dX%d"), iBlackFading, iWhiteFading);
sl@0
   568
	INFO_PRINTF1(iText);
sl@0
   569
	DrawTestWindowsNow();
sl@0
   570
sl@0
   571
	iIsFading = EFalse;
sl@0
   572
	}
sl@0
   573
	
sl@0
   574
/** 
sl@0
   575
	@SYMTestCaseID	GRAPHICS-WSERV-0329
sl@0
   576
  	
sl@0
   577
  	@SYMTestCaseDesc			Tests moving of foreground windows.
sl@0
   578
  	
sl@0
   579
  	@SYMTestPriority			High
sl@0
   580
  	
sl@0
   581
  	@SYMTestStatus      		Implemented
sl@0
   582
  	
sl@0
   583
  	@SYMTestActions		
sl@0
   584
		 Set fading parameters. Set position of foreground windows as tile				.
sl@0
   585
 
sl@0
   586
  	@SYMTestExpectedResults
sl@0
   587
 			Foreground window has to be redrawn properly.
sl@0
   588
 */
sl@0
   589
sl@0
   590
void CTAlphaChannel::TestMoving()
sl@0
   591
	{
sl@0
   592
	SetPositionConfiguration(ETiled);
sl@0
   593
	DoMoving();
sl@0
   594
	SetPositionConfiguration(ETiled);
sl@0
   595
	}
sl@0
   596
sl@0
   597
/** 
sl@0
   598
	@SYMTestCaseID	GRAPHICS-WSERV-0330
sl@0
   599
  	
sl@0
   600
  	@SYMTestCaseDesc			Tests moving of foreground windows.
sl@0
   601
  	
sl@0
   602
  	@SYMTestPriority			High
sl@0
   603
  	
sl@0
   604
  	@SYMTestStatus      		Implemented
sl@0
   605
  	
sl@0
   606
  	@SYMTestActions		
sl@0
   607
		 Set fading parameters. Moves foreground windows over the screen			.
sl@0
   608
 
sl@0
   609
  	@SYMTestExpectedResults
sl@0
   610
 			Foreground window has to be redrawn properly.
sl@0
   611
 */
sl@0
   612
sl@0
   613
sl@0
   614
void CTAlphaChannel::TestMovingOverlapping()
sl@0
   615
	{
sl@0
   616
	TPoint pos;
sl@0
   617
sl@0
   618
	for (TInt i = 0; i < 20; i++)
sl@0
   619
		{
sl@0
   620
		if (iForegroundWindowOpaque)
sl@0
   621
			{
sl@0
   622
			pos = iForegroundWindowOpaque->Position();
sl@0
   623
			pos += TPoint(3,0);
sl@0
   624
			iForegroundWindowOpaque->SetPos(pos);
sl@0
   625
			}
sl@0
   626
		if (iForegroundWindowTrans)
sl@0
   627
			{
sl@0
   628
			pos = iForegroundWindowTrans->Position();
sl@0
   629
			pos -= TPoint(3,0);
sl@0
   630
			iForegroundWindowTrans->SetPos(pos);
sl@0
   631
			}
sl@0
   632
		TheClient->iWs.Flush();	
sl@0
   633
		User::After(TTimeIntervalMicroSeconds32(50000));
sl@0
   634
		}
sl@0
   635
	}
sl@0
   636
sl@0
   637
/** 
sl@0
   638
	@SYMTestCaseID	GRAPHICS-WSERV-0331
sl@0
   639
  	
sl@0
   640
  	@SYMTestCaseDesc			Testing transparency factor for windows with alpha channel.
sl@0
   641
  	
sl@0
   642
  	@SYMTestPriority			High
sl@0
   643
  	
sl@0
   644
  	@SYMTestStatus      		Implemented
sl@0
   645
  	
sl@0
   646
  	@SYMTestActions		
sl@0
   647
		 Sets background colour with various level of transparency			.
sl@0
   648
 
sl@0
   649
  	@SYMTestExpectedResults
sl@0
   650
 			Foreground window must be redrawn properly.
sl@0
   651
 */
sl@0
   652
void CTAlphaChannel::TestChangingTransparencyFactor()
sl@0
   653
	{
sl@0
   654
	TInt i = 0;
sl@0
   655
	while (i <= 255)
sl@0
   656
		{
sl@0
   657
		iForegroundWindowOpaque->SetBackgroundColor(TRgb(0,255,0,255-i));
sl@0
   658
		iForegroundWindowTrans->SetBackgroundColor(TRgb(0,255,0,i));
sl@0
   659
		iForegroundWindowOpaque->DrawNow();
sl@0
   660
		iForegroundWindowTrans->DrawNow();
sl@0
   661
		i+=15;
sl@0
   662
		}
sl@0
   663
	i=0;
sl@0
   664
	while (i <= 255)
sl@0
   665
		{
sl@0
   666
		iForegroundWindowOpaque->SetBackgroundColor(TRgb(0,255,0,i));
sl@0
   667
		iForegroundWindowTrans->SetBackgroundColor(TRgb(0,255,0,255-i));
sl@0
   668
		iForegroundWindowOpaque->DrawNow();
sl@0
   669
		iForegroundWindowTrans->DrawNow();
sl@0
   670
		User::After(TTimeIntervalMicroSeconds32(50000));// 20 frames per second
sl@0
   671
		i+=15;
sl@0
   672
		}
sl@0
   673
	}
sl@0
   674
sl@0
   675
/** 
sl@0
   676
	@SYMTestCaseID	GRAPHICS-WSERV-0332
sl@0
   677
  	
sl@0
   678
  	@SYMTestCaseDesc			Testing redrawing of foreground windows while their positions and 
sl@0
   679
  				invisibility have been changed.
sl@0
   680
  	
sl@0
   681
  	@SYMTestPriority			High
sl@0
   682
  	
sl@0
   683
  	@SYMTestStatus      		Implemented
sl@0
   684
  	
sl@0
   685
  	@SYMTestActions		
sl@0
   686
		 Sets position of the foreground windows as overlapping, tiled.
sl@0
   687
		Change visability of semi transparent foreground window.		.
sl@0
   688
 
sl@0
   689
  	@SYMTestExpectedResults
sl@0
   690
 		Foreground window must be redrawn properly.
sl@0
   691
 */
sl@0
   692
sl@0
   693
void CTAlphaChannel::TestInvisibility()
sl@0
   694
	{
sl@0
   695
	RWindow* win = (RWindow*)(iForegroundWindowSemiTrans->DrawableWin());
sl@0
   696
	SetPositionConfiguration(EOverlapping);
sl@0
   697
	TheClient->iWs.Flush();	
sl@0
   698
	User::After(TTimeIntervalMicroSeconds32(1000000));
sl@0
   699
sl@0
   700
	win->SetVisible(EFalse);
sl@0
   701
	TheClient->iWs.Flush();	
sl@0
   702
	User::After(TTimeIntervalMicroSeconds32(1000000));
sl@0
   703
sl@0
   704
	win->SetVisible(ETrue);
sl@0
   705
	TheClient->iWs.Flush();	
sl@0
   706
	User::After(TTimeIntervalMicroSeconds32(1000000));
sl@0
   707
sl@0
   708
	SetPositionConfiguration(ETiled);
sl@0
   709
sl@0
   710
	}
sl@0
   711
sl@0
   712
/** 
sl@0
   713
	@SYMTestCaseID	GRAPHICS-WSERV-0333
sl@0
   714
  	
sl@0
   715
  	@SYMTestCaseDesc			Testing redrawing of foreground windows after a 
sl@0
   716
  				background window has been moved.
sl@0
   717
  	
sl@0
   718
  	@SYMTestPriority			High
sl@0
   719
  	
sl@0
   720
  	@SYMTestStatus      		Implemented
sl@0
   721
  	
sl@0
   722
  	@SYMTestActions		
sl@0
   723
		 Sets position of the foreground windows as tiled.
sl@0
   724
		Moves background window.
sl@0
   725
 
sl@0
   726
  	@SYMTestExpectedResults
sl@0
   727
 		Foreground windows must be redrawn properly.
sl@0
   728
 */
sl@0
   729
void CTAlphaChannel::TestMoveUnderneath()
sl@0
   730
	{
sl@0
   731
	SetPositionConfiguration(ETiled);
sl@0
   732
	DoMoveBehind();
sl@0
   733
	}
sl@0
   734
/** 
sl@0
   735
	@SYMTestCaseID	GRAPHICS-WSERV-0334
sl@0
   736
  	
sl@0
   737
  	@SYMTestCaseDesc			Testing redrawing of foreground windows after a 
sl@0
   738
  				background window has been moved.
sl@0
   739
  	
sl@0
   740
  	@SYMTestPriority			High
sl@0
   741
  	
sl@0
   742
  	@SYMTestStatus      		Implemented
sl@0
   743
  	
sl@0
   744
  	@SYMTestActions		
sl@0
   745
		 Sets different position of the foreground windows: tiled, overlapping.
sl@0
   746
		Moves background window.
sl@0
   747
 
sl@0
   748
  	@SYMTestExpectedResults
sl@0
   749
 		Foreground windows has to be redrawn properly.
sl@0
   750
 */
sl@0
   751
sl@0
   752
void CTAlphaChannel::TestMoveBehindInvisible()
sl@0
   753
	{
sl@0
   754
	SetPositionConfiguration(ETiled);
sl@0
   755
	RWindow* win;
sl@0
   756
	win = (RWindow*)(iForegroundWindowOpaque->DrawableWin());
sl@0
   757
	win->SetVisible(EFalse);
sl@0
   758
	win = (RWindow*)(iForegroundWindowSemiTrans->DrawableWin());
sl@0
   759
	win->SetVisible(EFalse);
sl@0
   760
	win = (RWindow*)(iForegroundWindowTrans->DrawableWin());
sl@0
   761
	win->SetVisible(EFalse);
sl@0
   762
	TheClient->iWs.Flush();
sl@0
   763
sl@0
   764
	DoMoveBehind();
sl@0
   765
sl@0
   766
	SetPositionConfiguration(EOverlapping);
sl@0
   767
	DoMoveBehind();
sl@0
   768
sl@0
   769
	win = (RWindow*)(iForegroundWindowOpaque->DrawableWin());
sl@0
   770
	win->SetVisible(ETrue);
sl@0
   771
	win = (RWindow*)(iForegroundWindowSemiTrans->DrawableWin());
sl@0
   772
	win->SetVisible(ETrue);
sl@0
   773
	win = (RWindow*)(iForegroundWindowTrans->DrawableWin());
sl@0
   774
	win->SetVisible(ETrue);
sl@0
   775
	TheClient->iWs.Flush();
sl@0
   776
	}
sl@0
   777
/** 
sl@0
   778
	@SYMTestCaseID	GRAPHICS-WSERV-0335
sl@0
   779
  	
sl@0
   780
  	@SYMTestCaseDesc			Testing redrawing of foreground windows.
sl@0
   781
  	
sl@0
   782
  	@SYMTestPriority			High
sl@0
   783
  	
sl@0
   784
  	@SYMTestStatus      		Implemented
sl@0
   785
  	
sl@0
   786
  	@SYMTestActions		
sl@0
   787
		 Redraws background window
sl@0
   788
 
sl@0
   789
  	@SYMTestExpectedResults
sl@0
   790
 		Foreground windows should be redrawn properly, if background window 
sl@0
   791
  		 has been redrawn.
sl@0
   792
 */
sl@0
   793
void CTAlphaChannel::TestRedrawBehind()
sl@0
   794
	{
sl@0
   795
	TheClient->iWs.Flush();	
sl@0
   796
	iBackgroundWindow->iState += 1;
sl@0
   797
	iBackgroundWindow->DrawNow();
sl@0
   798
	TheClient->iWs.Flush();	
sl@0
   799
	User::After(TTimeIntervalMicroSeconds32(1000000));
sl@0
   800
	}
sl@0
   801
/** 
sl@0
   802
	@SYMTestCaseID	GRAPHICS-WSERV-0336
sl@0
   803
  	
sl@0
   804
  	@SYMTestCaseDesc			Testing transparency with RWsSprite class.
sl@0
   805
  	
sl@0
   806
  	@SYMTestPriority			High
sl@0
   807
  	
sl@0
   808
  	@SYMTestStatus      		Implemented
sl@0
   809
  	
sl@0
   810
  	@SYMTestActions		
sl@0
   811
		 Creates RBackedUpWindow window and moves it over transparent window
sl@0
   812
		appears and dissapears set up window as transparent
sl@0
   813
 
sl@0
   814
  	@SYMTestExpectedResults
sl@0
   815
 			Must work with transparent windows. 
sl@0
   816
 */
sl@0
   817
sl@0
   818
void CTAlphaChannel::TestAnimationL()
sl@0
   819
	{
sl@0
   820
	for(TInt ii = 0; ii < iArrWindow.Count(); ii++)
sl@0
   821
		{
sl@0
   822
		iArrWindow[ii]->StartAnimationL();
sl@0
   823
		}
sl@0
   824
	}
sl@0
   825
/** 
sl@0
   826
	@SYMTestCaseID	GRAPHICS-WSERV-0337
sl@0
   827
  	
sl@0
   828
  	@SYMTestCaseDesc			Testing transparency with RBackedUpWindow window class.
sl@0
   829
  	
sl@0
   830
  	@SYMTestPriority			High
sl@0
   831
  	
sl@0
   832
  	@SYMTestStatus      		Implemented
sl@0
   833
  	
sl@0
   834
  	@SYMTestActions		
sl@0
   835
		 Creates RBackedUpWindow window and moves it over transparent window
sl@0
   836
		appears and dissapears set up transparent window as transparent
sl@0
   837
 
sl@0
   838
  	@SYMTestExpectedResults
sl@0
   839
 				Do not expect correct work of alpha channel with 
sl@0
   840
 				RBackedUpWindow window class. 
sl@0
   841
*/
sl@0
   842
void CTAlphaChannel::TestBackedWindowL()
sl@0
   843
	{
sl@0
   844
	for(TInt ii = 0; ii < iArrWindow.Count(); ii++)
sl@0
   845
		{
sl@0
   846
		iArrWindow[ii]->CreateBackedWindowL();
sl@0
   847
		}
sl@0
   848
	}
sl@0
   849
sl@0
   850
/** 
sl@0
   851
	@SYMTestCaseID	GRAPHICS-WSERV-0338
sl@0
   852
  	
sl@0
   853
  	@SYMTestCaseDesc			Implication of setting SetDrawOpaque on drawing with alpha channel.
sl@0
   854
  	
sl@0
   855
  	@SYMTestPriority			High
sl@0
   856
  	
sl@0
   857
  	@SYMTestStatus      		Implemented
sl@0
   858
  	
sl@0
   859
  	@SYMTestActions		
sl@0
   860
		 Change graphic context to opaque and none opaque and rewdraw all test windows
sl@0
   861
 
sl@0
   862
  	@SYMTestExpectedResults
sl@0
   863
 				must not impact on output with alpha channel 
sl@0
   864
 */
sl@0
   865
sl@0
   866
void CTAlphaChannel::TestEffectSetOpaque()
sl@0
   867
	{
sl@0
   868
	for(TInt ii = 0; ii < 3; ii++)
sl@0
   869
		{
sl@0
   870
		
sl@0
   871
		for(TInt ii = 0; ii < iArrWindow.Count(); ii++)
sl@0
   872
			{
sl@0
   873
			iArrWindow[ii]->SetDrawOpaque(EFalse);
sl@0
   874
			}
sl@0
   875
	
sl@0
   876
		DrawTestWindowsNow();
sl@0
   877
		User::After(TTimeIntervalMicroSeconds32(1000000));
sl@0
   878
sl@0
   879
		for(TInt jj = 0; jj < iArrWindow.Count(); jj++)
sl@0
   880
			{
sl@0
   881
			iArrWindow[jj]->SetDrawOpaque(ETrue);
sl@0
   882
			}
sl@0
   883
sl@0
   884
		DrawTestWindowsNow();
sl@0
   885
		User::After(TTimeIntervalMicroSeconds32(1000000));
sl@0
   886
		}
sl@0
   887
	}
sl@0
   888
sl@0
   889
/** 
sl@0
   890
	@SYMTestCaseID	GRAPHICS-WSERV-0339
sl@0
   891
  	
sl@0
   892
  	@SYMTestCaseDesc			Redrawing of child windows with transparency.
sl@0
   893
  	
sl@0
   894
  	@SYMTestPriority			High
sl@0
   895
  	
sl@0
   896
  	@SYMTestStatus      		Implemented
sl@0
   897
  	
sl@0
   898
  	@SYMTestActions		
sl@0
   899
		 	Creates a few child windows with various levels of transparency.
sl@0
   900
		Moves parent window over the screen.
sl@0
   901
  	@SYMTestExpectedResults
sl@0
   902
 				Child and parent windows must be redrawn properly 
sl@0
   903
 */
sl@0
   904
sl@0
   905
void CTAlphaChannel::TestChildWindowL()
sl@0
   906
	{
sl@0
   907
	SetPositionConfiguration(ETiled);
sl@0
   908
	SetColourConfiguration(EVaryingColour);
sl@0
   909
	DrawTestWindowsNow(ETrue);
sl@0
   910
	TDisplayMode mode = EColor64K;
sl@0
   911
	CTWinAlphaForeground* childWin[] = {NULL, NULL, NULL, NULL, NULL};
sl@0
   912
	if (iForegroundWindowBottom)
sl@0
   913
		{
sl@0
   914
		childWin[0] = CTWinAlphaForeground::NewL(*this, TPoint(0,0),TSize(50,50),iForegroundWindowBottom,*TheClient->iGc, &mode, TRgb(0, 255, 0,128), ENonTransparentAlpha);
sl@0
   915
		childWin[0]->DrawNow();
sl@0
   916
		}
sl@0
   917
	if (iForegroundWindowOpaque)
sl@0
   918
		{
sl@0
   919
		childWin[1] = CTWinAlphaForeground::NewL(*this, TPoint(0,0),TSize(50,50),iForegroundWindowOpaque,*TheClient->iGc, &mode, TRgb(0, 255, 0,128), ETransparencyFactor);
sl@0
   920
		childWin[1]->DrawNow();
sl@0
   921
		}
sl@0
   922
	if (iForegroundWindowSemiTrans)
sl@0
   923
		{
sl@0
   924
		childWin[2] = CTWinAlphaForeground::NewL(*this, TPoint(0,0),TSize(50,50),iForegroundWindowSemiTrans,*TheClient->iGc, &mode, TRgb(0, 255, 0,128), ETransparencyAlpha);
sl@0
   925
		childWin[2]->DrawNow();
sl@0
   926
		}
sl@0
   927
	if (iForegroundWindowTrans)
sl@0
   928
		{
sl@0
   929
		childWin[3] = CTWinAlphaForeground::NewL(*this, TPoint(0,0),TSize(50,50),iForegroundWindowTrans,*TheClient->iGc, &mode, TRgb(0, 255, 0,128), ENonTransparentAlpha);
sl@0
   930
		childWin[3]->DrawNow();
sl@0
   931
		}
sl@0
   932
	if (iForegroundWindowTop)
sl@0
   933
		{
sl@0
   934
		childWin[4] = CTWinAlphaForeground::NewL(*this, TPoint(0,0),TSize(50,50),iForegroundWindowTop,*TheClient->iGc, &mode, TRgb(0, 255, 0,128), ENonTransparentAlpha);
sl@0
   935
		childWin[4]->DrawNow();
sl@0
   936
		}
sl@0
   937
	TheClient->iWs.Flush();	
sl@0
   938
sl@0
   939
	User::After(TTimeIntervalMicroSeconds32(1000000));
sl@0
   940
	DoMoving();
sl@0
   941
sl@0
   942
	delete childWin[0];
sl@0
   943
	delete childWin[1];
sl@0
   944
	delete childWin[2];
sl@0
   945
	delete childWin[3];
sl@0
   946
	delete childWin[4];
sl@0
   947
	}
sl@0
   948
/** 
sl@0
   949
	@SYMTestCaseID	GRAPHICS-WSERV-0340
sl@0
   950
  	
sl@0
   951
  	@SYMTestCaseDesc			Redrawing of multiple child windows with transparency.
sl@0
   952
  	
sl@0
   953
  	@SYMTestPriority			High
sl@0
   954
  	
sl@0
   955
  	@SYMTestStatus      		Implemented
sl@0
   956
  	
sl@0
   957
  	@SYMTestActions		
sl@0
   958
		 	Creates multiple child windows with various levels of transparency.
sl@0
   959
		Moves parent windows over the screen.
sl@0
   960
  	@SYMTestExpectedResults
sl@0
   961
 				Child and parent windows must be redrawn properly 
sl@0
   962
 */
sl@0
   963
sl@0
   964
void CTAlphaChannel::TestMultipleChildrenL()
sl@0
   965
	{
sl@0
   966
	SetPositionConfiguration(ETiled);
sl@0
   967
	SetColourConfiguration(EVaryingColour);
sl@0
   968
	TDisplayMode mode = EColor64K;
sl@0
   969
	CTWinAlphaForeground* childWin[] = {NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL};
sl@0
   970
	if (iForegroundWindowBottom)
sl@0
   971
		{
sl@0
   972
		childWin[0] = CTWinAlphaForeground::NewL(*this, TPoint(0,0),TSize(50,50),iForegroundWindowBottom,*TheClient->iGc, &mode, TRgb(255, 255, 255,128), ETransparencyFactor);
sl@0
   973
		childWin[1] = CTWinAlphaForeground::NewL(*this, TPoint(20,20),TSize(50,50),childWin[0],*TheClient->iGc, &mode, TRgb(255, 255, 255,128), ENonTransparentAlpha);
sl@0
   974
		childWin[0]->DrawNow();
sl@0
   975
		childWin[1]->DrawNow();
sl@0
   976
		}
sl@0
   977
	if (iForegroundWindowOpaque)
sl@0
   978
		{
sl@0
   979
		childWin[4] = CTWinAlphaForeground::NewL(*this, TPoint(0,0),TSize(100,100),iForegroundWindowOpaque,*TheClient->iGc, &mode, TRgb(255, 255, 255,128), ETransparencyAlpha);
sl@0
   980
		childWin[5] = CTWinAlphaForeground::NewL(*this, TPoint(20,80),TSize(50,50),iForegroundWindowOpaque,*TheClient->iGc, &mode, TRgb(255, 255, 255,128), ENonTransparentAlpha);
sl@0
   981
		childWin[6] = CTWinAlphaForeground::NewL(*this, TPoint(20,20),TSize(60,60),childWin[4],*TheClient->iGc, &mode, TRgb(0, 255, 0,128), ENonTransparentAlpha);
sl@0
   982
		childWin[7] = CTWinAlphaForeground::NewL(*this, TPoint(20,20),TSize(50,50),childWin[6],*TheClient->iGc, &mode, TRgb(0, 255, 0,128), ENonTransparentAlpha);
sl@0
   983
		childWin[4]->DrawNow();
sl@0
   984
		childWin[5]->DrawNow();
sl@0
   985
		childWin[6]->DrawNow();
sl@0
   986
		childWin[7]->DrawNow();
sl@0
   987
		}
sl@0
   988
	DrawTestWindowsNow(ETrue);
sl@0
   989
sl@0
   990
	TestMoving();
sl@0
   991
sl@0
   992
	delete childWin[0];
sl@0
   993
	delete childWin[1];
sl@0
   994
	delete childWin[2];
sl@0
   995
	delete childWin[3];
sl@0
   996
	delete childWin[4];
sl@0
   997
	delete childWin[5];
sl@0
   998
	delete childWin[6];
sl@0
   999
	delete childWin[7];
sl@0
  1000
	}
sl@0
  1001
sl@0
  1002
/** 
sl@0
  1003
	@SYMTestCaseID	GRAPHICS-WSERV-0341
sl@0
  1004
  	
sl@0
  1005
  	@SYMTestCaseDesc			Test transparent window which positioned under opaque.
sl@0
  1006
  	
sl@0
  1007
  	@SYMTestPriority			High
sl@0
  1008
  	
sl@0
  1009
  	@SYMTestStatus      		Implemented
sl@0
  1010
  	
sl@0
  1011
  	@SYMTestActions		
sl@0
  1012
		 	Creates an opaque window on the topt of transparent windows.
sl@0
  1013
		Moves transparent windows over the screen.
sl@0
  1014
  	@SYMTestExpectedResults
sl@0
  1015
 				Transparent windows must be redrawn properly 
sl@0
  1016
 */
sl@0
  1017
sl@0
  1018
void CTAlphaChannel::TestTransparentMovingUnderOpaqueL()
sl@0
  1019
	{
sl@0
  1020
	SetColourConfiguration(EVaryingColour);
sl@0
  1021
	TDisplayMode mode = EColor64K;
sl@0
  1022
	CTWinAlphaForeground* win = CTWinAlphaForeground::NewL(*this, TPoint(0,100),TSize(600,40),TheClient->iGroup,*TheClient->iGc, &mode, TRgb(0, 255, 0,128), ENonTransparentAlpha);
sl@0
  1023
	win->DrawNow();
sl@0
  1024
sl@0
  1025
	TestMoving();
sl@0
  1026
sl@0
  1027
	delete win;
sl@0
  1028
	}
sl@0
  1029
/** 
sl@0
  1030
	@SYMTestCaseID	GRAPHICS-WSERV-0342
sl@0
  1031
  	
sl@0
  1032
  	@SYMTestCaseDesc			Changing orinary position of the foreground windows.
sl@0
  1033
  	
sl@0
  1034
  	@SYMTestPriority			High
sl@0
  1035
  	
sl@0
  1036
  	@SYMTestStatus      		Implemented
sl@0
  1037
  	
sl@0
  1038
  	@SYMTestActions		
sl@0
  1039
		 	Set ordinal position of foreground windows.
sl@0
  1040
  	@SYMTestExpectedResults
sl@0
  1041
 				Foreground windows must be redrawn properly 
sl@0
  1042
 */
sl@0
  1043
sl@0
  1044
void CTAlphaChannel::TestSetOrdinalPosition()
sl@0
  1045
	{
sl@0
  1046
	SetColourConfiguration(EVaryingColour);
sl@0
  1047
	SetPositionConfiguration(EOverlapping);
sl@0
  1048
	DrawTestWindowsNow(ETrue);
sl@0
  1049
	TheClient->iWs.Flush();	
sl@0
  1050
	User::After(TTimeIntervalMicroSeconds32(1000000));
sl@0
  1051
	RWindow* win;
sl@0
  1052
	for (TInt i=0; i<3; i++)
sl@0
  1053
		{
sl@0
  1054
		if (iForegroundWindowOpaque)
sl@0
  1055
			{
sl@0
  1056
			win = (RWindow*)(iForegroundWindowOpaque->DrawableWin());
sl@0
  1057
			win->SetOrdinalPosition(0);
sl@0
  1058
			TheClient->iWs.Flush();	
sl@0
  1059
			User::After(TTimeIntervalMicroSeconds32(1000000));
sl@0
  1060
			}
sl@0
  1061
		if (iForegroundWindowSemiTrans)
sl@0
  1062
			{
sl@0
  1063
			win = (RWindow*)(iForegroundWindowSemiTrans->DrawableWin());
sl@0
  1064
			win->SetOrdinalPosition(0);
sl@0
  1065
			TheClient->iWs.Flush();	
sl@0
  1066
			User::After(TTimeIntervalMicroSeconds32(1000000));
sl@0
  1067
			}
sl@0
  1068
		if (iForegroundWindowTrans)
sl@0
  1069
			{
sl@0
  1070
			win = (RWindow*)(iForegroundWindowTrans->DrawableWin());
sl@0
  1071
			win->SetOrdinalPosition(0);
sl@0
  1072
			TheClient->iWs.Flush();	
sl@0
  1073
			User::After(TTimeIntervalMicroSeconds32(1000000));
sl@0
  1074
			}
sl@0
  1075
		}
sl@0
  1076
	}
sl@0
  1077
sl@0
  1078
void CTAlphaChannel::RunTestCaseL(TInt aCurTestCase)
sl@0
  1079
	{
sl@0
  1080
	User::After(TTimeIntervalMicroSeconds32(1000000 * 2));
sl@0
  1081
	
sl@0
  1082
	((CTAlphaChannelStep*)iStep)->SetTestStepID(KUnknownSYMTestCaseIDName);
sl@0
  1083
	switch (aCurTestCase)
sl@0
  1084
		{
sl@0
  1085
		case 1:
sl@0
  1086
			((CTAlphaChannelStep*)iStep)->SetTestStepID(KNotATestSYMTestCaseIDName);
sl@0
  1087
			CreateForegroundWindowsL(iSizeForegroundWindow, EColor16MU);
sl@0
  1088
			break;
sl@0
  1089
		case 2:
sl@0
  1090
			{
sl@0
  1091
			CreateForegroundWindowsL(iSizeForegroundWindow, EColor64K);
sl@0
  1092
			((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0339"));
sl@0
  1093
			TestChildWindowL();
sl@0
  1094
			((CTAlphaChannelStep*)iStep)->RecordTestResultL();
sl@0
  1095
			((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0340"));
sl@0
  1096
			TestMultipleChildrenL();
sl@0
  1097
			((CTAlphaChannelStep*)iStep)->RecordTestResultL();
sl@0
  1098
			((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0342"));
sl@0
  1099
			TestSetOrdinalPosition();
sl@0
  1100
			}
sl@0
  1101
			break;
sl@0
  1102
		case 3: 
sl@0
  1103
			((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0336"));
sl@0
  1104
			TestAnimationL();
sl@0
  1105
		case 4: 
sl@0
  1106
			((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0337"));
sl@0
  1107
			TestBackedWindowL();
sl@0
  1108
			break;
sl@0
  1109
		case 5: 
sl@0
  1110
			((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0338"));
sl@0
  1111
			TestEffectSetOpaque();
sl@0
  1112
			break;
sl@0
  1113
		case 6:
sl@0
  1114
			((CTAlphaChannelStep*)iStep)->SetTestStepID(KNotATestSYMTestCaseIDName);
sl@0
  1115
			iIsFading = EFalse;
sl@0
  1116
			DrawTestWindowsNow();
sl@0
  1117
			INFO_PRINTF1(_L("Anti-aliasing"));
sl@0
  1118
			iIsFading = EFalse;
sl@0
  1119
			iDrawText = ETrue;
sl@0
  1120
			DrawTestWindowsNow();
sl@0
  1121
			break;
sl@0
  1122
		case 7:	
sl@0
  1123
			SetColourConfiguration(EVaryingColour);
sl@0
  1124
			SetPositionConfiguration(EOverlapping);
sl@0
  1125
			((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0335"));
sl@0
  1126
			TestRedrawBehind();		
sl@0
  1127
			((CTAlphaChannelStep*)iStep)->RecordTestResultL();
sl@0
  1128
			((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0329"));
sl@0
  1129
			TestMoving();
sl@0
  1130
			((CTAlphaChannelStep*)iStep)->RecordTestResultL();
sl@0
  1131
			((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0330"));
sl@0
  1132
			TestMovingOverlapping();		
sl@0
  1133
			((CTAlphaChannelStep*)iStep)->RecordTestResultL();
sl@0
  1134
			((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0341"));
sl@0
  1135
			TestMoveBehindInvisible();
sl@0
  1136
			((CTAlphaChannelStep*)iStep)->RecordTestResultL();
sl@0
  1137
			((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0334"));
sl@0
  1138
			TestTransparentMovingUnderOpaqueL();
sl@0
  1139
			((CTAlphaChannelStep*)iStep)->RecordTestResultL();
sl@0
  1140
			((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0331"));
sl@0
  1141
			TestInvisibility();
sl@0
  1142
			((CTAlphaChannelStep*)iStep)->RecordTestResultL();
sl@0
  1143
			((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0332"));
sl@0
  1144
			TestChangingTransparencyFactor();
sl@0
  1145
			break;
sl@0
  1146
		case 8:
sl@0
  1147
			((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0328"));
sl@0
  1148
			TestFading();
sl@0
  1149
			break;
sl@0
  1150
		case 9:
sl@0
  1151
			{
sl@0
  1152
			((CTAlphaChannelStep*)iStep)->SetTestStepID(KNotATestSYMTestCaseIDName);
sl@0
  1153
			iDrawText = EFalse;
sl@0
  1154
			SetDisplayModeConfiguration(EAll16MA);
sl@0
  1155
			}
sl@0
  1156
			break;
sl@0
  1157
		case 10:
sl@0
  1158
			((CTAlphaChannelStep*)iStep)->SetTestStepID(KNotATestSYMTestCaseIDName);
sl@0
  1159
			iIsFading = EFalse;
sl@0
  1160
			DrawTestWindowsNow();
sl@0
  1161
			INFO_PRINTF1(_L("Anti-aliasing"));
sl@0
  1162
			iIsFading = EFalse;
sl@0
  1163
			iDrawText = ETrue;
sl@0
  1164
			DrawTestWindowsNow();
sl@0
  1165
			break;
sl@0
  1166
		case 11:
sl@0
  1167
			SetColourConfiguration(EVaryingColour);
sl@0
  1168
			SetPositionConfiguration(EOverlapping);
sl@0
  1169
			((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0333"));
sl@0
  1170
			TestMoveUnderneath();
sl@0
  1171
			((CTAlphaChannelStep*)iStep)->RecordTestResultL();
sl@0
  1172
			((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0335"));
sl@0
  1173
			TestRedrawBehind();
sl@0
  1174
			((CTAlphaChannelStep*)iStep)->RecordTestResultL();
sl@0
  1175
			((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0329"));
sl@0
  1176
			TestMoving();
sl@0
  1177
			((CTAlphaChannelStep*)iStep)->RecordTestResultL();
sl@0
  1178
			((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0332"));
sl@0
  1179
			TestInvisibility();
sl@0
  1180
			((CTAlphaChannelStep*)iStep)->RecordTestResultL();
sl@0
  1181
			((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0331"));
sl@0
  1182
			TestChangingTransparencyFactor();
sl@0
  1183
			break;
sl@0
  1184
		case 12:
sl@0
  1185
			((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0328"));
sl@0
  1186
			TestFading();
sl@0
  1187
			break;
sl@0
  1188
		case 13:
sl@0
  1189
			SetDisplayModeConfiguration(EAllDifferent);
sl@0
  1190
			SetColourConfiguration(EVaryingColour);
sl@0
  1191
			((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0333"));
sl@0
  1192
			TestMoveUnderneath();
sl@0
  1193
			((CTAlphaChannelStep*)iStep)->RecordTestResultL();
sl@0
  1194
			((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0335"));
sl@0
  1195
			TestRedrawBehind();
sl@0
  1196
			((CTAlphaChannelStep*)iStep)->RecordTestResultL();
sl@0
  1197
			((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0332"));
sl@0
  1198
			TestInvisibility();
sl@0
  1199
			((CTAlphaChannelStep*)iStep)->RecordTestResultL();
sl@0
  1200
			((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0329"));
sl@0
  1201
			TestMoving();
sl@0
  1202
			break;
sl@0
  1203
		case 14:
sl@0
  1204
			((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0336"));
sl@0
  1205
			TestAnimationL();
sl@0
  1206
			break;
sl@0
  1207
		case 15:
sl@0
  1208
			((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0337"));
sl@0
  1209
			TestBackedWindowL();
sl@0
  1210
			break;
sl@0
  1211
		case 16:
sl@0
  1212
			((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0338"));
sl@0
  1213
			TestEffectSetOpaque();
sl@0
  1214
			break;
sl@0
  1215
		case 17:
sl@0
  1216
			((CTAlphaChannelStep*)iStep)->SetTestStepID(KNotATestSYMTestCaseIDName);
sl@0
  1217
			((CTAlphaChannelStep*)iStep)->CloseTMSGraphicsStep();
sl@0
  1218
			TestComplete();
sl@0
  1219
			break;
sl@0
  1220
		}
sl@0
  1221
	((CTAlphaChannelStep*)iStep)->RecordTestResultL();
sl@0
  1222
	}
sl@0
  1223
	
sl@0
  1224
/** Calculate foreground windows margin and create them*/
sl@0
  1225
void CTAlphaChannel::CreateForegroundWindowsL(const TSize& aSize, TDisplayMode aMode)
sl@0
  1226
	{
sl@0
  1227
	TPoint pt = TPoint(5, 5);
sl@0
  1228
	
sl@0
  1229
	//creating foreground windows
sl@0
  1230
	//bottom window
sl@0
  1231
	TDisplayMode dispMode = aMode;
sl@0
  1232
	iForegroundWindowBottom = CTWinAlphaForeground::NewL(*this, pt,aSize,TheClient->iGroup,*TheClient->iGc, &dispMode, TRgb(0, 255, 0,128), ETransparencyFactor);
sl@0
  1233
	iArrWindow.AppendL( iForegroundWindowBottom);
sl@0
  1234
sl@0
  1235
	//dispMode = EColor16MA;
sl@0
  1236
	pt.iX += aSize.iWidth + KWindowIndention;
sl@0
  1237
	//opaque window
sl@0
  1238
	iForegroundWindowOpaque = CTWinAlphaForeground::NewL(*this, pt,aSize,TheClient->iGroup,*TheClient->iGc, &dispMode, TRgb(0, 255, 0, 255), ETransparencyAlpha);
sl@0
  1239
	iArrWindow.AppendL( iForegroundWindowOpaque);
sl@0
  1240
sl@0
  1241
	pt.iX += aSize.iWidth + KWindowIndention;
sl@0
  1242
	//semi-transparent window
sl@0
  1243
	iForegroundWindowSemiTrans = CTWinAlphaForeground::NewL(*this, pt,aSize,TheClient->iGroup,*TheClient->iGc, &dispMode, TRgb(0, 255, 0, 128), ETransparencyAlpha);
sl@0
  1244
	iArrWindow.AppendL( iForegroundWindowSemiTrans);
sl@0
  1245
sl@0
  1246
	//transparent window
sl@0
  1247
	pt.iX += aSize.iWidth + KWindowIndention;
sl@0
  1248
	iForegroundWindowTrans = CTWinAlphaForeground::NewL(*this, pt,aSize,TheClient->iGroup,*TheClient->iGc, &dispMode, TRgb(0, 255, 0, 0), ETransparencyAlpha);
sl@0
  1249
	iArrWindow.AppendL( iForegroundWindowTrans);
sl@0
  1250
sl@0
  1251
	// top window
sl@0
  1252
	pt.iX += aSize.iWidth + KWindowIndention;
sl@0
  1253
	iForegroundWindowTop = CTWinAlphaForeground::NewL(*this, pt,aSize,TheClient->iGroup,*TheClient->iGc, &dispMode, TRgb(0, 255, 0,128), ENonTransparentAlpha);
sl@0
  1254
	iArrWindow.AppendL( iForegroundWindowTop);
sl@0
  1255
	}
sl@0
  1256
sl@0
  1257
void CTAlphaChannel::DestroyForegroundWindows()
sl@0
  1258
	{
sl@0
  1259
	iArrWindow.ResetAndDestroy();
sl@0
  1260
	iForegroundWindowBottom = NULL;
sl@0
  1261
	iForegroundWindowOpaque = NULL;
sl@0
  1262
	iForegroundWindowSemiTrans = NULL;
sl@0
  1263
	iForegroundWindowTrans = NULL;
sl@0
  1264
	iForegroundWindowTop = NULL;
sl@0
  1265
	}
sl@0
  1266
sl@0
  1267
/** Draw all foreground windows */
sl@0
  1268
void CTAlphaChannel::DrawTestWindowsNow(TBool aDrawBackgroundWin)
sl@0
  1269
	{
sl@0
  1270
	if(iBackgroundWindow && aDrawBackgroundWin)
sl@0
  1271
		{
sl@0
  1272
		iBackgroundWindow->DrawNow();
sl@0
  1273
		}
sl@0
  1274
sl@0
  1275
	for(TInt ii = 0; ii < iArrWindow.Count(); ii++)
sl@0
  1276
		{
sl@0
  1277
		iArrWindow[ii]->DrawNow();
sl@0
  1278
		}
sl@0
  1279
	}
sl@0
  1280
	
sl@0
  1281
//-------------
sl@0
  1282
sl@0
  1283
CTWinAlphaForeground* CTWinAlphaForeground::NewL(CTAlphaChannel& aTest, TPoint aPos, TSize aSize, CTWinBase *aParent, CWindowGc &aGc, TDisplayMode *aMode, TRgb aCol, TInt aTransparencyType)
sl@0
  1284
	{
sl@0
  1285
	CTWinAlphaForeground* theWin = new(ELeave) CTWinAlphaForeground(aTest);
sl@0
  1286
	
sl@0
  1287
	theWin->ConstructL(*aParent);
sl@0
  1288
	if (aMode)
sl@0
  1289
		theWin->SetDisplayMode(*aMode);
sl@0
  1290
	theWin->SetExtL(aPos, aSize);
sl@0
  1291
	theWin->AssignGC(aGc);
sl@0
  1292
	theWin->PrepareForDrawingL();	
sl@0
  1293
sl@0
  1294
	// for hardware testing	only we create an additional bitmap
sl@0
  1295
#ifndef __WINS__
sl@0
  1296
	theWin->CreateBackgroundBitmapL(*aMode);
sl@0
  1297
#endif
sl@0
  1298
		
sl@0
  1299
	RWindow* win = (RWindow*) (theWin->DrawableWin());
sl@0
  1300
	win->SetShadowHeight(0);
sl@0
  1301
	win->SetShadowDisabled(ETrue);
sl@0
  1302
	switch (aTransparencyType)
sl@0
  1303
		{
sl@0
  1304
	case ETransparencyFactor:
sl@0
  1305
		{
sl@0
  1306
		win->SetTransparencyFactor(aCol);
sl@0
  1307
		theWin->SetBackgroundColor(aCol);
sl@0
  1308
		}
sl@0
  1309
		break;
sl@0
  1310
	case ETransparencyAlpha:
sl@0
  1311
		win->SetTransparencyAlphaChannel();
sl@0
  1312
		// fall through into next case
sl@0
  1313
	case ENonTransparentAlpha:
sl@0
  1314
	default:
sl@0
  1315
		theWin->SetBackgroundColor(aCol);
sl@0
  1316
		break;
sl@0
  1317
		}
sl@0
  1318
	
sl@0
  1319
	theWin->Activate();
sl@0
  1320
sl@0
  1321
	return theWin;
sl@0
  1322
	}
sl@0
  1323
sl@0
  1324
CTWinAlphaForeground::~CTWinAlphaForeground()
sl@0
  1325
	{
sl@0
  1326
	if(iPolygon)
sl@0
  1327
		{
sl@0
  1328
		iPolygon->Reset();
sl@0
  1329
		delete iPolygon;
sl@0
  1330
		}
sl@0
  1331
	delete iBitmapBackground;
sl@0
  1332
	delete iBitmapDeviceBackground;
sl@0
  1333
	delete iBitmapContextBackground;
sl@0
  1334
	}
sl@0
  1335
	
sl@0
  1336
CTWinAlphaForeground::CTWinAlphaForeground(CTAlphaChannel& aTest)
sl@0
  1337
	: iTest(aTest)
sl@0
  1338
	{	
sl@0
  1339
	}
sl@0
  1340
sl@0
  1341
sl@0
  1342
void CTWinAlphaForeground::SetDisplayMode(TDisplayMode aDisplayMode)
sl@0
  1343
	{
sl@0
  1344
	BaseWin()->SetRequiredDisplayMode(aDisplayMode);
sl@0
  1345
	switch (aDisplayMode)
sl@0
  1346
		{
sl@0
  1347
	case EColor256:
sl@0
  1348
		iTitle1 = _L("256");
sl@0
  1349
		break;
sl@0
  1350
	case EColor64K:
sl@0
  1351
		iTitle1 = _L("64K");
sl@0
  1352
		break;
sl@0
  1353
	case EColor16MU:
sl@0
  1354
		iTitle1 = _L("16MU");
sl@0
  1355
		break;
sl@0
  1356
	case EColor16MA:
sl@0
  1357
		iTitle1 = _L("16MA");
sl@0
  1358
		break;
sl@0
  1359
	case EColor16MAP:
sl@0
  1360
		iTitle1 = _L("16MAP");
sl@0
  1361
		break;
sl@0
  1362
	default:
sl@0
  1363
		iTitle1 = _L("");
sl@0
  1364
		break;
sl@0
  1365
		}
sl@0
  1366
	}
sl@0
  1367
sl@0
  1368
void CTWinAlphaForeground::SetBackgroundColor(TRgb aRgb)
sl@0
  1369
	{
sl@0
  1370
	switch (aRgb.Alpha())
sl@0
  1371
		{
sl@0
  1372
		case 0:
sl@0
  1373
		iTitle2 = _L(" trans ");		
sl@0
  1374
		break;
sl@0
  1375
		case 255:
sl@0
  1376
		iTitle2 = _L(" opaque ");		
sl@0
  1377
		break;
sl@0
  1378
		case 128:
sl@0
  1379
		default:
sl@0
  1380
		iTitle2 = _L(" s-trans ");		
sl@0
  1381
		break;
sl@0
  1382
		}
sl@0
  1383
	if (aRgb.Red())
sl@0
  1384
		iTitle2 += _L("R");
sl@0
  1385
	if (aRgb.Green())
sl@0
  1386
		iTitle2 += _L("G");
sl@0
  1387
	if (aRgb.Blue())
sl@0
  1388
		iTitle2 += _L("B");
sl@0
  1389
sl@0
  1390
	iBackgroundColor = aRgb;
sl@0
  1391
	((RWindow*) DrawableWin())->SetBackgroundColor(aRgb);
sl@0
  1392
	}
sl@0
  1393
sl@0
  1394
void CTWinAlphaForeground::Draw()
sl@0
  1395
	{
sl@0
  1396
	CBitmapContext* theGc = TheClient->iGc;
sl@0
  1397
	((CWindowGc*)theGc)->SetOpaque(iDrawOpaque);
sl@0
  1398
	
sl@0
  1399
	if(iBitmapContextBackground)
sl@0
  1400
		{
sl@0
  1401
		//CGraphicsContext
sl@0
  1402
		theGc = iBitmapContextBackground;
sl@0
  1403
		CleanBackgroundBitmap();
sl@0
  1404
		}
sl@0
  1405
	if(iTest.iFont1)
sl@0
  1406
		theGc->UseFont(iTest.iFont1);
sl@0
  1407
	
sl@0
  1408
	
sl@0
  1409
	theGc->SetFaded(EFalse);
sl@0
  1410
	DrawTable(*theGc);
sl@0
  1411
sl@0
  1412
	TInt numRows = sizeof(iRows) / sizeof(iRows[0]) ;
sl@0
  1413
sl@0
  1414
	theGc->SetBrushStyle(iTest.iBrushStyle);
sl@0
  1415
	if(iTest.iFont && iTest.iDrawText)
sl@0
  1416
		{
sl@0
  1417
		theGc->DiscardFont();
sl@0
  1418
		theGc->UseFont(iTest.iFont);
sl@0
  1419
		}
sl@0
  1420
	
sl@0
  1421
	theGc->SetFaded(iTest.iIsFading);
sl@0
  1422
	
sl@0
  1423
	// the factor and offset are calculated as follows: 
sl@0
  1424
	// iFadeMapFactor = iWhiteFading - iBlackFading;
sl@0
  1425
	// iFadeMapOffset = iBlackFading;
sl@0
  1426
sl@0
  1427
	theGc->SetFadingParameters(iTest.iBlackFading, iTest.iWhiteFading); //black and white
sl@0
  1428
		
sl@0
  1429
	for(TInt ii = 0; ii < numRows - 1; ii++)
sl@0
  1430
		{
sl@0
  1431
		theGc -> SetBrushStyle(iTest.iBrushStyle);
sl@0
  1432
sl@0
  1433
		TRect theRect = TRect(iCol, iRows[ii], Size().iWidth, iRows[ii + 1]);
sl@0
  1434
				
sl@0
  1435
   		TRgb theBrush = iTest.GetBrush(ii);
sl@0
  1436
   		TRgb thePen = iTest.GetPen(ii);
sl@0
  1437
sl@0
  1438
   		CGraphicsContext::TDrawMode theDrawMode = iTest.GetDrawMode(ii);
sl@0
  1439
    		
sl@0
  1440
   		theGc->SetBrushColor(theBrush);
sl@0
  1441
		theGc->SetPenColor(thePen);
sl@0
  1442
   		theGc->SetDrawMode(theDrawMode);
sl@0
  1443
		
sl@0
  1444
		CGraphicsContext* theBitmapContext64K;
sl@0
  1445
		CGraphicsContext* theBitmapContext16MA;
sl@0
  1446
		CFbsBitmap* theBitmap64K;
sl@0
  1447
		CFbsBitmap* theBitmap16MA;
sl@0
  1448
sl@0
  1449
		switch(ii)
sl@0
  1450
			{
sl@0
  1451
			case 0:
sl@0
  1452
				{
sl@0
  1453
				theBitmapContext64K = iTest.iBitmapContext64K_1;
sl@0
  1454
				theBitmapContext16MA = iTest.iBitmapContext16MA_1;
sl@0
  1455
				theBitmap64K = iTest.iBitmap64K_1;
sl@0
  1456
				theBitmap16MA = iTest.iBitmap16MA_1;
sl@0
  1457
				break;
sl@0
  1458
				}
sl@0
  1459
			case 1:
sl@0
  1460
				{
sl@0
  1461
				theBitmapContext64K = iTest.iBitmapContext64K_2;
sl@0
  1462
				theBitmapContext16MA = iTest.iBitmapContext16MA_2;
sl@0
  1463
				theBitmap64K = iTest.iBitmap64K_2;
sl@0
  1464
				theBitmap16MA = iTest.iBitmap16MA_2;
sl@0
  1465
				break;
sl@0
  1466
				}
sl@0
  1467
			default:
sl@0
  1468
				{
sl@0
  1469
				theBitmapContext64K = iTest.iBitmapContext64K_3;
sl@0
  1470
				theBitmapContext16MA = iTest.iBitmapContext16MA_3;
sl@0
  1471
				theBitmap64K = iTest.iBitmap64K_3;
sl@0
  1472
				theBitmap16MA = iTest.iBitmap16MA_3;
sl@0
  1473
				break;
sl@0
  1474
				}
sl@0
  1475
			}
sl@0
  1476
			if(iTest.iDrawText)
sl@0
  1477
				{
sl@0
  1478
				DrawTextInCell(*theGc, theRect);
sl@0
  1479
				}
sl@0
  1480
			else
sl@0
  1481
				{
sl@0
  1482
				TRAP_IGNORE(iTest.DrawOffscreenBitmapsL(thePen, theBrush, theBitmapContext64K, 
sl@0
  1483
					theBitmapContext16MA, theBitmap64K, theBitmap16MA));
sl@0
  1484
				DrawPrimitivesInCell(*theGc, theRect, theBitmap64K, theBitmap16MA);
sl@0
  1485
				}
sl@0
  1486
		TheClient->iWs.Flush();	
sl@0
  1487
		}
sl@0
  1488
sl@0
  1489
	theGc->DiscardFont();
sl@0
  1490
sl@0
  1491
	if(iBitmapContextBackground)
sl@0
  1492
		{
sl@0
  1493
		theGc = TheClient->iGc;
sl@0
  1494
		theGc->BitBlt(TPoint(0, 0), iBitmapBackground);
sl@0
  1495
		}
sl@0
  1496
	}
sl@0
  1497
sl@0
  1498
void CTWinAlphaForeground::SetPoligonLocation(const TPoint &ptOffset)
sl@0
  1499
	{
sl@0
  1500
	TRect rect = TRect(iTest.iTriangleSize);
sl@0
  1501
	(*iPolygon)[0] = rect.iTl + ptOffset;
sl@0
  1502
	(*iPolygon)[1] = TPoint(rect.iTl.iX, rect.iBr.iY) + ptOffset;
sl@0
  1503
	(*iPolygon)[2] = rect.iBr + ptOffset;
sl@0
  1504
	}
sl@0
  1505
	
sl@0
  1506
/** Define boundary of the table*/
sl@0
  1507
void CTWinAlphaForeground::CalculateTableMargin()
sl@0
  1508
	{
sl@0
  1509
	TInt numRows = sizeof(iRows) / sizeof(iRows[0]) ;
sl@0
  1510
	iRows[0] = iTest.iFirstCellHeight;
sl@0
  1511
	TInt theRowHeight = (Size().iHeight - iTest.iFirstCellHeight) / 3;
sl@0
  1512
	for(TInt ii = 1; ii < numRows; ii++)
sl@0
  1513
		{
sl@0
  1514
		iRows[ii] = iRows[ii-1] + theRowHeight;
sl@0
  1515
		}
sl@0
  1516
	}
sl@0
  1517
	
sl@0
  1518
/** Draw a table which comprises 3 rows: for transparent, semi-transparent 
sl@0
  1519
	and opaque output
sl@0
  1520
sl@0
  1521
*/	
sl@0
  1522
void CTWinAlphaForeground::DrawTable(CBitmapContext& aGc) const
sl@0
  1523
	{
sl@0
  1524
	TInt numRows = sizeof(iRows) / sizeof(iRows[0]) ;
sl@0
  1525
	
sl@0
  1526
	aGc.SetPenColor(iTest.iPenTable);
sl@0
  1527
	
sl@0
  1528
	for (TInt ii = 0; ii < numRows - 1; ii++)
sl@0
  1529
		{
sl@0
  1530
		TBuf<4> iBuf;
sl@0
  1531
		TPoint pt1 = TPoint(0, iRows[ii]);
sl@0
  1532
		TPoint pt2 = TPoint(Size().iWidth, iRows[ii]);
sl@0
  1533
sl@0
  1534
		aGc.DrawLine(pt1, pt2);
sl@0
  1535
		
sl@0
  1536
		if(iCol)
sl@0
  1537
			{
sl@0
  1538
			TPoint pt3 = TPoint(0, iRows[ii]) + TPoint(2,(iRows[1] - iRows[0]) / 2); 
sl@0
  1539
			switch(ii)
sl@0
  1540
				{
sl@0
  1541
					case 0: iBuf = _L("o"); break;
sl@0
  1542
					case 1: iBuf = _L("s"); break;
sl@0
  1543
					case 2: iBuf = _L("t"); break;
sl@0
  1544
					default : iBuf = _L(""); break;
sl@0
  1545
				}
sl@0
  1546
			aGc.DrawText(iBuf, pt3); 
sl@0
  1547
			}
sl@0
  1548
		}
sl@0
  1549
	if(iCol)
sl@0
  1550
		{
sl@0
  1551
		TPoint pt3 = TPoint(iCol, iRows[0]) + TPoint(1,-2); 
sl@0
  1552
		TBuf<32> text = iTitle1;
sl@0
  1553
		text += iTitle2;
sl@0
  1554
		aGc.DrawText(text, pt3); 
sl@0
  1555
	
sl@0
  1556
		TPoint pt1 = TPoint(iCol, 0);
sl@0
  1557
		TPoint pt2 = TPoint(iCol, Size().iHeight);
sl@0
  1558
		aGc.DrawLine(pt1, pt2);
sl@0
  1559
		}
sl@0
  1560
		
sl@0
  1561
	}
sl@0
  1562
sl@0
  1563
/** Draw truetype font to check anti-aliasing*/
sl@0
  1564
void CTWinAlphaForeground::DrawTextInCell(CBitmapContext& aGc, const TRect& aRect)
sl@0
  1565
	{
sl@0
  1566
    TPoint pt(aRect.iTl.iX, aRect.iBr.iY);
sl@0
  1567
    pt += TPoint(2, -10);
sl@0
  1568
    
sl@0
  1569
    aGc.DrawText(_L("ABCD"), pt);
sl@0
  1570
	}
sl@0
  1571
sl@0
  1572
/** Draw graphics primitive in a cell:
sl@0
  1573
	rectangle, ellipse, triangle, a few lines, bitmaps
sl@0
  1574
sl@0
  1575
 */	
sl@0
  1576
void CTWinAlphaForeground::DrawPrimitivesInCell(CBitmapContext& aGc, const TRect& aRect, 
sl@0
  1577
								CFbsBitmap* aBitmap64K, CFbsBitmap* aBitmap16MA)
sl@0
  1578
	{
sl@0
  1579
	TRect theCellRect = aRect;
sl@0
  1580
	theCellRect.Shrink(1, 1);
sl@0
  1581
	
sl@0
  1582
	//rectangle
sl@0
  1583
	TRect rect = TRect(iTest.iRectangleSize);
sl@0
  1584
	rect.Move(theCellRect.iTl);
sl@0
  1585
    aGc.DrawRect(rect);
sl@0
  1586
    
sl@0
  1587
    //ellipse
sl@0
  1588
    rect = TRect(iTest.iEllipseSize);
sl@0
  1589
	rect.Move(theCellRect.iTl + TPoint(iTest.iRectangleSize.iWidth + 5, 0));
sl@0
  1590
    aGc.DrawEllipse(rect);
sl@0
  1591
sl@0
  1592
	//triangle
sl@0
  1593
	TPoint pt = TPoint(rect.iBr.iX, rect.iTl.iY) + TPoint(5, 0);
sl@0
  1594
	SetPoligonLocation(pt);
sl@0
  1595
   	aGc.DrawPolygon(iPolygon);
sl@0
  1596
    
sl@0
  1597
    //DrawLine
sl@0
  1598
    pt = pt + TPoint (((*iPolygon)[2]).iX - ((*iPolygon)[0]).iX, 0) + TPoint(5, 2);
sl@0
  1599
    rect = TRect(iTest.iTriangleSize);
sl@0
  1600
    rect.Move(pt);
sl@0
  1601
    aGc.DrawLine(rect.iTl, TPoint(rect.iTl.iX, rect.iBr.iY));
sl@0
  1602
    aGc.DrawLine(TPoint(rect.iTl.iX, rect.iBr.iY), rect.iBr);
sl@0
  1603
    aGc.DrawLine(rect.iBr, TPoint(rect.iBr.iX, rect.iTl.iY));
sl@0
  1604
    aGc.DrawLine(TPoint(rect.iBr.iX, rect.iTl.iY), rect.iTl);
sl@0
  1605
    aGc.DrawLine(rect.iTl, rect.iBr);
sl@0
  1606
    aGc.DrawLine(TPoint(rect.iBr.iX, rect.iTl.iY), TPoint(rect.iTl.iX, rect.iBr.iY));
sl@0
  1607
sl@0
  1608
    //64K bitmap
sl@0
  1609
    aGc.SetBrushStyle(CGraphicsContext::ENullBrush);
sl@0
  1610
    pt = TPoint(theCellRect.iTl.iX, rect.iBr.iY) + TPoint(0, 5);
sl@0
  1611
    if(aBitmap64K)
sl@0
  1612
    	{
sl@0
  1613
    	aGc.BitBlt(pt, aBitmap64K);
sl@0
  1614
    	pt = pt + TPoint( aBitmap64K->SizeInPixels().iWidth, 0) + TPoint(2, 0);
sl@0
  1615
sl@0
  1616
    	aGc.BitBltMasked(pt, 
sl@0
  1617
    		aBitmap64K, TRect(aBitmap64K->SizeInPixels()),
sl@0
  1618
	    	iTest.iBitmapGray256Mask, EFalse);
sl@0
  1619
    	pt = pt + TPoint( aBitmap64K->SizeInPixels().iWidth, 0) + TPoint(2, 0);
sl@0
  1620
sl@0
  1621
    	aGc.BitBltMasked(pt, 
sl@0
  1622
	    	aBitmap64K, TRect(aBitmap64K->SizeInPixels()),
sl@0
  1623
    		iTest.iBitmapMask, EFalse);
sl@0
  1624
sl@0
  1625
    	pt = pt + TPoint( aBitmap64K->SizeInPixels().iWidth, 0) + TPoint(2, 0);
sl@0
  1626
	   	}
sl@0
  1627
    
sl@0
  1628
    if(aBitmap16MA)
sl@0
  1629
    	{
sl@0
  1630
    	aGc.BitBlt(pt, aBitmap16MA);
sl@0
  1631
sl@0
  1632
    	pt = pt + TPoint( aBitmap16MA->SizeInPixels().iWidth, 0) + TPoint(2, 0);
sl@0
  1633
sl@0
  1634
    	aGc.BitBltMasked(pt, 
sl@0
  1635
	    	aBitmap16MA, TRect(aBitmap16MA->SizeInPixels()),
sl@0
  1636
    		iTest.iBitmapGray256Mask, EFalse);
sl@0
  1637
sl@0
  1638
    	pt = pt + TPoint( aBitmap16MA->SizeInPixels().iWidth, 0) + TPoint(2,0);
sl@0
  1639
sl@0
  1640
    	pt = pt + TPoint( 0, aBitmap16MA->SizeInPixels().iHeight);
sl@0
  1641
    	}
sl@0
  1642
    
sl@0
  1643
	pt.iX = aRect.iTl.iX + 2;
sl@0
  1644
	pt.iY = pt.iY + 18;
sl@0
  1645
	
sl@0
  1646
    if(aBitmap64K)
sl@0
  1647
    	{
sl@0
  1648
		TSize size = aBitmap64K->SizeInPixels();
sl@0
  1649
		TRect srcRect(TPoint(0,0),size);
sl@0
  1650
		size += TSize(5,5);
sl@0
  1651
		TRect destRect(pt - TPoint(0, 8), size);
sl@0
  1652
    	aGc.DrawBitmap(destRect, aBitmap64K, srcRect);
sl@0
  1653
    	pt = pt + TPoint( size.iWidth, 0) + TPoint(2, 0);
sl@0
  1654
sl@0
  1655
#ifdef __WINS__
sl@0
  1656
    	destRect.Move(TPoint(aBitmap64K->SizeInPixels().iWidth + 8, 0));
sl@0
  1657
    	((CWindowGc&) aGc).DrawBitmapMasked(destRect, 
sl@0
  1658
    		aBitmap64K, srcRect,
sl@0
  1659
	    	iTest.iBitmapGray256Mask, EFalse);
sl@0
  1660
    	pt = pt + TPoint( aBitmap64K->SizeInPixels().iWidth, 0) + TPoint(2, 0);
sl@0
  1661
#endif
sl@0
  1662
	   	}
sl@0
  1663
    
sl@0
  1664
    aGc.DrawText(iTest.iText, pt);
sl@0
  1665
    
sl@0
  1666
#ifdef __WINS__
sl@0
  1667
    ((CWindowGc&) aGc).DrawTextVertical(iTest.iText, pt, ETrue);
sl@0
  1668
#endif
sl@0
  1669
	}
sl@0
  1670
	
sl@0
  1671
/** calculate table's size and size of graphics primitieves */
sl@0
  1672
void CTWinAlphaForeground::PrepareForDrawingL()
sl@0
  1673
	{
sl@0
  1674
	iCol = iTest.iFirstCellWidth;
sl@0
  1675
sl@0
  1676
	CalculateTableMargin();
sl@0
  1677
sl@0
  1678
	//create triangle
sl@0
  1679
	iPolygon = new (ELeave) CArrayFixFlat<TPoint> (3);
sl@0
  1680
	TRect rect = TRect(iTest.iTriangleSize);
sl@0
  1681
	iPolygon->AppendL(rect.iTl);
sl@0
  1682
	iPolygon->AppendL(TPoint(rect.iTl.iX, rect.iBr.iY));
sl@0
  1683
	iPolygon->AppendL(rect.iBr);
sl@0
  1684
	}
sl@0
  1685
sl@0
  1686
/** Bitmap is intended to use on target only*/	
sl@0
  1687
void CTWinAlphaForeground::CreateBackgroundBitmapL(const TDisplayMode& aDispMode)
sl@0
  1688
	{
sl@0
  1689
	ASSERT(!iBitmapBackground);
sl@0
  1690
	
sl@0
  1691
	TSize size = Size(); 
sl@0
  1692
		
sl@0
  1693
	iBitmapBackground = new (ELeave) CFbsBitmap ;
sl@0
  1694
	iBitmapBackground->Create(size,aDispMode);
sl@0
  1695
	
sl@0
  1696
	iBitmapDeviceBackground = CFbsBitmapDevice::NewL(iBitmapBackground);
sl@0
  1697
	CGraphicsContext *&theGc = (CGraphicsContext*&)iBitmapContextBackground;
sl@0
  1698
	iBitmapDeviceBackground->CreateContext(theGc);
sl@0
  1699
	}
sl@0
  1700
	
sl@0
  1701
void CTWinAlphaForeground::CleanBackgroundBitmap()
sl@0
  1702
	{
sl@0
  1703
	ASSERT(iBitmapBackground);
sl@0
  1704
	
sl@0
  1705
	TRect rect = TRect(iBitmapBackground->SizeInPixels());
sl@0
  1706
	iBitmapContextBackground->SetBrushColor(iBackgroundColor);
sl@0
  1707
   	iBitmapContextBackground->SetPenColor(iBackgroundColor);
sl@0
  1708
   	iBitmapContextBackground->SetBrushStyle(CGraphicsContext::ESolidBrush);
sl@0
  1709
	iBitmapContextBackground->DrawRect(rect);
sl@0
  1710
	}
sl@0
  1711
sl@0
  1712
void CTWinAlphaForeground::StartAnimationL()
sl@0
  1713
	{
sl@0
  1714
	__UHEAP_MARK;
sl@0
  1715
	RWsSprite theSprite;
sl@0
  1716
	
sl@0
  1717
	RDrawableWindow *theWin = DrawableWin();
sl@0
  1718
sl@0
  1719
	theSprite=RWsSprite(TheClient->iWs);
sl@0
  1720
	TPoint theSpritePos = TPoint(10, 10); 
sl@0
  1721
	TInt theFlags = 0;
sl@0
  1722
	theSprite.Construct(*theWin, theSpritePos, theFlags);
sl@0
  1723
	TDisplayMode dispMode = EColor256;
sl@0
  1724
	//create a ball bitmap for animation
sl@0
  1725
	CFbsBitmap* theBitmapBall= new (ELeave) CFbsBitmap;
sl@0
  1726
	theBitmapBall->Create(TSize(32, 32), dispMode);
sl@0
  1727
	CFbsBitmapDevice* theBitmapDeviceBall = CFbsBitmapDevice::NewL(theBitmapBall);
sl@0
  1728
	CGraphicsContext* theBitmapContextBall = NULL;
sl@0
  1729
	theBitmapDeviceBall->CreateContext(theBitmapContextBall);
sl@0
  1730
	//draw a background
sl@0
  1731
	theBitmapContextBall->SetBrushColor(TRgb(128, 0, 255));
sl@0
  1732
   	theBitmapContextBall->SetPenColor(TRgb(128, 0, 255));
sl@0
  1733
   	theBitmapContextBall->SetBrushStyle(CGraphicsContext::ESolidBrush);
sl@0
  1734
	theBitmapContextBall->DrawRect(theBitmapBall->SizeInPixels());
sl@0
  1735
	
sl@0
  1736
	//create a ball's mask
sl@0
  1737
	CFbsBitmap* theBitmapMask= new (ELeave) CFbsBitmap;
sl@0
  1738
	theBitmapMask->Create(TSize(32, 32), dispMode);
sl@0
  1739
	CFbsBitmapDevice* theBitmapDeviceMask = CFbsBitmapDevice::NewL(theBitmapMask);
sl@0
  1740
	CGraphicsContext* theBitmapContextMask = NULL;
sl@0
  1741
	theBitmapDeviceMask->CreateContext(theBitmapContextMask);
sl@0
  1742
	//draw a mask
sl@0
  1743
	theBitmapContextMask->SetBrushColor(TRgb(0, 0, 0));
sl@0
  1744
   	theBitmapContextMask->SetPenColor(TRgb(0, 0, 0));
sl@0
  1745
   	theBitmapContextMask->SetBrushStyle(CGraphicsContext::ESolidBrush);
sl@0
  1746
	theBitmapContextMask->DrawRect(theBitmapMask->SizeInPixels());
sl@0
  1747
sl@0
  1748
	theBitmapContextMask->SetBrushColor(TRgb(255, 255, 255));
sl@0
  1749
   	theBitmapContextMask->SetPenColor(TRgb(255, 255, 255));
sl@0
  1750
   	TRect rect = TRect(theBitmapMask->SizeInPixels());
sl@0
  1751
	theBitmapContextMask->SetPenSize(TSize(6,6));
sl@0
  1752
	theBitmapContextMask->DrawLine(rect.iTl, rect.iBr);
sl@0
  1753
	theBitmapContextMask->DrawLine(TPoint(0, rect.iBr.iY), TPoint(rect.iBr.iX, 0));
sl@0
  1754
sl@0
  1755
	//create a second ball's mask
sl@0
  1756
	CFbsBitmap* theBitmapMask1= new (ELeave) CFbsBitmap;
sl@0
  1757
	theBitmapMask1->Create(TSize(32, 32), dispMode);
sl@0
  1758
	CFbsBitmapDevice* theBitmapDeviceMask1 = CFbsBitmapDevice::NewL(theBitmapMask1);
sl@0
  1759
	CGraphicsContext* theBitmapContextMask1 = NULL;
sl@0
  1760
	theBitmapDeviceMask1->CreateContext(theBitmapContextMask1);
sl@0
  1761
	//draw a mask
sl@0
  1762
	theBitmapContextMask1->SetBrushColor(TRgb(0, 0, 0));
sl@0
  1763
   	theBitmapContextMask1->SetPenColor(TRgb(0, 0, 0));
sl@0
  1764
   	theBitmapContextMask1->SetBrushStyle(CGraphicsContext::ESolidBrush);
sl@0
  1765
	theBitmapContextMask1->DrawRect(theBitmapMask1->SizeInPixels());
sl@0
  1766
sl@0
  1767
	theBitmapContextMask1->SetBrushColor(TRgb(255, 255, 255));
sl@0
  1768
   	theBitmapContextMask1->SetPenColor(TRgb(255, 255, 255));
sl@0
  1769
   	rect = TRect(theBitmapMask1->SizeInPixels());
sl@0
  1770
	theBitmapContextMask1->SetPenSize(TSize(6,6));
sl@0
  1771
	theBitmapContextMask1->DrawLine(TPoint(rect.iBr.iX/2, 0), TPoint(rect.iBr.iX/2, rect.iBr.iY));
sl@0
  1772
	theBitmapContextMask1->DrawLine(TPoint(0, rect.iBr.iY/2), TPoint(rect.iBr.iX, rect.iBr.iY/2));
sl@0
  1773
sl@0
  1774
sl@0
  1775
	TSpriteMember theSpriteList;
sl@0
  1776
	theSpriteList.iBitmap = theBitmapBall;
sl@0
  1777
	theSpriteList.iMaskBitmap = theBitmapMask;
sl@0
  1778
	theSpriteList.iInvertMask = EFalse;
sl@0
  1779
	theSpriteList.iDrawMode = CGraphicsContext::EDrawModePEN;
sl@0
  1780
	theSpriteList.iOffset = TPoint(0, 0);
sl@0
  1781
	theSpriteList.iInterval = TTimeIntervalMicroSeconds32(100000);
sl@0
  1782
	theSprite.AppendMember(theSpriteList);
sl@0
  1783
sl@0
  1784
	TSpriteMember theSpriteList1;
sl@0
  1785
	theSpriteList1.iBitmap = theBitmapBall;
sl@0
  1786
	theSpriteList1.iMaskBitmap = theBitmapMask1;
sl@0
  1787
	theSpriteList1.iInvertMask = EFalse;
sl@0
  1788
	theSpriteList1.iDrawMode = CGraphicsContext::EDrawModePEN;
sl@0
  1789
	theSpriteList1.iOffset = TPoint(0, 0);
sl@0
  1790
	theSpriteList1.iInterval = TTimeIntervalMicroSeconds32(100000);
sl@0
  1791
	
sl@0
  1792
	theSprite.AppendMember(theSpriteList1);
sl@0
  1793
	
sl@0
  1794
	theSprite.Activate();
sl@0
  1795
	
sl@0
  1796
	for(TInt ii = 0; ii < 20; ii++)
sl@0
  1797
		{
sl@0
  1798
		theSpritePos += TPoint(3, 8);
sl@0
  1799
		theSprite.SetPosition(theSpritePos);
sl@0
  1800
		TheClient->iWs.Flush();	
sl@0
  1801
		User::After(TTimeIntervalMicroSeconds32(50000));		
sl@0
  1802
		}
sl@0
  1803
sl@0
  1804
	for(TInt jj = 0; jj < 20; jj++)
sl@0
  1805
		{
sl@0
  1806
		theSpritePos -= TPoint(0, 8);
sl@0
  1807
		theSprite.SetPosition(theSpritePos);
sl@0
  1808
		TheClient->iWs.Flush();	
sl@0
  1809
		User::After(TTimeIntervalMicroSeconds32(50000));
sl@0
  1810
		}
sl@0
  1811
	
sl@0
  1812
	theSprite.Close();
sl@0
  1813
	
sl@0
  1814
	delete theBitmapContextBall;
sl@0
  1815
	delete theBitmapDeviceBall;
sl@0
  1816
	
sl@0
  1817
	delete theBitmapBall;
sl@0
  1818
	
sl@0
  1819
	delete theBitmapMask;
sl@0
  1820
	delete theBitmapContextMask;
sl@0
  1821
	delete theBitmapDeviceMask;
sl@0
  1822
	
sl@0
  1823
	delete theBitmapMask1;
sl@0
  1824
	delete theBitmapContextMask1;
sl@0
  1825
	delete theBitmapDeviceMask1;
sl@0
  1826
sl@0
  1827
	__UHEAP_MARKEND;
sl@0
  1828
	}
sl@0
  1829
sl@0
  1830
void CTWinAlphaForeground::CreateBackedWindowL()
sl@0
  1831
	{
sl@0
  1832
	RBackedUpWindow theBackedWindow(TheClient->iWs); 
sl@0
  1833
	CleanupClosePushL(theBackedWindow);
sl@0
  1834
	
sl@0
  1835
	TDisplayMode theDisplayMode = EColor16MA;
sl@0
  1836
	
sl@0
  1837
	RWindow* theWin = (RWindow*) DrawableWin();
sl@0
  1838
sl@0
  1839
	theBackedWindow.Construct(*theWin,theDisplayMode, ENullWsHandle);
sl@0
  1840
	
sl@0
  1841
	TPoint pos =TPoint(10, 10);
sl@0
  1842
	TSize size = theWin->Size();
sl@0
  1843
	size.SetSize(size.iWidth / 5, size.iHeight/10);
sl@0
  1844
	
sl@0
  1845
	theBackedWindow.SetExtentErr(pos, size);
sl@0
  1846
	theBackedWindow.SetOrdinalPosition(0);
sl@0
  1847
sl@0
  1848
	
sl@0
  1849
	//draw to backed window	
sl@0
  1850
	TRgb color = TRgb(255, 0, 128);
sl@0
  1851
	TInt bitmapHandle = theBackedWindow.BitmapHandle();
sl@0
  1852
	CFbsBitmap bitmapWin;
sl@0
  1853
	bitmapWin.Duplicate(bitmapHandle);
sl@0
  1854
	//Leave poss here - theBackedWindow could leak
sl@0
  1855
	CFbsBitmapDevice* theBitmapDevice = CFbsBitmapDevice::NewL(&bitmapWin);
sl@0
  1856
	CGraphicsContext* theBitmapContext = NULL;
sl@0
  1857
	theBitmapDevice->CreateContext(theBitmapContext);
sl@0
  1858
	theBitmapContext->SetBrushColor(color);
sl@0
  1859
   	theBitmapContext->SetPenColor(color);
sl@0
  1860
   	theBitmapContext->SetBrushStyle(CGraphicsContext::ESolidBrush);
sl@0
  1861
	theBitmapContext->DrawRect(TRect(bitmapWin.SizeInPixels()));
sl@0
  1862
sl@0
  1863
	color = TRgb(0, 0, 0);
sl@0
  1864
   	theBitmapContext->SetPenColor(color);
sl@0
  1865
	for(TInt kk = 0; kk < bitmapWin.SizeInPixels().iWidth; kk += 8)
sl@0
  1866
		{
sl@0
  1867
		theBitmapContext->DrawLine(TPoint(kk, 0), TPoint(kk, bitmapWin.SizeInPixels().iHeight));
sl@0
  1868
		}
sl@0
  1869
	
sl@0
  1870
	
sl@0
  1871
	theBackedWindow.Activate();
sl@0
  1872
	TheClient->iWs.Flush();
sl@0
  1873
	User::After(TTimeIntervalMicroSeconds32(500000));
sl@0
  1874
	
sl@0
  1875
	//hide the window
sl@0
  1876
	theBackedWindow.SetVisible(EFalse);
sl@0
  1877
	TheClient->iWs.Flush();
sl@0
  1878
	User::After(TTimeIntervalMicroSeconds32(500000));
sl@0
  1879
	theBackedWindow.SetVisible(ETrue);
sl@0
  1880
	TheClient->iWs.Flush();
sl@0
  1881
	
sl@0
  1882
	for(TInt ii = 0; ii < 7; ii++)
sl@0
  1883
		{
sl@0
  1884
		User::After(TTimeIntervalMicroSeconds32(100000));
sl@0
  1885
		pos.iX += 5;
sl@0
  1886
		pos.iY += 15;
sl@0
  1887
		 
sl@0
  1888
		theBackedWindow.SetExtentErr(pos, size);
sl@0
  1889
		TheClient->iWs.Flush();
sl@0
  1890
		}
sl@0
  1891
sl@0
  1892
	User::After(TTimeIntervalMicroSeconds32(500000));
sl@0
  1893
	
sl@0
  1894
	//transparent color. don't expect it to work
sl@0
  1895
	pos.iX -= 5;
sl@0
  1896
	pos.iY -= 15;
sl@0
  1897
sl@0
  1898
	theBackedWindow.SetExtentErr(pos, size);
sl@0
  1899
	color = TRgb(255, 255, 128, 128);
sl@0
  1900
	theBitmapContext->SetBrushColor(color);
sl@0
  1901
   	theBitmapContext->SetPenColor(color);
sl@0
  1902
	theBitmapContext->DrawRect(TRect(bitmapWin.SizeInPixels()));
sl@0
  1903
	TheClient->iWs.Flush();
sl@0
  1904
	User::After(TTimeIntervalMicroSeconds32(500000));
sl@0
  1905
sl@0
  1906
	//semi-transparent color
sl@0
  1907
	pos.iX -= 5;
sl@0
  1908
	pos.iY -= 15;
sl@0
  1909
	theBackedWindow.SetExtentErr(pos, size);
sl@0
  1910
	color = TRgb(255, 255, 128, 255);
sl@0
  1911
	theBitmapContext->SetBrushColor(color);
sl@0
  1912
   	theBitmapContext->SetPenColor(color);
sl@0
  1913
	TheClient->iWs.Flush();
sl@0
  1914
	User::After(TTimeIntervalMicroSeconds32(500000));
sl@0
  1915
sl@0
  1916
	
sl@0
  1917
	CleanupStack::PopAndDestroy();	 //bitmapWin
sl@0
  1918
	delete theBitmapContext;
sl@0
  1919
	delete theBitmapDevice;
sl@0
  1920
	
sl@0
  1921
	}
sl@0
  1922
sl@0
  1923
	
sl@0
  1924
//-------------------
sl@0
  1925
void CTWinAlpha::Draw()
sl@0
  1926
	{
sl@0
  1927
	CBitmapContext* theGc = TheClient->iGc;
sl@0
  1928
	TSize size = Size();
sl@0
  1929
	
sl@0
  1930
	for(TInt ii = 0; ii < size.iHeight; ii += (20+iState))
sl@0
  1931
		{
sl@0
  1932
		theGc->DrawLine(TPoint(0, ii), TPoint(size.iWidth, ii));
sl@0
  1933
		}
sl@0
  1934
	}
sl@0
  1935
	
sl@0
  1936
__WS_CONSTRUCT_STEP__(AlphaChannel)