os/graphics/windowing/windowserverplugins/keyeventrouting/src/keyrouterimpl.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
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
// Reference implementation of Key Event Routing plug-in
sl@0
    15
sl@0
    16
/**
sl@0
    17
@file
sl@0
    18
@internalTechnology
sl@0
    19
@prototype
sl@0
    20
*/
sl@0
    21
sl@0
    22
#ifndef KEYROUTERIMPL_H
sl@0
    23
#define KEYROUTERIMPL_H
sl@0
    24
sl@0
    25
#include <graphics/wskeyrouter.h>
sl@0
    26
sl@0
    27
/** Key Capture Translation Table entry */
sl@0
    28
struct TTranslationEntry
sl@0
    29
	{
sl@0
    30
	TUint	iRequestScanCode;
sl@0
    31
	TUint	iCaptureScanCode;
sl@0
    32
	TUint	iRequestKeyCode;
sl@0
    33
	TUint	iCaptureKeyCode;
sl@0
    34
	};
sl@0
    35
sl@0
    36
/** Restricted Key Table entry */
sl@0
    37
struct TRestrictedKeyEntry
sl@0
    38
	{
sl@0
    39
	TUint			iCode;
sl@0
    40
	TKeyCaptureType	iType;
sl@0
    41
	TInt			iAppUidValue;
sl@0
    42
	};
sl@0
    43
sl@0
    44
/** Application Priority Table entry */
sl@0
    45
struct TAppPriorityEntry
sl@0
    46
	{
sl@0
    47
	TUint			iCode;
sl@0
    48
	TKeyCaptureType	iType;
sl@0
    49
	TInt			iAppUidValue;
sl@0
    50
	TInt			iAppPriority;
sl@0
    51
	};
sl@0
    52
sl@0
    53
#ifdef KEYROUTER_TEST
sl@0
    54
/** Blocked Key Table entry */
sl@0
    55
struct TBlockedKeyEntry
sl@0
    56
	{
sl@0
    57
	TUint			iCode;
sl@0
    58
	TKeyCaptureType	iType;
sl@0
    59
	};
sl@0
    60
#endif // KEYROUTER_TEST
sl@0
    61
sl@0
    62
#define TABLE_SIZE(table) (sizeof(table) / sizeof((table)[0]))
sl@0
    63
sl@0
    64
/**
sl@0
    65
Key Event Router implementation class
sl@0
    66
*/
sl@0
    67
NONSHARABLE_CLASS(CKeyEventRouterImpl) : public CKeyEventRouter
sl@0
    68
	{
sl@0
    69
public:
sl@0
    70
	CKeyEventRouterImpl();
sl@0
    71
	~CKeyEventRouterImpl();
sl@0
    72
sl@0
    73
	// From CKeyEventRouter
sl@0
    74
	void AddCaptureKeyL(const TKeyCaptureRequest& aRequest);
sl@0
    75
	void UpdateCaptureKeyL(const TKeyCaptureRequest& aRequest);
sl@0
    76
	void CancelCaptureKey(TKeyCaptureType aType, TAny* aHandle);
sl@0
    77
	void RouteKey(const TKeyEventRouterInput& aInput,
sl@0
    78
				  TKeyEventRouterOutput& aOutput);
sl@0
    79
private:
sl@0
    80
	void CheckCaptureKeyL(const TKeyCaptureRequest& aRequest);
sl@0
    81
	void ProcessAppPriorities(TKeyCaptureRequest& aRequest);
sl@0
    82
	void TranslateCaptureKey(TKeyCaptureType aType, TUint& aCode);
sl@0
    83
	TBool IsRestrictedKey(const TKeyCaptureRequest& aRequest);
sl@0
    84
#ifdef KEYROUTER_TEST
sl@0
    85
	TBool IsKeyBlocked(TKeyCaptureType aType, TUint aCode);
sl@0
    86
#endif
sl@0
    87
sl@0
    88
private:
sl@0
    89
	RArray<TKeyCaptureRequest>	iCaptureKeys;
sl@0
    90
	};
sl@0
    91
sl@0
    92
#endif // KEYROUTERIMPL_H