|
1 /* |
|
2 * Copyright (c) 2002-2004 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: Provides the TAknFepUiInputStateInitialHiraganaKanji definition. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 |
|
22 |
|
23 |
|
24 |
|
25 |
|
26 |
|
27 |
|
28 |
|
29 #ifndef __AKN_FEP_UI_INPUT_STATE_INIT_HIRAGANA_KANJI_H__ |
|
30 #define __AKN_FEP_UI_INPUT_STATE_INIT_HIRAGANA_KANJI_H__ |
|
31 |
|
32 // INCLUDES |
|
33 #include <e32std.h> |
|
34 |
|
35 #include "AknFepUiInputStateInitialJapaneseBase.h" |
|
36 |
|
37 // CONSTANTS |
|
38 |
|
39 // MACROS |
|
40 |
|
41 // DATA TYPES |
|
42 |
|
43 // FUNCTION PROTOTYPES |
|
44 |
|
45 // FORWARD DECLARATIONS |
|
46 |
|
47 // CLASS DECLARATION |
|
48 class MAknFepUIManagerStateInterface; |
|
49 enum TKeyPressLength; |
|
50 |
|
51 /** |
|
52 * TAknFepUiInputStateInitialHiraganaKanji class. |
|
53 * |
|
54 * @lib AknFep.lib |
|
55 * @since 2.6 |
|
56 */ |
|
57 class TAknFepUiInputStateInitialHiraganaKanji |
|
58 :public TAknFepUiInputStateInitialJapaneseBase |
|
59 { |
|
60 public: // Constructors and destructor |
|
61 /** |
|
62 * C++ default Constructor |
|
63 * |
|
64 * @since 2.6 |
|
65 * @param aOwner Object derived MAknFepUIManagerStateInterface |
|
66 * @param aUIContainer MAknFepUICtrlContainerJapanese object |
|
67 */ |
|
68 TAknFepUiInputStateInitialHiraganaKanji( |
|
69 MAknFepUIManagerStateInterface* aOwner, |
|
70 MAknFepUICtrlContainerJapanese* aUIContainer); |
|
71 |
|
72 public:// Functions from base classes |
|
73 /** |
|
74 * From TAknFepUiInputStateInitialJapaneseBase |
|
75 * Initialize state |
|
76 * |
|
77 * @since 2.6 |
|
78 */ |
|
79 void InitializeStateL(); |
|
80 |
|
81 protected:// Functions from base classes |
|
82 /** |
|
83 * From TAknFepUiInputStateJapaneseBase |
|
84 * Handling short keypress events of the numeric and the star. |
|
85 * HandleKeyEventL() call this method. |
|
86 * |
|
87 * @since 2.6 |
|
88 * @param aKey The event key code |
|
89 * @return ETrue If aKey was handled |
|
90 */ |
|
91 TBool HandleNumericShortKeyL(TInt aKey); |
|
92 }; |
|
93 #endif //__AKN_FEP_UI_INPUT_STATE_INIT_HIRAGANA_KANJI_H__ |
|
94 // End of file |