|
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 PENINPUTVKB_HRH |
|
18 #define PENINPUTVKB_HRH |
|
19 |
|
20 // System includes |
|
21 #include <peninputeventjp.h> // Event and CtrlId for Jp |
|
22 |
|
23 /** |
|
24 * Peninput client layout type |
|
25 */ |
|
26 enum TPeninputClientLayout |
|
27 { |
|
28 EPeninputClientLayoutHiraganaKanji = 1, |
|
29 EPeninputClientLayoutLatin |
|
30 }; |
|
31 |
|
32 /** |
|
33 * Peninput vkb layout type |
|
34 */ |
|
35 enum TPeninutVkbLayout |
|
36 { |
|
37 EPeninputVkbLayoutHiraganaKanji = 1, |
|
38 EPeninputVkbLayoutKatakana, |
|
39 EPeninputVkbLayoutFullWidthKatakana, |
|
40 EPeninputVkbLayoutFullWidthLatin, |
|
41 EPeninputVkbLayoutFullWidthLatinShift, |
|
42 EPeninputVkbLayoutFullWidthNumber, |
|
43 EPeninputVkbLayoutFullWidthNumberShift, |
|
44 EPeninputVkbLayoutLatin, |
|
45 EPeninputVkbLayoutLatinShift, |
|
46 EPeninputVkbLayoutNumber, |
|
47 EPeninputVkbLayoutNumberShift |
|
48 }; |
|
49 |
|
50 |
|
51 /** |
|
52 * Peninput vkb layout event type |
|
53 */ |
|
54 enum TPeninputLayoutVkbEvent |
|
55 { |
|
56 EPeninputLayoutVkbEventResetShift = EPenInputEventJpLast |
|
57 }; |
|
58 #endif //PENINPUTVKB_HRH |
|
59 |
|
60 //End Of File |