|
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: hwr layout |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef C_CPENINPUTHWRBOXLAYOUTIMP_H |
|
20 #define C_CPENINPUTHWRBOXLAYOUTIMP_H |
|
21 |
|
22 // INCLUDES |
|
23 #include <peninputlayout.h> |
|
24 #include <peninputlayoutplugininterface.h> |
|
25 |
|
26 |
|
27 /** class forward decalaration */ |
|
28 |
|
29 /** |
|
30 * peninputhwrboxjp layout interface implemtation |
|
31 * |
|
32 * @lib peninputhwrboxjp.lib |
|
33 * @since S60 v3.2 |
|
34 */ |
|
35 class CPeninputHwrBoxLayoutImp : public CFepUiLayoutInterface |
|
36 { |
|
37 public: |
|
38 |
|
39 /** |
|
40 * Symbian constructor. |
|
41 * |
|
42 * @since S60 v3.2 |
|
43 * @param aInitParams Init data for layout |
|
44 * @return Pointer to created CCPeninputHwrBoxLayoutImp object |
|
45 */ |
|
46 static CPeninputHwrBoxLayoutImp* NewL(TAny* aInitParams); |
|
47 |
|
48 /** |
|
49 * destructor. |
|
50 * |
|
51 * @since S60 v3.2 |
|
52 * @return None |
|
53 */ |
|
54 virtual ~CPeninputHwrBoxLayoutImp(); |
|
55 |
|
56 /** |
|
57 * From CFepUiLayoutInterface. |
|
58 * Handle layout command event |
|
59 * |
|
60 * @since S60 v3.2 |
|
61 * @param aLayoutOwner The layout owner |
|
62 * @param aData The data for creating layout |
|
63 * @return Pointer to created CFepUiLayout object |
|
64 */ |
|
65 CFepUiLayout* CreateFepUiLayoutL(MLayoutOwner* aLayoutOwner,const TAny* aData); |
|
66 |
|
67 private: |
|
68 |
|
69 /** |
|
70 * C++ default constructor |
|
71 * |
|
72 * @since S60 v3.2 |
|
73 * @return None |
|
74 */ |
|
75 CPeninputHwrBoxLayoutImp(); |
|
76 |
|
77 /** |
|
78 * Symbian second-phase constructor |
|
79 * |
|
80 * @since S60 v3.2 |
|
81 * @return None |
|
82 */ |
|
83 void ConstructL(); |
|
84 |
|
85 private:// data |
|
86 |
|
87 }; |
|
88 |
|
89 #endif // C_CPENINPUTHWRBOXLAYOUTIMP_H |
|
90 |
|
91 //End Of File |