Update contrib.
1 // Copyright (c) 2010 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 // Helper application for TEvent test case GRAPHICS-WSERV-0757
21 const TInt KCapturePriority = 2;
26 User::LeaveIfError(session.Connect());
27 CleanupClosePushL(session);
28 RWindowGroup group(session);
29 User::LeaveIfError(group.Construct(0));
31 // Capture keys EKeyF22 and EKeyF23 with raised
32 // priority for each of the three capture types.
33 TInt handle1 = User::LeaveIfError(group.CaptureKey(EKeyF22, 0, 0, KCapturePriority));
34 TInt handle2 = User::LeaveIfError(group.CaptureKeyUpAndDowns(EStdKeyF22, 0, 0, KCapturePriority));
35 TInt handle3 = User::LeaveIfError(group.CaptureLongKey(EKeyF22, EKeyF22, 0, 0, KCapturePriority, ELongCaptureNormal));
36 TInt handle4 = User::LeaveIfError(group.CaptureKey(EKeyF23, 0, 0, KCapturePriority));
37 TInt handle5 = User::LeaveIfError(group.CaptureKeyUpAndDowns(EStdKeyF23, 0, 0, KCapturePriority));
38 TInt handle6 = User::LeaveIfError(group.CaptureLongKey(EKeyF23, EKeyF23, 0, 0, KCapturePriority, ELongCaptureNormal));
40 // Complete rendezvous with TEvent. This signals that all the capture
41 // requests have been made.
42 RProcess::Rendezvous(KErrNone);
44 // Wait until killed by TEvent
45 User::WaitForAnyRequest();
47 group.CancelCaptureKey(handle1);
48 group.CancelCaptureKeyUpAndDowns(handle2);
49 group.CancelCaptureLongKey(handle3);
50 group.CancelCaptureKey(handle4);
51 group.CancelCaptureKeyUpAndDowns(handle5);
52 group.CancelCaptureLongKey(handle6);
54 CleanupStack::PopAndDestroy(&session);
57 GLDEF_C TInt E32Main()
61 CTrapCleanup* cleanupStack = CTrapCleanup::New();