os/graphics/windowing/windowserver/test/tman/TMTScrMd.CPP
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2000-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// Screen mode changing tests
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include <e32std.h>
sl@0
    19
#include <e32def_private.h>
sl@0
    20
#include "W32STD.H"
sl@0
    21
#include "../tlib/testbase.h"
sl@0
    22
#include "TMAN.H"
sl@0
    23
sl@0
    24
class CTimeWindow;
sl@0
    25
sl@0
    26
class CQBlankWindow : public CBlankWindow
sl@0
    27
	{
sl@0
    28
public:
sl@0
    29
	static TInt iInitialColor;
sl@0
    30
public:
sl@0
    31
	//Virtual function from CTBaseWin
sl@0
    32
	void InitWin();
sl@0
    33
public:
sl@0
    34
	static TSize iSize;
sl@0
    35
	TSglQueLink iLink;
sl@0
    36
	};
sl@0
    37
sl@0
    38
class CFixScreenModeGroup : public CTWindowGroup
sl@0
    39
	{
sl@0
    40
public:
sl@0
    41
	static TInt iNoClientWins;
sl@0
    42
public:
sl@0
    43
	~CFixScreenModeGroup();
sl@0
    44
	CFixScreenModeGroup(CTClient *aClient);
sl@0
    45
	void ConstructL();
sl@0
    46
public:
sl@0
    47
	TSglQueLink iLink;
sl@0
    48
private:
sl@0
    49
	TSglQue<CQBlankWindow> iWindows;
sl@0
    50
	};
sl@0
    51
sl@0
    52
class CFlipClient : public CTClient
sl@0
    53
	{
sl@0
    54
public:
sl@0
    55
	void ConstructL();
sl@0
    56
private:
sl@0
    57
	};
sl@0
    58
sl@0
    59
class CScreenModeTimes : public CTestBase
sl@0
    60
	{
sl@0
    61
public:
sl@0
    62
	CScreenModeTimes();
sl@0
    63
	~CScreenModeTimes();
sl@0
    64
	TestState DoTestL();
sl@0
    65
	void ConstructL();
sl@0
    66
	void DoTimings();
sl@0
    67
private:
sl@0
    68
	void CreateGroupL(CTClient* aClient,TSglQue<CFixScreenModeGroup>& aQue);
sl@0
    69
	void DeleteGroups(TSglQue<CFixScreenModeGroup>& aQue);
sl@0
    70
	void BringToFront(TSglQue<CFixScreenModeGroup>& aQue);
sl@0
    71
private:
sl@0
    72
	TScreenModeEnforcement iEnforcementMode;
sl@0
    73
	CInfoDialog* iDialogue;
sl@0
    74
	CTimeWindow* iInfoWindow;
sl@0
    75
	CFlipClient* iFlipClient;
sl@0
    76
	TSglQue<CFixScreenModeGroup> iNormalGroupQue;
sl@0
    77
	TSglQue<CFixScreenModeGroup> iFlipGroupQue;
sl@0
    78
	TInt iNoGroupWins;
sl@0
    79
	TInt iState;
sl@0
    80
	};
sl@0
    81
sl@0
    82
class CTimeWindow : public CTTitledWindow
sl@0
    83
	{
sl@0
    84
public:
sl@0
    85
	void Construct(CTestBase* aTest);
sl@0
    86
	void SetNumWindows(TInt aGroup,TInt aWin);
sl@0
    87
	void SetTime1(TTimeIntervalMicroSeconds& aTime);
sl@0
    88
	void SetTime2(TTimeIntervalMicroSeconds& aTime);
sl@0
    89
	void DoDraw();
sl@0
    90
	//virtual function from CTWinBase overridden by CTBaseWin
sl@0
    91
	void WinKeyL(const TKeyEvent &aKey,const TTime &aTime);
sl@0
    92
	//virtual functions from CTBaseWin
sl@0
    93
	void SetUpL(TPoint pos,TSize size,CTWinBase *parent, CWindowGc &aGc);
sl@0
    94
	void PointerL(const TPointerEvent &aPointer,const TTime &aTime);
sl@0
    95
	//virtual function from CTBaseWin overridden by CTTitledWindow
sl@0
    96
	void Draw();
sl@0
    97
private:
sl@0
    98
	inline CScreenModeTimes* Test() {return STATIC_CAST(CScreenModeTimes*,iTest);}
sl@0
    99
	void UpdateString1();
sl@0
   100
	void UpdateString2();
sl@0
   101
	void UpdateString3();
sl@0
   102
private:
sl@0
   103
	CTestBase* iTest;
sl@0
   104
	TInt iNumGroups;
sl@0
   105
	TInt iNumWins;
sl@0
   106
	TTimeIntervalMicroSeconds iTime1;
sl@0
   107
	TTimeIntervalMicroSeconds iTime2;
sl@0
   108
	TBuf<32> iString1;
sl@0
   109
	TBuf<32> iString2;
sl@0
   110
	TBuf<32> iString3;
sl@0
   111
	TBuf<32> iString4;
sl@0
   112
	TRect iRect1;
sl@0
   113
	TRect iRect2;
sl@0
   114
	TRect iRect3;
sl@0
   115
	TRect iRect4;
sl@0
   116
	TBool iPressed;
sl@0
   117
	TBool iExit;
sl@0
   118
	};
sl@0
   119
sl@0
   120
sl@0
   121
TSize CQBlankWindow::iSize;
sl@0
   122
TInt CQBlankWindow::iInitialColor;
sl@0
   123
TInt CFixScreenModeGroup::iNoClientWins=0;
sl@0
   124
sl@0
   125
sl@0
   126
GLDEF_C CTestBase *CreateScreenModeTimes()
sl@0
   127
	{
sl@0
   128
	return(new(ELeave) CScreenModeTimes());
sl@0
   129
	}
sl@0
   130
sl@0
   131
sl@0
   132
//
sl@0
   133
// CFlipClient
sl@0
   134
//
sl@0
   135
sl@0
   136
void CFlipClient::ConstructL()
sl@0
   137
	{
sl@0
   138
	CTClient::ConstructL();
sl@0
   139
	TPixelsAndRotation sizeAndRotation;
sl@0
   140
	iScreen->GetScreenModeSizeAndRotation(1,sizeAndRotation);
sl@0
   141
	iScreen->SetScreenSizeAndRotation(sizeAndRotation);
sl@0
   142
	}
sl@0
   143
sl@0
   144
sl@0
   145
//
sl@0
   146
// CTimeWindow
sl@0
   147
//
sl@0
   148
sl@0
   149
void CTimeWindow::Construct(CTestBase* aTest)
sl@0
   150
	{
sl@0
   151
	_LIT(Title,"StatusWindow");
sl@0
   152
	_LIT(String4,"Click here to finish");
sl@0
   153
	const TInt fontHeight=iFont->HeightInPixels();
sl@0
   154
	iTest=aTest;
sl@0
   155
	TWindowTitle title(Title);
sl@0
   156
	SetTitle(title);
sl@0
   157
	TInt yy=iTitleHeight+fontHeight+7;
sl@0
   158
	iRect1.SetRect(3,iTitleHeight+5,iSize.iWidth-1,yy);
sl@0
   159
	yy+=fontHeight/2;
sl@0
   160
	TInt yy1=yy+fontHeight+2;
sl@0
   161
	iRect2.SetRect(3,yy+3,iSize.iWidth-1,yy1);
sl@0
   162
	TInt yy2=yy1+iFont->HeightInPixels()+2;
sl@0
   163
	iRect3.SetRect(3,yy1+3,iSize.iWidth-1,yy2);
sl@0
   164
	yy2+=fontHeight/2;
sl@0
   165
	iRect4.SetRect(3,yy2+3,iSize.iWidth-1,yy2+iFont->HeightInPixels()+2);
sl@0
   166
	//
sl@0
   167
	iString4.Copy(String4);
sl@0
   168
	iExit=EFalse;
sl@0
   169
	}
sl@0
   170
sl@0
   171
void CTimeWindow::SetUpL(TPoint aPos,TSize aSize,CTWinBase *aParent,CWindowGc &aGc)
sl@0
   172
	{
sl@0
   173
	CTTitledWindow::SetUpL(aPos,aSize,aParent,aGc);
sl@0
   174
	}
sl@0
   175
sl@0
   176
void CTimeWindow::WinKeyL(const TKeyEvent &aKey,const TTime&)
sl@0
   177
	{
sl@0
   178
	switch(aKey.iCode)
sl@0
   179
		{
sl@0
   180
		case EKeyEscape:
sl@0
   181
			iTest->Request();
sl@0
   182
			break;
sl@0
   183
		default:;
sl@0
   184
		}
sl@0
   185
	}
sl@0
   186
sl@0
   187
void CTimeWindow::PointerL(const TPointerEvent &aPointer,const TTime &aTime)
sl@0
   188
	{
sl@0
   189
	if (iRect2.Contains(aPointer.iPosition) || iRect3.Contains(aPointer.iPosition))
sl@0
   190
		{
sl@0
   191
		if (aPointer.iType==TPointerEvent::EButton1Down)
sl@0
   192
			iPressed=ETrue;
sl@0
   193
		}
sl@0
   194
	else if (iRect4.Contains(aPointer.iPosition))
sl@0
   195
		iExit=ETrue;
sl@0
   196
	else
sl@0
   197
		CTTitledWindow::PointerL(aPointer,aTime);
sl@0
   198
	if ((iExit||iPressed) && aPointer.iType==TPointerEvent::EButton1Up)
sl@0
   199
		{
sl@0
   200
		if (iExit)
sl@0
   201
			iTest->Request();
sl@0
   202
		else
sl@0
   203
			{
sl@0
   204
			Test()->DoTimings();
sl@0
   205
			DoDraw();
sl@0
   206
			}
sl@0
   207
		}
sl@0
   208
	}
sl@0
   209
sl@0
   210
void CTimeWindow::Draw()
sl@0
   211
	{
sl@0
   212
	CTTitledWindow::Draw();
sl@0
   213
	TInt ascent=iFont->AscentInPixels()+1;
sl@0
   214
	iGc->DrawText(iString1,iRect1,ascent,CGraphicsContext::ELeft);
sl@0
   215
	iGc->DrawText(iString2,iRect2,ascent,CGraphicsContext::ELeft);
sl@0
   216
	iGc->DrawText(iString3,iRect3,ascent,CGraphicsContext::ELeft);
sl@0
   217
	iGc->DrawText(iString4,iRect4,ascent,CGraphicsContext::ELeft);
sl@0
   218
	}
sl@0
   219
sl@0
   220
void CTimeWindow::DoDraw()
sl@0
   221
	{
sl@0
   222
	iGc->Activate(iWin);
sl@0
   223
	iGc->UseFont((CFont *)iFont);
sl@0
   224
	Draw();
sl@0
   225
	iGc->Deactivate();
sl@0
   226
	}
sl@0
   227
sl@0
   228
void CTimeWindow::SetNumWindows(TInt aGroups,TInt aWins)
sl@0
   229
	{
sl@0
   230
	iNumGroups=aGroups;
sl@0
   231
	iNumWins=aWins;
sl@0
   232
	UpdateString1();
sl@0
   233
	}
sl@0
   234
sl@0
   235
void CTimeWindow::UpdateString1()
sl@0
   236
	{
sl@0
   237
	_LIT(NumberWin,"Groups (2x)%d, Windows %d");
sl@0
   238
	iString1.Format(NumberWin,iNumGroups,iNumWins);
sl@0
   239
	}
sl@0
   240
sl@0
   241
void CTimeWindow::SetTime1(TTimeIntervalMicroSeconds& aTime)
sl@0
   242
	{
sl@0
   243
	iTime1=aTime;
sl@0
   244
	UpdateString2();
sl@0
   245
	}
sl@0
   246
sl@0
   247
void CTimeWindow::SetTime2(TTimeIntervalMicroSeconds& aTime)
sl@0
   248
	{
sl@0
   249
	iTime2=aTime;
sl@0
   250
	UpdateString3();
sl@0
   251
	}
sl@0
   252
sl@0
   253
_LIT(TimeFormat,"Time%d = %d.%04dsecs");
sl@0
   254
sl@0
   255
void CTimeWindow::UpdateString2()
sl@0
   256
	{
sl@0
   257
	TInt time = I64LOW(iTime1.Int64());
sl@0
   258
	iString2.Format(TimeFormat,1,time/1000000,(time%1000000)/100);
sl@0
   259
	}
sl@0
   260
sl@0
   261
void CTimeWindow::UpdateString3()
sl@0
   262
	{
sl@0
   263
	TInt time = I64LOW(iTime2.Int64());
sl@0
   264
	iString3.Format(TimeFormat,2,time/1000000,(time%1000000)/100);
sl@0
   265
	}
sl@0
   266
sl@0
   267
sl@0
   268
//
sl@0
   269
// CQBlankWindow
sl@0
   270
//
sl@0
   271
sl@0
   272
void CQBlankWindow::InitWin()
sl@0
   273
	{
sl@0
   274
	SetColor(TRgb::Gray4(iInitialColor));
sl@0
   275
	iWin.SetSize(iSize);
sl@0
   276
	}
sl@0
   277
sl@0
   278
sl@0
   279
//
sl@0
   280
// CFixScreenModeGroup
sl@0
   281
//
sl@0
   282
sl@0
   283
CFixScreenModeGroup::~CFixScreenModeGroup()
sl@0
   284
	{
sl@0
   285
	GroupWin()->EnableReceiptOfFocus(EFalse);
sl@0
   286
	ClearCurrentWindow();
sl@0
   287
	CQBlankWindow* win;
sl@0
   288
	while (!iWindows.IsEmpty())
sl@0
   289
		{
sl@0
   290
		win=iWindows.First();
sl@0
   291
		iWindows.Remove(*win);
sl@0
   292
		delete win;
sl@0
   293
		}
sl@0
   294
	}
sl@0
   295
sl@0
   296
CFixScreenModeGroup::CFixScreenModeGroup(CTClient *aClient) : CTWindowGroup(aClient), iWindows(_FOFF(CQBlankWindow,iLink))
sl@0
   297
	{}
sl@0
   298
sl@0
   299
void CFixScreenModeGroup::ConstructL()
sl@0
   300
	{
sl@0
   301
	CTWindowGroup::ConstructL();
sl@0
   302
	CQBlankWindow* win;
sl@0
   303
	TInt ii;
sl@0
   304
	for(ii=0;ii<iNoClientWins;++ii)
sl@0
   305
		{
sl@0
   306
		win=new(ELeave) CQBlankWindow();
sl@0
   307
		CleanupStack::PushL(win);
sl@0
   308
		win->ConstructL(*this);
sl@0
   309
		win->Activate();
sl@0
   310
		win->AssignGC(*iClient->iGc);
sl@0
   311
		iWindows.AddLast(*win);
sl@0
   312
		CleanupStack::Pop(win);
sl@0
   313
		Client()->Flush();
sl@0
   314
		}
sl@0
   315
	SetCurrentWindow(iWindows.First());
sl@0
   316
	}
sl@0
   317
sl@0
   318
/*void CFixScreenModeGroup::ScreenDeviceChanged()
sl@0
   319
	{
sl@0
   320
	iWindow->ScreenDeviceChanged();
sl@0
   321
	}*/
sl@0
   322
sl@0
   323
sl@0
   324
//
sl@0
   325
// CScreenModeTimes
sl@0
   326
//
sl@0
   327
sl@0
   328
_LIT(TestName,"Screen Mode Times");
sl@0
   329
CScreenModeTimes::CScreenModeTimes() : CTestBase(TestName)
sl@0
   330
								,iNormalGroupQue(_FOFF(CFixScreenModeGroup,iLink)),iFlipGroupQue(_FOFF(CFixScreenModeGroup,iLink))
sl@0
   331
	{}
sl@0
   332
sl@0
   333
CScreenModeTimes::~CScreenModeTimes()
sl@0
   334
	{
sl@0
   335
	Client()->iGroup->GroupWin()->EnableScreenChangeEvents();
sl@0
   336
	Client()->iScreen->SetScreenMode(0);
sl@0
   337
	DeleteGroups(iNormalGroupQue);
sl@0
   338
	DeleteGroups(iFlipGroupQue);
sl@0
   339
	Client()->iGroup->SetCurrentWindow(NULL);
sl@0
   340
	delete iFlipClient;
sl@0
   341
	delete iInfoWindow;
sl@0
   342
	if (iEnforcementMode==ESizeEnforcementNone)
sl@0
   343
		 Client()->iScreen->SetScreenModeEnforcement(ESizeEnforcementNone);
sl@0
   344
	}
sl@0
   345
sl@0
   346
void CScreenModeTimes::ConstructL()
sl@0
   347
	{
sl@0
   348
	iEnforcementMode=Client()->iScreen->ScreenModeEnforcement();
sl@0
   349
	if (iEnforcementMode==ESizeEnforcementNone)
sl@0
   350
		 Client()->iScreen->SetScreenModeEnforcement(ESizeEnforcementPixelsAndRotation);
sl@0
   351
	iDialogue=new(ELeave) CInfoDialog(Client()->iGroup,Client()->iGc);
sl@0
   352
	iDialogue->ConstructLD();
sl@0
   353
	iFlipClient=new(ELeave) CFlipClient();
sl@0
   354
	iFlipClient->ConstructL();
sl@0
   355
	Client()->iGroup->GroupWin()->DisableScreenChangeEvents();
sl@0
   356
	iNoGroupWins=12;		//20;
sl@0
   357
	CFixScreenModeGroup::iNoClientWins=20;		//30;
sl@0
   358
	TSize screenSize=Client()->iScreen->SizeInPixels();
sl@0
   359
	CQBlankWindow::iSize.iWidth=Max(screenSize.iHeight,screenSize.iWidth);
sl@0
   360
	CQBlankWindow::iSize.iHeight=CQBlankWindow::iSize.iWidth;
sl@0
   361
	TInt ii;
sl@0
   362
	for(ii=0;ii<iNoGroupWins;++ii)
sl@0
   363
		{
sl@0
   364
		CQBlankWindow::iInitialColor=1;
sl@0
   365
		CreateGroupL(Client(),iNormalGroupQue);
sl@0
   366
		CQBlankWindow::iInitialColor=2;
sl@0
   367
		CreateGroupL(iFlipClient,iFlipGroupQue);
sl@0
   368
		}
sl@0
   369
	Client()->iGroup->GroupWin()->SetOrdinalPosition(0);
sl@0
   370
	iInfoWindow=new(ELeave) CTimeWindow();
sl@0
   371
	iInfoWindow->SetUpL(TPoint(Max(Min(415,screenSize.iWidth-210),0),Min(50,screenSize.iHeight-180)),TSize(210,180),Client()->iGroup,*Client()->iGc);
sl@0
   372
	Client()->iGroup->SetCurrentWindow(iInfoWindow);
sl@0
   373
	iInfoWindow->Construct(this);
sl@0
   374
	iInfoWindow->WinTreeNode()->SetOrdinalPosition(1);
sl@0
   375
	iInfoWindow->SetNumWindows(iNoGroupWins,CFixScreenModeGroup::iNoClientWins);
sl@0
   376
sl@0
   377
	Client()->iGroup->GroupWin()->DisableScreenChangeEvents();
sl@0
   378
	Client()->iWs.SetAutoFlush(ETrue);
sl@0
   379
	iFlipClient->iWs.SetAutoFlush(ETrue);
sl@0
   380
	Client()->iWs.SetPointerCursorMode(EPointerCursorNone);
sl@0
   381
	}
sl@0
   382
sl@0
   383
void CScreenModeTimes::CreateGroupL(CTClient *aClient,TSglQue<CFixScreenModeGroup>& aQue)
sl@0
   384
	{
sl@0
   385
	CFixScreenModeGroup* group;
sl@0
   386
	group=new(ELeave) CFixScreenModeGroup(aClient);
sl@0
   387
	CleanupStack::PushL(group);
sl@0
   388
	group->ConstructL();
sl@0
   389
	aQue.AddLast(*group);
sl@0
   390
	CleanupStack::Pop(group);
sl@0
   391
	}
sl@0
   392
sl@0
   393
void CScreenModeTimes::DeleteGroups(TSglQue<CFixScreenModeGroup>& aQue)
sl@0
   394
	{
sl@0
   395
	CFixScreenModeGroup* group;
sl@0
   396
	while (!aQue.IsEmpty())
sl@0
   397
		{
sl@0
   398
		group=aQue.First();
sl@0
   399
		aQue.Remove(*group);
sl@0
   400
		delete group;
sl@0
   401
		}
sl@0
   402
	}
sl@0
   403
sl@0
   404
void CScreenModeTimes::BringToFront(TSglQue<CFixScreenModeGroup>& aQue)
sl@0
   405
	{
sl@0
   406
	TSglQueIter<CFixScreenModeGroup> iter(aQue);
sl@0
   407
	CFixScreenModeGroup* group=iter++;
sl@0
   408
	group->GroupWin()->SetOrdinalPosition(0);
sl@0
   409
	while ((group=iter++)!=NULL)
sl@0
   410
		group->GroupWin()->SetOrdinalPosition(1);
sl@0
   411
	}
sl@0
   412
sl@0
   413
void CScreenModeTimes::DoTimings()
sl@0
   414
	{
sl@0
   415
	//Timings 1 SCRDEV, DWsScreenDevice::CommandL, around call to SetScreenMode
sl@0
   416
	//Timings 2 GROUPWIN, CWsWindowGroup::SetScreenDeviceValidStates, around main body of function including calls to old way
sl@0
   417
	//Timings 3 CLIWIN, CWsTopClientWindow::SetScreenDeviceValidState, around call to ResetHiddenFlagAndAdjustRegions
sl@0
   418
	//Timings 3 GROUPWIN, CWsWindowGroup::SetScreenDeviceValidStates, around main body of function excluding calls to old way
sl@0
   419
	//Timings 4&5 CLIWIN, CWsClientWindow::ResetHiddenFlagAndAdjustRegions, going invisible and becomming visible sections
sl@0
   420
	Client()->iGroup->GroupWin()->SetOrdinalPosition(-2);
sl@0
   421
	Client()->Flush();
sl@0
   422
	TTime startTime;
sl@0
   423
	TTime middleTime;
sl@0
   424
	TTime endTime;
sl@0
   425
__PROFILE_START(0);
sl@0
   426
	startTime.HomeTime();
sl@0
   427
	BringToFront(iNormalGroupQue);
sl@0
   428
	Client()->iScreen->SetScreenMode(1);
sl@0
   429
	middleTime.HomeTime();
sl@0
   430
	BringToFront(iFlipGroupQue);
sl@0
   431
	Client()->iScreen->SetScreenMode(0);
sl@0
   432
	endTime.HomeTime();
sl@0
   433
__PROFILE_END(0);
sl@0
   434
#if defined(__PROFILING__)
sl@0
   435
	TProfile profile;
sl@0
   436
	RDebug::ProfileResult(&profile,3,1);
sl@0
   437
	if (profile.iCount>0)
sl@0
   438
		iDialogue->TimerResults(0);
sl@0
   439
#endif
sl@0
   440
	TTimeIntervalMicroSeconds time=middleTime.MicroSecondsFrom(startTime);
sl@0
   441
	iInfoWindow->SetTime1(time);
sl@0
   442
	time=endTime.MicroSecondsFrom(middleTime);
sl@0
   443
	iInfoWindow->SetTime2(time);
sl@0
   444
	Client()->iGroup->GroupWin()->SetOrdinalPosition(0);
sl@0
   445
#if defined(__PROFILING__)
sl@0
   446
	if (profile.iCount>0)
sl@0
   447
		iDialogue->Display();
sl@0
   448
#endif
sl@0
   449
	}
sl@0
   450
sl@0
   451
TestState CScreenModeTimes::DoTestL()
sl@0
   452
	{
sl@0
   453
	switch(iState)
sl@0
   454
		{
sl@0
   455
		case 0:
sl@0
   456
			LogSubTest(_L("Time ScreenMode Changes"),1);
sl@0
   457
			DoTimings();
sl@0
   458
			iState++;
sl@0
   459
			return EContinue;
sl@0
   460
		default:
sl@0
   461
			return EFinished;
sl@0
   462
		}
sl@0
   463
	}