|
1 /* |
|
2 * Copyright (c) 2009 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 * |
|
16 */ |
|
17 |
|
18 // This is the main source file for a customisation DLL. |
|
19 // It may be modified manually. |
|
20 |
|
21 #include "adaptation_layer_aknlayout_elaf.h" |
|
22 #include "adaptation_layer_aknapaclayout.h" |
|
23 #include "adaptation_layer_applayout_elaf.h" |
|
24 #include "adaptation_layer_appapaclayout.h" |
|
25 #include "adaptation_layer_skinlayout.h" |
|
26 #include "layoutmetadata_defaults.h" |
|
27 #include "layoutmetadata_scrollbar.h" |
|
28 #include "layoutmetadata_land.h" |
|
29 #include "layoutmetadata_apac.h" |
|
30 #include "layoutmetadata_abrw.h" |
|
31 #include "layoutmetadata_pensupport.h" |
|
32 #include "layoutmetadata_liststretching.h" |
|
33 #include "layoutmetadata_msk.h" |
|
34 #include "layoutmetadata_touchpane.h" |
|
35 |
|
36 CDL_ARRAY_START(SCdlCustomisation, KCdlData) |
|
37 { |
|
38 CDL_CUSTOMISATION(Adaptation_Layer_AknLayout_Elaf), |
|
39 CDL_CUSTOMISATION(Adaptation_Layer_AknApacLayout), |
|
40 CDL_CUSTOMISATION(Adaptation_Layer_AppLayout_Elaf), |
|
41 CDL_CUSTOMISATION(Adaptation_Layer_AppApacLayout), |
|
42 CDL_CUSTOMISATION(Adaptation_Layer_SkinLayout), |
|
43 CDL_CUSTOMISATION(LayoutMetaData_defaults), |
|
44 CDL_CUSTOMISATION(LayoutMetaData_scrollbar), |
|
45 CDL_CUSTOMISATION(LayoutMetaData_land), |
|
46 CDL_CUSTOMISATION(LayoutMetaData_APAC), |
|
47 CDL_CUSTOMISATION(LayoutMetaData_abrw), |
|
48 CDL_CUSTOMISATION(LayoutMetaData_pensupport), |
|
49 CDL_CUSTOMISATION(LayoutMetaData_liststretching), |
|
50 CDL_CUSTOMISATION(LayoutMetaData_MSK), |
|
51 CDL_CUSTOMISATION(LayoutMetaData_touchpane), |
|
52 } |
|
53 CDL_ARRAY_END(SCdlCustomisation, KCdlData); |
|
54 |
|
55 GLREF_D const SCdlMain KCdlMainExport = |
|
56 { |
|
57 1, |
|
58 0, |
|
59 &KCdlData |
|
60 }; |
|
61 |
|
62 #include <ecom/ecom.h> |
|
63 #include <ecom/implementationproxy.h> |
|
64 |
|
65 static TAny* MainExport() |
|
66 { |
|
67 return (TAny*)&KCdlMainExport; |
|
68 } |
|
69 |
|
70 const TImplementationProxy ImplementationTable[] = |
|
71 { |
|
72 {{0x101fe2aa}, ::MainExport} |
|
73 }; |
|
74 |
|
75 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount) |
|
76 { |
|
77 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy); |
|
78 return ImplementationTable; |
|
79 } |
|
80 |
|
81 |