1 /* |
|
2 * Copyright (c) 2006 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 application setting UI. |
|
15 * |
|
16 */ |
|
17 |
|
18 #include <coemain.h> |
|
19 #include <featmgr.h> |
|
20 #include <data_caging_path_literals.hrh> |
|
21 #include <AknsUtils.h> |
|
22 |
|
23 #include "cmapplicationsettingsui.h" |
|
24 #include <cmmanager.h> |
|
25 #include "cmmanagerimpl.h" |
|
26 #include <cmpluginbaseeng.h> |
|
27 #include "cmapplicationsettingsuiimpl.h" |
|
28 |
|
29 using namespace CMManager; |
|
30 |
|
31 typedef struct |
|
32 { |
|
33 TInt iCmIapId; |
|
34 TInt iCmDefaultPriority; |
|
35 }TCmListItem; |
|
36 |
|
37 //--------------------------------------------------------------------------- |
|
38 // CCmApplicationSettingsUiImpl::NewL |
|
39 //--------------------------------------------------------------------------- |
|
40 // |
|
41 EXPORT_C CCmApplicationSettingsUiImpl* CCmApplicationSettingsUiImpl::NewL() |
|
42 { |
|
43 return NULL; |
|
44 } |
|
45 |
|
46 |
|
47 //--------------------------------------------------------------------------- |
|
48 // CCmApplicationSettingsUiImpl::RunSettingsL() |
|
49 //--------------------------------------------------------------------------- |
|
50 // |
|
51 EXPORT_C TBool CCmApplicationSettingsUiImpl::RunApplicationSettingsL( |
|
52 TCmSettingSelection& /*aSelection*/ ) |
|
53 { |
|
54 return EFalse; |
|
55 } |
|
56 |
|