First public contribution.
1 // Copyright (c) 1995-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.
21 #include "../tlib/testbase.h"
39 struct SHotKeyTestParams
41 TText *txt; // Text message telling user what to do
44 LOCAL_D SHotKeyParams HotKeys[]={
45 {EHotKeyEnableLogging,'e',EModifierFunc|EModifierCtrl|EModifierShift,0},
46 {EHotKeyDisableLogging,'d',EModifierFunc|EModifierCtrl|EModifierShift,EModifierFunc},
47 {EHotKeyOfDeath,'q',0},
48 {EHotKeyOfDeath,'w',0},
51 LOCAL_D SHotKeyTestParams HotKeyTests[]={
52 {(TText *)_S("Use \"e\" to enable logging")},
53 {(TText *)_S("Use \"<Alt>d\" to disable logging")},
54 {(TText *)_S("Use \"q\" to kill the foreground app")},
55 {(TText *)_S("Use \"w\" to kill the foreground app")},
56 {(TText *)_S("Use \"<Cntrl><Alt><Shift>K\" to kill the foreground app")},
59 LOCAL_D TBool HotKeyTestIsDeathTest[]={EFalse, EFalse, ETrue, ETrue, ETrue};
69 LOCAL_D SErrorHotKey errorKeys[]={
70 {EHotKeyEnableLogging,'a',EModifierFunc|EModifierShift,EModifierFunc|EModifierCtrl},
71 {EHotKeyDisableLogging,'1',0,EModifierFunc},
72 {EHotKeyEnableLogging,3,EModifierCtrl,EModifierCtrl|EModifierShift},
73 {EHotKeyDisableLogging,'a',EModifierFunc|EModifierShift,EModifierFunc|EModifierCtrl},
74 {(THotKey)100,'1',0,EModifierFunc},
75 {(THotKey)200, 3,EModifierCtrl,EModifierCtrl|EModifierShift},
78 const TInt numHotKeys=sizeof(HotKeys)/sizeof(HotKeys[0]);
79 const TInt numHotKeyTests=sizeof(HotKeyTests)/sizeof(HotKeyTests[0]);
80 const TInt numErrorKeys=sizeof(errorKeys)/sizeof(errorKeys[0]);
86 class SHKDeath : public CActive
89 SHKDeath(TInt aPriority);
90 void SetConnection(SHKConnection *aConn);
91 virtual void DoCancel();
98 class SHKWindowGroup : public CTWindowGroup
101 SHKWindowGroup(CTClient *aClient);
102 void KeyL(const TKeyEvent &aKey,const TTime &aTime);
105 class SHKConnection : public CTClient
108 SHKConnection(THotKeyTest *aTest, TInt aMode);
111 void KeyL(const TKeyEvent &aKey);
112 void SubStateChangedL();
119 static TInt iMainWinId;
122 class SHKWindow : public CTWin
125 SHKWindow(THotKeyTest *aTest);
126 void SetUpL(TPoint pos,TSize size,CTWinBase *parent, CWindowGc &aGc);
133 class SHKWindow2 : public CTWin
137 void SetUpL(TPoint pos,TSize size,CTWinBase *parent, CWindowGc &aGc);
141 class THotKeyTest : public CTestBase
148 void EndCaptureKeyTest();
149 TInt SubState() const;
153 SHKConnection *iConn1;
157 TBool iIsInActiveScheduler;
160 TInt SHKConnection::iMainWinId;
162 TInt SubThread(TAny *);
164 GLDEF_C CTestBase *CreateHotKeyTest()
166 return(new(ELeave) THotKeyTest());
169 THotKeyTest::THotKeyTest() : CTestBase(_L("Hot Key"))
172 THotKeyTest::~THotKeyTest()
174 User::SetJustInTime(ETrue);
175 for(TInt index=0;index<numHotKeys;index++)
177 Client()->iWs.ClearHotKeys(HotKeys[index].hotKey);
178 Client()->iWs.RestoreDefaultHotKey(HotKeys[index].hotKey);
181 if (iIsInActiveScheduler)
182 CActiveScheduler::Stop();
185 void THotKeyTest::EndCaptureKeyTest()
190 void THotKeyTest::ConstructL()
192 iConn1=new(ELeave) SHKConnection(this, EFalse);
193 iConn1->ConstructL();
194 for(TInt index=0;index<numHotKeys;index++)
195 User::LeaveIfError(Client()->iWs.SetHotKey(HotKeys[index].hotKey, HotKeys[index].keyCode,HotKeys[index].mod_mask,HotKeys[index].modifiers));
196 User::SetJustInTime(EFalse);
203 SHKDeath::SHKDeath(TInt aPriority) : CActive(aPriority)
205 CActiveScheduler::Add(this);
208 void SHKDeath::SetConnection(SHKConnection *aConn)
213 void SHKDeath::DoCancel()
217 void SHKDeath::RunL()
222 void SHKDeath::Request()
229 SHKWindowGroup::SHKWindowGroup(CTClient *aClient) : CTWindowGroup(aClient)
232 void SHKWindowGroup::KeyL(const TKeyEvent &aKey,const TTime &)
234 ((SHKConnection *)iClient)->KeyL(aKey);
240 SHKConnection::SHKConnection(THotKeyTest *aTest, TInt aMode) : iMode(aMode), iDeath(100), iTest(aTest)
242 iDeath.SetConnection(this);
245 SHKConnection::~SHKConnection()
247 iGroup->GroupWin()->EnableReceiptOfFocus(EFalse);
251 void SHKConnection::KeyL(const TKeyEvent &aKey)
255 if (aKey.iCode==EKeyEnter && !HotKeyTestIsDeathTest[iTest->SubState()])
256 iTest->IncSubStateL();
257 else if (aKey.iCode==EKeyEscape)
262 void SHKConnection::CompleteL()
264 iTest->IncSubStateL();
267 void SHKConnection::SubStateChangedL()
269 if (HotKeyTestIsDeathTest[iTest->SubState()])
272 iMainWinId=iGroup->GroupWin()->Identifier();
273 TInt subState=iTest->SubState();
275 User::LeaveIfError(thread.Create(_L("SubThread"),SubThread,KDefaultStackSize,0x2000,0x2000,&subState,EOwnerThread));
276 thread.Logon(iDeath.iStatus);
285 void SHKConnection::ConstructL()
287 CTClient::ConstructL();
288 iGroup=new(ELeave) SHKWindowGroup(this);
289 iGroup->ConstructL();
290 TSize screenSize=iGroup->Size();
291 iGroup->GroupWin()->AutoForeground(EFalse); // Don't allow clicking to cause foreground, might mess up test
296 winWidth=screenSize.iWidth/2;
297 winHeight=screenSize.iHeight-10;
298 SHKWindow *win=new(ELeave) SHKWindow(iTest);
299 win->SetUpL(TPoint(5,5),TSize(winWidth,winHeight),iGroup,*iGc);
306 iGroup->GroupWin()->SetOwningWindowGroup(iMainWinId);
307 SHKWindow2 *win=new(ELeave) SHKWindow2();
308 win->SetUpL(TPoint((screenSize.iWidth-winWidth)/2,(screenSize.iHeight-winHeight)/2),TSize(winWidth,winHeight),iGroup,*iGc);
315 // SHKWindow, class //
318 SHKWindow::SHKWindow(THotKeyTest *aTest) : CTWin(), iTest(aTest)
320 iBack=TRgb::Gray256(230);
323 void SHKWindow::SetUpL(TPoint pos,TSize size,CTWinBase *parent, CWindowGc &aGc)
325 ConstructExtLD(*parent,pos,size);
326 iWin.SetBackgroundColor(iBack);
331 void SHKWindow::Draw()
334 iGc->DrawText(TPtrC(HotKeyTests[iTest->SubState()].txt), TPoint(10,20));
335 iGc->DrawText(TPtrC(_L("Press <Enter> when tested okay")), TPoint(10,35));
336 iGc->DrawText(TPtrC(_L("or escape to abort tests")), TPoint(10,50));
340 // SHKWindow2, class //
343 SHKWindow2::SHKWindow2() : CTWin()
347 void SHKWindow2::SetUpL(TPoint pos,TSize size,CTWinBase *parent, CWindowGc &aGc)
349 ConstructExtLD(*parent,pos,size);
350 iWin.SetBackgroundColor(TRgb(0,0,0));
355 void SHKWindow2::Draw()
357 iGc->SetBrushColor(TRgb::Gray4(1));
359 iGc->SetPenColor(TRgb::Gray4(3));
360 iGc->DrawText(TPtrC(_L("Kill me!!!")), TPoint(10,15));
365 TInt THotKeyTest::SubState() const
370 void THotKeyTest::IncSubStateL()
372 if (iSubState==(numHotKeyTests-1))
377 iConn1->SubStateChangedL();
381 void THotKeyTest::BadParamsL()
383 TInt resCount=Client()->iWs.ResourceCount();
384 for(TInt index=0;index<numErrorKeys;index++)
385 TestL(Client()->iWs.SetHotKey(errorKeys[index].hotKey, errorKeys[index].keyCode,errorKeys[index].mod_mask,errorKeys[index].modifiers)==KErrArgument);
386 TestL(Client()->iWs.ResourceCount()==resCount);
389 TestState THotKeyTest::DoTestL()
394 LogSubTest(_L("Errors"),1);
396 LogSubTest(_L("CaptureKey"),2);
404 //======================================================//
405 // Sub thread to do tests and get shot by window server //
406 //======================================================//
410 CActiveScheduler *TheActiveScheduler=new(ELeave) CActiveScheduler;
411 CActiveScheduler::Install(TheActiveScheduler);
412 SHKConnection *conn=new(ELeave) SHKConnection(NULL, ETrue);
414 CActiveScheduler::Start();
415 delete TheActiveScheduler;
418 TInt SubThread(TAny *)
420 CTrapCleanup* CleanUpStack=CTrapCleanup::New();
421 TRAPD(err,SubThreadMain());