First public contribution.
1 // Copyright (c) 1994-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 // Base classes used for building window server test code
21 #include <e32def_private.h>
24 const TInt ButtonGap=20;
25 const TInt ButtonBorderGap=10;
26 const TInt ButtonBorderMargin=3;
27 const TInt TextMargin=5;
28 const TInt KAutoDelaySeconds=60;
30 NONSHARABLE_CLASS(CTAutoKey): public CActive
33 static CTAutoKey* NewL(RWsSession& aWs);
35 void Activate(TInt aDelay);
41 CTAutoKey(RWsSession& aWs);
49 EXPORT_C CTDialog::CTDialog() : CTTitledWindow(), iNumButtons(1)
51 iButton[0].Copy(_L("Continue")); // Default button
54 EXPORT_C CTDialog::~CTDialog()
57 CActiveScheduler::Stop();
61 EXPORT_C void CTDialog::ConstructLD(CTWinBase &aParent,CWindowGc &aGc)
63 iOldFocus=aParent.Group()->CurWin();
64 TRAPD(err,CTTitledWindow::ConstructL(aParent));
71 iWin.SetBackgroundColor(TRgb::Gray256(238)); // Light gray
73 iWin.SetPointerCapture(ETrue);
74 Group()->SetCurrentWindow(this, ETrue);
75 iAutoKey=CTAutoKey::NewL(Client()->iWs);
78 EXPORT_C void CTDialog::RelinquishFocus()
80 Group()->SetCurrentWindow(iOldFocus);
83 EXPORT_C TInt CTDialog::Display()
89 BaseWin()->SetVisible(ETrue);
96 Group()->SetCurrentWindow(this);
97 Group()->GroupWin()->SetOrdinalPosition(0);
99 CTClient *client=Client();
100 if (client->QueueRead())
106 iAutoKey->Activate(KAutoDelaySeconds);
107 CActiveScheduler::Start();
109 client->CancelRead();
113 EXPORT_C void CTDialog::SetFlags(TUint aFlags)
118 void CTDialog::SetMaxWid(TInt &aMax, TInt aWid)
124 EXPORT_C void CTDialog::SetWindowSize()
129 SetMaxWid(max,iFont->TextWidthInPixels(iTitle));
130 SetMaxWid(max,iFont->TextWidthInPixels(iLine1));
131 SetMaxWid(max,iFont->TextWidthInPixels(iLine2));
136 for(TInt index=0;index<iNumButtons;index++)
137 SetMaxWid(iButWid,iFont->TextWidthInPixels(iButton[index]));
138 iButWid+=ButtonBorderMargin*2;
139 SetMaxWid(max,iButWid*iNumButtons+ButtonGap*(iNumButtons-1)+ButtonBorderGap*2);
141 TSize parSize=Parent()->Size();
142 TSize size(max,iFont->HeightInPixels()*8);
143 TPoint pos((parSize.iWidth-size.iWidth)/2,(parSize.iHeight-size.iHeight)/2);
144 if (iFlags&EDialogDisplayAtBottom)
146 if (iFlags&EDialogDisplayAtLeft)
153 EXPORT_C void CTDialog::SetLine1(const TDesC &aLine1)
158 EXPORT_C void CTDialog::SetLine2(const TDesC &aLine2)
163 EXPORT_C void CTDialog::SetNumButtons(TInt aNum)
166 TbPanic(EDialogButtonCount);
170 EXPORT_C void CTDialog::SetButtonText(TInt aNum,const TDesC &aButton)
172 if ((TUint)aNum>(TUint)iNumButtons)
173 TbPanic(EDialogButtonIndex);
174 iButton[aNum].Copy(aButton);
177 TRect CTDialog::ButtonRect(TInt aIndex) const
179 TInt chunk=(iSize.iWidth-ButtonBorderMargin*2)/iNumButtons;
180 TInt midPos=ButtonBorderMargin+chunk*aIndex+chunk/2;
181 return(TRect(midPos-iButWid/2,iFont->HeightInPixels()*6,midPos+iButWid/2,iFont->HeightInPixels()*7+ButtonBorderMargin*2));
184 EXPORT_C void CTDialog::Draw()
186 CTTitledWindow::Draw();
187 iGc->SetPenColor(TRgb::Gray16(0));
188 iGc->DrawText(iLine1, TPoint((iSize.iWidth-iFont->TextWidthInPixels(iLine1))/2,iFont->HeightInPixels()*3));
189 iGc->DrawText(iLine2, TPoint((iSize.iWidth-iFont->TextWidthInPixels(iLine2))/2,iFont->HeightInPixels()*4+2));
192 for(TInt index=0;index<iNumButtons;index++)
194 TRect rect=ButtonRect(index);
195 iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
196 iGc->SetBrushColor(TRgb::Gray256(255));
199 iGc->SetBrushStyle(CGraphicsContext::ENullBrush);
200 TInt midPos=(rect.iTl.iX+rect.iBr.iX)/2;
201 iGc->DrawText(iButton[index], TPoint((midPos-iFont->TextWidthInPixels(iButton[index])/2),
202 iFont->HeightInPixels()*6+iFont->AscentInPixels()+ButtonBorderMargin));
207 EXPORT_C void CTDialog::WinKeyL(const TKeyEvent &aKey,const TTime&)
217 ButtonPressL(iNumButtons>1 ? 1 : 0); // Same as ESC on a single button dialog
226 EXPORT_C void CTDialog::PointerL(const TPointerEvent &aPointer,const TTime &aTime)
228 if (aPointer.iType==TPointerEvent::EButton1Up)
230 if (iButtonClickOn>0)
232 ButtonPressL(iButtonClickOn-1);
236 else if (aPointer.iType==TPointerEvent::EButton1Down)
238 for(TInt index=0;index<iNumButtons;index++)
239 if (ButtonRect(index).Contains(aPointer.iPosition))
241 if (iFlags&EDialogWaitForButtonUp)
242 iButtonClickOn=index+1;
250 CTTitledWindow::PointerL(aPointer, aTime);
253 EXPORT_C void CTDialog::ButtonPressL(TInt aButton)
255 if (aButton<iNumButtons)
258 CTTitledWindow::Delete(this);
262 void CTDialog::SetResult(TInt aButton)
268 // Simple display dialog //
270 class CDisplayDialog : public CTDialog
273 CDisplayDialog(CTWindowGroup *aGroupWin,CWindowGc *aGc);
276 CTWindowGroup *iGroupWin;
280 CDisplayDialog::CDisplayDialog(CTWindowGroup *aGroupWin,CWindowGc *aGc) : CTDialog(),
281 iGroupWin(aGroupWin),
286 void CDisplayDialog::ConstructLD()
288 CTDialog::ConstructLD(*iGroupWin, *iGc);
291 EXPORT_C void DisplayDialog(CTClient *aClient, const TWindowTitle &aTitle, const TDesC &aLine1, const TDesC &aLine2)
293 CDisplayDialog *dialog=NULL;
294 dialog=new(ELeave) CDisplayDialog(aClient->iGroup, aClient->iGc);
295 TRAPD(err,dialog->ConstructLD());
298 dialog->SetTitle(aTitle);
299 dialog->SetLine1(aLine1);
300 dialog->SetLine2(aLine2);
301 dialog->SetNumButtons(1);
302 dialog->SetButtonText(0,_L("Okay"));
303 if (dialog->Display()!=0) // delete dialog
304 TbPanic(EDialogDisplay);
308 void doDisplayDialog(TInt aScreenNumber,const TWindowTitle &aTitle, const TDesC &aLine1, const TDesC &aLine2, CTClient *&aClient, const RWindowGroup *aGroup)
310 aClient=new(ELeave) CTClient();
311 aClient->SetScreenNumber(aScreenNumber);
312 aClient->ConstructL();
314 aClient->iGroup=new(ELeave) CTWindowGroup(aClient);
315 aClient->iGroup->ConstructL();
316 aClient->iGroup->GroupWin()->SetOrdinalPosition(0,10);
318 aClient->iGroup->GroupWin()->SetOwningWindowGroup(aGroup->Identifier());
320 TRAP_IGNORE(DisplayDialog(aClient, aTitle, aLine1, aLine2));
323 void doDisplayDialog(const TWindowTitle &aTitle, const TDesC &aLine1, const TDesC &aLine2, CTClient *&aClient, const RWindowGroup *aGroup)
325 doDisplayDialog(KDefaultScreen,aTitle,aLine1,aLine2,aClient,aGroup);
328 EXPORT_C void DisplayDialog(TInt aScreenNumber,const TWindowTitle &aTitle, const TDesC &aLine1, const TDesC &aLine2, const RWindowGroup *aGroup)
330 CTClient *client=NULL;
331 TRAP_IGNORE(doDisplayDialog(aScreenNumber,aTitle,aLine1,aLine2,client,aGroup));
335 EXPORT_C void DisplayDialog(const TWindowTitle &aTitle, const TDesC &aLine1, const TDesC &aLine2, const RWindowGroup *aGroup)
337 DisplayDialog(KDefaultScreen,aTitle,aLine1,aLine2,aGroup);
344 EXPORT_C CInfoDialog::CInfoDialog(CTWindowGroup *aGroupWin,CWindowGc *aGc) :CTDialog(), iGroupWin(aGroupWin), iGc(aGc)
347 EXPORT_C void CInfoDialog::ButtonPressL(TInt aButton)
352 BaseWin()->SetVisible(EFalse);
353 CActiveScheduler::Stop();
357 EXPORT_C void CInfoDialog::ConstructLD()
360 CTDialog::ConstructLD(*iGroupWin, *iGc);
366 EXPORT_C void CInfoDialog::TimerResults()
368 TProfile profile[eTimes];
369 // TProfile only has default constructor -
370 // constructor of TProfile does not initialize its members
371 for (TInt jj=0; jj<eTimes; jj++)
374 profile[jj].iCount=0;
376 __PROFILE_DISPLAY(eTimes)
382 AppendProfileTime(times,profile[ii].iTime);
383 AppendProfileCount(counts,profile[ii].iCount);
392 AppendProfileTime(times,profile[0].iTime);
396 void CInfoDialog::AppendProfileTime(TDes &aDes, TInt aNum)
398 _LIT(ThreeDP,"%d.%03d");
399 aDes.AppendFormat(ThreeDP,aNum/eSeconds,(aNum%eSeconds)/1000);
402 void CInfoDialog::AppendProfileCount(TDes &aDes, TInt aNum)
405 aDes.AppendFormat(Int,aNum);
408 void CInfoDialog::AddComma(TDes &aDes)
414 CTAutoKey::CTAutoKey(RWsSession& aWs): CActive(0), iWs(aWs)
416 CActiveScheduler::Add(this);
419 CTAutoKey::~CTAutoKey()
425 void CTAutoKey::ConstructL()
427 User::LeaveIfError(iTimer.CreateLocal());
430 CTAutoKey* CTAutoKey::NewL(RWsSession& aWs)
432 CTAutoKey* self=new(ELeave) CTAutoKey(aWs);
433 CleanupStack::PushL(self);
439 void CTAutoKey::Activate(TInt aDelay)
444 iDelay=aDelay*1000000;
445 iTimer.After(iStatus,iDelay);
448 void CTAutoKey::RunL()
450 // simulate key event, only needed to run once
452 keyEvent.iCode=EKeyEnter;
453 keyEvent.iScanCode=EKeyEnter;
454 keyEvent.iModifiers=0;
456 iWs.SimulateKeyEvent(keyEvent);
460 void CTAutoKey::DoCancel()