The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2007 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | package com.android.browser; |
| 18 | |
| 19 | import android.app.Activity; |
| 20 | import android.content.ContentResolver; |
| 21 | import android.content.Context; |
| 22 | import android.content.pm.ActivityInfo; |
| 23 | import android.content.SharedPreferences; |
| 24 | import android.content.SharedPreferences.Editor; |
The Android Open Source Project | ed217d9 | 2008-12-17 18:05:52 -0800 | [diff] [blame] | 25 | import android.os.SystemProperties; |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 26 | import android.view.WindowManager; |
| 27 | import android.webkit.CacheManager; |
| 28 | import android.webkit.CookieManager; |
| 29 | import android.webkit.WebViewDatabase; |
| 30 | import android.webkit.WebIconDatabase; |
| 31 | import android.webkit.WebSettings; |
| 32 | import android.preference.PreferenceManager; |
| 33 | import android.provider.Browser; |
| 34 | |
| 35 | import java.util.HashMap; |
| 36 | import java.util.Observable; |
| 37 | |
| 38 | /* |
| 39 | * Package level class for storing various WebView and Browser settings. To use |
| 40 | * this class: |
| 41 | * BrowserSettings s = BrowserSettings.getInstance(); |
| 42 | * s.addObserver(webView.getSettings()); |
| 43 | * s.loadFromDb(context); // Only needed on app startup |
| 44 | * s.javaScriptEnabled = true; |
| 45 | * ... // set any other settings |
| 46 | * s.update(); // this will update all the observers |
| 47 | * |
| 48 | * To remove an observer: |
| 49 | * s.deleteObserver(webView.getSettings()); |
| 50 | */ |
| 51 | class BrowserSettings extends Observable { |
| 52 | |
| 53 | // Public variables for settings |
| 54 | // NOTE: these defaults need to be kept in sync with the XML |
| 55 | // until the performance of PreferenceManager.setDefaultValues() |
The Android Open Source Project | 7561d4f | 2009-02-19 10:57:35 -0800 | [diff] [blame] | 56 | // is improved. |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 57 | private boolean loadsImagesAutomatically = true; |
| 58 | private boolean javaScriptEnabled = true; |
| 59 | private boolean pluginsEnabled = true; |
| 60 | private String pluginsPath; // default value set in loadFromDb(). |
| 61 | private boolean javaScriptCanOpenWindowsAutomatically = false; |
| 62 | private boolean showSecurityWarnings = true; |
| 63 | private boolean rememberPasswords = true; |
| 64 | private boolean saveFormData = true; |
| 65 | private boolean openInBackground = false; |
| 66 | private String defaultTextEncodingName; |
The Android Open Source Project | 7561d4f | 2009-02-19 10:57:35 -0800 | [diff] [blame] | 67 | private String homeUrl = "http://www.google.com/m?client=ms-" + |
| 68 | SystemProperties.get("persist.sys.com.google.clientid", "unknown"); |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 69 | private boolean loginInitialized = false; |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 70 | private boolean autoFitPage = true; |
| 71 | private boolean showDebugSettings = false; |
The Android Open Source Project | 7561d4f | 2009-02-19 10:57:35 -0800 | [diff] [blame] | 72 | |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 73 | // Development settings |
| 74 | public WebSettings.LayoutAlgorithm layoutAlgorithm = |
| 75 | WebSettings.LayoutAlgorithm.NARROW_COLUMNS; |
| 76 | private boolean useWideViewPort = true; |
| 77 | private int userAgent = 0; |
| 78 | private boolean tracing = false; |
| 79 | private boolean lightTouch = false; |
| 80 | private boolean navDump = false; |
The Android Open Source Project | 7561d4f | 2009-02-19 10:57:35 -0800 | [diff] [blame] | 81 | // Browser only settings |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 82 | private boolean doFlick = false; |
| 83 | |
| 84 | // Private preconfigured values |
| 85 | private static int minimumFontSize = 8; |
| 86 | private static int minimumLogicalFontSize = 8; |
| 87 | private static int defaultFontSize = 16; |
| 88 | private static int defaultFixedFontSize = 13; |
| 89 | private static WebSettings.TextSize textSize = |
| 90 | WebSettings.TextSize.NORMAL; |
The Android Open Source Project | 7561d4f | 2009-02-19 10:57:35 -0800 | [diff] [blame] | 91 | |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 92 | // Preference keys that are used outside this class |
| 93 | public final static String PREF_CLEAR_CACHE = "privacy_clear_cache"; |
| 94 | public final static String PREF_CLEAR_COOKIES = "privacy_clear_cookies"; |
| 95 | public final static String PREF_CLEAR_HISTORY = "privacy_clear_history"; |
| 96 | public final static String PREF_HOMEPAGE = "homepage"; |
The Android Open Source Project | 7561d4f | 2009-02-19 10:57:35 -0800 | [diff] [blame] | 97 | public final static String PREF_CLEAR_FORM_DATA = |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 98 | "privacy_clear_form_data"; |
The Android Open Source Project | 7561d4f | 2009-02-19 10:57:35 -0800 | [diff] [blame] | 99 | public final static String PREF_CLEAR_PASSWORDS = |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 100 | "privacy_clear_passwords"; |
The Android Open Source Project | 7561d4f | 2009-02-19 10:57:35 -0800 | [diff] [blame] | 101 | public final static String PREF_EXTRAS_RESET_DEFAULTS = |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 102 | "reset_default_preferences"; |
| 103 | public final static String PREF_DEBUG_SETTINGS = "debug_menu"; |
| 104 | public final static String PREF_GEARS_SETTINGS = "gears_settings"; |
| 105 | public final static String PREF_TEXT_SIZE = "text_size"; |
The Android Open Source Project | ed217d9 | 2008-12-17 18:05:52 -0800 | [diff] [blame] | 106 | public final static String PREF_DEFAULT_TEXT_ENCODING = |
| 107 | "default_text_encoding"; |
| 108 | |
| 109 | private static final String DESKTOP_USERAGENT = "Mozilla/5.0 (Macintosh; " + |
| 110 | "U; Intel Mac OS X 10_5_5; en-us) AppleWebKit/525.18 (KHTML, " + |
| 111 | "like Gecko) Version/3.1.2 Safari/525.20.1"; |
| 112 | |
| 113 | private static final String IPHONE_USERAGENT = "Mozilla/5.0 (iPhone; U; " + |
| 114 | "CPU iPhone OS 2_2 like Mac OS X; en-us) AppleWebKit/525.18.1 " + |
| 115 | "(KHTML, like Gecko) Version/3.1.1 Mobile/5G77 Safari/525.20"; |
| 116 | |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 117 | // Value to truncate strings when adding them to a TextView within |
| 118 | // a ListView |
| 119 | public final static int MAX_TEXTVIEW_LEN = 80; |
| 120 | |
| 121 | private TabControl mTabControl; |
The Android Open Source Project | 7561d4f | 2009-02-19 10:57:35 -0800 | [diff] [blame] | 122 | |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 123 | // Single instance of the BrowserSettings for use in the Browser app. |
| 124 | private static BrowserSettings sSingleton; |
| 125 | |
| 126 | // Private map of WebSettings to Observer objects used when deleting an |
| 127 | // observer. |
| 128 | private HashMap<WebSettings,Observer> mWebSettingsToObservers = |
| 129 | new HashMap<WebSettings,Observer>(); |
The Android Open Source Project | 7561d4f | 2009-02-19 10:57:35 -0800 | [diff] [blame] | 130 | |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 131 | /* |
| 132 | * An observer wrapper for updating a WebSettings object with the new |
| 133 | * settings after a call to BrowserSettings.update(). |
| 134 | */ |
| 135 | static class Observer implements java.util.Observer { |
| 136 | // Private WebSettings object that will be updated. |
| 137 | private WebSettings mSettings; |
| 138 | |
| 139 | Observer(WebSettings w) { |
| 140 | mSettings = w; |
| 141 | } |
| 142 | |
| 143 | public void update(Observable o, Object arg) { |
| 144 | BrowserSettings b = (BrowserSettings)o; |
| 145 | WebSettings s = mSettings; |
| 146 | |
| 147 | s.setLayoutAlgorithm(b.layoutAlgorithm); |
The Android Open Source Project | ed217d9 | 2008-12-17 18:05:52 -0800 | [diff] [blame] | 148 | if (b.userAgent == 0) { |
| 149 | // use the default ua string |
| 150 | s.setUserAgentString(null); |
| 151 | } else if (b.userAgent == 1) { |
| 152 | s.setUserAgentString(DESKTOP_USERAGENT); |
| 153 | } else if (b.userAgent == 2) { |
| 154 | s.setUserAgentString(IPHONE_USERAGENT); |
| 155 | } |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 156 | s.setUseWideViewPort(b.useWideViewPort); |
| 157 | s.setLoadsImagesAutomatically(b.loadsImagesAutomatically); |
| 158 | s.setJavaScriptEnabled(b.javaScriptEnabled); |
| 159 | s.setPluginsEnabled(b.pluginsEnabled); |
| 160 | s.setPluginsPath(b.pluginsPath); |
| 161 | s.setJavaScriptCanOpenWindowsAutomatically( |
| 162 | b.javaScriptCanOpenWindowsAutomatically); |
| 163 | s.setDefaultTextEncodingName(b.defaultTextEncodingName); |
| 164 | s.setMinimumFontSize(b.minimumFontSize); |
| 165 | s.setMinimumLogicalFontSize(b.minimumLogicalFontSize); |
| 166 | s.setDefaultFontSize(b.defaultFontSize); |
| 167 | s.setDefaultFixedFontSize(b.defaultFixedFontSize); |
| 168 | s.setNavDump(b.navDump); |
| 169 | s.setTextSize(b.textSize); |
| 170 | s.setLightTouchEnabled(b.lightTouch); |
| 171 | s.setSaveFormData(b.saveFormData); |
| 172 | s.setSavePassword(b.rememberPasswords); |
| 173 | |
| 174 | // WebView inside Browser doesn't want initial focus to be set. |
| 175 | s.setNeedInitialFocus(false); |
| 176 | // Browser supports multiple windows |
| 177 | s.setSupportMultipleWindows(true); |
The Android Open Source Project | ed217d9 | 2008-12-17 18:05:52 -0800 | [diff] [blame] | 178 | // Turn off file access |
| 179 | s.setAllowFileAccess(false); |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 180 | } |
| 181 | } |
The Android Open Source Project | 7561d4f | 2009-02-19 10:57:35 -0800 | [diff] [blame] | 182 | |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 183 | /** |
| 184 | * Load settings from the browser app's database. |
| 185 | * NOTE: Strings used for the preferences must match those specified |
| 186 | * in the browser_preferences.xml |
| 187 | * @param ctx A Context object used to query the browser's settings |
| 188 | * database. If the database exists, the saved settings will be |
| 189 | * stored in this BrowserSettings object. This will update all |
| 190 | * observers of this object. |
| 191 | */ |
| 192 | public void loadFromDb(Context ctx) { |
The Android Open Source Project | 7561d4f | 2009-02-19 10:57:35 -0800 | [diff] [blame] | 193 | SharedPreferences p = |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 194 | PreferenceManager.getDefaultSharedPreferences(ctx); |
| 195 | |
| 196 | // Set the default value for the plugins path to the application's |
| 197 | // local directory. |
| 198 | pluginsPath = ctx.getDir("plugins", 0).getPath(); |
| 199 | |
| 200 | // Load the defaults from the xml |
| 201 | // This call is TOO SLOW, need to manually keep the defaults |
| 202 | // in sync |
| 203 | //PreferenceManager.setDefaultValues(ctx, R.xml.browser_preferences); |
| 204 | syncSharedPreferences(p); |
| 205 | } |
The Android Open Source Project | 7561d4f | 2009-02-19 10:57:35 -0800 | [diff] [blame] | 206 | |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 207 | /* package */ void syncSharedPreferences(SharedPreferences p) { |
The Android Open Source Project | 7561d4f | 2009-02-19 10:57:35 -0800 | [diff] [blame] | 208 | homeUrl = |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 209 | p.getString(PREF_HOMEPAGE, homeUrl); |
The Android Open Source Project | 7561d4f | 2009-02-19 10:57:35 -0800 | [diff] [blame] | 210 | loadsImagesAutomatically = p.getBoolean("load_images", |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 211 | loadsImagesAutomatically); |
The Android Open Source Project | 7561d4f | 2009-02-19 10:57:35 -0800 | [diff] [blame] | 212 | javaScriptEnabled = p.getBoolean("enable_javascript", |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 213 | javaScriptEnabled); |
The Android Open Source Project | 7561d4f | 2009-02-19 10:57:35 -0800 | [diff] [blame] | 214 | pluginsEnabled = p.getBoolean("enable_plugins", |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 215 | pluginsEnabled); |
| 216 | pluginsPath = p.getString("plugins_path", pluginsPath); |
| 217 | javaScriptCanOpenWindowsAutomatically = !p.getBoolean( |
The Android Open Source Project | 7561d4f | 2009-02-19 10:57:35 -0800 | [diff] [blame] | 218 | "block_popup_windows", |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 219 | !javaScriptCanOpenWindowsAutomatically); |
The Android Open Source Project | 7561d4f | 2009-02-19 10:57:35 -0800 | [diff] [blame] | 220 | showSecurityWarnings = p.getBoolean("show_security_warnings", |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 221 | showSecurityWarnings); |
The Android Open Source Project | 7561d4f | 2009-02-19 10:57:35 -0800 | [diff] [blame] | 222 | rememberPasswords = p.getBoolean("remember_passwords", |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 223 | rememberPasswords); |
The Android Open Source Project | 7561d4f | 2009-02-19 10:57:35 -0800 | [diff] [blame] | 224 | saveFormData = p.getBoolean("save_formdata", |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 225 | saveFormData); |
The Android Open Source Project | 7561d4f | 2009-02-19 10:57:35 -0800 | [diff] [blame] | 226 | boolean accept_cookies = p.getBoolean("accept_cookies", |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 227 | CookieManager.getInstance().acceptCookie()); |
| 228 | CookieManager.getInstance().setAcceptCookie(accept_cookies); |
| 229 | openInBackground = p.getBoolean("open_in_background", openInBackground); |
| 230 | loginInitialized = p.getBoolean("login_initialized", loginInitialized); |
| 231 | textSize = WebSettings.TextSize.valueOf( |
| 232 | p.getString(PREF_TEXT_SIZE, textSize.name())); |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 233 | autoFitPage = p.getBoolean("autofit_pages", autoFitPage); |
| 234 | useWideViewPort = true; // use wide view port for either setting |
| 235 | if (autoFitPage) { |
| 236 | layoutAlgorithm = WebSettings.LayoutAlgorithm.NARROW_COLUMNS; |
| 237 | } else { |
| 238 | layoutAlgorithm = WebSettings.LayoutAlgorithm.NORMAL; |
| 239 | } |
The Android Open Source Project | ed217d9 | 2008-12-17 18:05:52 -0800 | [diff] [blame] | 240 | defaultTextEncodingName = |
| 241 | p.getString(PREF_DEFAULT_TEXT_ENCODING, |
| 242 | defaultTextEncodingName); |
The Android Open Source Project | 7561d4f | 2009-02-19 10:57:35 -0800 | [diff] [blame] | 243 | |
| 244 | showDebugSettings = |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 245 | p.getBoolean(PREF_DEBUG_SETTINGS, showDebugSettings); |
| 246 | // Debug menu items have precidence if the menu is visible |
| 247 | if (showDebugSettings) { |
The Android Open Source Project | 7561d4f | 2009-02-19 10:57:35 -0800 | [diff] [blame] | 248 | boolean small_screen = p.getBoolean("small_screen", |
| 249 | layoutAlgorithm == |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 250 | WebSettings.LayoutAlgorithm.SINGLE_COLUMN); |
| 251 | if (small_screen) { |
| 252 | layoutAlgorithm = WebSettings.LayoutAlgorithm.SINGLE_COLUMN; |
| 253 | } else { |
The Android Open Source Project | 7561d4f | 2009-02-19 10:57:35 -0800 | [diff] [blame] | 254 | boolean normal_layout = p.getBoolean("normal_layout", |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 255 | layoutAlgorithm == WebSettings.LayoutAlgorithm.NORMAL); |
| 256 | if (normal_layout) { |
| 257 | layoutAlgorithm = WebSettings.LayoutAlgorithm.NORMAL; |
| 258 | } else { |
The Android Open Source Project | 7561d4f | 2009-02-19 10:57:35 -0800 | [diff] [blame] | 259 | layoutAlgorithm = |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 260 | WebSettings.LayoutAlgorithm.NARROW_COLUMNS; |
| 261 | } |
| 262 | } |
| 263 | useWideViewPort = p.getBoolean("wide_viewport", useWideViewPort); |
| 264 | tracing = p.getBoolean("enable_tracing", tracing); |
| 265 | lightTouch = p.getBoolean("enable_light_touch", lightTouch); |
| 266 | navDump = p.getBoolean("enable_nav_dump", navDump); |
| 267 | doFlick = p.getBoolean("enable_flick", doFlick); |
| 268 | userAgent = Integer.parseInt(p.getString("user_agent", "0")); |
The Android Open Source Project | ed217d9 | 2008-12-17 18:05:52 -0800 | [diff] [blame] | 269 | mTabControl.getBrowserActivity().setBaseSearchUrl( |
| 270 | p.getString("search_url", "")); |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 271 | } |
| 272 | update(); |
| 273 | } |
The Android Open Source Project | 7561d4f | 2009-02-19 10:57:35 -0800 | [diff] [blame] | 274 | |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 275 | public String getPluginsPath() { |
| 276 | return pluginsPath; |
| 277 | } |
| 278 | |
| 279 | public String getHomePage() { |
| 280 | return homeUrl; |
| 281 | } |
The Android Open Source Project | 7561d4f | 2009-02-19 10:57:35 -0800 | [diff] [blame] | 282 | |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 283 | public void setHomePage(Context context, String url) { |
| 284 | Editor ed = PreferenceManager. |
The Android Open Source Project | 7561d4f | 2009-02-19 10:57:35 -0800 | [diff] [blame] | 285 | getDefaultSharedPreferences(context).edit(); |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 286 | ed.putString(PREF_HOMEPAGE, url); |
| 287 | ed.commit(); |
| 288 | homeUrl = url; |
| 289 | } |
The Android Open Source Project | 7561d4f | 2009-02-19 10:57:35 -0800 | [diff] [blame] | 290 | |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 291 | public boolean isLoginInitialized() { |
| 292 | return loginInitialized; |
| 293 | } |
The Android Open Source Project | 7561d4f | 2009-02-19 10:57:35 -0800 | [diff] [blame] | 294 | |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 295 | public void setLoginInitialized(Context context) { |
| 296 | loginInitialized = true; |
| 297 | Editor ed = PreferenceManager. |
The Android Open Source Project | 7561d4f | 2009-02-19 10:57:35 -0800 | [diff] [blame] | 298 | getDefaultSharedPreferences(context).edit(); |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 299 | ed.putBoolean("login_initialized", loginInitialized); |
| 300 | ed.commit(); |
| 301 | } |
The Android Open Source Project | b7775e1 | 2009-02-10 15:44:04 -0800 | [diff] [blame] | 302 | |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 303 | public WebSettings.TextSize getTextSize() { |
| 304 | return textSize; |
| 305 | } |
| 306 | |
| 307 | public boolean openInBackground() { |
| 308 | return openInBackground; |
| 309 | } |
| 310 | |
| 311 | public boolean showSecurityWarnings() { |
| 312 | return showSecurityWarnings; |
| 313 | } |
| 314 | |
| 315 | public boolean isTracing() { |
| 316 | return tracing; |
| 317 | } |
| 318 | |
| 319 | public boolean isLightTouch() { |
| 320 | return lightTouch; |
| 321 | } |
| 322 | |
| 323 | public boolean isNavDump() { |
| 324 | return navDump; |
| 325 | } |
| 326 | |
| 327 | public boolean doFlick() { |
| 328 | return doFlick; |
| 329 | } |
The Android Open Source Project | 7561d4f | 2009-02-19 10:57:35 -0800 | [diff] [blame] | 330 | |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 331 | public boolean showDebugSettings() { |
| 332 | return showDebugSettings; |
| 333 | } |
The Android Open Source Project | 7561d4f | 2009-02-19 10:57:35 -0800 | [diff] [blame] | 334 | |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 335 | public void toggleDebugSettings() { |
| 336 | showDebugSettings = !showDebugSettings; |
The Android Open Source Project | fbb2a3a | 2009-02-13 12:57:52 -0800 | [diff] [blame] | 337 | navDump = showDebugSettings; |
| 338 | update(); |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 339 | } |
| 340 | |
| 341 | /** |
| 342 | * Add a WebSettings object to the list of observers that will be updated |
| 343 | * when update() is called. |
The Android Open Source Project | 7561d4f | 2009-02-19 10:57:35 -0800 | [diff] [blame] | 344 | * |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 345 | * @param s A WebSettings object that is strictly tied to the life of a |
| 346 | * WebView. |
| 347 | */ |
| 348 | public Observer addObserver(WebSettings s) { |
| 349 | Observer old = mWebSettingsToObservers.get(s); |
| 350 | if (old != null) { |
| 351 | super.deleteObserver(old); |
| 352 | } |
| 353 | Observer o = new Observer(s); |
| 354 | mWebSettingsToObservers.put(s, o); |
| 355 | super.addObserver(o); |
| 356 | return o; |
| 357 | } |
| 358 | |
| 359 | /** |
| 360 | * Delete the given WebSettings observer from the list of observers. |
| 361 | * @param s The WebSettings object to be deleted. |
| 362 | */ |
| 363 | public void deleteObserver(WebSettings s) { |
| 364 | Observer o = mWebSettingsToObservers.get(s); |
| 365 | if (o != null) { |
| 366 | mWebSettingsToObservers.remove(s); |
| 367 | super.deleteObserver(o); |
| 368 | } |
| 369 | } |
| 370 | |
| 371 | /* |
| 372 | * Package level method for obtaining a single app instance of the |
| 373 | * BrowserSettings. |
| 374 | */ |
| 375 | /*package*/ static BrowserSettings getInstance() { |
| 376 | if (sSingleton == null ) { |
| 377 | sSingleton = new BrowserSettings(); |
| 378 | } |
| 379 | return sSingleton; |
| 380 | } |
| 381 | |
| 382 | /* |
| 383 | * Package level method for associating the BrowserSettings with TabControl |
| 384 | */ |
| 385 | /* package */void setTabControl(TabControl tabControl) { |
| 386 | mTabControl = tabControl; |
| 387 | } |
| 388 | |
| 389 | /* |
| 390 | * Update all the observers of the object. |
| 391 | */ |
| 392 | /*package*/ void update() { |
| 393 | setChanged(); |
| 394 | notifyObservers(); |
| 395 | } |
| 396 | |
| 397 | /*package*/ void clearCache(Context context) { |
| 398 | WebIconDatabase.getInstance().removeAllIcons(); |
| 399 | if (mTabControl != null) { |
| 400 | mTabControl.getCurrentWebView().clearCache(true); |
| 401 | } |
| 402 | } |
| 403 | |
| 404 | /*package*/ void clearCookies(Context context) { |
| 405 | CookieManager.getInstance().removeAllCookie(); |
| 406 | } |
| 407 | |
| 408 | /* package */void clearHistory(Context context) { |
| 409 | ContentResolver resolver = context.getContentResolver(); |
| 410 | Browser.clearHistory(resolver); |
| 411 | Browser.clearSearches(resolver); |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 412 | } |
| 413 | |
| 414 | /* package */ void clearFormData(Context context) { |
| 415 | WebViewDatabase.getInstance(context).clearFormData(); |
| 416 | if (mTabControl != null) { |
| 417 | mTabControl.getCurrentTopWebView().clearFormData(); |
| 418 | } |
| 419 | } |
| 420 | |
| 421 | /*package*/ void clearPasswords(Context context) { |
| 422 | WebViewDatabase db = WebViewDatabase.getInstance(context); |
| 423 | db.clearUsernamePassword(); |
| 424 | db.clearHttpAuthUsernamePassword(); |
| 425 | } |
The Android Open Source Project | 7561d4f | 2009-02-19 10:57:35 -0800 | [diff] [blame] | 426 | |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 427 | /*package*/ void resetDefaultPreferences(Context context) { |
The Android Open Source Project | 7561d4f | 2009-02-19 10:57:35 -0800 | [diff] [blame] | 428 | SharedPreferences p = |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 429 | PreferenceManager.getDefaultSharedPreferences(context); |
| 430 | p.edit().clear().commit(); |
The Android Open Source Project | 7561d4f | 2009-02-19 10:57:35 -0800 | [diff] [blame] | 431 | PreferenceManager.setDefaultValues(context, R.xml.browser_preferences, |
The Android Open Source Project | ba6d7b8 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 432 | true); |
| 433 | } |
| 434 | |
| 435 | // Private constructor that does nothing. |
| 436 | private BrowserSettings() { |
| 437 | } |
| 438 | } |