|
1 /* |
|
2 * Copyright (c) 2008 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: This file contains classes of phrase creation layout data management |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 |
|
22 |
|
23 |
|
24 |
|
25 |
|
26 |
|
27 |
|
28 |
|
29 #ifndef C_AKNFEPINPUTSTATEMINIQWERTYZHUYINKEYMAP_H |
|
30 #define C_AKNFEPINPUTSTATEMINIQWERTYZHUYINKEYMAP_H |
|
31 |
|
32 #include <e32std.h> |
|
33 #include <e32base.h> |
|
34 #include "PtiEngine.h" |
|
35 |
|
36 //class CAknFepInputStateMiniQwertyZhuyinKeyMap; |
|
37 /** |
|
38 * CAknFepInputStateMiniQwertyZhuyinKeyMap |
|
39 * This class provides mini-qwerty zhuyin key map |
|
40 * zhuyin key map interface management |
|
41 * to the program other component |
|
42 */ |
|
43 /** |
|
44 * CAknFepInputStateMiniQwertyZhuyinKeyMap is a static fascade interface to the mini-qwerty zhuyin key map object. |
|
45 * There is at most one CAknFepInputStateMiniQwertyZhuyinKeyMap per thread. This static interface ensures that this |
|
46 * fact can not be changed. |
|
47 */ |
|
48 class TAknFepInputStateMiniQwertyZhuyinKeyMap |
|
49 { |
|
50 public: |
|
51 // General public API |
|
52 |
|
53 /** |
|
54 * Get the show keystroke for the keytype. |
|
55 * |
|
56 * @param aPtiEngine, ptiengine. |
|
57 * @param aKey, the input keystroke. |
|
58 * @param aKeystroke, the keystroke. |
|
59 * @since S60 v3.2.3. |
|
60 * @return None. |
|
61 */ |
|
62 static void GetKeyStroke( CPtiEngine* aPtiEngine, TInt& aKey, TDes& aKeystroke ); |
|
63 }; |
|
64 |
|
65 #endif // C_AKNFEPINPUTSTATEMINIQWERTYZHUYINKEYMAP_H |
|
66 |
|
67 // End of File |