63
|
1 |
/*
|
|
2 |
* Copyright (c) 2002 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 |
|
|
19 |
// INCLUDES
|
|
20 |
#include "../group/LogsUID.h" // common Logs UID definitions
|
|
21 |
#include <data_caging_paths.hrh>
|
|
22 |
#include <platform_paths.hrh> // for APP_LAYER_SYSTEMINCLUDE macro
|
|
23 |
|
|
24 |
//Activate these macros to get traces
|
|
25 |
//MACRO TRACE_ENTRY_EXIT_POINT
|
|
26 |
//MACRO TRACE_MODULE_LOGSUI
|
|
27 |
|
|
28 |
// Target information
|
|
29 |
// TARGETPATH need not be defined, it is automatically handled by the build tools
|
|
30 |
TARGET Logs.exe
|
|
31 |
TARGETTYPE exe
|
|
32 |
EPOCSTACKSIZE 0x2710 //10000dec (default is 8000dec). In new architecture we need some more stack to
|
|
33 |
//facilitate succesfull launching of editors (e.g. prepend number and send sms editors)
|
|
34 |
EPOCHEAPSIZE 0x1000 0x200000
|
|
35 |
UID 0x100039CE KLogsAppUID3
|
|
36 |
VENDORID VID_DEFAULT
|
|
37 |
|
|
38 |
//1. Logs resources
|
|
39 |
START RESOURCE ../group/Logs.rss //This file includes all other .rss files
|
|
40 |
HEADER
|
|
41 |
TARGETPATH APP_RESOURCE_DIR
|
|
42 |
LANGUAGE_IDS
|
|
43 |
END // RESOURCE
|
|
44 |
|
|
45 |
//2. AIF-resources
|
|
46 |
START RESOURCE ../group/Logs_reg.rss
|
|
47 |
DEPENDS logs.rsg
|
|
48 |
TARGETPATH /private/10003a3f/apps
|
|
49 |
END // RESOURCE
|
|
50 |
|
|
51 |
|
|
52 |
//We use default capabilities (from defaultcaps.hrh) + NetworkControl in order to make phonecalls
|
|
53 |
CAPABILITY CAP_APPLICATION NetworkControl
|
|
54 |
|
|
55 |
SOURCEPATH ../AppSrc // Project location /Logs/AppSrc
|
|
56 |
|
|
57 |
// Core classes
|
|
58 |
SOURCE CLogsApplication.cpp
|
|
59 |
SOURCE CLogsDocument.cpp
|
|
60 |
SOURCE CLogsAppUi.cpp
|
|
61 |
SOURCE CLogsBaseView.cpp
|
|
62 |
SOURCE CLogsBaseControlContainer.cpp
|
|
63 |
SOURCE CLogsAppListView.cpp
|
|
64 |
SOURCE CLogsAppListControlContainer.cpp
|
|
65 |
SOURCE CLogsSubAppListView.cpp
|
|
66 |
SOURCE CLogsSubAppListControlContainer.cpp
|
|
67 |
SOURCE CLogsEventListView.cpp
|
|
68 |
SOURCE CLogsEventListControlContainer.cpp
|
|
69 |
SOURCE CLogsEventListAdapter.cpp
|
|
70 |
SOURCE CLogsRecentListView.cpp
|
|
71 |
SOURCE CLogsRecentListControlContainer.cpp
|
|
72 |
SOURCE CLogsRecentListAdapter.cpp
|
|
73 |
SOURCE CLogsDetailView.cpp
|
|
74 |
SOURCE CLogsDetailControlContainer.cpp
|
|
75 |
SOURCE CLogsDetailAdapter.cpp
|
|
76 |
SOURCE CGprsCtView.cpp
|
|
77 |
SOURCE CGprsCtControlContainer.cpp
|
|
78 |
SOURCE CLogsGprsCtAdapter.cpp
|
|
79 |
SOURCE CCtView.cpp
|
|
80 |
SOURCE CCtControlContainer.cpp
|
|
81 |
SOURCE CLogsCtAdapter.cpp
|
|
82 |
SOURCE CPhoneNumberFormat.cpp
|
|
83 |
SOURCE CLogsPrependQuery.cpp
|
|
84 |
SOURCE CLogsTimer.cpp
|
|
85 |
SOURCE CLogsNaviDecoratorWrapper.cpp
|
|
86 |
|
|
87 |
//extension enabling classes
|
|
88 |
SOURCE CLogsViewGlobals.cpp
|
|
89 |
SOURCE CLogsExtensionLoader.cpp
|
|
90 |
SOURCE TLogsDummyExtensionFactory.cpp
|
|
91 |
SOURCE TLogsDummyViewExtension.cpp
|
|
92 |
SOURCE TLogsDummyUiControlExtension.cpp
|
|
93 |
|
|
94 |
// Include paths
|
|
95 |
USERINCLUDE ../AppSrc ../EngineInc ../group ../AocCtViewInc ../LogsExt
|
|
96 |
|
|
97 |
APP_LAYER_SYSTEMINCLUDE
|
|
98 |
|
|
99 |
// Dependencies to other Logs components
|
|
100 |
LIBRARY LogsEng.lib
|
|
101 |
LIBRARY AocCtView.lib
|
|
102 |
|
|
103 |
// Dependencies to system components
|
|
104 |
LIBRARY apparc.lib
|
|
105 |
LIBRARY avkon.lib
|
|
106 |
LIBRARY commonengine.lib // StringLoader
|
|
107 |
LIBRARY cone.lib
|
|
108 |
LIBRARY eikcoctl.lib
|
|
109 |
LIBRARY eikctl.lib
|
|
110 |
LIBRARY eikcore.lib
|
|
111 |
LIBRARY euser.lib
|
|
112 |
LIBRARY fbscli.lib // Listbox graphic
|
|
113 |
LIBRARY egul.lib
|
|
114 |
LIBRARY bafl.lib // MDesCArray, CCLipBoard
|
|
115 |
LIBRARY logcli.lib // CLogClient
|
|
116 |
LIBRARY etext.lib // CPlainText
|
|
117 |
LIBRARY sendui.lib // sendui
|
|
118 |
LIBRARY AknSkins.lib
|
|
119 |
LIBRARY hlplch.lib // Help application
|
|
120 |
LIBRARY FeatMgr.lib // Feature Manager API
|
|
121 |
LIBRARY ws32.lib
|
|
122 |
LIBRARY apgrfx.lib
|
|
123 |
LIBRARY numbergrouping.lib //Formatting North American phone numbers
|
|
124 |
LIBRARY ServiceHandler.lib //Application InterWorking
|
|
125 |
LIBRARY CdlEngine.lib //Dynamic ui stuff
|
|
126 |
LIBRARY eikdlg.lib
|
|
127 |
LIBRARY gdi.lib
|
|
128 |
LIBRARY efsrv.lib
|
|
129 |
LIBRARY GSEcomPlugin.lib
|
|
130 |
LIBRARY ecom.lib
|
|
131 |
LIBRARY PhoneClient.lib //For Emergency call API
|
|
132 |
LIBRARY aiwdialdata.lib
|
|
133 |
LIBRARY centralrepository.lib
|
|
134 |
|
|
135 |
//spsettings
|
|
136 |
LIBRARY serviceprovidersettings.lib
|
|
137 |
|
|
138 |
#ifdef __OMA_POC
|
|
139 |
LIBRARY PoCUiIntegrationServices.lib // CPoCUiIntegrationServices
|
|
140 |
#endif
|
|
141 |
|
|
142 |
//+ __GFXTRANS__
|
|
143 |
LIBRARY gfxtrans.lib
|
|
144 |
//-- __GFXTRANS__
|
|
145 |
|
|
146 |
DEBUGLIBRARY flogger.lib
|