|
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 TAknFepUiInputStateInitialHiragana definition. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 |
|
22 |
|
23 |
|
24 |
|
25 |
|
26 |
|
27 |
|
28 |
|
29 #ifndef __AKN_FEP_UI_INPUT_STATE_INIT_HIRAGANA_H__ |
|
30 #define __AKN_FEP_UI_INPUT_STATE_INIT_HIRAGANA_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 |
|
50 /** |
|
51 * TAknFepInputStateInitialHiragana class. |
|
52 * |
|
53 * @lib AknFep.lib |
|
54 * @since 2.6 |
|
55 */ |
|
56 class TAknFepUiInputStateInitialHiragana |
|
57 :public TAknFepUiInputStateInitialJapaneseBase |
|
58 { |
|
59 public: // onstructors and destructor |
|
60 /** |
|
61 * C++ default Constructor |
|
62 * |
|
63 * @since 2.6 |
|
64 * @param aOwner Object derived MAknFepUIManagerStateInterface |
|
65 * @param aUIContainer MAknFepUICtrlContainerJapanese object |
|
66 */ |
|
67 TAknFepUiInputStateInitialHiragana( |
|
68 MAknFepUIManagerStateInterface* aOwner, |
|
69 MAknFepUICtrlContainerJapanese* aUIContainer); |
|
70 |
|
71 public:// Functions from base classes |
|
72 /** |
|
73 * From TAknFepUiInputStateInitialJapaneseBase |
|
74 * Initialize state |
|
75 * |
|
76 * @since 2.6 |
|
77 */ |
|
78 void InitializeStateL(); |
|
79 |
|
80 protected: // Functions from base classes |
|
81 /** |
|
82 * From TAknFepUiInputStateInitialJapaneseBase |
|
83 * Handling short keypress events of the numeric and the star. |
|
84 * HandleKeyEventL() call this method. |
|
85 * |
|
86 * @since 2.6 |
|
87 * @param aKey The event key code |
|
88 * @return ETrue If aKey was handled |
|
89 */ |
|
90 TBool HandleNumericShortKeyL(TInt aKey); |
|
91 }; |
|
92 #endif //__AKN_FEP_UI_INPUT_STATE_INIT_HIRAGANA_H__ |
|
93 // End of file |