Update contrib.
1 // Copyright (c) 1995-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\include\e32ktran.h
16 // WARNING: This file contains some APIs which are internal and are subject
17 // to change without notice. Such APIs should therefore not be used
18 // outside the Kernel and Hardware Services package.
26 #ifndef __E32KTRAN_H__
27 #define __E32KTRAN_H__
32 class TMaskedModifiers
65 TMaskedModifiers iModifiers;
66 TKeyCodePattern iKeyCodePattern;
81 class CCaptureKeys: public CBase
84 IMPORT_C CCaptureKeys();
85 IMPORT_C ~CCaptureKeys();
86 IMPORT_C void Construct();
87 IMPORT_C void AddCaptureKeyL(const TCaptureKey &aCaptureKey);
88 IMPORT_C void AddCaptureKeyL(const TCaptureKey &aCaptureKey, TUint8 aPriority);
89 IMPORT_C void SetCaptureKey(TUint32 aHandle, const TCaptureKey &aCaptureKey);
90 IMPORT_C void SetCaptureKey(TUint32 aHandle, const TCaptureKey &aCaptureKey, TUint8 aPriority);
91 IMPORT_C void CancelCaptureKey(TUint32 aHandle);
92 IMPORT_C void CancelAllCaptureKeys(TUint32 aApp);
93 IMPORT_C void ProcessCaptureKeys(TKeyData &aKeyData) const;
95 void CheckCaptureKey(const TCaptureKey &aCaptureKey);
96 void removeCaptureKey(TUint index);
98 RArray<TCaptureKey> iCKarray;
101 class CKeyTranslator: public CBase
104 IMPORT_C static CKeyTranslator *New();
105 virtual TInt GetModifierState()=0;
106 virtual void SetModifierState(TEventModifier aModifier,TModifierState aState)=0;
107 virtual TBool TranslateKey(TUint aScanCode,TBool aKeyUp,const CCaptureKeys &aCaptureKeys,TKeyData &aKeyData)=0;
108 virtual void UpdateModifiers(TInt aModifiers)=0;
109 virtual TInt ChangeKeyData(const TDesC& aLibraryName)=0;