|
1 /* |
|
2 * Copyright (c) 2007 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 TAknFepInputStateEntryMiniQwertyPinyinPhrase definition. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 |
|
21 |
|
22 |
|
23 |
|
24 |
|
25 |
|
26 |
|
27 |
|
28 |
|
29 |
|
30 #ifndef __AKN_FEP_UI_INPUT_STATE_ENTRY_MINIQWERTY_PINYINPHRASE_H__ |
|
31 #define __AKN_FEP_UI_INPUT_STATE_ENTRY_MINIQWERTY_PINYINPHRASE_H__ |
|
32 |
|
33 #include "aknfepuiinputminiqwertypinyinphrasebase.h" |
|
34 /** |
|
35 * TAknFepInputStateEntryMiniQwertyPinyinPhrase class. |
|
36 * |
|
37 * Implementation of Pinyin phrase creation entry state |
|
38 * |
|
39 * @lib avkonfep.dll |
|
40 * @since S60 v3.2 |
|
41 */ |
|
42 class TAknFepInputStateEntryMiniQwertyPinyinPhrase: public TAknFepInputMiniQwertyPinyinPhraseBase |
|
43 { |
|
44 public: |
|
45 /** |
|
46 * C++ default constructor |
|
47 * |
|
48 * @since S60 V3.2 |
|
49 * @param aOwner Pointer to UI manager state interface |
|
50 * @param aUIContainer Pointer to Chinese UI container |
|
51 */ |
|
52 TAknFepInputStateEntryMiniQwertyPinyinPhrase( |
|
53 MAknFepUIManagerStateInterface* aOwner, |
|
54 MAknFepUICtrlContainerChinese* aUIContainer ); |
|
55 /** |
|
56 * From TAknFepInputStateEntryMiniQwertyPinyinPhrase |
|
57 * Handle system key press |
|
58 * @since S60 v3.2 |
|
59 * @param aKey System key event |
|
60 * @param aLength Key press length |
|
61 * @return ETrue if handle, otherwise this class do not handle this key |
|
62 */ |
|
63 TBool HandleKeyL( TInt aKey, TKeyPressLength aLength ); |
|
64 |
|
65 /** |
|
66 * Handling Command events. |
|
67 * This Method is called by CAknFepUIManagerJapanese. |
|
68 * |
|
69 * @param aCommandId Command ID value |
|
70 */ |
|
71 void HandleCommandL( TInt aCommandId ); |
|
72 }; |
|
73 |
|
74 /** |
|
75 * TAknFepInputStateEditinigMiniQwertyPinyinPhrase class. |
|
76 * Implementation of Pinyin phrase creation editing state |
|
77 * @lib avkonfep.dll |
|
78 * @since S60 v3.2 |
|
79 */ |
|
80 |
|
81 class TAknFepInputStateEditinigMiniQwertyPinyinPhrase: public TAknFepInputMiniQwertyPinyinPhraseBase |
|
82 { |
|
83 public: |
|
84 |
|
85 /** |
|
86 * C++ default constructor |
|
87 * @since S60 V3.2 |
|
88 * @param aOwner Pointer to UI manager state interface |
|
89 * @param aUIContainer Pointer to Chinese UI container |
|
90 */ |
|
91 TAknFepInputStateEditinigMiniQwertyPinyinPhrase( |
|
92 MAknFepUIManagerStateInterface* aOwner, |
|
93 MAknFepUICtrlContainerChinese* aUIContainer ); |
|
94 /** |
|
95 * From TAknFepInputStateEditinigMiniQwertyPinyinPhrase |
|
96 * Handle system key press |
|
97 * @since S60 v3.2 |
|
98 * @param aKey System key event |
|
99 * @param aLength Key press length |
|
100 * @return ETrue if handle, otherwise this class do not handle this key |
|
101 */ |
|
102 TBool HandleKeyL( TInt aKey ,TKeyPressLength alength ); |
|
103 /** |
|
104 * Handling Command events. |
|
105 * This Method is called by CAknFepUIManagerJapanese. |
|
106 * |
|
107 * @param aCommandId Command ID value |
|
108 */ |
|
109 void HandleCommandL( TInt aCommandId ); |
|
110 }; |
|
111 |
|
112 #endif __AKN_FEP_UI_INPUT_STATE_ENTRY_MINIQWERTY_PINYINPHRASE_H__ |