|
1 /* |
|
2 * Copyright (c) 2003 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 TAknFepInputStateChineseBase definition. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 |
|
22 |
|
23 |
|
24 |
|
25 |
|
26 |
|
27 |
|
28 |
|
29 #ifndef __AKN_FEP_UI_INPUTSTATE_CHINESE_BASE_H__ |
|
30 #define __AKN_FEP_UI_INPUTSTATE_CHINESE_BASE_H__ |
|
31 |
|
32 // INCLUDES |
|
33 #include <e32std.h> |
|
34 |
|
35 #include <avkon.hrh> |
|
36 #include <uikon.hrh> |
|
37 #include <AknFepGlobalEnums.h> |
|
38 #include "AknFepUiInputStateBase.h" |
|
39 #include "AknFepUiCtrlContainerChinese.h" |
|
40 |
|
41 // CONSTANTS |
|
42 |
|
43 // FORWARD DECLARATIONS |
|
44 |
|
45 // CLASS DECLARATION |
|
46 //class TAknFepInputStateBase; |
|
47 class MAknFepUIManagerStateInterface; |
|
48 //class MAknFepUICtrlContainerChinese; |
|
49 |
|
50 /** |
|
51 * TAknFepInputStateChineseBase class. |
|
52 * |
|
53 * @lib AknFep.lib |
|
54 * @since 2.6 |
|
55 */ |
|
56 class TAknFepInputStateChineseBase : public TAknFepInputStateBase |
|
57 { |
|
58 public: // Constructors and destructor |
|
59 /** |
|
60 * Constructor |
|
61 * @since 2.6 |
|
62 * @param aOwner |
|
63 * @param aUIContainer |
|
64 */ |
|
65 TAknFepInputStateChineseBase(MAknFepUIManagerStateInterface* aOwner, |
|
66 MAknFepUICtrlContainerChinese* aUIContainer); |
|
67 |
|
68 public: |
|
69 // A patch to force the vtable to be copied during an assignment. |
|
70 void operator=(const TAknFepInputStateBase& aState); |
|
71 |
|
72 /** |
|
73 * A patch to force the vtable to be copied during an assignment. |
|
74 * |
|
75 * @param aState |
|
76 */ |
|
77 void operator=(const TAknFepInputStateChineseBase& aState); |
|
78 /** |
|
79 * Getting UI container object |
|
80 * @since 2.6 |
|
81 * @return Japanese UI container object |
|
82 */ |
|
83 MAknFepUICtrlContainerChinese* UIContainer(); |
|
84 /** |
|
85 * Handling Command events. |
|
86 * This Method is called by CAknFepUIManagerJapanese. |
|
87 * |
|
88 * @param aCommandId Command ID value |
|
89 */ |
|
90 void HandleCommandL( TInt aCommandId ); |
|
91 |
|
92 protected: |
|
93 MAknFepUICtrlContainerChinese* iUIContainer; |
|
94 |
|
95 TBool iUseforResourcechange; |
|
96 |
|
97 }; |
|
98 #endif//__AKN_FEP_UI_INPUTSTATE_CHINESE_BASE_H__ |
|
99 // End of file |