|
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: Implementation of the hwr layout |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 // system includes |
|
20 |
|
21 // user includes |
|
22 #include "peninputhwrboxlayoutimp.h" |
|
23 #include "peninputhwrboxlayout.h" |
|
24 |
|
25 |
|
26 // ======== MEMBER FUNCTIONS ======== |
|
27 |
|
28 // --------------------------------------------------------------------------- |
|
29 // CPeninputHwrBoxLayoutImp::NewL |
|
30 // (other items were commented in a header). |
|
31 // --------------------------------------------------------------------------- |
|
32 // |
|
33 CPeninputHwrBoxLayoutImp* CPeninputHwrBoxLayoutImp::NewL( TAny* /*aInitParams*/ ) |
|
34 { |
|
35 CPeninputHwrBoxLayoutImp* self = new(ELeave) CPeninputHwrBoxLayoutImp(); |
|
36 CleanupStack::PushL(self); |
|
37 self->ConstructL(); |
|
38 CleanupStack::Pop(self); |
|
39 |
|
40 return self; |
|
41 } |
|
42 |
|
43 // --------------------------------------------------------------------------- |
|
44 // CPeninputHwrBoxLayoutImp::~CPeninputHwrBoxLayoutImp |
|
45 // (other items were commented in a header). |
|
46 // --------------------------------------------------------------------------- |
|
47 // |
|
48 CPeninputHwrBoxLayoutImp::~CPeninputHwrBoxLayoutImp() |
|
49 { |
|
50 } |
|
51 |
|
52 // --------------------------------------------------------------------------- |
|
53 // CPeninputHwrBoxLayoutImp::CreateFepUiLayoutL |
|
54 // (other items were commented in a header). |
|
55 // --------------------------------------------------------------------------- |
|
56 // |
|
57 CFepUiLayout* CPeninputHwrBoxLayoutImp::CreateFepUiLayoutL(MLayoutOwner* aLayoutOwner,const TAny* aData) |
|
58 { |
|
59 CPeninputHwrBoxLayout* aUiLayout = CPeninputHwrBoxLayout::NewL( aLayoutOwner, aData ); |
|
60 |
|
61 return aUiLayout; |
|
62 } |
|
63 |
|
64 // --------------------------------------------------------------------------- |
|
65 // CPeninputHwrBoxLayoutImp::CPeninputHwrBoxLayoutImp |
|
66 // (other items were commented in a header). |
|
67 // --------------------------------------------------------------------------- |
|
68 // |
|
69 CPeninputHwrBoxLayoutImp::CPeninputHwrBoxLayoutImp() |
|
70 { |
|
71 // See ConstructL() for initialisation completion. |
|
72 } |
|
73 |
|
74 // --------------------------------------------------------------------------- |
|
75 // CPeninputHwrBoxLayoutImp::ConstructL |
|
76 // (other items were commented in a header). |
|
77 // --------------------------------------------------------------------------- |
|
78 // |
|
79 void CPeninputHwrBoxLayoutImp::ConstructL() |
|
80 { |
|
81 } |
|
82 |
|
83 // End Of File |