1 /* |
|
2 * Copyright (c) 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: Settings UIs private Central Repository keys. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef SETTINGSPRIVATECRKEYS_H |
|
20 #define SETTINGSPRIVATECRKEYS_H |
|
21 |
|
22 // INCLUDES |
|
23 #include <e32def.h> |
|
24 |
|
25 // CONSTANTS |
|
26 |
|
27 // --------------------------------------------------------------------------- |
|
28 /** Following keys belong to category KCRUidMiscSettings */ |
|
29 |
|
30 /** |
|
31 * |
|
32 * String value. |
|
33 */ |
|
34 const TUint32 KWatchDogQuarantine = 0x00000001; |
|
35 |
|
36 /** |
|
37 * |
|
38 * String value. |
|
39 */ |
|
40 const TUint32 KWatchDogBlackList = 0x00000002; |
|
41 const TUint32 KWatchDogGSRunning = 0x00000003; |
|
42 const TUint32 KWatchDogCrashCounter = 0x00000004; |
|
43 const TUint32 KWatchdogActivationLimit = 0x00000005; |
|
44 const TUint32 KWatchdogMaxPluginBlackListedRuns = 0x00000006; |
|
45 |
|
46 |
|
47 // --------------------------------------------------------------------------- |
|
48 /** Following keys belong to category KCRUidNetworkSettings */ |
|
49 |
|
50 /** |
|
51 * This key is required for the programs to control if the "network mode" |
|
52 * item should be available in the UI. |
|
53 * |
|
54 * Possible integer values: |
|
55 * 0 = "network mode" item hidden |
|
56 * 1 = "network mode" item visible in GS |
|
57 */ |
|
58 const TUint32 KSettingsNetworkMode = 0x00000001; |
|
59 |
|
60 /** |
|
61 * This key is required for the programs to list the supported |
|
62 * network mode UI list items that will be visible from GS setting page. |
|
63 */ |
|
64 const TUint32 KSettingsNetworkModeList = 0x00000002; |
|
65 |
|
66 /** |
|
67 * This key is required for the programs to set a default value to the |
|
68 * network mode UI list item visible from GS. |
|
69 * This value is used to display the selected item from associated setting page. |
|
70 * |
|
71 * Possible integer values: |
|
72 * 0 = Dual mode |
|
73 * 1 = UMTS |
|
74 * 2 = GSM |
|
75 */ |
|
76 const TUint32 KSettingsNetworkModeValue = 0x00000003; |
|
77 |
|
78 /** |
|
79 * HSDPA Visibility |
|
80 * |
|
81 * Possible values: |
|
82 * 0 = Hide |
|
83 * 1 = Show |
|
84 */ |
|
85 const TUint32 KSettingsHSDPAVisbility = 0x00000007; |
|
86 |
|
87 /** |
|
88 * HSDPA Value |
|
89 * |
|
90 * Possible values: |
|
91 * 0 = Disable |
|
92 * 1 = Enable |
|
93 */ |
|
94 const TUint32 KSettingsHSDPAValue = 0x00000008; |
|
95 |
|
96 |
|
97 // --------------------------------------------------------------------------- |
|
98 /** Following keys belong to category KCRUidPersonalizationSettings */ |
|
99 |
|
100 /** |
|
101 * Background image. |
|
102 * Possible values are: |
|
103 * 0 = No image |
|
104 * 1 = Image used |
|
105 */ |
|
106 const TUint32 KSettingsBackgroundImage = 0x00000001; |
|
107 |
|
108 /** |
|
109 * Background image path. |
|
110 * The value is a string which length can vary from 0 to maximum length. |
|
111 */ |
|
112 const TUint32 KSettingsBackgroundImagePath = 0x00000002; |
|
113 |
|
114 /** |
|
115 * Hide/Unhide user welcome note item in UI. |
|
116 * 0 = Hide |
|
117 * 1 = Show |
|
118 */ |
|
119 const TUint32 KSettingsWelcomeNoteSupported = 0x00000005; |
|
120 |
|
121 |
|
122 // --------------------------------------------------------------------------- |
|
123 /** Following keys belong to category KCRUidCdmaTelephonySettings */ |
|
124 |
|
125 /** |
|
126 * This key indicates whether the call guard is activated |
|
127 * for MO and MT calls. |
|
128 * |
|
129 * 0 = Disabled |
|
130 * 1 = Enabled |
|
131 */ |
|
132 const TUint32 KSettingsCallGuard = 0x00000001; |
|
133 |
|
134 |
|
135 /** |
|
136 * This key indicates whether voice privacy settings |
|
137 * needs to be included and voice privacy status. |
|
138 * |
|
139 * Possible integer values: |
|
140 * 0 = Option 1 - {VP Menu excluded, VP Off} |
|
141 * 1 = Option 2 - {VP Menu excluded, VP On} |
|
142 * 2 = Option 3 - {VP Menu included, VP Off} |
|
143 * 3 = Option 4 - {VP Menu included, VP On} |
|
144 */ |
|
145 const TUint32 KSettingsVoicePrivacy = 0x00000002; |
|
146 |
|
147 |
|
148 /** |
|
149 * This key indicates whether the distinctive ring tone |
|
150 * is enabled while roaming. |
|
151 * |
|
152 * 0 = Disabled |
|
153 * 1 = Enabled |
|
154 */ |
|
155 const TUint32 KSettingsRoamingRingingTone = 0x00000003; |
|
156 |
|
157 |
|
158 // --------------------------------------------------------------------------- |
|
159 /** Following keys belong to category KCRUidSettingsVariation */ |
|
160 |
|
161 /** |
|
162 * Settings Variation API |
|
163 * Keys under this category are used in defining settings variation. |
|
164 */ |
|
165 const TUid KCRUidSettingsVariation = {0x1020720A}; |
|
166 |
|
167 /** |
|
168 * Settings Local Variation Flags. Values are defined in GeneralSettingsVariant.hrh. |
|
169 */ |
|
170 const TUint32 KSettingsVariationFlags = 0x00000001; |
|
171 |
|
172 |
|
173 #endif // SETTINGSPRIVATECRKEYS_H |
|
174 |
|
175 // End of file |
|