sl@0
|
1 |
// Copyright (c) 1995-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 |
// Functions to act as bench marks for various window server features
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include "TTIME.H"
|
sl@0
|
19 |
#include <e32svr.h>
|
sl@0
|
20 |
#include <e32def_private.h>
|
sl@0
|
21 |
typedef TBuf<32> TestNameBuf;
|
sl@0
|
22 |
|
sl@0
|
23 |
LOCAL_D const TUint KHeapSize=0x10000;
|
sl@0
|
24 |
|
sl@0
|
25 |
class CTimeClient;
|
sl@0
|
26 |
|
sl@0
|
27 |
class CResultDialog : public CTDialog
|
sl@0
|
28 |
{
|
sl@0
|
29 |
public:
|
sl@0
|
30 |
CResultDialog(CTWindowGroup *aGroupWin,CWindowGc *aGc);
|
sl@0
|
31 |
void ButtonPressL(TInt aButton);
|
sl@0
|
32 |
void ConstructLD();
|
sl@0
|
33 |
private:
|
sl@0
|
34 |
CTWindowGroup *iGroupWin;
|
sl@0
|
35 |
CWindowGc *iGc;
|
sl@0
|
36 |
};
|
sl@0
|
37 |
|
sl@0
|
38 |
class CListWindow : public CTTitledWindow
|
sl@0
|
39 |
{
|
sl@0
|
40 |
public:
|
sl@0
|
41 |
CListWindow();
|
sl@0
|
42 |
void CloseWindow();
|
sl@0
|
43 |
void ConstructL(CTWinBase &parent, TBool aExitOnEscape);
|
sl@0
|
44 |
void Draw();
|
sl@0
|
45 |
virtual void SelectedL(TInt aIndex)=0;
|
sl@0
|
46 |
virtual void WinKeyL(const TKeyEvent &aKey,const TTime& aTime);
|
sl@0
|
47 |
void SetExt(const TPoint &aPos, const TSize &aSize);
|
sl@0
|
48 |
void SetSize(const TSize &);
|
sl@0
|
49 |
protected:
|
sl@0
|
50 |
virtual TPtrC GetText(TInt aLine)=0;
|
sl@0
|
51 |
virtual TInt ListCount()=0;
|
sl@0
|
52 |
void SetSize();
|
sl@0
|
53 |
private:
|
sl@0
|
54 |
void Resized(const TSize &aSize);
|
sl@0
|
55 |
void SetListPos(TInt aNewPos);
|
sl@0
|
56 |
TInt TextRowHeight() const;
|
sl@0
|
57 |
void RowBox(TRect &aRect, TInt aRow) const;
|
sl@0
|
58 |
void PointerL(const TPointerEvent &aPointer,const TTime& aTime);
|
sl@0
|
59 |
private:
|
sl@0
|
60 |
TInt iListPos;
|
sl@0
|
61 |
TTime iPrevTime;
|
sl@0
|
62 |
TBool iExitOnEscape;
|
sl@0
|
63 |
};
|
sl@0
|
64 |
|
sl@0
|
65 |
class CTestList : public CListWindow
|
sl@0
|
66 |
{
|
sl@0
|
67 |
public:
|
sl@0
|
68 |
CTestList();
|
sl@0
|
69 |
~CTestList();
|
sl@0
|
70 |
void ConstructL(CTWinBase &parent);
|
sl@0
|
71 |
static void AppendProfileNum(TDes &aDes, TInt aNum);
|
sl@0
|
72 |
static void AppendProfileCount(TDes &aDes, TInt aNum);
|
sl@0
|
73 |
void SelectedL(TInt aIndex);
|
sl@0
|
74 |
virtual void WinKeyL(const TKeyEvent &aKey,const TTime& aTime);
|
sl@0
|
75 |
void ForegroundAppDialog();
|
sl@0
|
76 |
void AppendToListL(const TDesC &aDesc);
|
sl@0
|
77 |
private:
|
sl@0
|
78 |
virtual TPtrC GetText(TInt aLine);
|
sl@0
|
79 |
virtual TInt ListCount();
|
sl@0
|
80 |
private:
|
sl@0
|
81 |
TInt iCount;
|
sl@0
|
82 |
CArrayFixSeg<TestNameBuf> iTestNames;
|
sl@0
|
83 |
RThread iTimeTest;
|
sl@0
|
84 |
};
|
sl@0
|
85 |
|
sl@0
|
86 |
class CTimeTestWindowGroup : public CTWindowGroup
|
sl@0
|
87 |
{
|
sl@0
|
88 |
public:
|
sl@0
|
89 |
CTimeTestWindowGroup(CTClient *aClient);
|
sl@0
|
90 |
void KeyL(const TKeyEvent &aKey,const TTime &aTime);
|
sl@0
|
91 |
};
|
sl@0
|
92 |
|
sl@0
|
93 |
class CTimeClient : public CTClient
|
sl@0
|
94 |
{
|
sl@0
|
95 |
public:
|
sl@0
|
96 |
CTimeClient();
|
sl@0
|
97 |
void ConstructL();
|
sl@0
|
98 |
void KeyL(const TKeyEvent &aKey,const TTime &aTime);
|
sl@0
|
99 |
void Exit();
|
sl@0
|
100 |
CTWin *CreateTestWindowL(TPoint pos,CTWinBase *parent);
|
sl@0
|
101 |
private:
|
sl@0
|
102 |
TInt iNum;
|
sl@0
|
103 |
};
|
sl@0
|
104 |
|
sl@0
|
105 |
const TInt Xmove=8;
|
sl@0
|
106 |
const TInt Ymove=6;
|
sl@0
|
107 |
|
sl@0
|
108 |
GLREF_D TTimeTestHeader MovingWindowTest1;
|
sl@0
|
109 |
GLREF_D TTimeTestHeader MovingWindowTest2;
|
sl@0
|
110 |
GLREF_D TTimeTestHeader StackedWindowCreate;
|
sl@0
|
111 |
GLREF_D TTimeTestHeader WindowCreateDestroy;
|
sl@0
|
112 |
GLREF_D TTimeTestHeader LoadsaText;
|
sl@0
|
113 |
GLREF_D TTimeTestHeader DrawBitmapTest;
|
sl@0
|
114 |
GLREF_D TTimeTestHeader XorIngTest;
|
sl@0
|
115 |
GLREF_D TTimeTestHeader SmallClearTest;
|
sl@0
|
116 |
GLREF_D TTimeTestHeader RectCompareTest;
|
sl@0
|
117 |
GLREF_D TTimeTestHeader SimpleFlushTest;
|
sl@0
|
118 |
GLREF_D TTimeTestHeader SimpleFlushTest2;
|
sl@0
|
119 |
GLREF_D TTimeTestHeader UseFontTest;
|
sl@0
|
120 |
GLREF_D TTimeTestHeader BitBltTest;
|
sl@0
|
121 |
GLREF_D TTimeTestHeader FullScreenBitBltTest;
|
sl@0
|
122 |
GLREF_D TTimeTestHeader MaskedBitBltTest;
|
sl@0
|
123 |
GLREF_D TTimeTestHeader SpriteTest;
|
sl@0
|
124 |
GLREF_D TTimeTestHeader BitmapDeviceTest1;
|
sl@0
|
125 |
GLREF_D TTimeTestHeader BitmapDeviceTest2;
|
sl@0
|
126 |
GLREF_D TTimeTestHeader FillPatternTest;
|
sl@0
|
127 |
GLREF_D TTimeTestHeader BitmapLoadTest;
|
sl@0
|
128 |
GLREF_D TTimeTestHeader WsBitmapLoadTest;
|
sl@0
|
129 |
GLREF_D TTimeTestHeader RomFileTest;
|
sl@0
|
130 |
GLREF_D TTimeTestHeader TrivialFunctionsTest;
|
sl@0
|
131 |
GLREF_D TTimeTestHeader BackupWindowDrawingCreate1;
|
sl@0
|
132 |
GLREF_D TTimeTestHeader BackupWindowDrawingCreate2;
|
sl@0
|
133 |
GLREF_D TTimeTestHeader MenuEmulationCreate;
|
sl@0
|
134 |
GLREF_D TTimeTestHeader MenuEmulationCreate2;
|
sl@0
|
135 |
|
sl@0
|
136 |
TTimeTestHeader *tests[]={
|
sl@0
|
137 |
&MenuEmulationCreate,
|
sl@0
|
138 |
&MenuEmulationCreate2,
|
sl@0
|
139 |
&BitmapLoadTest,
|
sl@0
|
140 |
&WsBitmapLoadTest,
|
sl@0
|
141 |
&RomFileTest,
|
sl@0
|
142 |
&TrivialFunctionsTest,
|
sl@0
|
143 |
&BackupWindowDrawingCreate1,
|
sl@0
|
144 |
&BackupWindowDrawingCreate2,
|
sl@0
|
145 |
&MovingWindowTest1,
|
sl@0
|
146 |
&MovingWindowTest2,
|
sl@0
|
147 |
&StackedWindowCreate,
|
sl@0
|
148 |
// &WindowCreateDestroy,
|
sl@0
|
149 |
&LoadsaText,
|
sl@0
|
150 |
&DrawBitmapTest,
|
sl@0
|
151 |
// &BitmapDeviceTest1,
|
sl@0
|
152 |
// &BitmapDeviceTest2,
|
sl@0
|
153 |
// &XorIngTest, List getting too big
|
sl@0
|
154 |
// &SmallClearTest, List getting too big
|
sl@0
|
155 |
// &RectCompareTest,
|
sl@0
|
156 |
&SpriteTest,
|
sl@0
|
157 |
// &SimpleFlushTest,
|
sl@0
|
158 |
// &SimpleFlushTest2,
|
sl@0
|
159 |
// &UseFontTest,
|
sl@0
|
160 |
&BitBltTest,
|
sl@0
|
161 |
// &FullScreenBitBltTest,
|
sl@0
|
162 |
&MaskedBitBltTest,
|
sl@0
|
163 |
// &FillPatternTest,
|
sl@0
|
164 |
};
|
sl@0
|
165 |
|
sl@0
|
166 |
void Panic(TInt aPanic)
|
sl@0
|
167 |
{
|
sl@0
|
168 |
User::Panic(_L("TimeTest"),aPanic);
|
sl@0
|
169 |
}
|
sl@0
|
170 |
|
sl@0
|
171 |
struct TThreadParams
|
sl@0
|
172 |
{
|
sl@0
|
173 |
TInt iIndex;
|
sl@0
|
174 |
TInt iGroupId;
|
sl@0
|
175 |
};
|
sl@0
|
176 |
|
sl@0
|
177 |
TInt TimeThread(TAny *aParams)
|
sl@0
|
178 |
{
|
sl@0
|
179 |
CTrapCleanup* CleanUpStack=CTrapCleanup::New();
|
sl@0
|
180 |
//__PROFILE_START(0)
|
sl@0
|
181 |
TInt ret=tests[((TThreadParams *)aParams)->iIndex]->function(((TThreadParams *)aParams)->iGroupId);
|
sl@0
|
182 |
//__PROFILE_END(0)
|
sl@0
|
183 |
delete CleanUpStack;
|
sl@0
|
184 |
return ret;
|
sl@0
|
185 |
}
|
sl@0
|
186 |
|
sl@0
|
187 |
//
|
sl@0
|
188 |
// List Window //
|
sl@0
|
189 |
//
|
sl@0
|
190 |
|
sl@0
|
191 |
CListWindow::CListWindow() : CTTitledWindow(), iPrevTime(0)
|
sl@0
|
192 |
{
|
sl@0
|
193 |
}
|
sl@0
|
194 |
|
sl@0
|
195 |
void CListWindow::CloseWindow()
|
sl@0
|
196 |
{
|
sl@0
|
197 |
CTClient *client=((CTimeClient *)Client());
|
sl@0
|
198 |
delete this;
|
sl@0
|
199 |
client->ResetFocus();
|
sl@0
|
200 |
}
|
sl@0
|
201 |
|
sl@0
|
202 |
void CListWindow::SetExt(const TPoint &aPos, const TSize &)
|
sl@0
|
203 |
{
|
sl@0
|
204 |
SetPos(aPos);
|
sl@0
|
205 |
}
|
sl@0
|
206 |
|
sl@0
|
207 |
void CListWindow::SetSize(const TSize &)
|
sl@0
|
208 |
{
|
sl@0
|
209 |
}
|
sl@0
|
210 |
|
sl@0
|
211 |
void CListWindow::SetSize()
|
sl@0
|
212 |
{
|
sl@0
|
213 |
iSize.iHeight=ListCount()*(iFont->HeightInPixels()+1)+iTitleHeight+2;
|
sl@0
|
214 |
iSize.iWidth=iFont->TextWidthInPixels(*Client()->Title())+30;
|
sl@0
|
215 |
for(TInt index=0;index<ListCount();index++)
|
sl@0
|
216 |
{
|
sl@0
|
217 |
TInt wid=iFont->TextWidthInPixels(GetText(index));
|
sl@0
|
218 |
if (wid>iSize.iWidth)
|
sl@0
|
219 |
iSize.iWidth=wid;
|
sl@0
|
220 |
}
|
sl@0
|
221 |
iSize.iWidth+=4;
|
sl@0
|
222 |
iWin.SetSize(iSize);
|
sl@0
|
223 |
Resized(iSize);
|
sl@0
|
224 |
}
|
sl@0
|
225 |
|
sl@0
|
226 |
void CListWindow::ConstructL(CTWinBase &parent, TBool aExitOnEscape)
|
sl@0
|
227 |
{
|
sl@0
|
228 |
iExitOnEscape=aExitOnEscape;
|
sl@0
|
229 |
CTTitledWindow::ConstructL(parent);
|
sl@0
|
230 |
}
|
sl@0
|
231 |
|
sl@0
|
232 |
void CListWindow::SetListPos(TInt aNewPos)
|
sl@0
|
233 |
{
|
sl@0
|
234 |
if (aNewPos>=0 && aNewPos<ListCount())
|
sl@0
|
235 |
{
|
sl@0
|
236 |
iListPos=aNewPos;
|
sl@0
|
237 |
Invalidate();
|
sl@0
|
238 |
}
|
sl@0
|
239 |
}
|
sl@0
|
240 |
|
sl@0
|
241 |
void CListWindow::WinKeyL(const TKeyEvent &aKey, const TTime&)
|
sl@0
|
242 |
{
|
sl@0
|
243 |
switch(aKey.iCode)
|
sl@0
|
244 |
{
|
sl@0
|
245 |
case EKeyUpArrow:
|
sl@0
|
246 |
SetListPos(iListPos-1);
|
sl@0
|
247 |
break;
|
sl@0
|
248 |
case EKeyDownArrow:
|
sl@0
|
249 |
SetListPos(iListPos+1);
|
sl@0
|
250 |
break;
|
sl@0
|
251 |
case EKeyEnter:
|
sl@0
|
252 |
SelectedL(iListPos);
|
sl@0
|
253 |
break;
|
sl@0
|
254 |
case EKeyEscape: // Fall through from EKeyEnter
|
sl@0
|
255 |
if (iExitOnEscape)
|
sl@0
|
256 |
CloseWindow();
|
sl@0
|
257 |
break;
|
sl@0
|
258 |
}
|
sl@0
|
259 |
}
|
sl@0
|
260 |
|
sl@0
|
261 |
void CListWindow::PointerL(const TPointerEvent &aPointer,const TTime& aTime)
|
sl@0
|
262 |
{
|
sl@0
|
263 |
if (aPointer.iType==TPointerEvent::EButton1Down)
|
sl@0
|
264 |
{
|
sl@0
|
265 |
TRect rect;
|
sl@0
|
266 |
for(TInt index=0;index<ListCount();index++)
|
sl@0
|
267 |
{
|
sl@0
|
268 |
RowBox(rect,index);
|
sl@0
|
269 |
if (rect.Contains(aPointer.iPosition))
|
sl@0
|
270 |
{
|
sl@0
|
271 |
if (index==iListPos && aPointer.iModifiers&EModifierDoubleClick)
|
sl@0
|
272 |
SelectedL(iListPos);
|
sl@0
|
273 |
else
|
sl@0
|
274 |
{
|
sl@0
|
275 |
iPrevTime=aTime;
|
sl@0
|
276 |
SetListPos(index);
|
sl@0
|
277 |
}
|
sl@0
|
278 |
return;
|
sl@0
|
279 |
}
|
sl@0
|
280 |
}
|
sl@0
|
281 |
}
|
sl@0
|
282 |
CTTitledWindow::PointerL(aPointer,aTime);
|
sl@0
|
283 |
}
|
sl@0
|
284 |
|
sl@0
|
285 |
TInt CListWindow::TextRowHeight() const
|
sl@0
|
286 |
{
|
sl@0
|
287 |
return(iFont->HeightInPixels()+1);
|
sl@0
|
288 |
}
|
sl@0
|
289 |
|
sl@0
|
290 |
void CListWindow::RowBox(TRect &aRect, TInt aRow) const
|
sl@0
|
291 |
{
|
sl@0
|
292 |
aRect.iTl.iX=2;
|
sl@0
|
293 |
aRect.iTl.iY=iTitleHeight+TextRowHeight()*aRow;
|
sl@0
|
294 |
aRect.iBr.iX=iSize.iWidth-2;
|
sl@0
|
295 |
aRect.iBr.iY=aRect.iTl.iY+TextRowHeight();
|
sl@0
|
296 |
}
|
sl@0
|
297 |
|
sl@0
|
298 |
void CListWindow::Draw()
|
sl@0
|
299 |
{
|
sl@0
|
300 |
CTTitledWindow::Draw();
|
sl@0
|
301 |
iGc->SetPenColor(TRgb::Gray16(0));
|
sl@0
|
302 |
TPoint pos(2,iTitleHeight+iFont->AscentInPixels()+2);
|
sl@0
|
303 |
TInt gap=TextRowHeight();
|
sl@0
|
304 |
for(TInt index=0;index<ListCount();index++,pos.iY+=gap)
|
sl@0
|
305 |
{
|
sl@0
|
306 |
iGc->DrawText(GetText(index), pos);
|
sl@0
|
307 |
if (index==iListPos)
|
sl@0
|
308 |
{
|
sl@0
|
309 |
iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
|
sl@0
|
310 |
iGc->SetBrushColor(TRgb::Gray256(255));
|
sl@0
|
311 |
iGc->SetPenStyle(CGraphicsContext::ENullPen);
|
sl@0
|
312 |
iGc->SetDrawMode(CGraphicsContext::EDrawModeXOR);
|
sl@0
|
313 |
TRect rect;
|
sl@0
|
314 |
RowBox(rect,index);
|
sl@0
|
315 |
iGc->DrawRect(rect);
|
sl@0
|
316 |
iGc->SetBrushStyle(CGraphicsContext::ENullBrush);
|
sl@0
|
317 |
iGc->SetPenStyle(CGraphicsContext::ESolidPen);
|
sl@0
|
318 |
iGc->SetDrawMode(CGraphicsContext::EDrawModePEN);
|
sl@0
|
319 |
}
|
sl@0
|
320 |
}
|
sl@0
|
321 |
}
|
sl@0
|
322 |
|
sl@0
|
323 |
void CListWindow::Resized(const TSize &aSize)
|
sl@0
|
324 |
{
|
sl@0
|
325 |
SetDragRect(TRect(0,0,aSize.iWidth,iTitleHeight));
|
sl@0
|
326 |
}
|
sl@0
|
327 |
|
sl@0
|
328 |
//
|
sl@0
|
329 |
// Test list window
|
sl@0
|
330 |
//
|
sl@0
|
331 |
|
sl@0
|
332 |
CTestList::CTestList() : CListWindow(), iTestNames(4)
|
sl@0
|
333 |
{
|
sl@0
|
334 |
}
|
sl@0
|
335 |
|
sl@0
|
336 |
CTestList::~CTestList()
|
sl@0
|
337 |
{
|
sl@0
|
338 |
}
|
sl@0
|
339 |
|
sl@0
|
340 |
void CTestList::ConstructL(CTWinBase &parent)
|
sl@0
|
341 |
{
|
sl@0
|
342 |
CListWindow::ConstructL(parent, EFalse);
|
sl@0
|
343 |
for(TUint index=0;index<(sizeof(tests)/sizeof(tests[0]));index++)
|
sl@0
|
344 |
AppendToListL(TPtrC(tests[index]->title));
|
sl@0
|
345 |
SetSize();
|
sl@0
|
346 |
/*for(TUint index1=0;index1<(sizeof(tests)/sizeof(tests[0]));index1++)
|
sl@0
|
347 |
Selected(index1);*/
|
sl@0
|
348 |
}
|
sl@0
|
349 |
|
sl@0
|
350 |
void CTestList::AppendProfileNum(TDes &aDes, TInt aNum)
|
sl@0
|
351 |
{
|
sl@0
|
352 |
aDes.AppendFormat(_L("%d.%02d, "),aNum/1000000,(aNum%1000000)/10000);
|
sl@0
|
353 |
}
|
sl@0
|
354 |
|
sl@0
|
355 |
void CTestList::AppendProfileCount(TDes &aDes, TInt aNum)
|
sl@0
|
356 |
{
|
sl@0
|
357 |
aDes.AppendFormat(_L("%d, "),aNum);
|
sl@0
|
358 |
}
|
sl@0
|
359 |
|
sl@0
|
360 |
#define USE_PROCESS 1
|
sl@0
|
361 |
|
sl@0
|
362 |
void CTestList::SelectedL(TInt aIndex)
|
sl@0
|
363 |
{
|
sl@0
|
364 |
#if USE_PROCESS
|
sl@0
|
365 |
TThreadParams params;
|
sl@0
|
366 |
params.iIndex=aIndex;
|
sl@0
|
367 |
TName name;
|
sl@0
|
368 |
name.Format(_L("TimeTest-%x"),iCount++);
|
sl@0
|
369 |
params.iGroupId=Client()->iGroup->GroupWin()->Identifier();
|
sl@0
|
370 |
User::LeaveIfError(iTimeTest.Create(name,TimeThread,KDefaultStackSize*2,KHeapSize,KHeapSize,¶ms,EOwnerThread));
|
sl@0
|
371 |
TRequestStatus status;
|
sl@0
|
372 |
iTimeTest.Logon(status);
|
sl@0
|
373 |
__PROFILE_RESET(8);
|
sl@0
|
374 |
iTimeTest.Resume();
|
sl@0
|
375 |
User::WaitForRequest(status);
|
sl@0
|
376 |
#else
|
sl@0
|
377 |
TThreadParams params;
|
sl@0
|
378 |
params.iIndex=aIndex;
|
sl@0
|
379 |
TimeThread(¶ms);
|
sl@0
|
380 |
#endif
|
sl@0
|
381 |
TBuf<64> buf;
|
sl@0
|
382 |
TBuf<64> buf2;
|
sl@0
|
383 |
TBuf<64> buf3;
|
sl@0
|
384 |
CResultDialog *dialog=new(ELeave) CResultDialog(Client()->iGroup, iGc);
|
sl@0
|
385 |
dialog->ConstructLD();
|
sl@0
|
386 |
#if USE_PROCESS
|
sl@0
|
387 |
if (status.Int()==KErrNone)
|
sl@0
|
388 |
{
|
sl@0
|
389 |
#endif
|
sl@0
|
390 |
#if !defined(__PROFILING__)
|
sl@0
|
391 |
buf=_L("Profiling information not available");
|
sl@0
|
392 |
#else
|
sl@0
|
393 |
TProfile profile[6];
|
sl@0
|
394 |
__PROFILE_DISPLAY(6);
|
sl@0
|
395 |
for (TInt index=1;index<6;index++)
|
sl@0
|
396 |
AppendProfileNum(buf2,profile[index].iTime);
|
sl@0
|
397 |
for (TInt index2=1;index2<6;index2++)
|
sl@0
|
398 |
AppendProfileCount(buf3,profile[index2].iCount);
|
sl@0
|
399 |
buf.Format(_L("Time=%d.%2d"),profile[0].iTime/1000000,(profile[0].iTime%1000000)/10000);
|
sl@0
|
400 |
#endif
|
sl@0
|
401 |
dialog->SetTitle(buf);
|
sl@0
|
402 |
#if USE_PROCESS
|
sl@0
|
403 |
}
|
sl@0
|
404 |
else
|
sl@0
|
405 |
{
|
sl@0
|
406 |
dialog->SetTitle(_L("Error in test"));
|
sl@0
|
407 |
buf.Format(_L("Error=%d"),status.Int());
|
sl@0
|
408 |
buf2=iTimeTest.ExitCategory();
|
sl@0
|
409 |
}
|
sl@0
|
410 |
#endif
|
sl@0
|
411 |
dialog->SetLine1(buf2);
|
sl@0
|
412 |
dialog->SetLine2(buf3);
|
sl@0
|
413 |
dialog->SetNumButtons(1);
|
sl@0
|
414 |
dialog->SetButtonText(0,_L("Okay"));
|
sl@0
|
415 |
if (dialog->Display()!=0)
|
sl@0
|
416 |
Panic(0);
|
sl@0
|
417 |
}
|
sl@0
|
418 |
|
sl@0
|
419 |
TPtrC CTestList::GetText(TInt aLine)
|
sl@0
|
420 |
{
|
sl@0
|
421 |
return(TPtrC(iTestNames[aLine]));
|
sl@0
|
422 |
}
|
sl@0
|
423 |
|
sl@0
|
424 |
TInt CTestList::ListCount()
|
sl@0
|
425 |
{
|
sl@0
|
426 |
return(iTestNames.Count());
|
sl@0
|
427 |
}
|
sl@0
|
428 |
|
sl@0
|
429 |
void CTestList::WinKeyL(const TKeyEvent &aKey,const TTime& aTime)
|
sl@0
|
430 |
{
|
sl@0
|
431 |
if (aKey.iModifiers&EModifierFunc)
|
sl@0
|
432 |
{
|
sl@0
|
433 |
switch(aKey.iCode)
|
sl@0
|
434 |
{
|
sl@0
|
435 |
case EKeyLeftArrow:
|
sl@0
|
436 |
AdjustSize(-Xmove,0,aKey.iModifiers);
|
sl@0
|
437 |
break;
|
sl@0
|
438 |
case EKeyRightArrow:
|
sl@0
|
439 |
AdjustSize(Xmove,0,aKey.iModifiers);
|
sl@0
|
440 |
break;
|
sl@0
|
441 |
case EKeyUpArrow:
|
sl@0
|
442 |
AdjustSize(0,-Ymove,aKey.iModifiers);
|
sl@0
|
443 |
break;
|
sl@0
|
444 |
case EKeyDownArrow:
|
sl@0
|
445 |
AdjustSize(0,Ymove,aKey.iModifiers);
|
sl@0
|
446 |
break;
|
sl@0
|
447 |
default:
|
sl@0
|
448 |
goto not_used;
|
sl@0
|
449 |
}
|
sl@0
|
450 |
}
|
sl@0
|
451 |
else
|
sl@0
|
452 |
goto not_used;
|
sl@0
|
453 |
return;
|
sl@0
|
454 |
not_used:
|
sl@0
|
455 |
CListWindow::WinKeyL(aKey,aTime);
|
sl@0
|
456 |
}
|
sl@0
|
457 |
|
sl@0
|
458 |
void CTestList::AppendToListL(const TDesC &aDesc)
|
sl@0
|
459 |
{
|
sl@0
|
460 |
TestNameBuf buf(aDesc);
|
sl@0
|
461 |
iTestNames.AppendL(buf);
|
sl@0
|
462 |
}
|
sl@0
|
463 |
|
sl@0
|
464 |
//
|
sl@0
|
465 |
|
sl@0
|
466 |
CResultDialog::CResultDialog(CTWindowGroup *aGroupWin,CWindowGc *aGc) : CTDialog(),
|
sl@0
|
467 |
iGroupWin(aGroupWin),
|
sl@0
|
468 |
iGc(aGc)
|
sl@0
|
469 |
{
|
sl@0
|
470 |
}
|
sl@0
|
471 |
|
sl@0
|
472 |
void CResultDialog::ButtonPressL(TInt aButton)
|
sl@0
|
473 |
{
|
sl@0
|
474 |
if (aButton==0)
|
sl@0
|
475 |
CTDialog::ButtonPressL(aButton);
|
sl@0
|
476 |
}
|
sl@0
|
477 |
|
sl@0
|
478 |
void CResultDialog::ConstructLD()
|
sl@0
|
479 |
{
|
sl@0
|
480 |
CTDialog::ConstructLD(*iGroupWin, *iGc);
|
sl@0
|
481 |
}
|
sl@0
|
482 |
|
sl@0
|
483 |
//
|
sl@0
|
484 |
// CTimeTestWindowGroup class //
|
sl@0
|
485 |
//
|
sl@0
|
486 |
|
sl@0
|
487 |
CTimeTestWindowGroup::CTimeTestWindowGroup(CTClient *aClient) : CTWindowGroup(aClient)
|
sl@0
|
488 |
{
|
sl@0
|
489 |
}
|
sl@0
|
490 |
|
sl@0
|
491 |
void CTimeTestWindowGroup::KeyL(const TKeyEvent &aKey,const TTime &aTime)
|
sl@0
|
492 |
{
|
sl@0
|
493 |
if (aKey.iModifiers&EModifierFunc)
|
sl@0
|
494 |
{
|
sl@0
|
495 |
switch(aKey.iCode)
|
sl@0
|
496 |
{
|
sl@0
|
497 |
case 'x':
|
sl@0
|
498 |
((CTimeClient *)Client())->Exit();
|
sl@0
|
499 |
break;
|
sl@0
|
500 |
}
|
sl@0
|
501 |
}
|
sl@0
|
502 |
else
|
sl@0
|
503 |
iCurWin->WinKeyL(aKey,aTime);
|
sl@0
|
504 |
}
|
sl@0
|
505 |
|
sl@0
|
506 |
//
|
sl@0
|
507 |
|
sl@0
|
508 |
CTimeClient::CTimeClient()
|
sl@0
|
509 |
{
|
sl@0
|
510 |
}
|
sl@0
|
511 |
|
sl@0
|
512 |
CTWin *CTimeClient::CreateTestWindowL(TPoint pos,CTWinBase *parent)
|
sl@0
|
513 |
{
|
sl@0
|
514 |
CTWin *win=new(ELeave) CTestList();
|
sl@0
|
515 |
TRAPD(err,win->ConstructL(*parent));
|
sl@0
|
516 |
if (err!=KErrNone)
|
sl@0
|
517 |
goto ctw_err;
|
sl@0
|
518 |
TRAP(err,win->SetPos(pos));
|
sl@0
|
519 |
if (err!=KErrNone)
|
sl@0
|
520 |
{
|
sl@0
|
521 |
ctw_err:
|
sl@0
|
522 |
delete win;
|
sl@0
|
523 |
User::Leave(err);
|
sl@0
|
524 |
}
|
sl@0
|
525 |
win->Activate();
|
sl@0
|
526 |
win->AssignGC(*iGc);
|
sl@0
|
527 |
return(win);
|
sl@0
|
528 |
}
|
sl@0
|
529 |
|
sl@0
|
530 |
void CTimeClient::ConstructL()
|
sl@0
|
531 |
{
|
sl@0
|
532 |
CTClient::ConstructL();
|
sl@0
|
533 |
|
sl@0
|
534 |
iGroup=new(ELeave) CTimeTestWindowGroup(this);
|
sl@0
|
535 |
iGroup->ConstructL();
|
sl@0
|
536 |
|
sl@0
|
537 |
CreateTestWindowL(TPoint(30,4),iGroup);
|
sl@0
|
538 |
iGroup->SetCurrentWindow(iGroup->Child());
|
sl@0
|
539 |
}
|
sl@0
|
540 |
|
sl@0
|
541 |
void CTimeClient::Exit()
|
sl@0
|
542 |
{
|
sl@0
|
543 |
CActiveScheduler::Stop();
|
sl@0
|
544 |
}
|
sl@0
|
545 |
|
sl@0
|
546 |
GLDEF_C CTClient *CreateClientL()
|
sl@0
|
547 |
{
|
sl@0
|
548 |
return(new(ELeave) CTimeClient());
|
sl@0
|
549 |
}
|
sl@0
|
550 |
|
sl@0
|
551 |
GLDEF_C TInt E32Main()
|
sl@0
|
552 |
{
|
sl@0
|
553 |
return(TestLibStartUp(CreateClientL));
|
sl@0
|
554 |
}
|