Update contrib.
1 // Copyright (c) 1996-2009 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 the License "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 // e32\ewsrv\ky_capt.cpp
15 // Provides the operations of setting and cancelling capture-keys
22 const TInt KCaptureKeyArrayGranularity=5;
24 EXPORT_C CCaptureKeys::CCaptureKeys()
25 : iCKarray(KCaptureKeyArrayGranularity, _FOFF(TCaptureKey,iHandle))
29 EXPORT_C void CCaptureKeys::Construct()
36 EXPORT_C CCaptureKeys::~CCaptureKeys()
44 void CCaptureKeys::CheckCaptureKey(const TCaptureKey& aCaptureKey)
47 if ((aCaptureKey.iModifiers.iValue&~aCaptureKey.iModifiers.iMask)!=0)
48 User::Leave(KErrArgument);
51 EXPORT_C void CCaptureKeys::AddCaptureKeyL(const TCaptureKey& aCaptureKey)
53 // Adds the specified capture-key to the list
57 AddCaptureKeyL(aCaptureKey,0);
60 EXPORT_C void CCaptureKeys::AddCaptureKeyL(const TCaptureKey& aCaptureKey, TUint8 aPriority)
62 // Adds the specified capture-key to the beginning of the list
66 TCaptureKey captureKey(aCaptureKey);
67 captureKey.iKeyCodePattern.iFiller = aPriority;// Priority is stored in spare data member 'iFiller'
68 CheckCaptureKey(captureKey);
69 User::LeaveIfError(iCKarray.Insert(captureKey,0));
72 EXPORT_C void CCaptureKeys::SetCaptureKey(TUint32 aHandle, const TCaptureKey& aCaptureKey)
74 // Finds the first capture-key from the list that matches the handle and sets
75 // it to the new value.
79 SetCaptureKey(aHandle,aCaptureKey,0);
82 EXPORT_C void CCaptureKeys::SetCaptureKey(TUint32 aHandle, const TCaptureKey& aCaptureKey, TUint8 aPriority)
84 // Finds the first capture-key from the list that matches the handle and sets
85 // it to the new value.
89 TCaptureKey captureKey(aCaptureKey);
90 captureKey.iKeyCodePattern.iFiller = aPriority;// Priority is stored in spare data member 'iFiller'
91 CheckCaptureKey(captureKey);
94 TInt r=iCKarray.Find(ck);
96 iCKarray[r]=captureKey;
99 void CCaptureKeys::removeCaptureKey(TUint aIndex)
101 // Removes the capture-key at the given aIndex from the list
105 iCKarray.Remove(aIndex);
108 EXPORT_C void CCaptureKeys::CancelCaptureKey(TUint32 aHandle)
110 // Removes the first capture-key from the list that matches the handle;
116 TInt r=iCKarray.Find(ck);
121 EXPORT_C void CCaptureKeys::CancelAllCaptureKeys(TUint32 aApp)
123 // Removes all capture-keys from the list that match the given application handle
127 TInt i=iCKarray.Count();
130 if (iCKarray[i].iApp==aApp)
135 EXPORT_C void CCaptureKeys::ProcessCaptureKeys(TKeyData& aKeyData) const
137 // Sets aKeyData.iIsCaptureKey to true if the given aKeyCode match a capture-key in the list
138 // and sets aKeyData.iApp to the handle of the last application that set it;
139 // otherwise sets aKeyData.iIsCaptureKey to false and aKeyData.iApp to 0.
143 TCharExtended ch=aKeyData.iKeyCode;
144 aKeyData.iIsCaptureKey=EFalse;
146 TInt c=iCKarray.Count();
148 TInt priority=KMinTInt;
151 const TCaptureKey& ck=iCKarray[i];
152 if ( ch.MatchesPattern(ck.iKeyCodePattern) && MatchesMaskedValue(aKeyData.iModifiers, ck.iModifiers) )
154 if(ck.iKeyCodePattern.iFiller>priority)
156 priority=ck.iKeyCodePattern.iFiller;
157 aKeyData.iApp=ck.iApp;
158 aKeyData.iHandle=ck.iHandle;
159 aKeyData.iIsCaptureKey=ETrue;