os/kernelhwsrv/kernel/eka/ewsrv/ky_capt.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1996-2009 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 the License "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
// e32\ewsrv\ky_capt.cpp
sl@0
    15
// Provides the operations of setting and cancelling capture-keys
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
#include <e32svr.h>
sl@0
    20
#include <k32keys.h>
sl@0
    21
sl@0
    22
const TInt KCaptureKeyArrayGranularity=5;
sl@0
    23
sl@0
    24
EXPORT_C CCaptureKeys::CCaptureKeys()
sl@0
    25
	: iCKarray(KCaptureKeyArrayGranularity, _FOFF(TCaptureKey,iHandle))
sl@0
    26
	{
sl@0
    27
	}
sl@0
    28
sl@0
    29
EXPORT_C void CCaptureKeys::Construct()
sl@0
    30
//
sl@0
    31
//
sl@0
    32
//
sl@0
    33
	{
sl@0
    34
	}
sl@0
    35
sl@0
    36
EXPORT_C CCaptureKeys::~CCaptureKeys()
sl@0
    37
//
sl@0
    38
// Destructor
sl@0
    39
//
sl@0
    40
	{
sl@0
    41
	iCKarray.Close();
sl@0
    42
	}
sl@0
    43
sl@0
    44
void CCaptureKeys::CheckCaptureKey(const TCaptureKey& aCaptureKey)
sl@0
    45
	{
sl@0
    46
sl@0
    47
	if ((aCaptureKey.iModifiers.iValue&~aCaptureKey.iModifiers.iMask)!=0)
sl@0
    48
		User::Leave(KErrArgument);
sl@0
    49
	}
sl@0
    50
sl@0
    51
EXPORT_C void CCaptureKeys::AddCaptureKeyL(const TCaptureKey& aCaptureKey)
sl@0
    52
//
sl@0
    53
// Adds the specified capture-key to the list
sl@0
    54
//
sl@0
    55
	{
sl@0
    56
sl@0
    57
	AddCaptureKeyL(aCaptureKey,0);
sl@0
    58
	}
sl@0
    59
sl@0
    60
EXPORT_C void CCaptureKeys::AddCaptureKeyL(const TCaptureKey& aCaptureKey, TUint8 aPriority)
sl@0
    61
//
sl@0
    62
// Adds the specified capture-key to the beginning of the list
sl@0
    63
//
sl@0
    64
	{
sl@0
    65
sl@0
    66
	TCaptureKey captureKey(aCaptureKey);
sl@0
    67
	captureKey.iKeyCodePattern.iFiller = aPriority;// Priority is stored in spare data member 'iFiller'
sl@0
    68
	CheckCaptureKey(captureKey);
sl@0
    69
	User::LeaveIfError(iCKarray.Insert(captureKey,0));
sl@0
    70
	}
sl@0
    71
sl@0
    72
EXPORT_C void CCaptureKeys::SetCaptureKey(TUint32 aHandle, const TCaptureKey& aCaptureKey)
sl@0
    73
//
sl@0
    74
// Finds the first capture-key from the list that matches the handle and sets
sl@0
    75
// it to the new value.
sl@0
    76
//
sl@0
    77
	{
sl@0
    78
sl@0
    79
	SetCaptureKey(aHandle,aCaptureKey,0);
sl@0
    80
	}
sl@0
    81
sl@0
    82
EXPORT_C void CCaptureKeys::SetCaptureKey(TUint32 aHandle, const TCaptureKey& aCaptureKey, TUint8 aPriority)
sl@0
    83
//
sl@0
    84
// Finds the first capture-key from the list that matches the handle and sets
sl@0
    85
// it to the new value.
sl@0
    86
//
sl@0
    87
	{
sl@0
    88
sl@0
    89
	TCaptureKey captureKey(aCaptureKey);
sl@0
    90
	captureKey.iKeyCodePattern.iFiller = aPriority;// Priority is stored in spare data member 'iFiller'
sl@0
    91
	CheckCaptureKey(captureKey);
sl@0
    92
	TCaptureKey ck;
sl@0
    93
	ck.iHandle=aHandle;
sl@0
    94
	TInt r=iCKarray.Find(ck);
sl@0
    95
	if (r>=0)
sl@0
    96
		iCKarray[r]=captureKey;
sl@0
    97
	}
sl@0
    98
sl@0
    99
void CCaptureKeys::removeCaptureKey(TUint aIndex)
sl@0
   100
//
sl@0
   101
// Removes the capture-key at the given aIndex from the list
sl@0
   102
//
sl@0
   103
	{
sl@0
   104
sl@0
   105
	iCKarray.Remove(aIndex);
sl@0
   106
	}
sl@0
   107
sl@0
   108
EXPORT_C void CCaptureKeys::CancelCaptureKey(TUint32 aHandle)
sl@0
   109
//
sl@0
   110
// Removes the first capture-key from the list that matches the handle;
sl@0
   111
//
sl@0
   112
	{
sl@0
   113
sl@0
   114
	TCaptureKey ck;
sl@0
   115
	ck.iHandle=aHandle;
sl@0
   116
	TInt r=iCKarray.Find(ck);
sl@0
   117
	if (r>=0)
sl@0
   118
		iCKarray.Remove(r);
sl@0
   119
	}
sl@0
   120
sl@0
   121
EXPORT_C void CCaptureKeys::CancelAllCaptureKeys(TUint32 aApp)
sl@0
   122
//
sl@0
   123
// Removes all capture-keys from the list that match the given application handle
sl@0
   124
//
sl@0
   125
	{
sl@0
   126
sl@0
   127
	TInt i=iCKarray.Count();
sl@0
   128
	while(--i>=0)
sl@0
   129
		{
sl@0
   130
		if (iCKarray[i].iApp==aApp)
sl@0
   131
			iCKarray.Remove(i);
sl@0
   132
		}
sl@0
   133
	}
sl@0
   134
sl@0
   135
EXPORT_C void CCaptureKeys::ProcessCaptureKeys(TKeyData& aKeyData) const
sl@0
   136
//
sl@0
   137
// Sets aKeyData.iIsCaptureKey to true if the given aKeyCode match a capture-key in the list
sl@0
   138
// and sets aKeyData.iApp to the handle of the last application that set it; 
sl@0
   139
// otherwise sets aKeyData.iIsCaptureKey to false and aKeyData.iApp to 0.
sl@0
   140
//
sl@0
   141
	{
sl@0
   142
sl@0
   143
	TCharExtended ch=aKeyData.iKeyCode;
sl@0
   144
	aKeyData.iIsCaptureKey=EFalse;
sl@0
   145
	aKeyData.iApp = 0x0;
sl@0
   146
	TInt c=iCKarray.Count();
sl@0
   147
	TInt i;
sl@0
   148
	TInt priority=KMinTInt;
sl@0
   149
	for (i=0; i<c; i++)
sl@0
   150
		{
sl@0
   151
		const TCaptureKey& ck=iCKarray[i];
sl@0
   152
		if	( ch.MatchesPattern(ck.iKeyCodePattern) && MatchesMaskedValue(aKeyData.iModifiers, ck.iModifiers) )
sl@0
   153
			{
sl@0
   154
			if(ck.iKeyCodePattern.iFiller>priority)
sl@0
   155
				{
sl@0
   156
				priority=ck.iKeyCodePattern.iFiller;
sl@0
   157
				aKeyData.iApp=ck.iApp;
sl@0
   158
				aKeyData.iHandle=ck.iHandle;
sl@0
   159
				aKeyData.iIsCaptureKey=ETrue;
sl@0
   160
				}
sl@0
   161
			}
sl@0
   162
		}
sl@0
   163
	}
sl@0
   164