os/graphics/windowing/windowserver/test/tauto/tevent_captureapp.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/test/tauto/tevent_captureapp.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,67 @@
     1.4 +// Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// Helper application for TEvent test case GRAPHICS-WSERV-0757
    1.18 +//
    1.19 +
    1.20 +#include <e32base.h>
    1.21 +#include <e32debug.h>
    1.22 +#include <w32std.h>
    1.23 +
    1.24 +const TInt KCapturePriority = 2;
    1.25 +
    1.26 +LOCAL_C void MainL()
    1.27 +	{
    1.28 +	RWsSession session;
    1.29 +	User::LeaveIfError(session.Connect());
    1.30 +	CleanupClosePushL(session);
    1.31 +	RWindowGroup group(session);
    1.32 +	User::LeaveIfError(group.Construct(0));
    1.33 +
    1.34 +	// Capture keys EKeyF22 and EKeyF23 with raised
    1.35 +	// priority for each of the three capture types.
    1.36 +	TInt handle1 = User::LeaveIfError(group.CaptureKey(EKeyF22, 0, 0, KCapturePriority));
    1.37 +	TInt handle2 = User::LeaveIfError(group.CaptureKeyUpAndDowns(EStdKeyF22, 0, 0, KCapturePriority));
    1.38 +	TInt handle3 = User::LeaveIfError(group.CaptureLongKey(EKeyF22, EKeyF22, 0, 0, KCapturePriority, ELongCaptureNormal));
    1.39 +	TInt handle4 = User::LeaveIfError(group.CaptureKey(EKeyF23, 0, 0, KCapturePriority));
    1.40 +	TInt handle5 = User::LeaveIfError(group.CaptureKeyUpAndDowns(EStdKeyF23, 0, 0, KCapturePriority));
    1.41 +	TInt handle6 = User::LeaveIfError(group.CaptureLongKey(EKeyF23, EKeyF23, 0, 0, KCapturePriority, ELongCaptureNormal));
    1.42 +
    1.43 +	// Complete rendezvous with TEvent. This signals that all the capture
    1.44 +	// requests have been made.
    1.45 +	RProcess::Rendezvous(KErrNone);
    1.46 +
    1.47 +	// Wait until killed by TEvent
    1.48 +	User::WaitForAnyRequest();
    1.49 +
    1.50 +	group.CancelCaptureKey(handle1);
    1.51 +	group.CancelCaptureKeyUpAndDowns(handle2);
    1.52 +	group.CancelCaptureLongKey(handle3);
    1.53 +	group.CancelCaptureKey(handle4);
    1.54 +	group.CancelCaptureKeyUpAndDowns(handle5);
    1.55 +	group.CancelCaptureLongKey(handle6);
    1.56 +
    1.57 +	CleanupStack::PopAndDestroy(&session);
    1.58 +	}
    1.59 +
    1.60 +GLDEF_C TInt E32Main()
    1.61 +	{	
    1.62 +	__UHEAP_MARK;
    1.63 +
    1.64 +	CTrapCleanup* cleanupStack = CTrapCleanup::New(); 	
    1.65 +	TRAPD(ret, MainL());	
    1.66 +	delete cleanupStack;
    1.67 +	
    1.68 +	__UHEAP_MARKEND;
    1.69 +	return ret;
    1.70 +	}