|
1 /* |
|
2 * Copyright (c) 2005 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 TAknFepInputStateZhuyinFindQwerty definition. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 |
|
21 |
|
22 |
|
23 |
|
24 |
|
25 |
|
26 |
|
27 |
|
28 |
|
29 |
|
30 #ifndef __AKN_FEP_UI_INPUT_STATE_ZHUYIN_FIND_QWERTY_H__ |
|
31 #define __AKN_FEP_UI_INPUT_STATE_ZHUYIN_FIND_QWERTY_H__ |
|
32 |
|
33 #include "AknFepUiInputStateChineseFindQwerty.h" |
|
34 #include "AknFepUiInputStateInitialChineseGenericQwerty.h" |
|
35 #include "AknFepUiInputStateInitialChineseGenericHalfQwerty.h" |
|
36 |
|
37 class TAknFepInputStateZhuyinFindQwerty : public TAknFepInputStateChineseFindQwerty |
|
38 { |
|
39 public: |
|
40 TAknFepInputStateZhuyinFindQwerty( |
|
41 MAknFepUIManagerStateInterface* aOwner, |
|
42 MAknFepUICtrlContainerChinese* aUIContainer); |
|
43 }; |
|
44 |
|
45 #ifdef RD_INTELLIGENT_TEXT_INPUT |
|
46 class TAknFepInputStateZhuyinFindMiniQwerty : public TAknFepInputStateInitialChineseGenericQwerty |
|
47 { |
|
48 public: |
|
49 TAknFepInputStateZhuyinFindMiniQwerty( |
|
50 MAknFepUIManagerStateInterface* aOwner, |
|
51 TInt aMode); |
|
52 |
|
53 TBool HandleKeyL(TInt aKey, TKeyPressLength aLength); |
|
54 // Functions from MPtiObserver interface |
|
55 void KeyTimerExpired(); |
|
56 }; |
|
57 |
|
58 #ifdef __HALF_QWERTY_KEYPAD |
|
59 class TAknFepInputStateZhuyinFindHalfQwerty : |
|
60 public TAknFepInputStateInitialChineseGenericHalfQwerty |
|
61 { |
|
62 public: |
|
63 TAknFepInputStateZhuyinFindHalfQwerty( |
|
64 MAknFepUIManagerStateInterface* aOwner, |
|
65 TInt aMode); |
|
66 |
|
67 TBool HandleKeyL(TInt aKey, TKeyPressLength aLength); |
|
68 // Functions from MPtiObserver interface |
|
69 void KeyTimerExpired(); |
|
70 private: |
|
71 TBool IsValidZhuyinKey(TInt aKey); |
|
72 }; |
|
73 |
|
74 #endif //__HALF_QWERTY_KEYPAD |
|
75 |
|
76 #endif //RD_INTELLIGENT_TEXT_INPUT |
|
77 |
|
78 #endif //__AKN_FEP_UI_INPUT_STATE_STROKE_FIND_QWERTY_H__ |
|
79 |
|
80 // End of file |