sl@0: // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // The process to close all the panic window. sl@0: // sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @test sl@0: @internalComponent - Internal Symbian test code sl@0: */ sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: // Simulate 50 escape-keys down to close all the panic window sl@0: static TInt CloseAllPanicWindows(RWsSession& aWs) sl@0: { sl@0: TInt idFocus = aWs.GetFocusWindowGroup(); sl@0: TWsEvent event; sl@0: event.SetType(EEventKey); sl@0: TKeyEvent* keyEvent = event.Key(); sl@0: keyEvent->iCode = EKeyEscape; sl@0: keyEvent->iScanCode = EStdKeyEscape; sl@0: keyEvent->iModifiers = 0; sl@0: TInt theLimit = 50; sl@0: TInt err = KErrNone; sl@0: while(idFocus != NULL && (theLimit-- > 0)) sl@0: { sl@0: err = aWs.SendEventToAllWindowGroups(event); sl@0: if (err != KErrNone && err != KErrNoMemory) sl@0: { sl@0: return err; sl@0: } sl@0: User::After(1000); //give it time to process sl@0: idFocus = aWs.GetFocusWindowGroup(); sl@0: } sl@0: return KErrNone; sl@0: } sl@0: sl@0: sl@0: // Real main function sl@0: void MainL() sl@0: { sl@0: // Open wserv session sl@0: RWsSession ws; sl@0: TInt err = ws.Connect(); sl@0: if (err != KErrNone) sl@0: { sl@0: User::Leave(err); sl@0: } sl@0: sl@0: CleanupClosePushL(ws); sl@0: sl@0: User::LeaveIfError(CloseAllPanicWindows(ws)); sl@0: sl@0: CleanupStack::PopAndDestroy(&ws); sl@0: } sl@0: sl@0: // Cleanup stack harness sl@0: GLDEF_C TInt E32Main() sl@0: { sl@0: __UHEAP_MARK; sl@0: CTrapCleanup* cleanupStack = CTrapCleanup::New(); sl@0: TRAPD(error, MainL()); sl@0: _LIT(KTCloseAllPanicWindowPanic,"tcloseallpanicwindow"); sl@0: // Panic the current process sl@0: __ASSERT_ALWAYS(!error, User::Panic(KTCloseAllPanicWindowPanic, error)); sl@0: delete cleanupStack; sl@0: __UHEAP_MARKEND; sl@0: return KErrNone; sl@0: }