os/graphics/windowing/windowserver/test/tauto/tevent_captureapp.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// Helper application for TEvent test case GRAPHICS-WSERV-0757
sl@0
    15
//
sl@0
    16
sl@0
    17
#include <e32base.h>
sl@0
    18
#include <e32debug.h>
sl@0
    19
#include <w32std.h>
sl@0
    20
sl@0
    21
const TInt KCapturePriority = 2;
sl@0
    22
sl@0
    23
LOCAL_C void MainL()
sl@0
    24
	{
sl@0
    25
	RWsSession session;
sl@0
    26
	User::LeaveIfError(session.Connect());
sl@0
    27
	CleanupClosePushL(session);
sl@0
    28
	RWindowGroup group(session);
sl@0
    29
	User::LeaveIfError(group.Construct(0));
sl@0
    30
sl@0
    31
	// Capture keys EKeyF22 and EKeyF23 with raised
sl@0
    32
	// priority for each of the three capture types.
sl@0
    33
	TInt handle1 = User::LeaveIfError(group.CaptureKey(EKeyF22, 0, 0, KCapturePriority));
sl@0
    34
	TInt handle2 = User::LeaveIfError(group.CaptureKeyUpAndDowns(EStdKeyF22, 0, 0, KCapturePriority));
sl@0
    35
	TInt handle3 = User::LeaveIfError(group.CaptureLongKey(EKeyF22, EKeyF22, 0, 0, KCapturePriority, ELongCaptureNormal));
sl@0
    36
	TInt handle4 = User::LeaveIfError(group.CaptureKey(EKeyF23, 0, 0, KCapturePriority));
sl@0
    37
	TInt handle5 = User::LeaveIfError(group.CaptureKeyUpAndDowns(EStdKeyF23, 0, 0, KCapturePriority));
sl@0
    38
	TInt handle6 = User::LeaveIfError(group.CaptureLongKey(EKeyF23, EKeyF23, 0, 0, KCapturePriority, ELongCaptureNormal));
sl@0
    39
sl@0
    40
	// Complete rendezvous with TEvent. This signals that all the capture
sl@0
    41
	// requests have been made.
sl@0
    42
	RProcess::Rendezvous(KErrNone);
sl@0
    43
sl@0
    44
	// Wait until killed by TEvent
sl@0
    45
	User::WaitForAnyRequest();
sl@0
    46
sl@0
    47
	group.CancelCaptureKey(handle1);
sl@0
    48
	group.CancelCaptureKeyUpAndDowns(handle2);
sl@0
    49
	group.CancelCaptureLongKey(handle3);
sl@0
    50
	group.CancelCaptureKey(handle4);
sl@0
    51
	group.CancelCaptureKeyUpAndDowns(handle5);
sl@0
    52
	group.CancelCaptureLongKey(handle6);
sl@0
    53
sl@0
    54
	CleanupStack::PopAndDestroy(&session);
sl@0
    55
	}
sl@0
    56
sl@0
    57
GLDEF_C TInt E32Main()
sl@0
    58
	{	
sl@0
    59
	__UHEAP_MARK;
sl@0
    60
sl@0
    61
	CTrapCleanup* cleanupStack = CTrapCleanup::New(); 	
sl@0
    62
	TRAPD(ret, MainL());	
sl@0
    63
	delete cleanupStack;
sl@0
    64
	
sl@0
    65
	__UHEAP_MARKEND;
sl@0
    66
	return ret;
sl@0
    67
	}