First public contribution.
1 // Copyright (c) 2008-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 // The process to close all the panic window.
21 @internalComponent - Internal Symbian test code
32 // Simulate 50 escape-keys down to close all the panic window
33 static TInt CloseAllPanicWindows(RWsSession& aWs)
35 TInt idFocus = aWs.GetFocusWindowGroup();
37 event.SetType(EEventKey);
38 TKeyEvent* keyEvent = event.Key();
39 keyEvent->iCode = EKeyEscape;
40 keyEvent->iScanCode = EStdKeyEscape;
41 keyEvent->iModifiers = 0;
44 while(idFocus != NULL && (theLimit-- > 0))
46 err = aWs.SendEventToAllWindowGroups(event);
47 if (err != KErrNone && err != KErrNoMemory)
51 User::After(1000); //give it time to process
52 idFocus = aWs.GetFocusWindowGroup();
63 TInt err = ws.Connect();
69 CleanupClosePushL(ws);
71 User::LeaveIfError(CloseAllPanicWindows(ws));
73 CleanupStack::PopAndDestroy(&ws);
76 // Cleanup stack harness
77 GLDEF_C TInt E32Main()
80 CTrapCleanup* cleanupStack = CTrapCleanup::New();
81 TRAPD(error, MainL());
82 _LIT(KTCloseAllPanicWindowPanic,"tcloseallpanicwindow");
83 // Panic the current process
84 __ASSERT_ALWAYS(!error, User::Panic(KTCloseAllPanicWindowPanic, error));