|
1 /* |
|
2 * Copyright (c) 2002-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: Interface of vkb ui state |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef C_PENINPUTVKBCTRLEXTJP_H |
|
20 #define C_PENINPUTVKBCTRLEXTJP_H |
|
21 |
|
22 // system includes |
|
23 #include <peninputvkbctrlext.h> |
|
24 |
|
25 |
|
26 // class declarations |
|
27 /** |
|
28 * vkb extenting control class for japanese |
|
29 * |
|
30 * @lib peninputvkbjp.lib |
|
31 * @since S60 v3.2 |
|
32 */ |
|
33 class CPeninputVkbCtrlExtJp : public CPeninputVkbCtrlExt |
|
34 { |
|
35 public: |
|
36 /** |
|
37 * Create one CPeninputVkbCtrlExt object |
|
38 * |
|
39 * @since S60 v3.2 |
|
40 * @param aRect The rectangle of the control |
|
41 * @param aUiLayout The layout plugin |
|
42 * @param aControlId The control ID |
|
43 * @param TFontSpec The specification of font |
|
44 * @return The pointer to CPeninputVkbCtrlExtJp object |
|
45 */ |
|
46 static CPeninputVkbCtrlExtJp* NewL( const TRect& aRect, |
|
47 CFepUiLayout* aUiLayout, |
|
48 TInt aControlId, |
|
49 const TFontSpec& aFontSpec ); |
|
50 |
|
51 /** |
|
52 * Create one CPeninputVkbCtrlExt object |
|
53 * |
|
54 * @since S60 v3.2 |
|
55 * @param aRect The rectangle of the control |
|
56 * @param aUiLayout The layout plugin |
|
57 * @param aControlId This control ID |
|
58 * @param aFont The pointer to CFont object |
|
59 * @return The pointer to CPeninputVkbCtrlExtJp object |
|
60 */ |
|
61 static CPeninputVkbCtrlExtJp* NewL( const TRect& aRect, |
|
62 CFepUiLayout* aUiLayout, |
|
63 TInt aControlId, |
|
64 const CFont* aFont ); |
|
65 |
|
66 /** |
|
67 * Destructor |
|
68 * |
|
69 * @since S60 v3.2 |
|
70 * @return None |
|
71 */ |
|
72 virtual ~CPeninputVkbCtrlExtJp(); |
|
73 |
|
74 /** |
|
75 * Dim all keys |
|
76 * |
|
77 * @since S60 V4.0 |
|
78 * @param aFlag The dim status |
|
79 */ |
|
80 void SetDimmed(TBool aDimFlag) const; |
|
81 |
|
82 protected: |
|
83 |
|
84 /* |
|
85 * Constructor |
|
86 * |
|
87 * @since S60 v3.2 |
|
88 * @param aRect The rectangle of the control |
|
89 * @param aUiLayout The layout plugin |
|
90 * @param aControlId The control ID |
|
91 * @param aFontSpec The specification of font |
|
92 * @return None |
|
93 */ |
|
94 CPeninputVkbCtrlExtJp( const TRect& aRect, |
|
95 CFepUiLayout* aUiLayout, |
|
96 TInt aControlId, |
|
97 const TFontSpec& aFontSpec ); |
|
98 |
|
99 }; |
|
100 |
|
101 #endif // C_PENINPUTVKBCTRLEXTJP_H |
|
102 |
|
103 // End Of File |
|
104 |