equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0"" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * Provides the TAknFepInputStateInitialKoreanMultitap definition. |
|
16 * |
|
17 */ |
|
18 |
|
19 #ifndef __AKN_FEP_UI_INPUT_STATE_INIT_KOREAN_MULTITAP_H__ |
|
20 #define __AKN_FEP_UI_INPUT_STATE_INIT_KOREAN_MULTITAP_H__ |
|
21 |
|
22 #include "AknFepUiInputStateInitialMultitapBase.h" |
|
23 |
|
24 class TAknFepInputStateInitialKoreanMultitap : public TAknFepInputStateInitialMultitapBase |
|
25 { |
|
26 public: |
|
27 TAknFepInputStateInitialKoreanMultitap(MAknFepUIManagerStateInterface* aOwner); |
|
28 |
|
29 TBool HandleKeyL(TInt aKey, TKeyPressLength aLength); |
|
30 |
|
31 /** |
|
32 * Decides whether text input should be commited or not. |
|
33 * Function makes comparison between latest key input and korean keymappping data. |
|
34 * if data match, then text is to be commited. |
|
35 * @param aData TPtrC |
|
36 * @param aKey TInt. |
|
37 * @return TBool |
|
38 */ |
|
39 TBool CommitOrNot(TPtrC aData, TInt aKey); |
|
40 |
|
41 }; |
|
42 |
|
43 #endif //__AKN_FEP_UI_INPUT_STATE_INIT_KOREAN_MULTITAP_H__ |
|
44 |
|
45 // End of file |