williamr@2
|
1 |
/*
|
williamr@2
|
2 |
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
williamr@2
|
3 |
* All rights reserved.
|
williamr@2
|
4 |
* This component and the accompanying materials are made available
|
williamr@2
|
5 |
* under the terms of the License "Eclipse Public License v1.0"
|
williamr@2
|
6 |
* which accompanies this distribution, and is available
|
williamr@2
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
williamr@2
|
8 |
*
|
williamr@2
|
9 |
* Initial Contributors:
|
williamr@2
|
10 |
* Nokia Corporation - initial contribution.
|
williamr@2
|
11 |
*
|
williamr@2
|
12 |
* Contributors:
|
williamr@2
|
13 |
*
|
williamr@4
|
14 |
* Description:
|
williamr@2
|
15 |
*
|
williamr@2
|
16 |
*/
|
williamr@2
|
17 |
#ifndef BROWSERUISDKCRKEYS_H
|
williamr@2
|
18 |
#define BROWSERUISDKCRKEYS_H
|
williamr@2
|
19 |
|
williamr@2
|
20 |
const TUid KCRUidBrowserUiLV = {0x101F861B};
|
williamr@2
|
21 |
const TUid KCRUidBrowser = {0x10008D39};
|
williamr@2
|
22 |
|
williamr@2
|
23 |
// Users should be able to select the volume for plugins
|
williamr@2
|
24 |
// Valid Values: (mute)0,2,5,8,10(maximum)
|
williamr@2
|
25 |
const TUint32 KBrowserMediaVolumeControl = 0x0000001C;
|
williamr@2
|
26 |
|
williamr@2
|
27 |
// The setting for CSS fetching.
|
williamr@2
|
28 |
// Valid values: 0 = disabled, 1 = enabled
|
williamr@2
|
29 |
const TUint32 KBrowserCSSFetch = 0x00000003;
|
williamr@2
|
30 |
|
williamr@2
|
31 |
// Boolean value which determines if text inside <nowrap>
|
williamr@2
|
32 |
// tags on a wml page should be wrapped.
|
williamr@2
|
33 |
// Valid values: 0 = On, 1 = Off
|
williamr@2
|
34 |
const TUint32 KBrowserTextWrapEnabled = 0x00000004;
|
williamr@2
|
35 |
|
williamr@2
|
36 |
// Browser Security Dialog suppression setting.
|
williamr@2
|
37 |
// Valid values: 0 = off 1 = on
|
williamr@2
|
38 |
const TUint32 KBrowserSecurityUI = 0x00000008;
|
williamr@2
|
39 |
|
williamr@2
|
40 |
// Variant specific Browser encoding setting.
|
williamr@2
|
41 |
// Valid values: any positive 32-bit integer value
|
williamr@2
|
42 |
const TUint32 KBrowserDefaultCharset = 0x00000009;
|
williamr@2
|
43 |
|
williamr@2
|
44 |
// Default access point, UID of the AP record.
|
williamr@2
|
45 |
// Valid values:any positive 32-bit integer value
|
williamr@2
|
46 |
const TUint32 KBrowserDefaultAccessPoint = 0x0000000E;
|
williamr@2
|
47 |
|
williamr@2
|
48 |
// Indicates whether the user has to confirm DTFM sending or not.
|
williamr@2
|
49 |
// Valid values: 0 = off 1 = on
|
williamr@2
|
50 |
const TUint32 KBrowserConfirmDTMFSending = 0x00000017;
|
williamr@2
|
51 |
|
williamr@2
|
52 |
// Browser IMEI notification setting. UAProf filter uses
|
williamr@2
|
53 |
// this key to decide whether to send phone's IMEI code
|
williamr@2
|
54 |
// within User-Agent header. IMEI notification feature is
|
williamr@2
|
55 |
// only ON if the operator requests it.#
|
williamr@2
|
56 |
// Valid values: 0 = disable 1 = enable
|
williamr@2
|
57 |
const TUint32 KBrowserIMEINotification = 0x00000018;
|
williamr@2
|
58 |
|
williamr@2
|
59 |
// Integer value to turn on or off the send referrer
|
williamr@2
|
60 |
// header option.
|
williamr@2
|
61 |
// Valid values: 0 = off 1 = on
|
williamr@2
|
62 |
const TUint32 KBrowserSendReferrerHeader = 0x00000019;
|
williamr@2
|
63 |
|
williamr@2
|
64 |
// Flags for variating Browser engine
|
williamr@2
|
65 |
// Any Integer value
|
williamr@2
|
66 |
const TUint32 KBrowserEngineFlags = 0x00000001;
|
williamr@2
|
67 |
|
williamr@2
|
68 |
// These content types will be handled specially like descriptor contents
|
williamr@2
|
69 |
// Any String value
|
williamr@2
|
70 |
const TUint32 KBrowserSelfDownloadContentTypes = 0x0000001D;
|
williamr@2
|
71 |
|
williamr@4
|
72 |
enum TBrowserCenRepApSelectionModeValues
|
williamr@2
|
73 |
{
|
williamr@2
|
74 |
EBrowserCenRepApSelModeUserDefined = 0, // User defined
|
williamr@2
|
75 |
EBrowserCenRepApSelModeAlwaysAsk = 1, // Always ask
|
williamr@2
|
76 |
EBrowserCenRepApSelModeDestination = 2 // Destination
|
williamr@2
|
77 |
};
|
williamr@2
|
78 |
|
williamr@2
|
79 |
// Defines the access point selection mode (User defined, Always ask, Destination)
|
williamr@2
|
80 |
// Valid values: See above TBrowserCenRepApSelectionModeValues.
|
williamr@2
|
81 |
// User defined is also what so called Connection Method after SNAP introduction
|
williamr@2
|
82 |
const TUint32 KBrowserAccessPointSelectionMode = 0x0000001E;
|
williamr@2
|
83 |
|
williamr@2
|
84 |
// Setting for DownloadManager to indicate the available drives on harware.
|
williamr@2
|
85 |
// Valid values: constant string with maximum length of 52bytes,
|
williamr@2
|
86 |
const TUint32 KBrowserDrivePrefListForDownloadedContent = 0x00000021;
|
williamr@2
|
87 |
|
williamr@2
|
88 |
// The flag that's set if Browser build is to be used in United States (USA)
|
williamr@2
|
89 |
// Valid values: 0 = not set (non-US build) 1 = set (US build)
|
williamr@2
|
90 |
const TUint32 KBrowserUsBuild = 0x00000023;
|
williamr@2
|
91 |
|
williamr@2
|
92 |
// Indicates whether the user has confirmed DTFM once or not.
|
williamr@2
|
93 |
// Valid values: 0 = no 1 = yes
|
williamr@2
|
94 |
const TUint32 KBrowserConfirmedDTMFOnce = 0x00000024;
|
williamr@2
|
95 |
|
williamr@2
|
96 |
/**
|
williamr@2
|
97 |
*
|
williamr@2
|
98 |
* OSS Browser Keys
|
williamr@2
|
99 |
*
|
williamr@2
|
100 |
*/
|
williamr@2
|
101 |
|
williamr@4
|
102 |
// Load Content
|
williamr@4
|
103 |
// Valid values:
|
williamr@2
|
104 |
// If flash plugin is present: 0 = Text only, 1 = Images,No flash, 2 = All
|
williamr@2
|
105 |
// If flash plugin is not present 0 = Text only, 1 = All
|
williamr@2
|
106 |
const TUint32 KBrowserNGImagesEnabled = 0x00000025;
|
williamr@2
|
107 |
|
williamr@2
|
108 |
// Browser font size.
|
williamr@2
|
109 |
// Valid values:any positive 32-bit integer value
|
williamr@2
|
110 |
const TUint32 KBrowserNGFontSize = 0x00000026;
|
williamr@2
|
111 |
|
williamr@2
|
112 |
// Browser encoding setting.
|
williamr@2
|
113 |
// Valid values: any positive 32-bit integer value
|
williamr@2
|
114 |
const TUint32 KBrowserNGEncoding = 0x00000027;
|
williamr@2
|
115 |
|
williamr@2
|
116 |
// Browser uses cookies.
|
williamr@2
|
117 |
// Valid values: 0 = reject 1 = allow
|
williamr@2
|
118 |
const TUint32 KBrowserNGCookiesEnabled = 0x0000002B;
|
williamr@2
|
119 |
|
williamr@2
|
120 |
// Boolean value which determines whether ECMA Script
|
williamr@2
|
121 |
// setting is enabled or disabled in Browser.
|
williamr@2
|
122 |
// Valid values: 0 = disabled 1 = enabled
|
williamr@2
|
123 |
const TUint32 KBrowserNGECMAScriptSupport = 0x0000002C;
|
williamr@2
|
124 |
|
williamr@2
|
125 |
// Show HTTP security warnings.
|
williamr@2
|
126 |
// Valid values: 0 = off 1 = on
|
williamr@2
|
127 |
const TUint32 KBrowserNGShowSecurityWarnings= 0x0000002D;
|
williamr@2
|
128 |
|
williamr@2
|
129 |
// Show Page Overview.
|
williamr@2
|
130 |
// Valid values: 0 = off 1 = on
|
williamr@2
|
131 |
const TUint32 KBrowserNGPageOverview = 0x0000002E;
|
williamr@2
|
132 |
|
williamr@4
|
133 |
// Valid values for KBrowserNGHomepageType
|
williamr@4
|
134 |
enum TBrowserCenRepHomePageTypeValue
|
williamr@4
|
135 |
{
|
williamr@4
|
136 |
EBrowserCenRepAccessPoint = 0, // AccessPoint
|
williamr@4
|
137 |
EBrowserCenRepUserDefinedHomePage = 1, // User defined home page address
|
williamr@4
|
138 |
EBrowserCenRepCurrentURL = 2, // Current URL
|
williamr@4
|
139 |
EBrowserCenRepBookmarks = 3 // Bookmarks
|
williamr@4
|
140 |
};
|
williamr@4
|
141 |
|
williamr@4
|
142 |
// Integer type value to indicate what type of Home Page
|
williamr@4
|
143 |
// should be launched when "Home" option is activated.
|
williamr@4
|
144 |
// Valid values:
|
williamr@4
|
145 |
// AccessPoint = 0,
|
williamr@4
|
146 |
// User defined home page address = 1,
|
williamr@4
|
147 |
// Current URL = 2,
|
williamr@4
|
148 |
// Bookmarks = 3
|
williamr@4
|
149 |
// Enums for these valid values are as defined in TBrowserCenRepHomePageTypeValue
|
williamr@4
|
150 |
const TUint32 KBrowserNGHomepageType = 0x00000031;
|
williamr@4
|
151 |
|
williamr@2
|
152 |
// Mime types for HTTP accept header.
|
williamr@2
|
153 |
// Any String value
|
williamr@2
|
154 |
const TUint32 KBrowserNGMimeTypes = 0x00000032;
|
williamr@2
|
155 |
|
williamr@2
|
156 |
// Show History view on back softkey press.
|
williamr@2
|
157 |
// Valid values: 0 = off 1 = on
|
williamr@2
|
158 |
const TUint32 KBrowserNGBackList = 0x00000033;
|
williamr@2
|
159 |
|
williamr@2
|
160 |
// Auto refresh.
|
williamr@2
|
161 |
// Valid values: 0 = off 1 = on
|
williamr@2
|
162 |
const TUint32 KBrowserNGAutoRefresh = 0x00000034;
|
williamr@2
|
163 |
|
williamr@2
|
164 |
// The setting for encoding a URL with UTF-8 or the original encoding.
|
williamr@2
|
165 |
// Valid values: 0 = off 1 = on
|
williamr@2
|
166 |
const TUint32 KBrowserNGUtf8Encoding = 0x00000036;
|
williamr@2
|
167 |
|
williamr@2
|
168 |
// With this setting automatic updating of
|
williamr@2
|
169 |
// Wen Feeds can be set on (with anupdate interval) or off.
|
williamr@2
|
170 |
// Valid values:
|
williamr@2
|
171 |
// 0 = Every week
|
williamr@2
|
172 |
// 1 = Every day
|
williamr@2
|
173 |
// 2 = Every 4 hours
|
williamr@2
|
174 |
// 3 = Every hour
|
williamr@2
|
175 |
// 4 = Every 15 minutes
|
williamr@2
|
176 |
// 5 = Off
|
williamr@2
|
177 |
const TUint32 KBrowserNGAutomaticUpdating = 0x00000037;
|
williamr@2
|
178 |
|
williamr@2
|
179 |
// Short cut keys for function: Navigates to home page
|
williamr@2
|
180 |
// Any String value
|
williamr@2
|
181 |
const TUint32 KBrowserNGShortCutFuncHomePg = 0x0000003A;
|
williamr@2
|
182 |
|
williamr@4
|
183 |
// Short cut keys for function: Go to bookmark
|
williamr@2
|
184 |
// Any String value
|
williamr@2
|
185 |
const TUint32 KBrowserNGShortCutFuncBkMark = 0x0000003B;
|
williamr@2
|
186 |
|
williamr@2
|
187 |
// Short cut keys for function: Find keyword
|
williamr@2
|
188 |
// Any String value
|
williamr@2
|
189 |
const TUint32 KBrowserNGShortCutFuncFindKeyWord = 0x0000003C;
|
williamr@2
|
190 |
|
williamr@2
|
191 |
// Short cut keys for function: Go to the previous page
|
williamr@2
|
192 |
// Any String value
|
williamr@2
|
193 |
const TUint32 KBrowserNGShortCutFuncPrePage = 0x0000003D;
|
williamr@2
|
194 |
|
williamr@2
|
195 |
// Short cut keys for function: Switch window
|
williamr@2
|
196 |
// Any String value
|
williamr@2
|
197 |
const TUint32 KBrowserNGShortCutFuncSwitchWin = 0x0000003E;
|
williamr@2
|
198 |
|
williamr@2
|
199 |
// Short cut keys for function: Toggles miniature image on/off
|
williamr@2
|
200 |
// Any String value
|
williamr@2
|
201 |
const TUint32 KBrowserNGShortCutFuncMiniImage = 0x0000003F;
|
williamr@2
|
202 |
|
williamr@2
|
203 |
// Short cut keys for function: Go to address
|
williamr@2
|
204 |
// Any String value
|
williamr@2
|
205 |
const TUint32 KBrowserNGShortCutFuncGoAddr = 0x00000040;
|
williamr@2
|
206 |
|
williamr@2
|
207 |
// Short cut keys for function: Zoom in
|
williamr@2
|
208 |
// Any String value
|
williamr@2
|
209 |
const TUint32 KBrowserNGShortCutFuncZoomIn = 0x00000041;
|
williamr@2
|
210 |
|
williamr@2
|
211 |
// Short cut keys for function: Zoom out
|
williamr@2
|
212 |
// Any String value
|
williamr@2
|
213 |
const TUint32 KBrowserNGShortCutFuncZoomOut = 0x00000042;
|
williamr@2
|
214 |
|
williamr@2
|
215 |
// The access point used when Web Feeds was updated automatically
|
williamr@2
|
216 |
const TUint32 KBrowserNGAutomaticUpdatingAccessPoint = 0x00000043;
|
williamr@2
|
217 |
|
williamr@2
|
218 |
// Setting to enable "Rotate display" menu item
|
williamr@2
|
219 |
const TUint32 KBrowserNGRotateDisplay = 0x00000044;
|
williamr@2
|
220 |
|
williamr@2
|
221 |
// Setting to enable "Open download" menu item
|
williamr@4
|
222 |
// Valid value 0 = no, 1 = yes
|
williamr@2
|
223 |
const TUint32 KBrowserNGOpenDownloads = 0x00000045;
|
williamr@2
|
224 |
|
williamr@2
|
225 |
//DEPRECATED/OBSOLETE: Smart Link.
|
williamr@2
|
226 |
// Valid values: 0 = off 1 = on
|
williamr@4
|
227 |
const TUint32 KBrowserNGSmartLink = 0x00000046;
|
williamr@2
|
228 |
|
williamr@2
|
229 |
// Setting to enable updating while roaming
|
williamr@2
|
230 |
// Valid values: 0 = off 1 = on
|
williamr@2
|
231 |
const TUint32 KBrowserNGAutomaticUpdatingWhileRoaming = 0x00000047;
|
williamr@2
|
232 |
|
williamr@2
|
233 |
// DEPRECATED/OBSOLETE: Show platform toolbar
|
williamr@2
|
234 |
// Valid value int
|
williamr@2
|
235 |
//const TUInt32 KBrowserNGShowPlatformToolbar = 0x00000048;
|
williamr@2
|
236 |
|
williamr@2
|
237 |
// Last visible toolbar
|
williamr@2
|
238 |
// Valid values: basic toolbar = 0 address toolbar = 1
|
williamr@2
|
239 |
//const TUint32 KBrowserNGLastVisibleToolbar = 0x00000049;
|
williamr@2
|
240 |
|
williamr@2
|
241 |
// Setting to enable the Http Optimisations (HttpFilterOptB)
|
williamr@2
|
242 |
// Valid values: 0 = disabled, 1 = enabled
|
williamr@2
|
243 |
const TUint32 KBrowserNGHttpOptBEnabled = 0x00000050;
|
williamr@2
|
244 |
|
williamr@2
|
245 |
// Setting to determines if the Access keys feature is enabled or disabled
|
williamr@2
|
246 |
// Valid values: 0 = off 1 = on
|
williamr@2
|
247 |
//const TUint32 KBrowserNGAccessKeys = 0x00000051;
|
williamr@2
|
248 |
|
williamr@2
|
249 |
// The FileManager UID
|
williamr@2
|
250 |
const TUint32 KFileManagerUid = 0x00000052;
|
williamr@2
|
251 |
|
williamr@2
|
252 |
//the key used to get the default snap id
|
williamr@2
|
253 |
const TUint32 KBrowserNGDefaultSnapId = 0x00000053;
|
williamr@2
|
254 |
|
williamr@2
|
255 |
// User configurable suffixes for URL completion
|
williamr@2
|
256 |
// Any String value
|
williamr@2
|
257 |
const TUint32 KBrowserUrlSuffix = 0x00000054;
|
williamr@2
|
258 |
|
williamr@2
|
259 |
//Setting for Toolbar On/Off configuration
|
williamr@2
|
260 |
// Turns Toolbar On or Off ( 0 = Off ; 1 = On)
|
williamr@2
|
261 |
const TUint32 KToolbarOnOff = 0x00000055;
|
williamr@2
|
262 |
|
williamr@2
|
263 |
//Setting for Toolbar Button 1 Command
|
williamr@2
|
264 |
const TUint32 KToolbarButton1Cmd = 0x00000056;
|
williamr@2
|
265 |
|
williamr@2
|
266 |
//Setting for Toolbar Button 2 Command
|
williamr@2
|
267 |
const TUint32 KToolbarButton2Cmd = 0x00000057;
|
williamr@4
|
268 |
|
williamr@2
|
269 |
//Setting for Toolbar Button 3 Command
|
williamr@2
|
270 |
const TUint32 KToolbarButton3Cmd = 0x00000058;
|
williamr@2
|
271 |
|
williamr@2
|
272 |
//Setting for Toolbar Button 4 Command
|
williamr@2
|
273 |
const TUint32 KToolbarButton4Cmd = 0x00000059;
|
williamr@2
|
274 |
|
williamr@2
|
275 |
//Setting for Toolbar Button 5 Command
|
williamr@2
|
276 |
const TUint32 KToolbarButton5Cmd = 0x00000060;
|
williamr@2
|
277 |
|
williamr@2
|
278 |
//Setting for Toolbar Button 6 Command
|
williamr@2
|
279 |
const TUint32 KToolbarButton6Cmd = 0x00000061;
|
williamr@2
|
280 |
|
williamr@2
|
281 |
//Setting for Toolbar Button 7 Command
|
williamr@2
|
282 |
const TUint32 KToolbarButton7Cmd = 0x00000062;
|
williamr@2
|
283 |
|
williamr@2
|
284 |
//Setting for Shortcut Key 1 Command
|
williamr@2
|
285 |
const TUint32 KShortcutKey1Cmd = 0x00000063;
|
williamr@2
|
286 |
|
williamr@2
|
287 |
//Setting for Shortcut Key 2 Command
|
williamr@2
|
288 |
const TUint32 KShortcutKey2Cmd = 0x00000064;
|
williamr@2
|
289 |
|
williamr@2
|
290 |
//Setting for Shortcut Key 3 Command
|
williamr@2
|
291 |
const TUint32 KShortcutKey3Cmd = 0x00000065;
|
williamr@2
|
292 |
|
williamr@2
|
293 |
//Setting for Shortcut Key 4 Command
|
williamr@2
|
294 |
const TUint32 KShortcutKey4Cmd = 0x00000066;
|
williamr@2
|
295 |
|
williamr@2
|
296 |
//Setting for Shortcut Key 5 Command
|
williamr@2
|
297 |
const TUint32 KShortcutKey5Cmd = 0x00000067;
|
williamr@2
|
298 |
|
williamr@2
|
299 |
//Setting for Shortcut Key 6 Command
|
williamr@2
|
300 |
const TUint32 KShortcutKey6Cmd = 0x00000068;
|
williamr@2
|
301 |
|
williamr@2
|
302 |
//Setting for Shortcut Key 7 Command
|
williamr@2
|
303 |
const TUint32 KShortcutKey7Cmd = 0x00000069;
|
williamr@2
|
304 |
|
williamr@2
|
305 |
//Setting for Shortcut Key 8 Command
|
williamr@2
|
306 |
const TUint32 KShortcutKey8Cmd = 0x0000006A;
|
williamr@2
|
307 |
|
williamr@2
|
308 |
//Setting for Shortcut Key 9 Command
|
williamr@2
|
309 |
const TUint32 KShortcutKey9Cmd = 0x0000006B;
|
williamr@2
|
310 |
|
williamr@2
|
311 |
//Setting for Shortcut Key 0 Command
|
williamr@2
|
312 |
const TUint32 KShortcutKey0Cmd = 0x0000006C;
|
williamr@2
|
313 |
|
williamr@2
|
314 |
//Setting for Shortcut Key Star Command
|
williamr@2
|
315 |
const TUint32 KShortcutKeyStarCmd = 0x0000006D;
|
williamr@2
|
316 |
|
williamr@2
|
317 |
//Setting for Shortcut Key Hash Command
|
williamr@2
|
318 |
const TUint32 KShortcutKeyHashCmd = 0x0000006E;
|
williamr@2
|
319 |
|
williamr@2
|
320 |
//Setting for Shortcut Keys for QWERTY keypad
|
williamr@2
|
321 |
// (1 = On = QWERTY keypad)
|
williamr@2
|
322 |
// (0 = Off = Numeric keypad)
|
williamr@2
|
323 |
const TUint32 KShortcutKeysForQwerty = 0x0000006F;
|
williamr@2
|
324 |
|
williamr@2
|
325 |
// Int value which determines if and how
|
williamr@2
|
326 |
// script console is enabled in Browser.
|
williamr@2
|
327 |
// Valid values: 0 = disabled 1 = log to file 1 = log to UI console
|
williamr@2
|
328 |
const TUint32 KBrowserNGScriptLog = 0x00000070;
|
williamr@2
|
329 |
|
williamr@4
|
330 |
// KBrowserNGZoomMin represents the minimum percentage zoom level to be
|
williamr@4
|
331 |
// supported by the browser.
|
williamr@2
|
332 |
// Valid values: 10 to 2000, default value for this field 10
|
williamr@2
|
333 |
const TUint32 KBrowserNGZoomMin = 0x00000071;
|
williamr@2
|
334 |
|
williamr@2
|
335 |
// The browser supports zoom levels between 10-2000 percent.
|
williamr@4
|
336 |
// KBrowserNGZoomMax represents the maximum percentage zoom level to be
|
williamr@2
|
337 |
// supported by the browser.
|
williamr@2
|
338 |
// Valid values: 10 to 2000, default value for this field 200
|
williamr@2
|
339 |
const TUint32 KBrowserNGZoomMax = 0x00000072;
|
williamr@2
|
340 |
|
williamr@4
|
341 |
// KBrowserNGZoomDefault represents the default percentage zoom level to be
|
williamr@2
|
342 |
// supported by the browser when opening a webpage for the first time.
|
williamr@2
|
343 |
// Valid values: 10 to 2000, default value for this field 100
|
williamr@2
|
344 |
const TUint32 KBrowserNGZoomDefault = 0x00000073;
|
williamr@2
|
345 |
|
williamr@4
|
346 |
// KBrowserNGMaxRecentUrls is the number of Recent URLs to be shown in
|
williamr@4
|
347 |
// the pop up list
|
williamr@2
|
348 |
// Valid values: 1 to 10, default value for this field is 6
|
williamr@2
|
349 |
const TUint32 KBrowserNGMaxRecentUrls = 0x00000074;
|
williamr@2
|
350 |
|
williamr@2
|
351 |
// Short cut keys for function: Toggles Full Screen Mode on/off
|
williamr@2
|
352 |
// Any String value
|
williamr@2
|
353 |
const TUint32 KBrowserNGShortCutFuncFullScreen = 0x00000075;
|
williamr@2
|
354 |
|
williamr@2
|
355 |
// Short cut keys for function: Zoom Mode
|
williamr@2
|
356 |
// Any String value
|
williamr@2
|
357 |
const TUint32 KBrowserNGShortCutFuncZoomMode = 0x00000076;
|
williamr@2
|
358 |
|
williamr@2
|
359 |
// KBrowserSearchIconPath path to mif file saving search icons
|
williamr@2
|
360 |
// Given and updated by search application
|
williamr@2
|
361 |
// like z:\\resource\\apps\\xxx.mif
|
williamr@2
|
362 |
const TUint32 KBrowserSearchIconPath = 0x00000077;
|
williamr@2
|
363 |
|
williamr@2
|
364 |
// KBrowserSearchIconId Current search iconId From search mif file
|
williamr@2
|
365 |
// Given and updated by search application
|
williamr@2
|
366 |
// Valid values: TInt
|
williamr@2
|
367 |
const TUint32 KBrowserSearchIconId = 0x00000078;
|
williamr@2
|
368 |
|
williamr@2
|
369 |
// KBrowserSearchIconMaskId Current search iconMaskId From search mif file
|
williamr@2
|
370 |
// Given and updated by search application
|
williamr@2
|
371 |
// Valid values: TInt
|
williamr@2
|
372 |
const TUint32 KBrowserSearchIconMaskId = 0x00000079;
|
williamr@2
|
373 |
|
williamr@2
|
374 |
// KBrowserSearchProviderTitle Title to current search provider
|
williamr@2
|
375 |
// Given and updated by search application
|
williamr@2
|
376 |
const TUint32 KBrowserSearchProviderTitle = 0x0000007A;
|
williamr@2
|
377 |
|
williamr@2
|
378 |
// KBrowserServiceUrl Browser Service url
|
williamr@2
|
379 |
// Used to lauch service application through scheme handler
|
williamr@2
|
380 |
const TUint32 KBrowserServiceUrl = 0x0000007B;
|
williamr@2
|
381 |
|
williamr@2
|
382 |
// KBrowserFirstBoot
|
williamr@4
|
383 |
// Valid values: 1 if browser first boot is not done yet, other 0
|
williamr@2
|
384 |
const TUint32 KBrowserFirstBoot = 0x0000007C;
|
williamr@2
|
385 |
|
williamr@4
|
386 |
// KBrowserSearch TInt if browser search is present
|
williamr@2
|
387 |
// Valid values: 0, 1
|
williamr@2
|
388 |
const TUint32 KBrowserSearch = 0x0000007D;
|
williamr@2
|
389 |
|
williamr@2
|
390 |
// KBrowserServices TInt if browser service is present
|
williamr@4
|
391 |
// Valid values: 0,1
|
williamr@2
|
392 |
const TUint32 KBrowserServices = 0x0000007E;
|
williamr@2
|
393 |
|
williamr@2
|
394 |
// KBrowserSearchAppUid - browser Search Application UID
|
williamr@2
|
395 |
// Valid values:any positive 32-bit integer value
|
williamr@2
|
396 |
const TUint32 KBrowserSearchAppUid= 0x0000007F;
|
williamr@2
|
397 |
|
williamr@4
|
398 |
// Search Application View UID for selection of Default
|
williamr@2
|
399 |
// Search Provider.
|
williamr@2
|
400 |
// Valid values:any positive 32-bit integer value.
|
williamr@2
|
401 |
const TUint32 KBrowserSearchProviderSettingViewId = 0x00000080;
|
williamr@2
|
402 |
|
williamr@2
|
403 |
// KBrowserSearchProviderUrl Browser Search url
|
williamr@2
|
404 |
// Used by Search Scheme Handler.
|
williamr@2
|
405 |
const TUint32 KBrowserSearchProviderUrl = 0x00000081;
|
williamr@2
|
406 |
|
williamr@4
|
407 |
// Cursormode which defines the cursor display supported status depends on phones.
|
williamr@4
|
408 |
const TUint32 KBrowserCursorShowMode = 0x00000082;
|
williamr@4
|
409 |
|
williamr@4
|
410 |
// Controls whether enter key can activate a link, ot just has a default behavior.
|
williamr@4
|
411 |
const TUint32 KBrowserEnterKeyMode = 0x00000083;
|
williamr@4
|
412 |
|
williamr@2
|
413 |
#endif // BROWSERUISDKCRKEYS_H |