sl@0
|
1 |
// Copyright (c) 1994-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 |
// Base classes used for building window server test code
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include <e32std.h>
|
sl@0
|
19 |
#include <w32std.h>
|
sl@0
|
20 |
#include <e32svr.h>
|
sl@0
|
21 |
#include <e32def_private.h>
|
sl@0
|
22 |
#include "TLIB.H"
|
sl@0
|
23 |
|
sl@0
|
24 |
const TInt ButtonGap=20;
|
sl@0
|
25 |
const TInt ButtonBorderGap=10;
|
sl@0
|
26 |
const TInt ButtonBorderMargin=3;
|
sl@0
|
27 |
const TInt TextMargin=5;
|
sl@0
|
28 |
const TInt KAutoDelaySeconds=60;
|
sl@0
|
29 |
|
sl@0
|
30 |
NONSHARABLE_CLASS(CTAutoKey): public CActive
|
sl@0
|
31 |
{
|
sl@0
|
32 |
public:
|
sl@0
|
33 |
static CTAutoKey* NewL(RWsSession& aWs);
|
sl@0
|
34 |
~CTAutoKey();
|
sl@0
|
35 |
void Activate(TInt aDelay);
|
sl@0
|
36 |
|
sl@0
|
37 |
void RunL();
|
sl@0
|
38 |
void DoCancel();
|
sl@0
|
39 |
|
sl@0
|
40 |
private:
|
sl@0
|
41 |
CTAutoKey(RWsSession& aWs);
|
sl@0
|
42 |
void ConstructL();
|
sl@0
|
43 |
|
sl@0
|
44 |
RTimer iTimer;
|
sl@0
|
45 |
TInt iDelay;
|
sl@0
|
46 |
RWsSession& iWs;
|
sl@0
|
47 |
};
|
sl@0
|
48 |
|
sl@0
|
49 |
EXPORT_C CTDialog::CTDialog() : CTTitledWindow(), iNumButtons(1)
|
sl@0
|
50 |
{
|
sl@0
|
51 |
iButton[0].Copy(_L("Continue")); // Default button
|
sl@0
|
52 |
}
|
sl@0
|
53 |
|
sl@0
|
54 |
EXPORT_C CTDialog::~CTDialog()
|
sl@0
|
55 |
{
|
sl@0
|
56 |
if (iIsActive)
|
sl@0
|
57 |
CActiveScheduler::Stop();
|
sl@0
|
58 |
delete iAutoKey;
|
sl@0
|
59 |
}
|
sl@0
|
60 |
|
sl@0
|
61 |
EXPORT_C void CTDialog::ConstructLD(CTWinBase &aParent,CWindowGc &aGc)
|
sl@0
|
62 |
{
|
sl@0
|
63 |
iOldFocus=aParent.Group()->CurWin();
|
sl@0
|
64 |
TRAPD(err,CTTitledWindow::ConstructL(aParent));
|
sl@0
|
65 |
if (err!=KErrNone)
|
sl@0
|
66 |
{
|
sl@0
|
67 |
delete this;
|
sl@0
|
68 |
User::Leave(err);
|
sl@0
|
69 |
}
|
sl@0
|
70 |
iActivated=ETrue;
|
sl@0
|
71 |
iWin.SetBackgroundColor(TRgb::Gray256(238)); // Light gray
|
sl@0
|
72 |
AssignGC(aGc);
|
sl@0
|
73 |
iWin.SetPointerCapture(ETrue);
|
sl@0
|
74 |
Group()->SetCurrentWindow(this, ETrue);
|
sl@0
|
75 |
iAutoKey=CTAutoKey::NewL(Client()->iWs);
|
sl@0
|
76 |
}
|
sl@0
|
77 |
|
sl@0
|
78 |
EXPORT_C void CTDialog::RelinquishFocus()
|
sl@0
|
79 |
{
|
sl@0
|
80 |
Group()->SetCurrentWindow(iOldFocus);
|
sl@0
|
81 |
}
|
sl@0
|
82 |
|
sl@0
|
83 |
EXPORT_C TInt CTDialog::Display()
|
sl@0
|
84 |
{
|
sl@0
|
85 |
TInt result;
|
sl@0
|
86 |
|
sl@0
|
87 |
SetWindowSize();
|
sl@0
|
88 |
if (iWinActive)
|
sl@0
|
89 |
BaseWin()->SetVisible(ETrue);
|
sl@0
|
90 |
else
|
sl@0
|
91 |
{
|
sl@0
|
92 |
Activate();
|
sl@0
|
93 |
iWinActive=ETrue;
|
sl@0
|
94 |
}
|
sl@0
|
95 |
if (iTakeFocus)
|
sl@0
|
96 |
Group()->SetCurrentWindow(this);
|
sl@0
|
97 |
Group()->GroupWin()->SetOrdinalPosition(0);
|
sl@0
|
98 |
iResultPtr=&result;
|
sl@0
|
99 |
CTClient *client=Client();
|
sl@0
|
100 |
if (client->QueueRead())
|
sl@0
|
101 |
{
|
sl@0
|
102 |
client->iWs.Flush();
|
sl@0
|
103 |
client=NULL;
|
sl@0
|
104 |
}
|
sl@0
|
105 |
iIsActive=ETrue;
|
sl@0
|
106 |
iAutoKey->Activate(KAutoDelaySeconds);
|
sl@0
|
107 |
CActiveScheduler::Start();
|
sl@0
|
108 |
if (client)
|
sl@0
|
109 |
client->CancelRead();
|
sl@0
|
110 |
return(result);
|
sl@0
|
111 |
}
|
sl@0
|
112 |
|
sl@0
|
113 |
EXPORT_C void CTDialog::SetFlags(TUint aFlags)
|
sl@0
|
114 |
{
|
sl@0
|
115 |
iFlags=aFlags;
|
sl@0
|
116 |
}
|
sl@0
|
117 |
|
sl@0
|
118 |
void CTDialog::SetMaxWid(TInt &aMax, TInt aWid)
|
sl@0
|
119 |
{
|
sl@0
|
120 |
if (aWid>aMax)
|
sl@0
|
121 |
aMax=aWid;
|
sl@0
|
122 |
}
|
sl@0
|
123 |
|
sl@0
|
124 |
EXPORT_C void CTDialog::SetWindowSize()
|
sl@0
|
125 |
{
|
sl@0
|
126 |
if (iActivated)
|
sl@0
|
127 |
{
|
sl@0
|
128 |
TInt max=0;
|
sl@0
|
129 |
SetMaxWid(max,iFont->TextWidthInPixels(iTitle));
|
sl@0
|
130 |
SetMaxWid(max,iFont->TextWidthInPixels(iLine1));
|
sl@0
|
131 |
SetMaxWid(max,iFont->TextWidthInPixels(iLine2));
|
sl@0
|
132 |
max+=TextMargin*2;
|
sl@0
|
133 |
iButWid=0;
|
sl@0
|
134 |
if (iNumButtons>0)
|
sl@0
|
135 |
{
|
sl@0
|
136 |
for(TInt index=0;index<iNumButtons;index++)
|
sl@0
|
137 |
SetMaxWid(iButWid,iFont->TextWidthInPixels(iButton[index]));
|
sl@0
|
138 |
iButWid+=ButtonBorderMargin*2;
|
sl@0
|
139 |
SetMaxWid(max,iButWid*iNumButtons+ButtonGap*(iNumButtons-1)+ButtonBorderGap*2);
|
sl@0
|
140 |
}
|
sl@0
|
141 |
TSize parSize=Parent()->Size();
|
sl@0
|
142 |
TSize size(max,iFont->HeightInPixels()*8);
|
sl@0
|
143 |
TPoint pos((parSize.iWidth-size.iWidth)/2,(parSize.iHeight-size.iHeight)/2);
|
sl@0
|
144 |
if (iFlags&EDialogDisplayAtBottom)
|
sl@0
|
145 |
pos.iY*=2;
|
sl@0
|
146 |
if (iFlags&EDialogDisplayAtLeft)
|
sl@0
|
147 |
pos.iX=0;
|
sl@0
|
148 |
SetExt(pos,size);
|
sl@0
|
149 |
Invalidate();
|
sl@0
|
150 |
}
|
sl@0
|
151 |
}
|
sl@0
|
152 |
|
sl@0
|
153 |
EXPORT_C void CTDialog::SetLine1(const TDesC &aLine1)
|
sl@0
|
154 |
{
|
sl@0
|
155 |
iLine1.Copy(aLine1);
|
sl@0
|
156 |
}
|
sl@0
|
157 |
|
sl@0
|
158 |
EXPORT_C void CTDialog::SetLine2(const TDesC &aLine2)
|
sl@0
|
159 |
{
|
sl@0
|
160 |
iLine2.Copy(aLine2);
|
sl@0
|
161 |
}
|
sl@0
|
162 |
|
sl@0
|
163 |
EXPORT_C void CTDialog::SetNumButtons(TInt aNum)
|
sl@0
|
164 |
{
|
sl@0
|
165 |
if ((TUint)aNum>3)
|
sl@0
|
166 |
TbPanic(EDialogButtonCount);
|
sl@0
|
167 |
iNumButtons=aNum;
|
sl@0
|
168 |
}
|
sl@0
|
169 |
|
sl@0
|
170 |
EXPORT_C void CTDialog::SetButtonText(TInt aNum,const TDesC &aButton)
|
sl@0
|
171 |
{
|
sl@0
|
172 |
if ((TUint)aNum>(TUint)iNumButtons)
|
sl@0
|
173 |
TbPanic(EDialogButtonIndex);
|
sl@0
|
174 |
iButton[aNum].Copy(aButton);
|
sl@0
|
175 |
}
|
sl@0
|
176 |
|
sl@0
|
177 |
TRect CTDialog::ButtonRect(TInt aIndex) const
|
sl@0
|
178 |
{
|
sl@0
|
179 |
TInt chunk=(iSize.iWidth-ButtonBorderMargin*2)/iNumButtons;
|
sl@0
|
180 |
TInt midPos=ButtonBorderMargin+chunk*aIndex+chunk/2;
|
sl@0
|
181 |
return(TRect(midPos-iButWid/2,iFont->HeightInPixels()*6,midPos+iButWid/2,iFont->HeightInPixels()*7+ButtonBorderMargin*2));
|
sl@0
|
182 |
}
|
sl@0
|
183 |
|
sl@0
|
184 |
EXPORT_C void CTDialog::Draw()
|
sl@0
|
185 |
{
|
sl@0
|
186 |
CTTitledWindow::Draw();
|
sl@0
|
187 |
iGc->SetPenColor(TRgb::Gray16(0));
|
sl@0
|
188 |
iGc->DrawText(iLine1, TPoint((iSize.iWidth-iFont->TextWidthInPixels(iLine1))/2,iFont->HeightInPixels()*3));
|
sl@0
|
189 |
iGc->DrawText(iLine2, TPoint((iSize.iWidth-iFont->TextWidthInPixels(iLine2))/2,iFont->HeightInPixels()*4+2));
|
sl@0
|
190 |
if (iNumButtons!=0)
|
sl@0
|
191 |
{
|
sl@0
|
192 |
for(TInt index=0;index<iNumButtons;index++)
|
sl@0
|
193 |
{
|
sl@0
|
194 |
TRect rect=ButtonRect(index);
|
sl@0
|
195 |
iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
|
sl@0
|
196 |
iGc->SetBrushColor(TRgb::Gray256(255));
|
sl@0
|
197 |
iGc->DrawRect(rect);
|
sl@0
|
198 |
iGc->DrawRect(rect);
|
sl@0
|
199 |
iGc->SetBrushStyle(CGraphicsContext::ENullBrush);
|
sl@0
|
200 |
TInt midPos=(rect.iTl.iX+rect.iBr.iX)/2;
|
sl@0
|
201 |
iGc->DrawText(iButton[index], TPoint((midPos-iFont->TextWidthInPixels(iButton[index])/2),
|
sl@0
|
202 |
iFont->HeightInPixels()*6+iFont->AscentInPixels()+ButtonBorderMargin));
|
sl@0
|
203 |
}
|
sl@0
|
204 |
}
|
sl@0
|
205 |
}
|
sl@0
|
206 |
|
sl@0
|
207 |
EXPORT_C void CTDialog::WinKeyL(const TKeyEvent &aKey,const TTime&)
|
sl@0
|
208 |
{
|
sl@0
|
209 |
switch(aKey.iCode)
|
sl@0
|
210 |
{
|
sl@0
|
211 |
case EKeyEscape:
|
sl@0
|
212 |
case '0':
|
sl@0
|
213 |
ButtonPressL(0);
|
sl@0
|
214 |
break;
|
sl@0
|
215 |
case EKeyEnter:
|
sl@0
|
216 |
case '1':
|
sl@0
|
217 |
ButtonPressL(iNumButtons>1 ? 1 : 0); // Same as ESC on a single button dialog
|
sl@0
|
218 |
break;
|
sl@0
|
219 |
case ' ':
|
sl@0
|
220 |
case '2':
|
sl@0
|
221 |
ButtonPressL(2);
|
sl@0
|
222 |
break;
|
sl@0
|
223 |
}
|
sl@0
|
224 |
}
|
sl@0
|
225 |
|
sl@0
|
226 |
EXPORT_C void CTDialog::PointerL(const TPointerEvent &aPointer,const TTime &aTime)
|
sl@0
|
227 |
{
|
sl@0
|
228 |
if (aPointer.iType==TPointerEvent::EButton1Up)
|
sl@0
|
229 |
{
|
sl@0
|
230 |
if (iButtonClickOn>0)
|
sl@0
|
231 |
{
|
sl@0
|
232 |
ButtonPressL(iButtonClickOn-1);
|
sl@0
|
233 |
return;
|
sl@0
|
234 |
}
|
sl@0
|
235 |
}
|
sl@0
|
236 |
else if (aPointer.iType==TPointerEvent::EButton1Down)
|
sl@0
|
237 |
{
|
sl@0
|
238 |
for(TInt index=0;index<iNumButtons;index++)
|
sl@0
|
239 |
if (ButtonRect(index).Contains(aPointer.iPosition))
|
sl@0
|
240 |
{
|
sl@0
|
241 |
if (iFlags&EDialogWaitForButtonUp)
|
sl@0
|
242 |
iButtonClickOn=index+1;
|
sl@0
|
243 |
else
|
sl@0
|
244 |
{
|
sl@0
|
245 |
ButtonPressL(index);
|
sl@0
|
246 |
return;
|
sl@0
|
247 |
}
|
sl@0
|
248 |
}
|
sl@0
|
249 |
}
|
sl@0
|
250 |
CTTitledWindow::PointerL(aPointer, aTime);
|
sl@0
|
251 |
}
|
sl@0
|
252 |
|
sl@0
|
253 |
EXPORT_C void CTDialog::ButtonPressL(TInt aButton)
|
sl@0
|
254 |
{
|
sl@0
|
255 |
if (aButton<iNumButtons)
|
sl@0
|
256 |
{
|
sl@0
|
257 |
SetResult(aButton);
|
sl@0
|
258 |
CTTitledWindow::Delete(this);
|
sl@0
|
259 |
}
|
sl@0
|
260 |
}
|
sl@0
|
261 |
|
sl@0
|
262 |
void CTDialog::SetResult(TInt aButton)
|
sl@0
|
263 |
{
|
sl@0
|
264 |
if (iResultPtr)
|
sl@0
|
265 |
*iResultPtr=aButton;
|
sl@0
|
266 |
}
|
sl@0
|
267 |
|
sl@0
|
268 |
// Simple display dialog //
|
sl@0
|
269 |
|
sl@0
|
270 |
class CDisplayDialog : public CTDialog
|
sl@0
|
271 |
{
|
sl@0
|
272 |
public:
|
sl@0
|
273 |
CDisplayDialog(CTWindowGroup *aGroupWin,CWindowGc *aGc);
|
sl@0
|
274 |
void ConstructLD();
|
sl@0
|
275 |
private:
|
sl@0
|
276 |
CTWindowGroup *iGroupWin;
|
sl@0
|
277 |
CWindowGc *iGc;
|
sl@0
|
278 |
};
|
sl@0
|
279 |
|
sl@0
|
280 |
CDisplayDialog::CDisplayDialog(CTWindowGroup *aGroupWin,CWindowGc *aGc) : CTDialog(),
|
sl@0
|
281 |
iGroupWin(aGroupWin),
|
sl@0
|
282 |
iGc(aGc)
|
sl@0
|
283 |
{
|
sl@0
|
284 |
}
|
sl@0
|
285 |
|
sl@0
|
286 |
void CDisplayDialog::ConstructLD()
|
sl@0
|
287 |
{
|
sl@0
|
288 |
CTDialog::ConstructLD(*iGroupWin, *iGc);
|
sl@0
|
289 |
}
|
sl@0
|
290 |
|
sl@0
|
291 |
EXPORT_C void DisplayDialog(CTClient *aClient, const TWindowTitle &aTitle, const TDesC &aLine1, const TDesC &aLine2)
|
sl@0
|
292 |
{
|
sl@0
|
293 |
CDisplayDialog *dialog=NULL;
|
sl@0
|
294 |
dialog=new(ELeave) CDisplayDialog(aClient->iGroup, aClient->iGc);
|
sl@0
|
295 |
TRAPD(err,dialog->ConstructLD());
|
sl@0
|
296 |
if (err==KErrNone)
|
sl@0
|
297 |
{
|
sl@0
|
298 |
dialog->SetTitle(aTitle);
|
sl@0
|
299 |
dialog->SetLine1(aLine1);
|
sl@0
|
300 |
dialog->SetLine2(aLine2);
|
sl@0
|
301 |
dialog->SetNumButtons(1);
|
sl@0
|
302 |
dialog->SetButtonText(0,_L("Okay"));
|
sl@0
|
303 |
if (dialog->Display()!=0) // delete dialog
|
sl@0
|
304 |
TbPanic(EDialogDisplay);
|
sl@0
|
305 |
}
|
sl@0
|
306 |
}
|
sl@0
|
307 |
|
sl@0
|
308 |
void doDisplayDialog(TInt aScreenNumber,const TWindowTitle &aTitle, const TDesC &aLine1, const TDesC &aLine2, CTClient *&aClient, const RWindowGroup *aGroup)
|
sl@0
|
309 |
{
|
sl@0
|
310 |
aClient=new(ELeave) CTClient();
|
sl@0
|
311 |
aClient->SetScreenNumber(aScreenNumber);
|
sl@0
|
312 |
aClient->ConstructL();
|
sl@0
|
313 |
//
|
sl@0
|
314 |
aClient->iGroup=new(ELeave) CTWindowGroup(aClient);
|
sl@0
|
315 |
aClient->iGroup->ConstructL();
|
sl@0
|
316 |
aClient->iGroup->GroupWin()->SetOrdinalPosition(0,10);
|
sl@0
|
317 |
if (aGroup)
|
sl@0
|
318 |
aClient->iGroup->GroupWin()->SetOwningWindowGroup(aGroup->Identifier());
|
sl@0
|
319 |
//
|
sl@0
|
320 |
TRAP_IGNORE(DisplayDialog(aClient, aTitle, aLine1, aLine2));
|
sl@0
|
321 |
}
|
sl@0
|
322 |
|
sl@0
|
323 |
void doDisplayDialog(const TWindowTitle &aTitle, const TDesC &aLine1, const TDesC &aLine2, CTClient *&aClient, const RWindowGroup *aGroup)
|
sl@0
|
324 |
{
|
sl@0
|
325 |
doDisplayDialog(KDefaultScreen,aTitle,aLine1,aLine2,aClient,aGroup);
|
sl@0
|
326 |
}
|
sl@0
|
327 |
|
sl@0
|
328 |
EXPORT_C void DisplayDialog(TInt aScreenNumber,const TWindowTitle &aTitle, const TDesC &aLine1, const TDesC &aLine2, const RWindowGroup *aGroup)
|
sl@0
|
329 |
{
|
sl@0
|
330 |
CTClient *client=NULL;
|
sl@0
|
331 |
TRAP_IGNORE(doDisplayDialog(aScreenNumber,aTitle,aLine1,aLine2,client,aGroup));
|
sl@0
|
332 |
delete client;
|
sl@0
|
333 |
}
|
sl@0
|
334 |
|
sl@0
|
335 |
EXPORT_C void DisplayDialog(const TWindowTitle &aTitle, const TDesC &aLine1, const TDesC &aLine2, const RWindowGroup *aGroup)
|
sl@0
|
336 |
{
|
sl@0
|
337 |
DisplayDialog(KDefaultScreen,aTitle,aLine1,aLine2,aGroup);
|
sl@0
|
338 |
}
|
sl@0
|
339 |
|
sl@0
|
340 |
|
sl@0
|
341 |
|
sl@0
|
342 |
//CInfoDialog
|
sl@0
|
343 |
|
sl@0
|
344 |
EXPORT_C CInfoDialog::CInfoDialog(CTWindowGroup *aGroupWin,CWindowGc *aGc) :CTDialog(), iGroupWin(aGroupWin), iGc(aGc)
|
sl@0
|
345 |
{}
|
sl@0
|
346 |
|
sl@0
|
347 |
EXPORT_C void CInfoDialog::ButtonPressL(TInt aButton)
|
sl@0
|
348 |
{
|
sl@0
|
349 |
if (aButton==0)
|
sl@0
|
350 |
{
|
sl@0
|
351 |
SetResult(0);
|
sl@0
|
352 |
BaseWin()->SetVisible(EFalse);
|
sl@0
|
353 |
CActiveScheduler::Stop();
|
sl@0
|
354 |
}
|
sl@0
|
355 |
}
|
sl@0
|
356 |
|
sl@0
|
357 |
EXPORT_C void CInfoDialog::ConstructLD()
|
sl@0
|
358 |
{
|
sl@0
|
359 |
_LIT(OK,"Okay");
|
sl@0
|
360 |
CTDialog::ConstructLD(*iGroupWin, *iGc);
|
sl@0
|
361 |
SetNumButtons(1);
|
sl@0
|
362 |
SetButtonText(0,OK);
|
sl@0
|
363 |
SetTakeFocus();
|
sl@0
|
364 |
}
|
sl@0
|
365 |
|
sl@0
|
366 |
EXPORT_C void CInfoDialog::TimerResults()
|
sl@0
|
367 |
{
|
sl@0
|
368 |
TProfile profile[eTimes];
|
sl@0
|
369 |
// TProfile only has default constructor -
|
sl@0
|
370 |
// constructor of TProfile does not initialize its members
|
sl@0
|
371 |
for (TInt jj=0; jj<eTimes; jj++)
|
sl@0
|
372 |
{
|
sl@0
|
373 |
profile[jj].iTime=0;
|
sl@0
|
374 |
profile[jj].iCount=0;
|
sl@0
|
375 |
}
|
sl@0
|
376 |
__PROFILE_DISPLAY(eTimes)
|
sl@0
|
377 |
TBuf<64> times;
|
sl@0
|
378 |
TBuf<32> counts;
|
sl@0
|
379 |
TInt ii=1;
|
sl@0
|
380 |
FOREVER
|
sl@0
|
381 |
{
|
sl@0
|
382 |
AppendProfileTime(times,profile[ii].iTime);
|
sl@0
|
383 |
AppendProfileCount(counts,profile[ii].iCount);
|
sl@0
|
384 |
if (++ii==eTimes)
|
sl@0
|
385 |
break;
|
sl@0
|
386 |
AddComma(times);
|
sl@0
|
387 |
AddComma(counts);
|
sl@0
|
388 |
}
|
sl@0
|
389 |
SetLine1(times);
|
sl@0
|
390 |
SetLine2(counts);
|
sl@0
|
391 |
times.Zero();
|
sl@0
|
392 |
AppendProfileTime(times,profile[0].iTime);
|
sl@0
|
393 |
SetTitle(times);
|
sl@0
|
394 |
}
|
sl@0
|
395 |
|
sl@0
|
396 |
void CInfoDialog::AppendProfileTime(TDes &aDes, TInt aNum)
|
sl@0
|
397 |
{
|
sl@0
|
398 |
_LIT(ThreeDP,"%d.%03d");
|
sl@0
|
399 |
aDes.AppendFormat(ThreeDP,aNum/eSeconds,(aNum%eSeconds)/1000);
|
sl@0
|
400 |
}
|
sl@0
|
401 |
|
sl@0
|
402 |
void CInfoDialog::AppendProfileCount(TDes &aDes, TInt aNum)
|
sl@0
|
403 |
{
|
sl@0
|
404 |
_LIT(Int,"%d");
|
sl@0
|
405 |
aDes.AppendFormat(Int,aNum);
|
sl@0
|
406 |
}
|
sl@0
|
407 |
|
sl@0
|
408 |
void CInfoDialog::AddComma(TDes &aDes)
|
sl@0
|
409 |
{
|
sl@0
|
410 |
_LIT(Comma,", ");
|
sl@0
|
411 |
aDes.Append(Comma);
|
sl@0
|
412 |
}
|
sl@0
|
413 |
|
sl@0
|
414 |
CTAutoKey::CTAutoKey(RWsSession& aWs): CActive(0), iWs(aWs)
|
sl@0
|
415 |
{
|
sl@0
|
416 |
CActiveScheduler::Add(this);
|
sl@0
|
417 |
}
|
sl@0
|
418 |
|
sl@0
|
419 |
CTAutoKey::~CTAutoKey()
|
sl@0
|
420 |
{
|
sl@0
|
421 |
Cancel();
|
sl@0
|
422 |
iTimer.Close();
|
sl@0
|
423 |
}
|
sl@0
|
424 |
|
sl@0
|
425 |
void CTAutoKey::ConstructL()
|
sl@0
|
426 |
{
|
sl@0
|
427 |
User::LeaveIfError(iTimer.CreateLocal());
|
sl@0
|
428 |
}
|
sl@0
|
429 |
|
sl@0
|
430 |
CTAutoKey* CTAutoKey::NewL(RWsSession& aWs)
|
sl@0
|
431 |
{
|
sl@0
|
432 |
CTAutoKey* self=new(ELeave) CTAutoKey(aWs);
|
sl@0
|
433 |
CleanupStack::PushL(self);
|
sl@0
|
434 |
self->ConstructL();
|
sl@0
|
435 |
CleanupStack::Pop();
|
sl@0
|
436 |
return self;
|
sl@0
|
437 |
}
|
sl@0
|
438 |
|
sl@0
|
439 |
void CTAutoKey::Activate(TInt aDelay)
|
sl@0
|
440 |
{
|
sl@0
|
441 |
if (IsActive())
|
sl@0
|
442 |
Cancel();
|
sl@0
|
443 |
|
sl@0
|
444 |
iDelay=aDelay*1000000;
|
sl@0
|
445 |
iTimer.After(iStatus,iDelay);
|
sl@0
|
446 |
SetActive();
|
sl@0
|
447 |
}
|
sl@0
|
448 |
void CTAutoKey::RunL()
|
sl@0
|
449 |
{
|
sl@0
|
450 |
// simulate key event, only needed to run once
|
sl@0
|
451 |
TKeyEvent keyEvent;
|
sl@0
|
452 |
keyEvent.iCode=EKeyEnter;
|
sl@0
|
453 |
keyEvent.iScanCode=EKeyEnter;
|
sl@0
|
454 |
keyEvent.iModifiers=0;
|
sl@0
|
455 |
keyEvent.iRepeats=0;
|
sl@0
|
456 |
iWs.SimulateKeyEvent(keyEvent);
|
sl@0
|
457 |
iWs.Flush();
|
sl@0
|
458 |
}
|
sl@0
|
459 |
|
sl@0
|
460 |
void CTAutoKey::DoCancel()
|
sl@0
|
461 |
{
|
sl@0
|
462 |
iTimer.Cancel();
|
sl@0
|
463 |
}
|