|
1 /* |
|
2 * Copyright (c) 2009 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 * |
|
16 */ |
|
17 #ifndef T_AKNFEPVKB_HRH |
|
18 #define T_AKNFEPVKB_HRH |
|
19 |
|
20 #include <AknFepGlobalEnums.h> |
|
21 |
|
22 enum TAknFepVkbIMLayout |
|
23 { |
|
24 EAknFepVkbImCnPinyin = EPinyin, |
|
25 EAknFepVkbImCnZhuyin = EZhuyin, |
|
26 EAknFepVkbImCnStroke = EStroke, |
|
27 EAknFepVkbImCnCangjie = ECangJie, |
|
28 EAknFepVkbImLatin = ELatin, |
|
29 EAknFepVkbImNumber = ENumber |
|
30 }; |
|
31 |
|
32 enum TAknFepSymbolTableLayout |
|
33 { |
|
34 EAknFepVkbSymbolFullWidth = 0, |
|
35 EAknFepVkbSymbolHalfWidth |
|
36 }; |
|
37 |
|
38 enum TAknFepVkbCtrlId |
|
39 { |
|
40 EAknFepVkbCtrlIdVkbWindow, |
|
41 |
|
42 // Controls in the first line |
|
43 EAknFepVkbCtrlIdInputContextField, |
|
44 EAknFepVkbCtrlIdTouchInputOption, |
|
45 |
|
46 // Controls in the next line |
|
47 EAknFepVkbCtrlIdCandidateList, |
|
48 EAknFepVkbCtrlIdCompositionField, |
|
49 |
|
50 // Controls in the next line |
|
51 EAknFepVkbCtrlIdVkbCtrl, |
|
52 EAknFepVkbCtrlIdBackspaceBtn, |
|
53 EAknFepVkbCtrlIdEnterBtn, |
|
54 EAknFepVkbCtrlIdInputLangSwitcherBtn, |
|
55 |
|
56 // Controls in the next line |
|
57 EAknFepVkbCtrlIdTabBtn, |
|
58 EAknFepVkbCtrlIdCapslockBtn, |
|
59 EAknFepVkbCtrlIdShiftBtn, |
|
60 EAknFepVkbCtrlIdSpaceBtn, |
|
61 EAknFepVkbCtrlIdSwitchToHwrBtn, |
|
62 |
|
63 EAknFepVkbCtrlIdRangeBar, |
|
64 // Button Id in range bar |
|
65 EAknFepVkbCtrlIdChineseButton, |
|
66 EAknFepVkbCtrlIdEnglishButton, |
|
67 EAknFepVkbCtrlIdNumberButton, |
|
68 EAknFepVkbCtrlIdSymbolButton, |
|
69 EAknFepVkbCtrlIdAccentedButton, |
|
70 // Control id for the client area group |
|
71 EAknFepVkbCtrlIdClientArea, |
|
72 |
|
73 EAknFepVkbPopupWindow |
|
74 }; |
|
75 |
|
76 enum TNofityWhoWillGetFocus |
|
77 { |
|
78 EInputContextFieldGetFocus = 1, |
|
79 ECompotisionFieldGetFocus |
|
80 }; |
|
81 |
|
82 enum TVkbShiftType |
|
83 { |
|
84 EVkbShift = 1, |
|
85 EVkbCapslock = 2, |
|
86 EVkbBoth = 3 |
|
87 }; |
|
88 |
|
89 enum TVkbPositionChangeStyle |
|
90 { |
|
91 EVkbPositionChangeNone = 0, |
|
92 EVkbPositionChangeTlJustify = 1, |
|
93 EVkbPositionChangeBrJustify = 2, |
|
94 EVkbPositionChangeDataQuery = 3 |
|
95 }; |
|
96 |
|
97 #endif //T_AKNFEPVKB_HRH |
|
98 |
|
99 //End Of File |