equal
deleted
inserted
replaced
|
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: |
|
15 * Provides the CAknFepUICtrlContainerJapanese definition. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 |
|
21 |
|
22 |
|
23 |
|
24 |
|
25 |
|
26 |
|
27 |
|
28 |
|
29 |
|
30 #ifndef __AKN_FEP_UI_CONTAINER_JAPANESE_H__ |
|
31 #define __AKN_FEP_UI_CONTAINER_JAPANESE_H__ |
|
32 |
|
33 // INCLUDES |
|
34 #include <e32base.h> |
|
35 |
|
36 // CONSTANTS |
|
37 |
|
38 // MACROS |
|
39 |
|
40 // DATA TYPES |
|
41 |
|
42 // FUNCTION PROTOTYPES |
|
43 |
|
44 // FORWARD DECLARATION |
|
45 |
|
46 // CLASS DECLARATION |
|
47 class MAknFepUICtrlCandidatePaneInterface; |
|
48 |
|
49 /** |
|
50 * Container for the Japanese Candidate Pane and the Predictive Candidate Pane. |
|
51 * |
|
52 * @lib AknFep.lib |
|
53 * @since 2.6 |
|
54 */ |
|
55 class MAknFepUICtrlContainerJapanese |
|
56 { |
|
57 public: |
|
58 /** |
|
59 * |
|
60 * @since 2.6 |
|
61 */ |
|
62 enum TAknFepUICtrlCandidatePaneId |
|
63 { |
|
64 EJapaneseCandidatePane, |
|
65 EJapanesePredictiveCandidatePane, |
|
66 EJapaneseCandidatePaneMax |
|
67 }; |
|
68 |
|
69 public: // New faunctions |
|
70 /** |
|
71 * destructor |
|
72 */ |
|
73 virtual ~MAknFepUICtrlContainerJapanese() = 0; |
|
74 |
|
75 /** |
|
76 * @since 2.6 |
|
77 * @param aId |
|
78 * @return |
|
79 */ |
|
80 virtual MAknFepUICtrlCandidatePaneInterface* CandidatePane(TAknFepUICtrlCandidatePaneId aId) = 0; |
|
81 }; |
|
82 |
|
83 #endif // __AKN_FEP_UI_CONTAINER_JAPANESE_H__ |
|
84 |
|
85 // End of file |