20
|
1 |
/*
|
|
2 |
* Copyright (c) 2008 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: Remote Contact Lookup Extension setting resources
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
|
|
19 |
|
|
20 |
#include <uikon.rh>
|
|
21 |
#include <avkon.rh>
|
|
22 |
|
|
23 |
#include <Pbk2UIExtension.rh>
|
|
24 |
#include <Pbk2ExtensionUID.h>
|
|
25 |
#include <phonebook2rcl.loc>
|
|
26 |
#include "../../../inc/Pbk2InternalUID.h" //KFscRclSettingExtensionImplementationUID from pbk2internaluid.h
|
|
27 |
|
|
28 |
// --------------------------------------------------------------------------
|
|
29 |
// Resource identifier
|
|
30 |
// --------------------------------------------------------------------------
|
|
31 |
//
|
|
32 |
NAME FCRC // From Freestyle Contacts 2.0 Remote Contact Lookup
|
|
33 |
|
|
34 |
// --------------------------------------------------------------------------
|
|
35 |
// Standard resource signature
|
|
36 |
// --------------------------------------------------------------------------
|
|
37 |
//
|
|
38 |
RESOURCE RSS_SIGNATURE { }
|
|
39 |
|
|
40 |
// --------------------------------------------------------------------------
|
|
41 |
// r_fsc_rcl_setting_extension_information
|
|
42 |
// Extension information
|
|
43 |
// --------------------------------------------------------------------------
|
|
44 |
//
|
|
45 |
RESOURCE PHONEBOOK2_EXTENSION_INFORMATION r_fsc_rcl_setting_extension_information
|
|
46 |
{
|
|
47 |
version = 0;
|
|
48 |
implementationUid = KFscRclSettingExtensionImplementationUID;
|
|
49 |
loadingPolicy = KPbk2LoadOnSettingsExecution;
|
|
50 |
|
|
51 |
// NO Commands
|
|
52 |
menuCommandRange = PHONEBOOK2_EXTENSION_RANGE
|
|
53 |
{
|
|
54 |
firstId = 0;
|
|
55 |
lastId = 0;
|
|
56 |
};
|
|
57 |
|
|
58 |
overwrittenCommands = {};
|
|
59 |
|
|
60 |
extensionMenus = {};
|
|
61 |
}
|
|
62 |
|
|
63 |
// ---------------------------------------------------------
|
|
64 |
// The RCL settings list
|
|
65 |
// ---------------------------------------------------------
|
|
66 |
//
|
|
67 |
RESOURCE AVKON_SETTING_ITEM_LIST r_rcl_setting_list
|
|
68 |
{
|
|
69 |
title = "Settings";
|
|
70 |
}
|
|
71 |
|
|
72 |
// ---------------------------------------------------------
|
|
73 |
// Strings shown by RCL settings plugin in Phonebook2 settings
|
|
74 |
// ---------------------------------------------------------
|
|
75 |
//
|
|
76 |
RESOURCE TBUF r_qtn_phob_set_server_search
|
|
77 |
{
|
|
78 |
buf = qtn_phob_set_server_search;
|
|
79 |
}
|
|
80 |
|
|
81 |
RESOURCE TBUF r_qtn_rcl_setting_rcl_server_none
|
|
82 |
{
|
|
83 |
buf = qtn_fs_setting_rcl_server_none;
|
|
84 |
}
|
|
85 |
|
|
86 |
RESOURCE TBUF r_qtn_rcl_setting_rcl_not_defined
|
|
87 |
{
|
|
88 |
buf = qtn_fs_setting_rcl_not_defined;
|
|
89 |
}
|
|
90 |
|
|
91 |
// End of File
|