sl@0: // Copyright (c) 2010 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: // Helper application for TEvent test case GRAPHICS-WSERV-0757 sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: const TInt KCapturePriority = 2; sl@0: sl@0: LOCAL_C void MainL() sl@0: { sl@0: RWsSession session; sl@0: User::LeaveIfError(session.Connect()); sl@0: CleanupClosePushL(session); sl@0: RWindowGroup group(session); sl@0: User::LeaveIfError(group.Construct(0)); sl@0: sl@0: // Capture keys EKeyF22 and EKeyF23 with raised sl@0: // priority for each of the three capture types. sl@0: TInt handle1 = User::LeaveIfError(group.CaptureKey(EKeyF22, 0, 0, KCapturePriority)); sl@0: TInt handle2 = User::LeaveIfError(group.CaptureKeyUpAndDowns(EStdKeyF22, 0, 0, KCapturePriority)); sl@0: TInt handle3 = User::LeaveIfError(group.CaptureLongKey(EKeyF22, EKeyF22, 0, 0, KCapturePriority, ELongCaptureNormal)); sl@0: TInt handle4 = User::LeaveIfError(group.CaptureKey(EKeyF23, 0, 0, KCapturePriority)); sl@0: TInt handle5 = User::LeaveIfError(group.CaptureKeyUpAndDowns(EStdKeyF23, 0, 0, KCapturePriority)); sl@0: TInt handle6 = User::LeaveIfError(group.CaptureLongKey(EKeyF23, EKeyF23, 0, 0, KCapturePriority, ELongCaptureNormal)); sl@0: sl@0: // Complete rendezvous with TEvent. This signals that all the capture sl@0: // requests have been made. sl@0: RProcess::Rendezvous(KErrNone); sl@0: sl@0: // Wait until killed by TEvent sl@0: User::WaitForAnyRequest(); sl@0: sl@0: group.CancelCaptureKey(handle1); sl@0: group.CancelCaptureKeyUpAndDowns(handle2); sl@0: group.CancelCaptureLongKey(handle3); sl@0: group.CancelCaptureKey(handle4); sl@0: group.CancelCaptureKeyUpAndDowns(handle5); sl@0: group.CancelCaptureLongKey(handle6); sl@0: sl@0: CleanupStack::PopAndDestroy(&session); sl@0: } sl@0: sl@0: GLDEF_C TInt E32Main() sl@0: { sl@0: __UHEAP_MARK; sl@0: sl@0: CTrapCleanup* cleanupStack = CTrapCleanup::New(); sl@0: TRAPD(ret, MainL()); sl@0: delete cleanupStack; sl@0: sl@0: __UHEAP_MARKEND; sl@0: return ret; sl@0: }