First public contribution.
1 // Copyright (c) 2000-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Screen mode changing tests
19 #include <e32def_private.h>
21 #include "../tlib/testbase.h"
26 class CQBlankWindow : public CBlankWindow
29 static TInt iInitialColor;
31 //Virtual function from CTBaseWin
38 class CFixScreenModeGroup : public CTWindowGroup
41 static TInt iNoClientWins;
43 ~CFixScreenModeGroup();
44 CFixScreenModeGroup(CTClient *aClient);
49 TSglQue<CQBlankWindow> iWindows;
52 class CFlipClient : public CTClient
59 class CScreenModeTimes : public CTestBase
68 void CreateGroupL(CTClient* aClient,TSglQue<CFixScreenModeGroup>& aQue);
69 void DeleteGroups(TSglQue<CFixScreenModeGroup>& aQue);
70 void BringToFront(TSglQue<CFixScreenModeGroup>& aQue);
72 TScreenModeEnforcement iEnforcementMode;
73 CInfoDialog* iDialogue;
74 CTimeWindow* iInfoWindow;
75 CFlipClient* iFlipClient;
76 TSglQue<CFixScreenModeGroup> iNormalGroupQue;
77 TSglQue<CFixScreenModeGroup> iFlipGroupQue;
82 class CTimeWindow : public CTTitledWindow
85 void Construct(CTestBase* aTest);
86 void SetNumWindows(TInt aGroup,TInt aWin);
87 void SetTime1(TTimeIntervalMicroSeconds& aTime);
88 void SetTime2(TTimeIntervalMicroSeconds& aTime);
90 //virtual function from CTWinBase overridden by CTBaseWin
91 void WinKeyL(const TKeyEvent &aKey,const TTime &aTime);
92 //virtual functions from CTBaseWin
93 void SetUpL(TPoint pos,TSize size,CTWinBase *parent, CWindowGc &aGc);
94 void PointerL(const TPointerEvent &aPointer,const TTime &aTime);
95 //virtual function from CTBaseWin overridden by CTTitledWindow
98 inline CScreenModeTimes* Test() {return STATIC_CAST(CScreenModeTimes*,iTest);}
100 void UpdateString2();
101 void UpdateString3();
106 TTimeIntervalMicroSeconds iTime1;
107 TTimeIntervalMicroSeconds iTime2;
121 TSize CQBlankWindow::iSize;
122 TInt CQBlankWindow::iInitialColor;
123 TInt CFixScreenModeGroup::iNoClientWins=0;
126 GLDEF_C CTestBase *CreateScreenModeTimes()
128 return(new(ELeave) CScreenModeTimes());
136 void CFlipClient::ConstructL()
138 CTClient::ConstructL();
139 TPixelsAndRotation sizeAndRotation;
140 iScreen->GetScreenModeSizeAndRotation(1,sizeAndRotation);
141 iScreen->SetScreenSizeAndRotation(sizeAndRotation);
149 void CTimeWindow::Construct(CTestBase* aTest)
151 _LIT(Title,"StatusWindow");
152 _LIT(String4,"Click here to finish");
153 const TInt fontHeight=iFont->HeightInPixels();
155 TWindowTitle title(Title);
157 TInt yy=iTitleHeight+fontHeight+7;
158 iRect1.SetRect(3,iTitleHeight+5,iSize.iWidth-1,yy);
160 TInt yy1=yy+fontHeight+2;
161 iRect2.SetRect(3,yy+3,iSize.iWidth-1,yy1);
162 TInt yy2=yy1+iFont->HeightInPixels()+2;
163 iRect3.SetRect(3,yy1+3,iSize.iWidth-1,yy2);
165 iRect4.SetRect(3,yy2+3,iSize.iWidth-1,yy2+iFont->HeightInPixels()+2);
167 iString4.Copy(String4);
171 void CTimeWindow::SetUpL(TPoint aPos,TSize aSize,CTWinBase *aParent,CWindowGc &aGc)
173 CTTitledWindow::SetUpL(aPos,aSize,aParent,aGc);
176 void CTimeWindow::WinKeyL(const TKeyEvent &aKey,const TTime&)
187 void CTimeWindow::PointerL(const TPointerEvent &aPointer,const TTime &aTime)
189 if (iRect2.Contains(aPointer.iPosition) || iRect3.Contains(aPointer.iPosition))
191 if (aPointer.iType==TPointerEvent::EButton1Down)
194 else if (iRect4.Contains(aPointer.iPosition))
197 CTTitledWindow::PointerL(aPointer,aTime);
198 if ((iExit||iPressed) && aPointer.iType==TPointerEvent::EButton1Up)
210 void CTimeWindow::Draw()
212 CTTitledWindow::Draw();
213 TInt ascent=iFont->AscentInPixels()+1;
214 iGc->DrawText(iString1,iRect1,ascent,CGraphicsContext::ELeft);
215 iGc->DrawText(iString2,iRect2,ascent,CGraphicsContext::ELeft);
216 iGc->DrawText(iString3,iRect3,ascent,CGraphicsContext::ELeft);
217 iGc->DrawText(iString4,iRect4,ascent,CGraphicsContext::ELeft);
220 void CTimeWindow::DoDraw()
223 iGc->UseFont((CFont *)iFont);
228 void CTimeWindow::SetNumWindows(TInt aGroups,TInt aWins)
235 void CTimeWindow::UpdateString1()
237 _LIT(NumberWin,"Groups (2x)%d, Windows %d");
238 iString1.Format(NumberWin,iNumGroups,iNumWins);
241 void CTimeWindow::SetTime1(TTimeIntervalMicroSeconds& aTime)
247 void CTimeWindow::SetTime2(TTimeIntervalMicroSeconds& aTime)
253 _LIT(TimeFormat,"Time%d = %d.%04dsecs");
255 void CTimeWindow::UpdateString2()
257 TInt time = I64LOW(iTime1.Int64());
258 iString2.Format(TimeFormat,1,time/1000000,(time%1000000)/100);
261 void CTimeWindow::UpdateString3()
263 TInt time = I64LOW(iTime2.Int64());
264 iString3.Format(TimeFormat,2,time/1000000,(time%1000000)/100);
272 void CQBlankWindow::InitWin()
274 SetColor(TRgb::Gray4(iInitialColor));
280 // CFixScreenModeGroup
283 CFixScreenModeGroup::~CFixScreenModeGroup()
285 GroupWin()->EnableReceiptOfFocus(EFalse);
286 ClearCurrentWindow();
288 while (!iWindows.IsEmpty())
290 win=iWindows.First();
291 iWindows.Remove(*win);
296 CFixScreenModeGroup::CFixScreenModeGroup(CTClient *aClient) : CTWindowGroup(aClient), iWindows(_FOFF(CQBlankWindow,iLink))
299 void CFixScreenModeGroup::ConstructL()
301 CTWindowGroup::ConstructL();
304 for(ii=0;ii<iNoClientWins;++ii)
306 win=new(ELeave) CQBlankWindow();
307 CleanupStack::PushL(win);
308 win->ConstructL(*this);
310 win->AssignGC(*iClient->iGc);
311 iWindows.AddLast(*win);
312 CleanupStack::Pop(win);
315 SetCurrentWindow(iWindows.First());
318 /*void CFixScreenModeGroup::ScreenDeviceChanged()
320 iWindow->ScreenDeviceChanged();
328 _LIT(TestName,"Screen Mode Times");
329 CScreenModeTimes::CScreenModeTimes() : CTestBase(TestName)
330 ,iNormalGroupQue(_FOFF(CFixScreenModeGroup,iLink)),iFlipGroupQue(_FOFF(CFixScreenModeGroup,iLink))
333 CScreenModeTimes::~CScreenModeTimes()
335 Client()->iGroup->GroupWin()->EnableScreenChangeEvents();
336 Client()->iScreen->SetScreenMode(0);
337 DeleteGroups(iNormalGroupQue);
338 DeleteGroups(iFlipGroupQue);
339 Client()->iGroup->SetCurrentWindow(NULL);
342 if (iEnforcementMode==ESizeEnforcementNone)
343 Client()->iScreen->SetScreenModeEnforcement(ESizeEnforcementNone);
346 void CScreenModeTimes::ConstructL()
348 iEnforcementMode=Client()->iScreen->ScreenModeEnforcement();
349 if (iEnforcementMode==ESizeEnforcementNone)
350 Client()->iScreen->SetScreenModeEnforcement(ESizeEnforcementPixelsAndRotation);
351 iDialogue=new(ELeave) CInfoDialog(Client()->iGroup,Client()->iGc);
352 iDialogue->ConstructLD();
353 iFlipClient=new(ELeave) CFlipClient();
354 iFlipClient->ConstructL();
355 Client()->iGroup->GroupWin()->DisableScreenChangeEvents();
356 iNoGroupWins=12; //20;
357 CFixScreenModeGroup::iNoClientWins=20; //30;
358 TSize screenSize=Client()->iScreen->SizeInPixels();
359 CQBlankWindow::iSize.iWidth=Max(screenSize.iHeight,screenSize.iWidth);
360 CQBlankWindow::iSize.iHeight=CQBlankWindow::iSize.iWidth;
362 for(ii=0;ii<iNoGroupWins;++ii)
364 CQBlankWindow::iInitialColor=1;
365 CreateGroupL(Client(),iNormalGroupQue);
366 CQBlankWindow::iInitialColor=2;
367 CreateGroupL(iFlipClient,iFlipGroupQue);
369 Client()->iGroup->GroupWin()->SetOrdinalPosition(0);
370 iInfoWindow=new(ELeave) CTimeWindow();
371 iInfoWindow->SetUpL(TPoint(Max(Min(415,screenSize.iWidth-210),0),Min(50,screenSize.iHeight-180)),TSize(210,180),Client()->iGroup,*Client()->iGc);
372 Client()->iGroup->SetCurrentWindow(iInfoWindow);
373 iInfoWindow->Construct(this);
374 iInfoWindow->WinTreeNode()->SetOrdinalPosition(1);
375 iInfoWindow->SetNumWindows(iNoGroupWins,CFixScreenModeGroup::iNoClientWins);
377 Client()->iGroup->GroupWin()->DisableScreenChangeEvents();
378 Client()->iWs.SetAutoFlush(ETrue);
379 iFlipClient->iWs.SetAutoFlush(ETrue);
380 Client()->iWs.SetPointerCursorMode(EPointerCursorNone);
383 void CScreenModeTimes::CreateGroupL(CTClient *aClient,TSglQue<CFixScreenModeGroup>& aQue)
385 CFixScreenModeGroup* group;
386 group=new(ELeave) CFixScreenModeGroup(aClient);
387 CleanupStack::PushL(group);
389 aQue.AddLast(*group);
390 CleanupStack::Pop(group);
393 void CScreenModeTimes::DeleteGroups(TSglQue<CFixScreenModeGroup>& aQue)
395 CFixScreenModeGroup* group;
396 while (!aQue.IsEmpty())
404 void CScreenModeTimes::BringToFront(TSglQue<CFixScreenModeGroup>& aQue)
406 TSglQueIter<CFixScreenModeGroup> iter(aQue);
407 CFixScreenModeGroup* group=iter++;
408 group->GroupWin()->SetOrdinalPosition(0);
409 while ((group=iter++)!=NULL)
410 group->GroupWin()->SetOrdinalPosition(1);
413 void CScreenModeTimes::DoTimings()
415 //Timings 1 SCRDEV, DWsScreenDevice::CommandL, around call to SetScreenMode
416 //Timings 2 GROUPWIN, CWsWindowGroup::SetScreenDeviceValidStates, around main body of function including calls to old way
417 //Timings 3 CLIWIN, CWsTopClientWindow::SetScreenDeviceValidState, around call to ResetHiddenFlagAndAdjustRegions
418 //Timings 3 GROUPWIN, CWsWindowGroup::SetScreenDeviceValidStates, around main body of function excluding calls to old way
419 //Timings 4&5 CLIWIN, CWsClientWindow::ResetHiddenFlagAndAdjustRegions, going invisible and becomming visible sections
420 Client()->iGroup->GroupWin()->SetOrdinalPosition(-2);
426 startTime.HomeTime();
427 BringToFront(iNormalGroupQue);
428 Client()->iScreen->SetScreenMode(1);
429 middleTime.HomeTime();
430 BringToFront(iFlipGroupQue);
431 Client()->iScreen->SetScreenMode(0);
434 #if defined(__PROFILING__)
436 RDebug::ProfileResult(&profile,3,1);
437 if (profile.iCount>0)
438 iDialogue->TimerResults(0);
440 TTimeIntervalMicroSeconds time=middleTime.MicroSecondsFrom(startTime);
441 iInfoWindow->SetTime1(time);
442 time=endTime.MicroSecondsFrom(middleTime);
443 iInfoWindow->SetTime2(time);
444 Client()->iGroup->GroupWin()->SetOrdinalPosition(0);
445 #if defined(__PROFILING__)
446 if (profile.iCount>0)
447 iDialogue->Display();
451 TestState CScreenModeTimes::DoTestL()
456 LogSubTest(_L("Time ScreenMode Changes"),1);