Update contrib.
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
22 #include <iniparser.h>
23 #include "t_app1eng.h"
24 #include "t_inidata.h"
25 #include "t_wservconsts.h"
28 _LIT(KTApp1ScrMode, "KTApp1ScrMode%d");
29 _LIT(KTApp1Rotation, "KTApp1Rotation%d");
30 _LIT(KTApp1PanicTxt, "t_app1.exe");
35 CTApp1Eng::CTApp1Eng(RWsSession& aClient, CWsScreenDevice& aScreenDevice, RWindow& aWindow)
36 : CTimer(CActive::EPriorityLow),
39 iScreenDevice(aScreenDevice),
45 CTApp1Eng* CTApp1Eng::NewL(RWsSession& aClient, CWsScreenDevice& aScreenDevice, RWindow& aWindow)
47 CTApp1Eng* self = new (ELeave) CTApp1Eng(aClient, aScreenDevice, aWindow);
48 CleanupStack::PushL(self);
50 CleanupStack::Pop(); // self;
54 CTApp1Eng::~CTApp1Eng()
61 iRotationList.Close();
66 void CTApp1Eng::ConstructL()
69 User::LeaveIfError(iScreenDevice.CreateContext(iGc));
71 HBufC* rotFlag = NULL;
72 READ_STR(KTApp1RotationFlag, KWServTApp1ConfigFile, rotFlag);
74 // check to see if instead of the default behaviour of drawing to
75 // window with alternate frames of red/blue, that the app is to
76 // periodically cause the screen to rotate, which is all defined
77 // in the configuration file created by the test step
78 if (rotFlag!=NULL && rotFlag->Des().Compare(_L("ETrue")) == KErrNone)
83 // setup rotation and screen mode lists
87 CIniData * iniData = CIniData::NewL(KWServTApp1ConfigFile);
88 CleanupStack::PushL(iniData);
90 // read in rotations to be performed
94 tempStore.Format(KTApp1ScrMode, ++index);
95 moreData = iniData->FindVar(KDefaultSectionName, tempStore, scrMode);
99 tempStore.Format(KTApp1Rotation, index);
100 moreData = iniData->FindVar(KDefaultSectionName, tempStore, rotation);
103 RDebug::Print(_L("CTApp1Eng::ConstructL - Screen Mode: %d, Rotation: %d"),scrMode,rotation);
104 iRotationList.AppendL(rotation);
105 iScrModeList.AppendL(scrMode);
109 User::Panic(KTApp1PanicTxt(), KErrNotFound);
118 CleanupStack::PopAndDestroy(iniData);
120 // setup the number of frames to be counted between each
123 READ_INT(KTApp1Iterations, KWServTApp1ConfigFile, iters);
124 iRotationTimer = iters/(iRotationList.Count()+1);
125 RDebug::Print(_L("CTApp1Eng::ConstructL - Rotation Timer: %d"), iRotationTimer);
127 if (iRotationList.Count()==0)
129 User::Panic(KTApp1PanicTxt(), KErrNotFound);
132 User::LeaveIfError(iSemaphore.OpenGlobal(KWservDsaSemaphoreName));
134 CActiveScheduler::Add(this);
137 void CTApp1Eng::StartDrawing()
141 User::Panic(KTApp1PanicTxt(), TApp1EngAlreadyStarted);
146 After(TTimeIntervalMicroSeconds32(0));
149 void CTApp1Eng::StopDrawing()
153 User::Panic(KTApp1PanicTxt(), TApp1EngAlreadyStopped);
156 // Cancel timer and display
163 void CTApp1Eng::RunL()
169 RDebug::Print(_L("CTApp1Eng::RunL - Rotation Flag: %d"), iRotationFlag);
172 // just draw to window, with alternate frames of red and blue
173 if (iRotationFlag==EFalse)
175 iGc->Activate(iWindow);
176 TRect myRect(iWindow.Size());
185 iGc->SetBrushColor(color);
186 iWindow.SetBackgroundColor(color);
187 iGc->SetPenColor(color);
188 iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
189 iGc->DrawRect(myRect);
193 iWindow.Invalidate();
195 // else rotate screen
198 if (iFrameCount==iRotationTimer)
203 if (iRotationCount<iRotationList.Count())
205 TInt rotation = iRotationList[iRotationCount];
206 TInt scrMode = iScrModeList[iRotationCount];
212 iScreenDevice.SetCurrentRotations(scrMode,CFbsBitGc::EGraphicsOrientationNormal);
217 iScreenDevice.SetCurrentRotations(scrMode,CFbsBitGc::EGraphicsOrientationRotated90);
218 iScreenDevice.SetScreenMode(scrMode);
223 iScreenDevice.SetCurrentRotations(scrMode,CFbsBitGc::EGraphicsOrientationRotated180);
228 iScreenDevice.SetCurrentRotations(scrMode,CFbsBitGc::EGraphicsOrientationRotated270);
233 RDebug::Print(_L("CTApp1Eng::RunL - Invalid Rotation: %d"),rotation);
234 User::Leave(KErrAbort);
238 RDebug::Print(_L("CTApp1Eng::RunL - Screen Mode: %d, Rotation: %d"),scrMode, rotation);
239 iScreenDevice.SetScreenMode(scrMode);
245 After(TTimeIntervalMicroSeconds32(0));
249 // Timer's DoCancel()
250 void CTApp1Eng::DoCancel()