os/graphics/windowing/windowserver/test/t_integ/src/t_pseudoappwindow.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) 2007-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
//
sl@0
    15
sl@0
    16
/**
sl@0
    17
 @file
sl@0
    18
 @test
sl@0
    19
 @internalComponent
sl@0
    20
*/
sl@0
    21
sl@0
    22
#include "t_pseudoappwindow.h"
sl@0
    23
#include "t_winutils.h"
sl@0
    24
sl@0
    25
EXPORT_C CTestWindow::CTestWindow(TInt aScreenNo, TDisplayMode aMode)
sl@0
    26
	{
sl@0
    27
	RDebug::Print(_L("Creating CTestWindow class\n"));
sl@0
    28
    TRAPD(err, ConstructL(aScreenNo, aMode));
sl@0
    29
	if(err)
sl@0
    30
		{
sl@0
    31
		RDebug::Print(_L("CTestWindow::ConstructL() leaves with error %d\n"), err);
sl@0
    32
		User::Exit(0);
sl@0
    33
		}
sl@0
    34
	}
sl@0
    35
sl@0
    36
CTestWindow::~CTestWindow()
sl@0
    37
	{
sl@0
    38
	if(iScreen)
sl@0
    39
		{
sl@0
    40
		delete iScreen;
sl@0
    41
		}
sl@0
    42
sl@0
    43
	if(iWindowGc)
sl@0
    44
		{
sl@0
    45
		delete iWindowGc;
sl@0
    46
		}
sl@0
    47
sl@0
    48
	iSession.Close();
sl@0
    49
	}
sl@0
    50
sl@0
    51
EXPORT_C void CTestWindow::ConstructL(TInt aScreenNo, TDisplayMode aMode)
sl@0
    52
	{
sl@0
    53
	RDebug::Print(_L("Constructing CTestWindow class\n"));
sl@0
    54
	User::LeaveIfError(iSession.Connect());
sl@0
    55
sl@0
    56
	RDebug::Print(_L("Create CWsScreenDevice\n"));
sl@0
    57
	iScreen = new(ELeave) CWsScreenDevice(iSession);
sl@0
    58
	User::LeaveIfError(iScreen->Construct(aScreenNo));
sl@0
    59
sl@0
    60
	RDebug::Print(_L("Create RWindowGroup\n"));
sl@0
    61
	iGroup = RWindowGroup(iSession);
sl@0
    62
sl@0
    63
	User::LeaveIfError(iGroup.Construct(8970 + aScreenNo, ETrue));
sl@0
    64
sl@0
    65
	RDebug::Print(_L("Create Window\n"));
sl@0
    66
	iWindow = RWindow(iSession);
sl@0
    67
	User::LeaveIfError(iWindow.Construct((RWindowTreeNode)iGroup,(TUint32)this));
sl@0
    68
sl@0
    69
	RDebug::Print(_L("Create CWindowGc\n"));
sl@0
    70
	iWindowGc = new (ELeave) CWindowGc(iScreen);
sl@0
    71
	User::LeaveIfError(iWindowGc->Construct());
sl@0
    72
sl@0
    73
	TInt ret = iWindow.SetRequiredDisplayMode(aMode);
sl@0
    74
	RDebug::Print(_L("Window display mode set to %d\n"), ret);
sl@0
    75
sl@0
    76
	iMode = aMode;
sl@0
    77
	iWindow.Activate();
sl@0
    78
	}
sl@0
    79
sl@0
    80
EXPORT_C void CTestWindow::Rotate(TSize /*aScreenSize*/)
sl@0
    81
	{
sl@0
    82
	}
sl@0
    83
sl@0
    84
EXPORT_C void CTestWindow::DrawL()
sl@0
    85
	{
sl@0
    86
	}
sl@0
    87
sl@0
    88
void CTestWindow::SetPosition()
sl@0
    89
	{
sl@0
    90
	iWindow.SetPosition((*iLoadsaParameters)[iFrameCounter].iWindowPos);
sl@0
    91
	iSession.Flush();
sl@0
    92
	}
sl@0
    93
sl@0
    94
void CTestWindow::SetSize()
sl@0
    95
	{
sl@0
    96
	iWindow.SetSize((*iLoadsaParameters)[iFrameCounter].iWindowSize);
sl@0
    97
	iSession.Flush();
sl@0
    98
	}
sl@0
    99
sl@0
   100
void CTestWindow::SetExtent()
sl@0
   101
	{
sl@0
   102
	iWindow.SetExtent((*iLoadsaParameters)[iFrameCounter].iWindowPos, (*iLoadsaParameters)[iFrameCounter].iWindowSize);
sl@0
   103
	iSession.Flush();
sl@0
   104
	}
sl@0
   105
sl@0
   106
EXPORT_C CTestEmptyWindow* CTestEmptyWindow::NewL(TInt aScreenNo, TDisplayMode aMode, const TSize& aScreenSize)
sl@0
   107
    {
sl@0
   108
    CTestEmptyWindow* self = new (ELeave) CTestEmptyWindow(aScreenNo, aMode);
sl@0
   109
    CleanupStack::PushL(self);
sl@0
   110
    self->ConstructL(aScreenSize);
sl@0
   111
    CleanupStack::Pop(); // self;
sl@0
   112
    return self;
sl@0
   113
    }
sl@0
   114
sl@0
   115
void CTestEmptyWindow::ConstructL(const TSize& aScreenSize)
sl@0
   116
	{
sl@0
   117
	RDebug::Print(_L("Construct CTestEmptyWindow class\n"));
sl@0
   118
	iWindowDrawn = EFalse;
sl@0
   119
	iWindow.SetExtent(TPoint(0,0), aScreenSize);
sl@0
   120
	}
sl@0
   121
sl@0
   122
EXPORT_C CTestEmptyWindow::CTestEmptyWindow(TInt aScreenNo, TDisplayMode aMode) :
sl@0
   123
                                   CTestWindow(aScreenNo, aMode)
sl@0
   124
	{
sl@0
   125
	}
sl@0
   126
sl@0
   127
CTestEmptyWindow::~CTestEmptyWindow()
sl@0
   128
	{
sl@0
   129
	}
sl@0
   130
sl@0
   131
EXPORT_C void CTestEmptyWindow::Rotate(TSize /*aScreenSize*/)
sl@0
   132
	{
sl@0
   133
	}
sl@0
   134
sl@0
   135
EXPORT_C void CTestEmptyWindow::DrawL()
sl@0
   136
	{
sl@0
   137
	iWindowDrawn = ETrue;
sl@0
   138
	iWindowGc->Activate(iWindow);
sl@0
   139
	iWindow.Invalidate();
sl@0
   140
	iWindow.BeginRedraw();
sl@0
   141
	iWindow.EndRedraw();
sl@0
   142
	iWindowGc->Deactivate();
sl@0
   143
sl@0
   144
	iSession.Flush();
sl@0
   145
	}
sl@0
   146
sl@0
   147
EXPORT_C CTestEcomWindow* CTestEcomWindow::NewL(TInt aScreenNo, TDisplayMode aMode, const TPtrC& aMultiBitmapEcomFile,
sl@0
   148
                                                TInt aMultiBitmapEcomFileSize, TGceTestResults* aGceTestResults,
sl@0
   149
                                                CArrayFixFlat<TDrawParameters>* aLoadsaParameters)
sl@0
   150
    {
sl@0
   151
    CTestEcomWindow* self = new (ELeave) CTestEcomWindow(aScreenNo, aMode);
sl@0
   152
    CleanupStack::PushL(self);
sl@0
   153
    self->ConstructL(aMultiBitmapEcomFile, aMultiBitmapEcomFileSize, aGceTestResults, aLoadsaParameters);
sl@0
   154
    CleanupStack::Pop(); // self;
sl@0
   155
    return self;
sl@0
   156
    }
sl@0
   157
sl@0
   158
void CTestEcomWindow::ConstructL(const TPtrC& aMultiBitmapEcomFile, TInt aMultiBitmapEcomFileSize, TGceTestResults* aGceTestResults,
sl@0
   159
                                 CArrayFixFlat<TDrawParameters>* aLoadsaParameters)
sl@0
   160
	{
sl@0
   161
	RDebug::Print(_L("Construct CTestEcomWindow class\n"));
sl@0
   162
sl@0
   163
	iMultiBitmapEcomFile.Set(aMultiBitmapEcomFile);
sl@0
   164
	iMultiBitmapEcomFileSize = aMultiBitmapEcomFileSize;
sl@0
   165
	iLoadsaParameters = aLoadsaParameters;
sl@0
   166
sl@0
   167
	//Pass notification value back to ui
sl@0
   168
	iGceTestResults = aGceTestResults;
sl@0
   169
	}
sl@0
   170
sl@0
   171
EXPORT_C CTestEcomWindow::CTestEcomWindow(TInt aScreenNo, TDisplayMode aMode) :
sl@0
   172
                                   CTestWindow(aScreenNo, aMode)
sl@0
   173
	{
sl@0
   174
	}
sl@0
   175
sl@0
   176
CTestEcomWindow::~CTestEcomWindow()
sl@0
   177
	{
sl@0
   178
	}
sl@0
   179
sl@0
   180
EXPORT_C void CTestEcomWindow::Rotate(TSize /*aScreenSize*/)
sl@0
   181
	{
sl@0
   182
	}
sl@0
   183
sl@0
   184
EXPORT_C void CTestEcomWindow::DrawL()
sl@0
   185
	{
sl@0
   186
	if(iBitmapCounter == iMultiBitmapEcomFileSize)
sl@0
   187
		{
sl@0
   188
		iBitmapCounter = 0;
sl@0
   189
		}
sl@0
   190
sl@0
   191
	TParamChange redraw = Redraw();
sl@0
   192
	if(redraw != ENoParamChange)
sl@0
   193
		{
sl@0
   194
		if(redraw == EPositionChange)
sl@0
   195
			{
sl@0
   196
			SetPosition();
sl@0
   197
			}
sl@0
   198
sl@0
   199
		if(redraw == ESizeChange)
sl@0
   200
			{
sl@0
   201
			SetSize();
sl@0
   202
			}
sl@0
   203
sl@0
   204
		if(redraw == EExtentChange)
sl@0
   205
			{
sl@0
   206
			SetExtent();
sl@0
   207
			}
sl@0
   208
		}
sl@0
   209
sl@0
   210
	CFbsBitmap bitmap;
sl@0
   211
	iWindowGc->Activate(iWindow);
sl@0
   212
	iWindow.Invalidate();
sl@0
   213
	iWindow.BeginRedraw();
sl@0
   214
sl@0
   215
	bitmap.Load(iMultiBitmapEcomFile, iBitmapCounter);
sl@0
   216
sl@0
   217
	iWindowGc->DrawBitmap(TRect(TPoint(0,0), (*iLoadsaParameters)[0].iWindowSize), &bitmap);
sl@0
   218
sl@0
   219
	iWindow.EndRedraw();
sl@0
   220
	iWindowGc->Deactivate();
sl@0
   221
	iSession.Flush();
sl@0
   222
sl@0
   223
	iFrameCounter++;
sl@0
   224
	iBitmapCounter++;
sl@0
   225
	}
sl@0
   226
sl@0
   227
TParamChange CTestEcomWindow::Redraw()
sl@0
   228
	{
sl@0
   229
	if(iFrameCounter == 0)
sl@0
   230
		{
sl@0
   231
		iWindow.SetExtent((*iLoadsaParameters)[0].iWindowPos, (*iLoadsaParameters)[0].iWindowSize);
sl@0
   232
		iWindow.SetVisible(ETrue);
sl@0
   233
sl@0
   234
		return EFirstFrame;
sl@0
   235
		}
sl@0
   236
	else
sl@0
   237
		{
sl@0
   238
		TDrawParameters current = (*iLoadsaParameters)[iFrameCounter];
sl@0
   239
		TDrawParameters last =  (*iLoadsaParameters)[iFrameCounter - 1];
sl@0
   240
sl@0
   241
		if(current.iWindowSize != last.iWindowSize)
sl@0
   242
			{
sl@0
   243
			if(current.iWindowPos != last.iWindowPos)
sl@0
   244
				{
sl@0
   245
				return EExtentChange;
sl@0
   246
				}
sl@0
   247
			return ESizeChange;
sl@0
   248
			}
sl@0
   249
		else if(current.iWindowPos != last.iWindowPos)
sl@0
   250
			{
sl@0
   251
			return EPositionChange;
sl@0
   252
			}
sl@0
   253
		}
sl@0
   254
	return ENoParamChange;
sl@0
   255
	}
sl@0
   256
sl@0
   257
EXPORT_C CTestUiWindow* CTestUiWindow::NewL(TInt aScreenNo, TDisplayMode aMode, const TPtrC& aMultiBitmapUiFile, TInt aMultiBitmapUiFileSize,
sl@0
   258
                                   CArrayFixFlat<TRect>* aRectArray, TInt aFrameDuration, TInt aMultiBitmapUiFileTransparency,
sl@0
   259
                                   TGceTestResults* aGceTestResults,
sl@0
   260
                                   CArrayFixFlat<TDrawParameters>* aLoadsaParameters)
sl@0
   261
    {
sl@0
   262
    CTestUiWindow* self = new (ELeave) CTestUiWindow(aScreenNo ,aMode);
sl@0
   263
    CleanupStack::PushL(self);
sl@0
   264
    self->ConstructL(aMultiBitmapUiFile, aMultiBitmapUiFileSize, aRectArray, aFrameDuration,
sl@0
   265
                     aMultiBitmapUiFileTransparency, aGceTestResults,
sl@0
   266
                     aLoadsaParameters);
sl@0
   267
sl@0
   268
    CleanupStack::Pop(); // self;
sl@0
   269
    return self;
sl@0
   270
    }
sl@0
   271
sl@0
   272
void CTestUiWindow::ConstructL(const TPtrC& aMultiBitmapUiFile, TInt aMultiBitmapUiFileSize, CArrayFixFlat<TRect>* aRectArray,
sl@0
   273
                               TInt aFrameDuration, TInt aMultiBitmapUiFileTransparency, TGceTestResults* aGceTestResults,
sl@0
   274
                               CArrayFixFlat<TDrawParameters>* aLoadsaParameters)
sl@0
   275
	{
sl@0
   276
	RDebug::Print(_L("Construct CTestUiWindow class\n"));
sl@0
   277
sl@0
   278
	iSimUiDrawn = EFalse;
sl@0
   279
	iMultiBitmapUiFile.Set(aMultiBitmapUiFile);
sl@0
   280
	iMultiBitmapUiFileSize = aMultiBitmapUiFileSize;
sl@0
   281
	iMultiBitmapUiFileTransparency = aMultiBitmapUiFileTransparency;
sl@0
   282
	iRectArray = aRectArray;
sl@0
   283
	iFrameDuration = aFrameDuration;
sl@0
   284
	iLoadsaParameters = aLoadsaParameters;
sl@0
   285
sl@0
   286
	//Pass notification value back to ui
sl@0
   287
	iGceTestResults = aGceTestResults;
sl@0
   288
	}
sl@0
   289
sl@0
   290
EXPORT_C CTestUiWindow::CTestUiWindow(TInt aScreenNo, TDisplayMode aMode) :
sl@0
   291
                             CTestWindow(aScreenNo, aMode)
sl@0
   292
	{
sl@0
   293
	}
sl@0
   294
sl@0
   295
CTestUiWindow::~CTestUiWindow()
sl@0
   296
	{
sl@0
   297
	}
sl@0
   298
sl@0
   299
void CTestUiWindow::SetBitmapTransparency(CFbsBitmap* aBitmap, TUint8 aAlphaValue, TInt aAlphaByteLocation)
sl@0
   300
	{
sl@0
   301
	aBitmap->LockHeap();
sl@0
   302
	TUint32* bitmapBufferPtr = aBitmap->DataAddress();
sl@0
   303
	if(bitmapBufferPtr == 0)
sl@0
   304
		{
sl@0
   305
		RDebug::Print(_L("Error getting bitmap address, aborting\n"));
sl@0
   306
		//Unlock heap before exitting
sl@0
   307
		aBitmap->UnlockHeap();
sl@0
   308
		User::Exit(0);
sl@0
   309
		}
sl@0
   310
sl@0
   311
	TSize aBitmapSize = aBitmap->SizeInPixels();
sl@0
   312
	TUint32 noOfPixels = aBitmapSize.iHeight * aBitmapSize.iWidth;
sl@0
   313
sl@0
   314
	while(noOfPixels)
sl@0
   315
		{
sl@0
   316
		*bitmapBufferPtr = ( (*bitmapBufferPtr & ~(0xFF << (aAlphaByteLocation * 8))) | (aAlphaValue << (aAlphaByteLocation * 8)) );
sl@0
   317
		bitmapBufferPtr++;
sl@0
   318
		noOfPixels--;
sl@0
   319
		}
sl@0
   320
	aBitmap->UnlockHeap();
sl@0
   321
	}
sl@0
   322
sl@0
   323
EXPORT_C void CTestUiWindow::Rotate(const TSize& aScreenSize)
sl@0
   324
	{
sl@0
   325
	//Adjust the sizes of the UI bitmap components to reflect the aspect ratio  change
sl@0
   326
	for(TInt j=0; j<iMultiBitmapUiFileSize; j++)
sl@0
   327
		{
sl@0
   328
		(*iRectArray)[j].iTl.iX = ((*iRectArray)[j].iTl.iX*aScreenSize.iWidth)/aScreenSize.iHeight;
sl@0
   329
		(*iRectArray)[j].iTl.iY = ((*iRectArray)[j].iTl.iY*aScreenSize.iHeight)/aScreenSize.iWidth;
sl@0
   330
		(*iRectArray)[j].iBr.iX = ((*iRectArray)[j].iBr.iX*aScreenSize.iWidth)/aScreenSize.iHeight;
sl@0
   331
		(*iRectArray)[j].iBr.iY = ((*iRectArray)[j].iBr.iY*aScreenSize.iHeight)/aScreenSize.iWidth;
sl@0
   332
		}
sl@0
   333
sl@0
   334
	iWindow.SetSize(aScreenSize);
sl@0
   335
	}
sl@0
   336
sl@0
   337
EXPORT_C void CTestUiWindow::DrawL()
sl@0
   338
	{
sl@0
   339
	TParamChange redraw = Redraw();
sl@0
   340
sl@0
   341
		if(redraw == EPositionChange)
sl@0
   342
			{
sl@0
   343
			SetPosition();
sl@0
   344
			}
sl@0
   345
sl@0
   346
		if(redraw == ESizeChange)
sl@0
   347
			{
sl@0
   348
			SetSize();
sl@0
   349
			}
sl@0
   350
sl@0
   351
		if(redraw == EExtentChange)
sl@0
   352
			{
sl@0
   353
			SetExtent();
sl@0
   354
			}
sl@0
   355
sl@0
   356
		CFbsBitmap bitmap;
sl@0
   357
		iWindowGc->Activate(iWindow);
sl@0
   358
		iWindow.Invalidate();
sl@0
   359
		iWindow.BeginRedraw();
sl@0
   360
sl@0
   361
		CTestBitmap* bitmapSource = NULL;
sl@0
   362
		bitmapSource = CTestBitmap::NewL(TSize(0,0), iMode);
sl@0
   363
sl@0
   364
		for(TInt j=0; j<iMultiBitmapUiFileSize; j++)
sl@0
   365
			{
sl@0
   366
			User::LeaveIfError(bitmapSource->Bitmap().Load(iMultiBitmapUiFile, j));
sl@0
   367
sl@0
   368
			TInt lastSize = (*iLoadsaParameters)[iFrameCounter].iBitmapScale;
sl@0
   369
			TRect destRect;
sl@0
   370
			TPoint drawPos;
sl@0
   371
sl@0
   372
sl@0
   373
			destRect.SetRect(TPoint(  ((*iRectArray)[j].iTl.iX*lastSize)/100, ((*iRectArray)[j].iTl.iY*lastSize)/100),
sl@0
   374
						     TPoint(  ((*iRectArray)[j].iBr.iX*lastSize)/100, ((*iRectArray)[j].iBr.iY*lastSize)/100 ));
sl@0
   375
sl@0
   376
			drawPos = TPoint(((*iRectArray)[j].iTl.iX*lastSize)/100, ((*iRectArray)[j].iTl.iY*lastSize)/100);
sl@0
   377
sl@0
   378
			if(iMultiBitmapUiFileTransparency)
sl@0
   379
				{
sl@0
   380
				CTestBitmap* bitmapSourceAlpha = CTestBitmap::NewL(TSize(0,0), EGray256);
sl@0
   381
				User::LeaveIfError(bitmapSourceAlpha->Bitmap().Load(iMultiBitmapUiFile, j+iMultiBitmapUiFileSize));
sl@0
   382
sl@0
   383
				//Adjust the transparency controlled by the alpha bitmap
sl@0
   384
				SetBitmapAlpha(&(bitmapSourceAlpha->Bitmap()));
sl@0
   385
sl@0
   386
				CTestBitmap* bitmapDest = CTestBitmap::NewL(destRect.Size(), iMode);
sl@0
   387
				bitmapDest->Bitmap().SetSizeInTwips(bitmapSource->Bitmap().SizeInTwips());
sl@0
   388
				bitmapDest->Gc().DrawBitmap(TRect(TPoint(0,0), destRect.Size()), &(bitmapSource->Bitmap()));
sl@0
   389
sl@0
   390
				CTestBitmap* bitmapDestAlpha = CTestBitmap::NewL(destRect.Size(), EGray256);
sl@0
   391
				bitmapDestAlpha->Bitmap().SetSizeInTwips(bitmapSourceAlpha->Bitmap().SizeInTwips());
sl@0
   392
				bitmapDestAlpha->Gc().DrawBitmap(TRect(TPoint(0,0), destRect.Size()), &(bitmapSourceAlpha->Bitmap()));
sl@0
   393
sl@0
   394
				iWindowGc->AlphaBlendBitmaps(drawPos, &(bitmapDest->Bitmap()), TRect(TPoint(0,0), destRect.Size()),
sl@0
   395
				                             &(bitmapDestAlpha->Bitmap()), TPoint(0,0));
sl@0
   396
sl@0
   397
				delete bitmapSourceAlpha;
sl@0
   398
				delete bitmapDest;
sl@0
   399
				delete bitmapDestAlpha;
sl@0
   400
				}
sl@0
   401
			else
sl@0
   402
				{
sl@0
   403
				iWindowGc->DrawBitmap(destRect, &(bitmapSource->Bitmap()));
sl@0
   404
				}
sl@0
   405
			}
sl@0
   406
sl@0
   407
		delete bitmapSource;
sl@0
   408
sl@0
   409
		iWindow.EndRedraw();
sl@0
   410
		iWindowGc->Deactivate();
sl@0
   411
		iSession.Flush();
sl@0
   412
sl@0
   413
	iFrameCounter++;
sl@0
   414
	}
sl@0
   415
sl@0
   416
void CTestUiWindow::SetBitmapAlpha(CFbsBitmap* aBitmap)
sl@0
   417
	{
sl@0
   418
	aBitmap->LockHeap();
sl@0
   419
	TUint32* bitmapBufferPtr = aBitmap->DataAddress();
sl@0
   420
sl@0
   421
	TSize aBitmapSize = aBitmap->SizeInPixels();
sl@0
   422
	TUint32 noOfPixels = (aBitmapSize.iHeight * aBitmapSize.iWidth)/4;
sl@0
   423
	TUint8 alpha = (*iLoadsaParameters)[iFrameCounter].iBitmapAlpha;
sl@0
   424
sl@0
   425
	TUint32 alpha32 = (alpha << 24) | (alpha << 16) | (alpha << 8) | alpha;
sl@0
   426
	while(noOfPixels)
sl@0
   427
		{
sl@0
   428
		//Only modify grey pixels leaving the white ones untouched
sl@0
   429
		if(*bitmapBufferPtr != 0x0)
sl@0
   430
			{
sl@0
   431
			*bitmapBufferPtr = alpha32;
sl@0
   432
			}
sl@0
   433
sl@0
   434
		bitmapBufferPtr++;
sl@0
   435
		noOfPixels--;
sl@0
   436
		}
sl@0
   437
	aBitmap->UnlockHeap();
sl@0
   438
	}
sl@0
   439
sl@0
   440
TParamChange CTestUiWindow::Redraw()
sl@0
   441
	{
sl@0
   442
	if(iFrameCounter == 0)
sl@0
   443
		{
sl@0
   444
		iWindow.SetExtent((*iLoadsaParameters)[0].iWindowPos, (*iLoadsaParameters)[0].iWindowSize);
sl@0
   445
		iWindow.SetVisible(ETrue);
sl@0
   446
sl@0
   447
		return EFirstFrame;
sl@0
   448
		}
sl@0
   449
	else
sl@0
   450
		{
sl@0
   451
		TDrawParameters current = (*iLoadsaParameters)[iFrameCounter];
sl@0
   452
		TDrawParameters last =  (*iLoadsaParameters)[iFrameCounter - 1];
sl@0
   453
sl@0
   454
		if(current.iWindowSize != last.iWindowSize)
sl@0
   455
			{
sl@0
   456
			if(current.iWindowPos != last.iWindowPos)
sl@0
   457
				{
sl@0
   458
				return EExtentChange;
sl@0
   459
				}
sl@0
   460
			return ESizeChange;
sl@0
   461
			}
sl@0
   462
		else if(current.iWindowPos != last.iWindowPos)
sl@0
   463
			{
sl@0
   464
			return EPositionChange;
sl@0
   465
			}
sl@0
   466
		else if(current.iBitmapScale != last.iBitmapScale)
sl@0
   467
			{
sl@0
   468
			return EBitmapScale;
sl@0
   469
			}
sl@0
   470
		else if(current.iBitmapAlpha != last.iBitmapAlpha)
sl@0
   471
			{
sl@0
   472
			return EOpacityChange;
sl@0
   473
			}
sl@0
   474
		}
sl@0
   475
	return ENoParamChange;
sl@0
   476
	}
sl@0
   477
sl@0
   478
TDrawParameters::TDrawParameters() : iRedraw(EFalse), iBitmapScale(0), iBitmapAlpha(0), iWindowSize(0,0), iWindowPos(0,0)
sl@0
   479
	{
sl@0
   480
	}
sl@0
   481
sl@0
   482
TDrawParameters::~TDrawParameters()
sl@0
   483
	{
sl@0
   484
	}
sl@0
   485
sl@0
   486
TBool TDrawParameters::operator==(const TDrawParameters& x) const
sl@0
   487
	{
sl@0
   488
	if( (x.iBitmapScale != iBitmapScale) ||
sl@0
   489
		(x.iBitmapAlpha != iBitmapAlpha) ||
sl@0
   490
		(x.iWindowSize != iWindowSize)   ||
sl@0
   491
		(x.iWindowPos != iWindowPos) )
sl@0
   492
		{
sl@0
   493
		return ETrue;
sl@0
   494
		}
sl@0
   495
sl@0
   496
	return EFalse;
sl@0
   497
	}