Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2010 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 com.android.browser.IntentHandler.UrlData; |
| 20 | import com.android.browser.search.SearchEngine; |
| 21 | import com.android.common.Search; |
| 22 | |
| 23 | import android.app.Activity; |
| 24 | import android.app.DownloadManager; |
| 25 | import android.app.SearchManager; |
| 26 | import android.content.ClipboardManager; |
| 27 | import android.content.ContentProvider; |
| 28 | import android.content.ContentProviderClient; |
| 29 | import android.content.ContentResolver; |
| 30 | import android.content.ContentValues; |
| 31 | import android.content.Context; |
| 32 | import android.content.Intent; |
| 33 | import android.content.pm.PackageManager; |
| 34 | import android.content.pm.ResolveInfo; |
| 35 | import android.content.res.Configuration; |
Leon Scroggins | 1961ed2 | 2010-12-07 15:22:21 -0500 | [diff] [blame] | 36 | import android.database.ContentObserver; |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 37 | import android.database.Cursor; |
| 38 | import android.database.sqlite.SQLiteDatabase; |
| 39 | import android.database.sqlite.SQLiteException; |
| 40 | import android.graphics.Bitmap; |
| 41 | import android.graphics.Canvas; |
| 42 | import android.graphics.Picture; |
| 43 | import android.net.Uri; |
| 44 | import android.net.http.SslError; |
| 45 | import android.os.AsyncTask; |
| 46 | import android.os.Bundle; |
| 47 | import android.os.Handler; |
| 48 | import android.os.Message; |
| 49 | import android.os.PowerManager; |
| 50 | import android.os.PowerManager.WakeLock; |
Ben Murdoch | 8029a77 | 2010-11-16 11:58:21 +0000 | [diff] [blame] | 51 | import android.preference.PreferenceActivity; |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 52 | import android.provider.Browser; |
| 53 | import android.provider.BrowserContract; |
| 54 | import android.provider.BrowserContract.History; |
| 55 | import android.provider.BrowserContract.Images; |
| 56 | import android.provider.ContactsContract; |
| 57 | import android.provider.ContactsContract.Intents.Insert; |
| 58 | import android.speech.RecognizerResultsIntent; |
| 59 | import android.text.TextUtils; |
| 60 | import android.util.Log; |
| 61 | import android.view.ActionMode; |
| 62 | import android.view.ContextMenu; |
| 63 | import android.view.ContextMenu.ContextMenuInfo; |
| 64 | import android.view.Gravity; |
| 65 | import android.view.KeyEvent; |
| 66 | import android.view.LayoutInflater; |
| 67 | import android.view.Menu; |
| 68 | import android.view.MenuInflater; |
| 69 | import android.view.MenuItem; |
| 70 | import android.view.MenuItem.OnMenuItemClickListener; |
| 71 | import android.view.View; |
| 72 | import android.webkit.CookieManager; |
| 73 | import android.webkit.CookieSyncManager; |
| 74 | import android.webkit.HttpAuthHandler; |
| 75 | import android.webkit.SslErrorHandler; |
| 76 | import android.webkit.ValueCallback; |
| 77 | import android.webkit.WebChromeClient; |
| 78 | import android.webkit.WebIconDatabase; |
| 79 | import android.webkit.WebSettings; |
| 80 | import android.webkit.WebView; |
| 81 | import android.widget.TextView; |
| 82 | |
| 83 | import java.io.ByteArrayOutputStream; |
| 84 | import java.io.File; |
| 85 | import java.net.URLEncoder; |
| 86 | import java.util.Calendar; |
| 87 | import java.util.HashMap; |
Michael Kolb | 1bf2313 | 2010-11-19 12:55:12 -0800 | [diff] [blame] | 88 | import java.util.List; |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 89 | |
| 90 | /** |
| 91 | * Controller for browser |
| 92 | */ |
| 93 | public class Controller |
| 94 | implements WebViewController, UiController { |
| 95 | |
| 96 | private static final String LOGTAG = "Controller"; |
| 97 | |
| 98 | // public message ids |
| 99 | public final static int LOAD_URL = 1001; |
| 100 | public final static int STOP_LOAD = 1002; |
| 101 | |
| 102 | // Message Ids |
| 103 | private static final int FOCUS_NODE_HREF = 102; |
| 104 | private static final int RELEASE_WAKELOCK = 107; |
| 105 | |
| 106 | static final int UPDATE_BOOKMARK_THUMBNAIL = 108; |
| 107 | |
| 108 | private static final int OPEN_BOOKMARKS = 201; |
| 109 | |
| 110 | private static final int EMPTY_MENU = -1; |
| 111 | |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 112 | // activity requestCode |
| 113 | final static int PREFERENCES_PAGE = 3; |
| 114 | final static int FILE_SELECTED = 4; |
Ben Murdoch | 8029a77 | 2010-11-16 11:58:21 +0000 | [diff] [blame] | 115 | final static int AUTOFILL_SETUP = 5; |
| 116 | |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 117 | private final static int WAKELOCK_TIMEOUT = 5 * 60 * 1000; // 5 minutes |
| 118 | |
| 119 | // As the ids are dynamically created, we can't guarantee that they will |
| 120 | // be in sequence, so this static array maps ids to a window number. |
| 121 | final static private int[] WINDOW_SHORTCUT_ID_ARRAY = |
| 122 | { R.id.window_one_menu_id, R.id.window_two_menu_id, |
| 123 | R.id.window_three_menu_id, R.id.window_four_menu_id, |
| 124 | R.id.window_five_menu_id, R.id.window_six_menu_id, |
| 125 | R.id.window_seven_menu_id, R.id.window_eight_menu_id }; |
| 126 | |
| 127 | // "source" parameter for Google search through search key |
| 128 | final static String GOOGLE_SEARCH_SOURCE_SEARCHKEY = "browser-key"; |
| 129 | // "source" parameter for Google search through simplily type |
| 130 | final static String GOOGLE_SEARCH_SOURCE_TYPE = "browser-type"; |
| 131 | |
| 132 | private Activity mActivity; |
| 133 | private UI mUi; |
| 134 | private TabControl mTabControl; |
| 135 | private BrowserSettings mSettings; |
| 136 | private WebViewFactory mFactory; |
| 137 | |
| 138 | private WakeLock mWakeLock; |
| 139 | |
| 140 | private UrlHandler mUrlHandler; |
| 141 | private UploadHandler mUploadHandler; |
| 142 | private IntentHandler mIntentHandler; |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 143 | private PageDialogsHandler mPageDialogsHandler; |
| 144 | private NetworkStateHandler mNetworkHandler; |
| 145 | |
Ben Murdoch | 8029a77 | 2010-11-16 11:58:21 +0000 | [diff] [blame] | 146 | private Message mAutoFillSetupMessage; |
| 147 | |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 148 | private boolean mShouldShowErrorConsole; |
| 149 | |
| 150 | private SystemAllowGeolocationOrigins mSystemAllowGeolocationOrigins; |
| 151 | |
| 152 | // FIXME, temp address onPrepareMenu performance problem. |
| 153 | // When we move everything out of view, we should rewrite this. |
| 154 | private int mCurrentMenuState = 0; |
| 155 | private int mMenuState = R.id.MAIN_MENU; |
| 156 | private int mOldMenuState = EMPTY_MENU; |
| 157 | private Menu mCachedMenu; |
| 158 | |
| 159 | // Used to prevent chording to result in firing two shortcuts immediately |
| 160 | // one after another. Fixes bug 1211714. |
| 161 | boolean mCanChord; |
| 162 | private boolean mMenuIsDown; |
| 163 | |
| 164 | // For select and find, we keep track of the ActionMode so that |
| 165 | // finish() can be called as desired. |
| 166 | private ActionMode mActionMode; |
| 167 | |
| 168 | /** |
| 169 | * Only meaningful when mOptionsMenuOpen is true. This variable keeps track |
| 170 | * of whether the configuration has changed. The first onMenuOpened call |
| 171 | * after a configuration change is simply a reopening of the same menu |
| 172 | * (i.e. mIconView did not change). |
| 173 | */ |
| 174 | private boolean mConfigChanged; |
| 175 | |
| 176 | /** |
| 177 | * Keeps track of whether the options menu is open. This is important in |
| 178 | * determining whether to show or hide the title bar overlay |
| 179 | */ |
| 180 | private boolean mOptionsMenuOpen; |
| 181 | |
| 182 | /** |
| 183 | * Whether or not the options menu is in its bigger, popup menu form. When |
| 184 | * true, we want the title bar overlay to be gone. When false, we do not. |
| 185 | * Only meaningful if mOptionsMenuOpen is true. |
| 186 | */ |
| 187 | private boolean mExtendedMenuOpen; |
| 188 | |
| 189 | private boolean mInLoad; |
| 190 | |
| 191 | private boolean mActivityPaused = true; |
| 192 | private boolean mLoadStopped; |
| 193 | |
| 194 | private Handler mHandler; |
Leon Scroggins | 1961ed2 | 2010-12-07 15:22:21 -0500 | [diff] [blame] | 195 | // Checks to see when the bookmarks database has changed, and updates the |
| 196 | // Tabs' notion of whether they represent bookmarked sites. |
| 197 | private ContentObserver mBookmarksObserver; |
John Reck | 0ebd3ac | 2010-12-09 11:14:04 -0800 | [diff] [blame] | 198 | private DataController mDataController; |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 199 | |
| 200 | private static class ClearThumbnails extends AsyncTask<File, Void, Void> { |
| 201 | @Override |
| 202 | public Void doInBackground(File... files) { |
| 203 | if (files != null) { |
| 204 | for (File f : files) { |
| 205 | if (!f.delete()) { |
| 206 | Log.e(LOGTAG, f.getPath() + " was not deleted"); |
| 207 | } |
| 208 | } |
| 209 | } |
| 210 | return null; |
| 211 | } |
| 212 | } |
| 213 | |
| 214 | public Controller(Activity browser) { |
| 215 | mActivity = browser; |
| 216 | mSettings = BrowserSettings.getInstance(); |
John Reck | 0ebd3ac | 2010-12-09 11:14:04 -0800 | [diff] [blame] | 217 | mDataController = DataController.getInstance(mActivity); |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 218 | mTabControl = new TabControl(this); |
| 219 | mSettings.setController(this); |
| 220 | |
| 221 | mUrlHandler = new UrlHandler(this); |
| 222 | mIntentHandler = new IntentHandler(mActivity, this); |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 223 | mPageDialogsHandler = new PageDialogsHandler(mActivity, this); |
| 224 | |
| 225 | PowerManager pm = (PowerManager) mActivity |
| 226 | .getSystemService(Context.POWER_SERVICE); |
| 227 | mWakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "Browser"); |
| 228 | |
| 229 | startHandler(); |
Leon Scroggins | 1961ed2 | 2010-12-07 15:22:21 -0500 | [diff] [blame] | 230 | mBookmarksObserver = new ContentObserver(mHandler) { |
| 231 | @Override |
| 232 | public void onChange(boolean selfChange) { |
| 233 | int size = mTabControl.getTabCount(); |
| 234 | for (int i = 0; i < size; i++) { |
| 235 | mTabControl.getTab(i).updateBookmarkedStatus(); |
| 236 | } |
| 237 | } |
| 238 | |
| 239 | }; |
| 240 | browser.getContentResolver().registerContentObserver( |
| 241 | BrowserContract.Bookmarks.CONTENT_URI, true, mBookmarksObserver); |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 242 | |
| 243 | mNetworkHandler = new NetworkStateHandler(mActivity, this); |
| 244 | // Start watching the default geolocation permissions |
| 245 | mSystemAllowGeolocationOrigins = |
| 246 | new SystemAllowGeolocationOrigins(mActivity.getApplicationContext()); |
| 247 | mSystemAllowGeolocationOrigins.start(); |
| 248 | |
| 249 | retainIconsOnStartup(); |
| 250 | } |
| 251 | |
| 252 | void start(Bundle icicle, Intent intent) { |
| 253 | // Unless the last browser usage was within 24 hours, destroy any |
| 254 | // remaining incognito tabs. |
| 255 | |
| 256 | Calendar lastActiveDate = icicle != null ? |
| 257 | (Calendar) icicle.getSerializable("lastActiveDate") : null; |
| 258 | Calendar today = Calendar.getInstance(); |
| 259 | Calendar yesterday = Calendar.getInstance(); |
| 260 | yesterday.add(Calendar.DATE, -1); |
| 261 | |
Michael Kolb | 1bf2313 | 2010-11-19 12:55:12 -0800 | [diff] [blame] | 262 | boolean restoreIncognitoTabs = !(lastActiveDate == null |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 263 | || lastActiveDate.before(yesterday) |
Michael Kolb | 1bf2313 | 2010-11-19 12:55:12 -0800 | [diff] [blame] | 264 | || lastActiveDate.after(today)); |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 265 | |
Michael Kolb | 1bf2313 | 2010-11-19 12:55:12 -0800 | [diff] [blame] | 266 | if (!mTabControl.restoreState(icicle, restoreIncognitoTabs, |
| 267 | mUi.needsRestoreAllTabs())) { |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 268 | // there is no quit on Android. But if we can't restore the state, |
| 269 | // we can treat it as a new Browser, remove the old session cookies. |
Kristian Monsen | 3a4e809 | 2010-12-08 11:09:25 +0000 | [diff] [blame] | 270 | // This is done async in the CookieManager. |
| 271 | CookieManager.getInstance().removeSessionCookie(); |
Kristian Monsen | 2cd9701 | 2010-12-07 11:11:40 +0000 | [diff] [blame] | 272 | |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 273 | // remove any incognito files |
Steve Block | 83101a8 | 2010-11-26 11:33:35 +0000 | [diff] [blame] | 274 | WebView.cleanupPrivateBrowsingFiles(); |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 275 | final Bundle extra = intent.getExtras(); |
| 276 | // Create an initial tab. |
| 277 | // If the intent is ACTION_VIEW and data is not null, the Browser is |
| 278 | // invoked to view the content by another application. In this case, |
| 279 | // the tab will be close when exit. |
| 280 | UrlData urlData = mIntentHandler.getUrlDataFromIntent(intent); |
| 281 | |
| 282 | String action = intent.getAction(); |
| 283 | final Tab t = mTabControl.createNewTab( |
| 284 | (Intent.ACTION_VIEW.equals(action) && |
| 285 | intent.getData() != null) |
| 286 | || RecognizerResultsIntent.ACTION_VOICE_SEARCH_RESULTS |
| 287 | .equals(action), |
| 288 | intent.getStringExtra(Browser.EXTRA_APPLICATION_ID), |
| 289 | urlData.mUrl, false); |
| 290 | addTab(t); |
| 291 | setActiveTab(t); |
| 292 | WebView webView = t.getWebView(); |
| 293 | if (extra != null) { |
| 294 | int scale = extra.getInt(Browser.INITIAL_ZOOM_LEVEL, 0); |
| 295 | if (scale > 0 && scale <= 1000) { |
| 296 | webView.setInitialScale(scale); |
| 297 | } |
| 298 | } |
| 299 | |
| 300 | if (urlData.isEmpty()) { |
| 301 | loadUrl(webView, mSettings.getHomePage()); |
| 302 | } else { |
| 303 | loadUrlDataIn(t, urlData); |
| 304 | } |
| 305 | } else { |
Michael Kolb | 1bf2313 | 2010-11-19 12:55:12 -0800 | [diff] [blame] | 306 | mUi.updateTabs(mTabControl.getTabs()); |
| 307 | if (!restoreIncognitoTabs) { |
Steve Block | 83101a8 | 2010-11-26 11:33:35 +0000 | [diff] [blame] | 308 | WebView.cleanupPrivateBrowsingFiles(); |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 309 | } |
| 310 | // TabControl.restoreState() will create a new tab even if |
| 311 | // restoring the state fails. |
| 312 | setActiveTab(mTabControl.getCurrentTab()); |
| 313 | } |
| 314 | // clear up the thumbnail directory, which is no longer used; |
| 315 | // ideally this should only be run once after an upgrade from |
| 316 | // a previous version of the browser |
| 317 | new ClearThumbnails().execute(mTabControl.getThumbnailDir() |
| 318 | .listFiles()); |
| 319 | // Read JavaScript flags if it exists. |
| 320 | String jsFlags = getSettings().getJsFlags(); |
| 321 | if (jsFlags.trim().length() != 0) { |
| 322 | getCurrentWebView().setJsFlags(jsFlags); |
| 323 | } |
| 324 | } |
| 325 | |
| 326 | void setWebViewFactory(WebViewFactory factory) { |
| 327 | mFactory = factory; |
| 328 | } |
| 329 | |
Michael Kolb | 1514bb7 | 2010-11-22 09:11:48 -0800 | [diff] [blame] | 330 | @Override |
| 331 | public WebViewFactory getWebViewFactory() { |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 332 | return mFactory; |
| 333 | } |
| 334 | |
| 335 | @Override |
Michael Kolb | a713ec8 | 2010-11-29 17:27:06 -0800 | [diff] [blame] | 336 | public void onSetWebView(Tab tab, WebView view) { |
| 337 | mUi.onSetWebView(tab, view); |
| 338 | } |
| 339 | |
| 340 | @Override |
Michael Kolb | 1514bb7 | 2010-11-22 09:11:48 -0800 | [diff] [blame] | 341 | public void createSubWindow(Tab tab) { |
| 342 | endActionMode(); |
| 343 | WebView mainView = tab.getWebView(); |
| 344 | WebView subView = mFactory.createWebView((mainView == null) |
| 345 | ? false |
| 346 | : mainView.isPrivateBrowsingEnabled()); |
| 347 | mUi.createSubWindow(tab, subView); |
| 348 | } |
| 349 | |
| 350 | @Override |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 351 | public Activity getActivity() { |
| 352 | return mActivity; |
| 353 | } |
| 354 | |
| 355 | void setUi(UI ui) { |
| 356 | mUi = ui; |
| 357 | } |
| 358 | |
| 359 | BrowserSettings getSettings() { |
| 360 | return mSettings; |
| 361 | } |
| 362 | |
| 363 | IntentHandler getIntentHandler() { |
| 364 | return mIntentHandler; |
| 365 | } |
| 366 | |
| 367 | @Override |
| 368 | public UI getUi() { |
| 369 | return mUi; |
| 370 | } |
| 371 | |
| 372 | int getMaxTabs() { |
| 373 | return mActivity.getResources().getInteger(R.integer.max_tabs); |
| 374 | } |
| 375 | |
| 376 | @Override |
| 377 | public TabControl getTabControl() { |
| 378 | return mTabControl; |
| 379 | } |
| 380 | |
Michael Kolb | 1bf2313 | 2010-11-19 12:55:12 -0800 | [diff] [blame] | 381 | @Override |
| 382 | public List<Tab> getTabs() { |
| 383 | return mTabControl.getTabs(); |
| 384 | } |
| 385 | |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 386 | // Open the icon database and retain all the icons for visited sites. |
Ben Murdoch | 9446b93 | 2010-11-25 16:20:14 +0000 | [diff] [blame] | 387 | // This is done on a background thread so as not to stall startup. |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 388 | private void retainIconsOnStartup() { |
Ben Murdoch | 9446b93 | 2010-11-25 16:20:14 +0000 | [diff] [blame] | 389 | // WebIconDatabase needs to be retrieved on the UI thread so that if |
| 390 | // it has not been created successfully yet the Handler is started on the |
| 391 | // UI thread. |
| 392 | new RetainIconsOnStartupTask(WebIconDatabase.getInstance()).execute(); |
| 393 | } |
| 394 | |
| 395 | private class RetainIconsOnStartupTask extends AsyncTask<Void, Void, Void> { |
| 396 | private WebIconDatabase mDb; |
| 397 | |
| 398 | public RetainIconsOnStartupTask(WebIconDatabase db) { |
| 399 | mDb = db; |
| 400 | } |
| 401 | |
| 402 | protected Void doInBackground(Void... unused) { |
| 403 | mDb.open(mActivity.getDir("icons", 0).getPath()); |
| 404 | Cursor c = null; |
| 405 | try { |
| 406 | c = Browser.getAllBookmarks(mActivity.getContentResolver()); |
| 407 | if (c.moveToFirst()) { |
| 408 | int urlIndex = c.getColumnIndex(Browser.BookmarkColumns.URL); |
| 409 | do { |
| 410 | String url = c.getString(urlIndex); |
| 411 | mDb.retainIconForPageUrl(url); |
| 412 | } while (c.moveToNext()); |
| 413 | } |
| 414 | } catch (IllegalStateException e) { |
| 415 | Log.e(LOGTAG, "retainIconsOnStartup", e); |
| 416 | } finally { |
| 417 | if (c != null) c.close(); |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 418 | } |
Ben Murdoch | 9446b93 | 2010-11-25 16:20:14 +0000 | [diff] [blame] | 419 | |
| 420 | return null; |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 421 | } |
| 422 | } |
| 423 | |
| 424 | private void startHandler() { |
| 425 | mHandler = new Handler() { |
| 426 | |
| 427 | @Override |
| 428 | public void handleMessage(Message msg) { |
| 429 | switch (msg.what) { |
| 430 | case OPEN_BOOKMARKS: |
| 431 | bookmarksOrHistoryPicker(false); |
| 432 | break; |
| 433 | case FOCUS_NODE_HREF: |
| 434 | { |
| 435 | String url = (String) msg.getData().get("url"); |
| 436 | String title = (String) msg.getData().get("title"); |
| 437 | if (TextUtils.isEmpty(url)) { |
| 438 | break; |
| 439 | } |
| 440 | HashMap focusNodeMap = (HashMap) msg.obj; |
| 441 | WebView view = (WebView) focusNodeMap.get("webview"); |
| 442 | // Only apply the action if the top window did not change. |
| 443 | if (getCurrentTopWebView() != view) { |
| 444 | break; |
| 445 | } |
| 446 | switch (msg.arg1) { |
| 447 | case R.id.open_context_menu_id: |
| 448 | case R.id.view_image_context_menu_id: |
| 449 | loadUrlFromContext(getCurrentTopWebView(), url); |
| 450 | break; |
Leon Scroggins | 026f254 | 2010-11-22 13:26:12 -0500 | [diff] [blame] | 451 | case R.id.open_newtab_context_menu_id: |
| 452 | final Tab parent = mTabControl.getCurrentTab(); |
Michael Kolb | 18eb377 | 2010-12-10 14:29:51 -0800 | [diff] [blame^] | 453 | final Tab newTab = openTab(parent, url, false); |
Leon Scroggins | 026f254 | 2010-11-22 13:26:12 -0500 | [diff] [blame] | 454 | if (newTab != null && newTab != parent) { |
| 455 | parent.addChildTab(newTab); |
| 456 | } |
| 457 | break; |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 458 | case R.id.bookmark_context_menu_id: |
| 459 | Intent intent = new Intent(mActivity, |
| 460 | AddBookmarkPage.class); |
| 461 | intent.putExtra(BrowserContract.Bookmarks.URL, url); |
| 462 | intent.putExtra(BrowserContract.Bookmarks.TITLE, |
| 463 | title); |
| 464 | mActivity.startActivity(intent); |
| 465 | break; |
| 466 | case R.id.share_link_context_menu_id: |
| 467 | sharePage(mActivity, title, url, null, |
| 468 | null); |
| 469 | break; |
| 470 | case R.id.copy_link_context_menu_id: |
| 471 | copy(url); |
| 472 | break; |
| 473 | case R.id.save_link_context_menu_id: |
| 474 | case R.id.download_context_menu_id: |
Leon Scroggins | 63c0266 | 2010-11-18 15:16:27 -0500 | [diff] [blame] | 475 | DownloadHandler.onDownloadStartNoStream( |
| 476 | mActivity, url, null, null, null); |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 477 | break; |
| 478 | } |
| 479 | break; |
| 480 | } |
| 481 | |
| 482 | case LOAD_URL: |
| 483 | loadUrlFromContext(getCurrentTopWebView(), (String) msg.obj); |
| 484 | break; |
| 485 | |
| 486 | case STOP_LOAD: |
| 487 | stopLoading(); |
| 488 | break; |
| 489 | |
| 490 | case RELEASE_WAKELOCK: |
| 491 | if (mWakeLock.isHeld()) { |
| 492 | mWakeLock.release(); |
| 493 | // if we reach here, Browser should be still in the |
| 494 | // background loading after WAKELOCK_TIMEOUT (5-min). |
| 495 | // To avoid burning the battery, stop loading. |
| 496 | mTabControl.stopAllLoading(); |
| 497 | } |
| 498 | break; |
| 499 | |
| 500 | case UPDATE_BOOKMARK_THUMBNAIL: |
| 501 | WebView view = (WebView) msg.obj; |
| 502 | if (view != null) { |
| 503 | updateScreenshot(view); |
| 504 | } |
| 505 | break; |
| 506 | } |
| 507 | } |
| 508 | }; |
| 509 | |
| 510 | } |
| 511 | |
Michael Kolb | ba99c5d | 2010-11-29 14:57:41 -0800 | [diff] [blame] | 512 | @Override |
| 513 | public void shareCurrentPage() { |
| 514 | shareCurrentPage(mTabControl.getCurrentTab()); |
| 515 | } |
| 516 | |
| 517 | private void shareCurrentPage(Tab tab) { |
| 518 | if (tab != null) { |
| 519 | tab.populatePickerData(); |
| 520 | sharePage(mActivity, tab.getTitle(), |
| 521 | tab.getUrl(), tab.getFavicon(), |
| 522 | createScreenshot(tab.getWebView(), |
| 523 | getDesiredThumbnailWidth(mActivity), |
| 524 | getDesiredThumbnailHeight(mActivity))); |
| 525 | } |
| 526 | } |
| 527 | |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 528 | /** |
| 529 | * Share a page, providing the title, url, favicon, and a screenshot. Uses |
| 530 | * an {@link Intent} to launch the Activity chooser. |
| 531 | * @param c Context used to launch a new Activity. |
| 532 | * @param title Title of the page. Stored in the Intent with |
| 533 | * {@link Intent#EXTRA_SUBJECT} |
| 534 | * @param url URL of the page. Stored in the Intent with |
| 535 | * {@link Intent#EXTRA_TEXT} |
| 536 | * @param favicon Bitmap of the favicon for the page. Stored in the Intent |
| 537 | * with {@link Browser#EXTRA_SHARE_FAVICON} |
| 538 | * @param screenshot Bitmap of a screenshot of the page. Stored in the |
| 539 | * Intent with {@link Browser#EXTRA_SHARE_SCREENSHOT} |
| 540 | */ |
| 541 | static final void sharePage(Context c, String title, String url, |
| 542 | Bitmap favicon, Bitmap screenshot) { |
| 543 | Intent send = new Intent(Intent.ACTION_SEND); |
| 544 | send.setType("text/plain"); |
| 545 | send.putExtra(Intent.EXTRA_TEXT, url); |
| 546 | send.putExtra(Intent.EXTRA_SUBJECT, title); |
| 547 | send.putExtra(Browser.EXTRA_SHARE_FAVICON, favicon); |
| 548 | send.putExtra(Browser.EXTRA_SHARE_SCREENSHOT, screenshot); |
| 549 | try { |
| 550 | c.startActivity(Intent.createChooser(send, c.getString( |
| 551 | R.string.choosertitle_sharevia))); |
| 552 | } catch(android.content.ActivityNotFoundException ex) { |
| 553 | // if no app handles it, do nothing |
| 554 | } |
| 555 | } |
| 556 | |
| 557 | private void copy(CharSequence text) { |
| 558 | ClipboardManager cm = (ClipboardManager) mActivity |
| 559 | .getSystemService(Context.CLIPBOARD_SERVICE); |
| 560 | cm.setText(text); |
| 561 | } |
| 562 | |
| 563 | // lifecycle |
| 564 | |
| 565 | protected void onConfgurationChanged(Configuration config) { |
| 566 | mConfigChanged = true; |
| 567 | if (mPageDialogsHandler != null) { |
| 568 | mPageDialogsHandler.onConfigurationChanged(config); |
| 569 | } |
| 570 | mUi.onConfigurationChanged(config); |
| 571 | } |
| 572 | |
| 573 | @Override |
| 574 | public void handleNewIntent(Intent intent) { |
| 575 | mIntentHandler.onNewIntent(intent); |
| 576 | } |
| 577 | |
| 578 | protected void onPause() { |
| 579 | if (mActivityPaused) { |
| 580 | Log.e(LOGTAG, "BrowserActivity is already paused."); |
| 581 | return; |
| 582 | } |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 583 | mActivityPaused = true; |
Michael Kolb | 7097693 | 2010-11-30 11:34:01 -0800 | [diff] [blame] | 584 | Tab tab = mTabControl.getCurrentTab(); |
| 585 | if (tab != null) { |
| 586 | tab.pause(); |
| 587 | if (!pauseWebViewTimers(tab)) { |
| 588 | mWakeLock.acquire(); |
| 589 | mHandler.sendMessageDelayed(mHandler |
| 590 | .obtainMessage(RELEASE_WAKELOCK), WAKELOCK_TIMEOUT); |
| 591 | } |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 592 | } |
| 593 | mUi.onPause(); |
| 594 | mNetworkHandler.onPause(); |
| 595 | |
| 596 | WebView.disablePlatformNotifications(); |
| 597 | } |
| 598 | |
| 599 | void onSaveInstanceState(Bundle outState) { |
| 600 | // the default implementation requires each view to have an id. As the |
| 601 | // browser handles the state itself and it doesn't use id for the views, |
| 602 | // don't call the default implementation. Otherwise it will trigger the |
| 603 | // warning like this, "couldn't save which view has focus because the |
| 604 | // focused view XXX has no id". |
| 605 | |
| 606 | // Save all the tabs |
| 607 | mTabControl.saveState(outState); |
| 608 | // Save time so that we know how old incognito tabs (if any) are. |
| 609 | outState.putSerializable("lastActiveDate", Calendar.getInstance()); |
| 610 | } |
| 611 | |
| 612 | void onResume() { |
| 613 | if (!mActivityPaused) { |
| 614 | Log.e(LOGTAG, "BrowserActivity is already resumed."); |
| 615 | return; |
| 616 | } |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 617 | mActivityPaused = false; |
Michael Kolb | 7097693 | 2010-11-30 11:34:01 -0800 | [diff] [blame] | 618 | Tab current = mTabControl.getCurrentTab(); |
| 619 | if (current != null) { |
| 620 | current.resume(); |
| 621 | resumeWebViewTimers(current); |
| 622 | } |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 623 | if (mWakeLock.isHeld()) { |
| 624 | mHandler.removeMessages(RELEASE_WAKELOCK); |
| 625 | mWakeLock.release(); |
| 626 | } |
| 627 | mUi.onResume(); |
| 628 | mNetworkHandler.onResume(); |
| 629 | WebView.enablePlatformNotifications(); |
| 630 | } |
| 631 | |
Michael Kolb | 7097693 | 2010-11-30 11:34:01 -0800 | [diff] [blame] | 632 | /** |
Michael Kolb | ba99c5d | 2010-11-29 14:57:41 -0800 | [diff] [blame] | 633 | * resume all WebView timers using the WebView instance of the given tab |
Michael Kolb | 7097693 | 2010-11-30 11:34:01 -0800 | [diff] [blame] | 634 | * @param tab guaranteed non-null |
| 635 | */ |
| 636 | private void resumeWebViewTimers(Tab tab) { |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 637 | boolean inLoad = tab.inPageLoad(); |
| 638 | if ((!mActivityPaused && !inLoad) || (mActivityPaused && inLoad)) { |
| 639 | CookieSyncManager.getInstance().startSync(); |
| 640 | WebView w = tab.getWebView(); |
| 641 | if (w != null) { |
| 642 | w.resumeTimers(); |
| 643 | } |
| 644 | } |
| 645 | } |
| 646 | |
Michael Kolb | 7097693 | 2010-11-30 11:34:01 -0800 | [diff] [blame] | 647 | /** |
| 648 | * Pause all WebView timers using the WebView of the given tab |
| 649 | * @param tab |
| 650 | * @return true if the timers are paused or tab is null |
| 651 | */ |
| 652 | private boolean pauseWebViewTimers(Tab tab) { |
| 653 | if (tab == null) { |
| 654 | return true; |
| 655 | } else if (!tab.inPageLoad()) { |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 656 | CookieSyncManager.getInstance().stopSync(); |
| 657 | WebView w = getCurrentWebView(); |
| 658 | if (w != null) { |
| 659 | w.pauseTimers(); |
| 660 | } |
| 661 | return true; |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 662 | } |
Michael Kolb | 7097693 | 2010-11-30 11:34:01 -0800 | [diff] [blame] | 663 | return false; |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 664 | } |
| 665 | |
| 666 | void onDestroy() { |
| 667 | if (mUploadHandler != null) { |
| 668 | mUploadHandler.onResult(Activity.RESULT_CANCELED, null); |
| 669 | mUploadHandler = null; |
| 670 | } |
| 671 | if (mTabControl == null) return; |
| 672 | mUi.onDestroy(); |
| 673 | // Remove the current tab and sub window |
| 674 | Tab t = mTabControl.getCurrentTab(); |
| 675 | if (t != null) { |
| 676 | dismissSubWindow(t); |
| 677 | removeTab(t); |
| 678 | } |
Leon Scroggins | 1961ed2 | 2010-12-07 15:22:21 -0500 | [diff] [blame] | 679 | mActivity.getContentResolver().unregisterContentObserver(mBookmarksObserver); |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 680 | // Destroy all the tabs |
| 681 | mTabControl.destroy(); |
| 682 | WebIconDatabase.getInstance().close(); |
| 683 | // Stop watching the default geolocation permissions |
| 684 | mSystemAllowGeolocationOrigins.stop(); |
| 685 | mSystemAllowGeolocationOrigins = null; |
| 686 | } |
| 687 | |
| 688 | protected boolean isActivityPaused() { |
| 689 | return mActivityPaused; |
| 690 | } |
| 691 | |
| 692 | protected void onLowMemory() { |
| 693 | mTabControl.freeMemory(); |
| 694 | } |
| 695 | |
| 696 | @Override |
| 697 | public boolean shouldShowErrorConsole() { |
| 698 | return mShouldShowErrorConsole; |
| 699 | } |
| 700 | |
| 701 | protected void setShouldShowErrorConsole(boolean show) { |
| 702 | if (show == mShouldShowErrorConsole) { |
| 703 | // Nothing to do. |
| 704 | return; |
| 705 | } |
| 706 | mShouldShowErrorConsole = show; |
| 707 | Tab t = mTabControl.getCurrentTab(); |
| 708 | if (t == null) { |
| 709 | // There is no current tab so we cannot toggle the error console |
| 710 | return; |
| 711 | } |
| 712 | mUi.setShouldShowErrorConsole(t, show); |
| 713 | } |
| 714 | |
| 715 | @Override |
| 716 | public void stopLoading() { |
| 717 | mLoadStopped = true; |
| 718 | Tab tab = mTabControl.getCurrentTab(); |
| 719 | resetTitleAndRevertLockIcon(tab); |
| 720 | WebView w = getCurrentTopWebView(); |
| 721 | w.stopLoading(); |
| 722 | // FIXME: before refactor, it is using mWebViewClient. So I keep the |
| 723 | // same logic here. But for subwindow case, should we call into the main |
| 724 | // WebView's onPageFinished as we never call its onPageStarted and if |
| 725 | // the page finishes itself, we don't call onPageFinished. |
| 726 | mTabControl.getCurrentWebView().getWebViewClient().onPageFinished(w, |
| 727 | w.getUrl()); |
| 728 | mUi.onPageStopped(tab); |
| 729 | } |
| 730 | |
| 731 | boolean didUserStopLoading() { |
| 732 | return mLoadStopped; |
| 733 | } |
| 734 | |
| 735 | // WebViewController |
| 736 | |
| 737 | @Override |
| 738 | public void onPageStarted(Tab tab, WebView view, String url, Bitmap favicon) { |
| 739 | |
| 740 | // We've started to load a new page. If there was a pending message |
| 741 | // to save a screenshot then we will now take the new page and save |
| 742 | // an incorrect screenshot. Therefore, remove any pending thumbnail |
| 743 | // messages from the queue. |
| 744 | mHandler.removeMessages(Controller.UPDATE_BOOKMARK_THUMBNAIL, |
| 745 | view); |
| 746 | |
| 747 | // reset sync timer to avoid sync starts during loading a page |
| 748 | CookieSyncManager.getInstance().resetSync(); |
| 749 | |
| 750 | if (!mNetworkHandler.isNetworkUp()) { |
| 751 | view.setNetworkAvailable(false); |
| 752 | } |
| 753 | |
| 754 | // when BrowserActivity just starts, onPageStarted may be called before |
| 755 | // onResume as it is triggered from onCreate. Call resumeWebViewTimers |
| 756 | // to start the timer. As we won't switch tabs while an activity is in |
| 757 | // pause state, we can ensure calling resume and pause in pair. |
| 758 | if (mActivityPaused) { |
Michael Kolb | 7097693 | 2010-11-30 11:34:01 -0800 | [diff] [blame] | 759 | resumeWebViewTimers(tab); |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 760 | } |
| 761 | mLoadStopped = false; |
| 762 | if (!mNetworkHandler.isNetworkUp()) { |
| 763 | mNetworkHandler.createAndShowNetworkDialog(); |
| 764 | } |
| 765 | endActionMode(); |
| 766 | |
| 767 | mUi.onPageStarted(tab, url, favicon); |
| 768 | |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 769 | // update the bookmark database for favicon |
| 770 | maybeUpdateFavicon(tab, null, url, favicon); |
| 771 | |
| 772 | Performance.tracePageStart(url); |
| 773 | |
| 774 | // Performance probe |
| 775 | if (false) { |
| 776 | Performance.onPageStarted(); |
| 777 | } |
| 778 | |
| 779 | } |
| 780 | |
| 781 | @Override |
| 782 | public void onPageFinished(Tab tab, String url) { |
| 783 | mUi.onPageFinished(tab, url); |
| 784 | if (!tab.isPrivateBrowsingEnabled()) { |
| 785 | if (tab.inForeground() && !didUserStopLoading() |
| 786 | || !tab.inForeground()) { |
| 787 | // Only update the bookmark screenshot if the user did not |
| 788 | // cancel the load early. |
| 789 | mHandler.sendMessageDelayed(mHandler.obtainMessage( |
| 790 | UPDATE_BOOKMARK_THUMBNAIL, 0, 0, tab.getWebView()), |
| 791 | 500); |
| 792 | } |
| 793 | } |
| 794 | // pause the WebView timer and release the wake lock if it is finished |
| 795 | // while BrowserActivity is in pause state. |
Michael Kolb | 7097693 | 2010-11-30 11:34:01 -0800 | [diff] [blame] | 796 | if (mActivityPaused && pauseWebViewTimers(tab)) { |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 797 | if (mWakeLock.isHeld()) { |
| 798 | mHandler.removeMessages(RELEASE_WAKELOCK); |
| 799 | mWakeLock.release(); |
| 800 | } |
| 801 | } |
| 802 | // Performance probe |
| 803 | if (false) { |
| 804 | Performance.onPageFinished(url); |
| 805 | } |
| 806 | |
| 807 | Performance.tracePageFinished(); |
| 808 | } |
| 809 | |
| 810 | @Override |
| 811 | public void onProgressChanged(Tab tab, int newProgress) { |
| 812 | |
| 813 | if (newProgress == 100) { |
| 814 | CookieSyncManager.getInstance().sync(); |
| 815 | // onProgressChanged() may continue to be called after the main |
| 816 | // frame has finished loading, as any remaining sub frames continue |
| 817 | // to load. We'll only get called once though with newProgress as |
| 818 | // 100 when everything is loaded. (onPageFinished is called once |
| 819 | // when the main frame completes loading regardless of the state of |
| 820 | // any sub frames so calls to onProgressChanges may continue after |
| 821 | // onPageFinished has executed) |
| 822 | if (mInLoad) { |
| 823 | mInLoad = false; |
| 824 | updateInLoadMenuItems(mCachedMenu); |
| 825 | } |
| 826 | } else { |
| 827 | if (!mInLoad) { |
| 828 | // onPageFinished may have already been called but a subframe is |
| 829 | // still loading and updating the progress. Reset mInLoad and |
| 830 | // update the menu items. |
| 831 | mInLoad = true; |
| 832 | updateInLoadMenuItems(mCachedMenu); |
| 833 | } |
| 834 | } |
| 835 | mUi.onProgressChanged(tab, newProgress); |
| 836 | } |
| 837 | |
| 838 | @Override |
| 839 | public void onReceivedTitle(Tab tab, final String title) { |
| 840 | final String pageUrl = tab.getWebView().getUrl(); |
| 841 | setUrlTitle(tab, pageUrl, title); |
| 842 | if (pageUrl == null || pageUrl.length() |
| 843 | >= SQLiteDatabase.SQLITE_MAX_LIKE_PATTERN_LENGTH) { |
| 844 | return; |
| 845 | } |
| 846 | // Update the title in the history database if not in private browsing mode |
| 847 | if (!tab.isPrivateBrowsingEnabled()) { |
John Reck | 0ebd3ac | 2010-12-09 11:14:04 -0800 | [diff] [blame] | 848 | mDataController.updateHistoryTitle(pageUrl, title); |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 849 | } |
| 850 | } |
| 851 | |
| 852 | @Override |
| 853 | public void onFavicon(Tab tab, WebView view, Bitmap icon) { |
| 854 | mUi.setFavicon(tab, icon); |
| 855 | maybeUpdateFavicon(tab, view.getOriginalUrl(), view.getUrl(), icon); |
| 856 | } |
| 857 | |
| 858 | @Override |
Michael Kolb | 18eb377 | 2010-12-10 14:29:51 -0800 | [diff] [blame^] | 859 | public boolean shouldOverrideUrlLoading(Tab tab, WebView view, String url) { |
| 860 | return mUrlHandler.shouldOverrideUrlLoading(tab, view, url); |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 861 | } |
| 862 | |
| 863 | @Override |
| 864 | public boolean shouldOverrideKeyEvent(KeyEvent event) { |
| 865 | if (mMenuIsDown) { |
| 866 | // only check shortcut key when MENU is held |
| 867 | return mActivity.getWindow().isShortcutKey(event.getKeyCode(), |
| 868 | event); |
| 869 | } else { |
| 870 | return false; |
| 871 | } |
| 872 | } |
| 873 | |
| 874 | @Override |
| 875 | public void onUnhandledKeyEvent(KeyEvent event) { |
| 876 | if (!isActivityPaused()) { |
| 877 | if (event.getAction() == KeyEvent.ACTION_DOWN) { |
| 878 | mActivity.onKeyDown(event.getKeyCode(), event); |
| 879 | } else { |
| 880 | mActivity.onKeyUp(event.getKeyCode(), event); |
| 881 | } |
| 882 | } |
| 883 | } |
| 884 | |
| 885 | @Override |
| 886 | public void doUpdateVisitedHistory(Tab tab, String url, |
| 887 | boolean isReload) { |
| 888 | // Don't save anything in private browsing mode |
| 889 | if (tab.isPrivateBrowsingEnabled()) return; |
| 890 | |
| 891 | if (url.regionMatches(true, 0, "about:", 0, 6)) { |
| 892 | return; |
| 893 | } |
John Reck | 0ebd3ac | 2010-12-09 11:14:04 -0800 | [diff] [blame] | 894 | mDataController.updateVisitedHistory(url); |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 895 | WebIconDatabase.getInstance().retainIconForPageUrl(url); |
| 896 | } |
| 897 | |
| 898 | @Override |
| 899 | public void getVisitedHistory(final ValueCallback<String[]> callback) { |
| 900 | AsyncTask<Void, Void, String[]> task = |
| 901 | new AsyncTask<Void, Void, String[]>() { |
| 902 | @Override |
| 903 | public String[] doInBackground(Void... unused) { |
| 904 | return Browser.getVisitedHistory(mActivity.getContentResolver()); |
| 905 | } |
| 906 | @Override |
| 907 | public void onPostExecute(String[] result) { |
| 908 | callback.onReceiveValue(result); |
| 909 | } |
| 910 | }; |
| 911 | task.execute(); |
| 912 | } |
| 913 | |
| 914 | @Override |
| 915 | public void onReceivedHttpAuthRequest(Tab tab, WebView view, |
| 916 | final HttpAuthHandler handler, final String host, |
| 917 | final String realm) { |
| 918 | String username = null; |
| 919 | String password = null; |
| 920 | |
| 921 | boolean reuseHttpAuthUsernamePassword |
| 922 | = handler.useHttpAuthUsernamePassword(); |
| 923 | |
| 924 | if (reuseHttpAuthUsernamePassword && view != null) { |
| 925 | String[] credentials = view.getHttpAuthUsernamePassword(host, realm); |
| 926 | if (credentials != null && credentials.length == 2) { |
| 927 | username = credentials[0]; |
| 928 | password = credentials[1]; |
| 929 | } |
| 930 | } |
| 931 | |
| 932 | if (username != null && password != null) { |
| 933 | handler.proceed(username, password); |
| 934 | } else { |
| 935 | if (tab.inForeground()) { |
| 936 | mPageDialogsHandler.showHttpAuthentication(tab, handler, host, realm); |
| 937 | } else { |
| 938 | handler.cancel(); |
| 939 | } |
| 940 | } |
| 941 | } |
| 942 | |
| 943 | @Override |
| 944 | public void onDownloadStart(Tab tab, String url, String userAgent, |
| 945 | String contentDisposition, String mimetype, long contentLength) { |
Leon Scroggins | 63c0266 | 2010-11-18 15:16:27 -0500 | [diff] [blame] | 946 | DownloadHandler.onDownloadStart(mActivity, url, userAgent, |
| 947 | contentDisposition, mimetype); |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 948 | if (tab.getWebView().copyBackForwardList().getSize() == 0) { |
| 949 | // This Tab was opened for the sole purpose of downloading a |
| 950 | // file. Remove it. |
| 951 | if (tab == mTabControl.getCurrentTab()) { |
| 952 | // In this case, the Tab is still on top. |
| 953 | goBackOnePageOrQuit(); |
| 954 | } else { |
| 955 | // In this case, it is not. |
| 956 | closeTab(tab); |
| 957 | } |
| 958 | } |
| 959 | } |
| 960 | |
| 961 | @Override |
| 962 | public Bitmap getDefaultVideoPoster() { |
| 963 | return mUi.getDefaultVideoPoster(); |
| 964 | } |
| 965 | |
| 966 | @Override |
| 967 | public View getVideoLoadingProgressView() { |
| 968 | return mUi.getVideoLoadingProgressView(); |
| 969 | } |
| 970 | |
| 971 | @Override |
| 972 | public void showSslCertificateOnError(WebView view, SslErrorHandler handler, |
| 973 | SslError error) { |
| 974 | mPageDialogsHandler.showSSLCertificateOnError(view, handler, error); |
| 975 | } |
| 976 | |
| 977 | // helper method |
| 978 | |
| 979 | /* |
| 980 | * Update the favorites icon if the private browsing isn't enabled and the |
| 981 | * icon is valid. |
| 982 | */ |
| 983 | private void maybeUpdateFavicon(Tab tab, final String originalUrl, |
| 984 | final String url, Bitmap favicon) { |
| 985 | if (favicon == null) { |
| 986 | return; |
| 987 | } |
| 988 | if (!tab.isPrivateBrowsingEnabled()) { |
| 989 | Bookmarks.updateFavicon(mActivity |
| 990 | .getContentResolver(), originalUrl, url, favicon); |
| 991 | } |
| 992 | } |
| 993 | |
Leon Scroggins | 4cd9779 | 2010-12-03 15:31:56 -0500 | [diff] [blame] | 994 | @Override |
| 995 | public void bookmarkedStatusHasChanged(Tab tab) { |
| 996 | mUi.bookmarkedStatusHasChanged(tab); |
| 997 | } |
| 998 | |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 999 | // end WebViewController |
| 1000 | |
| 1001 | protected void pageUp() { |
| 1002 | getCurrentTopWebView().pageUp(false); |
| 1003 | } |
| 1004 | |
| 1005 | protected void pageDown() { |
| 1006 | getCurrentTopWebView().pageDown(false); |
| 1007 | } |
| 1008 | |
| 1009 | // callback from phone title bar |
| 1010 | public void editUrl() { |
| 1011 | if (mOptionsMenuOpen) mActivity.closeOptionsMenu(); |
| 1012 | String url = (getCurrentTopWebView() == null) ? null : getCurrentTopWebView().getUrl(); |
| 1013 | startSearch(mSettings.getHomePage().equals(url) ? null : url, true, |
| 1014 | null, false); |
| 1015 | } |
| 1016 | |
| 1017 | public void activateVoiceSearchMode(String title) { |
| 1018 | mUi.showVoiceTitleBar(title); |
| 1019 | } |
| 1020 | |
| 1021 | public void revertVoiceSearchMode(Tab tab) { |
| 1022 | mUi.revertVoiceTitleBar(tab); |
| 1023 | } |
| 1024 | |
| 1025 | public void showCustomView(Tab tab, View view, |
| 1026 | WebChromeClient.CustomViewCallback callback) { |
| 1027 | if (tab.inForeground()) { |
| 1028 | if (mUi.isCustomViewShowing()) { |
| 1029 | callback.onCustomViewHidden(); |
| 1030 | return; |
| 1031 | } |
| 1032 | mUi.showCustomView(view, callback); |
| 1033 | // Save the menu state and set it to empty while the custom |
| 1034 | // view is showing. |
| 1035 | mOldMenuState = mMenuState; |
| 1036 | mMenuState = EMPTY_MENU; |
| 1037 | } |
| 1038 | } |
| 1039 | |
| 1040 | @Override |
| 1041 | public void hideCustomView() { |
| 1042 | if (mUi.isCustomViewShowing()) { |
| 1043 | mUi.onHideCustomView(); |
| 1044 | // Reset the old menu state. |
| 1045 | mMenuState = mOldMenuState; |
| 1046 | mOldMenuState = EMPTY_MENU; |
| 1047 | } |
| 1048 | } |
| 1049 | |
| 1050 | protected void onActivityResult(int requestCode, int resultCode, |
| 1051 | Intent intent) { |
| 1052 | if (getCurrentTopWebView() == null) return; |
| 1053 | switch (requestCode) { |
| 1054 | case PREFERENCES_PAGE: |
| 1055 | if (resultCode == Activity.RESULT_OK && intent != null) { |
| 1056 | String action = intent.getStringExtra(Intent.EXTRA_TEXT); |
| 1057 | if (BrowserSettings.PREF_CLEAR_HISTORY.equals(action)) { |
| 1058 | mTabControl.removeParentChildRelationShips(); |
| 1059 | } |
| 1060 | } |
| 1061 | break; |
| 1062 | case FILE_SELECTED: |
| 1063 | // Choose a file from the file picker. |
| 1064 | if (null == mUploadHandler) break; |
| 1065 | mUploadHandler.onResult(resultCode, intent); |
| 1066 | mUploadHandler = null; |
| 1067 | break; |
Ben Murdoch | 8029a77 | 2010-11-16 11:58:21 +0000 | [diff] [blame] | 1068 | case AUTOFILL_SETUP: |
| 1069 | // Determine whether a profile was actually set up or not |
| 1070 | // and if so, send the message back to the WebTextView to |
| 1071 | // fill the form with the new profile. |
| 1072 | if (getSettings().getAutoFillProfile() != null) { |
| 1073 | mAutoFillSetupMessage.sendToTarget(); |
| 1074 | mAutoFillSetupMessage = null; |
| 1075 | } |
| 1076 | break; |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 1077 | default: |
| 1078 | break; |
| 1079 | } |
| 1080 | getCurrentTopWebView().requestFocus(); |
| 1081 | } |
| 1082 | |
| 1083 | /** |
| 1084 | * Open the Go page. |
| 1085 | * @param startWithHistory If true, open starting on the history tab. |
| 1086 | * Otherwise, start with the bookmarks tab. |
| 1087 | */ |
| 1088 | @Override |
| 1089 | public void bookmarksOrHistoryPicker(boolean startWithHistory) { |
| 1090 | if (mTabControl.getCurrentWebView() == null) { |
| 1091 | return; |
| 1092 | } |
| 1093 | Bundle extras = new Bundle(); |
| 1094 | // Disable opening in a new window if we have maxed out the windows |
| 1095 | extras.putBoolean(BrowserBookmarksPage.EXTRA_DISABLE_WINDOW, |
| 1096 | !mTabControl.canCreateNewTab()); |
| 1097 | mUi.showComboView(startWithHistory, extras); |
| 1098 | } |
| 1099 | |
| 1100 | // combo view callbacks |
| 1101 | |
| 1102 | /** |
| 1103 | * callback from ComboPage when clear history is requested |
| 1104 | */ |
| 1105 | public void onRemoveParentChildRelationships() { |
| 1106 | mTabControl.removeParentChildRelationShips(); |
| 1107 | } |
| 1108 | |
| 1109 | /** |
| 1110 | * callback from ComboPage when bookmark/history selection |
| 1111 | */ |
| 1112 | @Override |
| 1113 | public void onUrlSelected(String url, boolean newTab) { |
| 1114 | removeComboView(); |
| 1115 | if (!TextUtils.isEmpty(url)) { |
| 1116 | if (newTab) { |
Michael Kolb | 18eb377 | 2010-12-10 14:29:51 -0800 | [diff] [blame^] | 1117 | openTab(mTabControl.getCurrentTab(), url, false); |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 1118 | } else { |
| 1119 | final Tab currentTab = mTabControl.getCurrentTab(); |
| 1120 | dismissSubWindow(currentTab); |
| 1121 | loadUrl(getCurrentTopWebView(), url); |
| 1122 | } |
| 1123 | } |
| 1124 | } |
| 1125 | |
| 1126 | /** |
| 1127 | * callback from ComboPage when dismissed |
| 1128 | */ |
| 1129 | @Override |
| 1130 | public void onComboCanceled() { |
| 1131 | removeComboView(); |
| 1132 | } |
| 1133 | |
| 1134 | /** |
| 1135 | * dismiss the ComboPage |
| 1136 | */ |
| 1137 | @Override |
| 1138 | public void removeComboView() { |
| 1139 | mUi.hideComboView(); |
| 1140 | } |
| 1141 | |
| 1142 | // active tabs page handling |
| 1143 | |
| 1144 | protected void showActiveTabsPage() { |
| 1145 | mMenuState = EMPTY_MENU; |
| 1146 | mUi.showActiveTabsPage(); |
| 1147 | } |
| 1148 | |
| 1149 | /** |
| 1150 | * Remove the active tabs page. |
| 1151 | * @param needToAttach If true, the active tabs page did not attach a tab |
| 1152 | * to the content view, so we need to do that here. |
| 1153 | */ |
| 1154 | @Override |
| 1155 | public void removeActiveTabsPage(boolean needToAttach) { |
| 1156 | mMenuState = R.id.MAIN_MENU; |
| 1157 | mUi.removeActiveTabsPage(); |
| 1158 | if (needToAttach) { |
| 1159 | setActiveTab(mTabControl.getCurrentTab()); |
| 1160 | } |
| 1161 | getCurrentTopWebView().requestFocus(); |
| 1162 | } |
| 1163 | |
| 1164 | // key handling |
| 1165 | protected void onBackKey() { |
| 1166 | if (!mUi.onBackKey()) { |
| 1167 | WebView subwindow = mTabControl.getCurrentSubWindow(); |
| 1168 | if (subwindow != null) { |
| 1169 | if (subwindow.canGoBack()) { |
| 1170 | subwindow.goBack(); |
| 1171 | } else { |
| 1172 | dismissSubWindow(mTabControl.getCurrentTab()); |
| 1173 | } |
| 1174 | } else { |
| 1175 | goBackOnePageOrQuit(); |
| 1176 | } |
| 1177 | } |
| 1178 | } |
| 1179 | |
| 1180 | // menu handling and state |
| 1181 | // TODO: maybe put into separate handler |
| 1182 | |
| 1183 | protected boolean onCreateOptionsMenu(Menu menu) { |
| 1184 | MenuInflater inflater = mActivity.getMenuInflater(); |
| 1185 | inflater.inflate(R.menu.browser, menu); |
| 1186 | updateInLoadMenuItems(menu); |
| 1187 | // hold on to the menu reference here; it is used by the page callbacks |
| 1188 | // to update the menu based on loading state |
| 1189 | mCachedMenu = menu; |
| 1190 | return true; |
| 1191 | } |
| 1192 | |
| 1193 | protected void onCreateContextMenu(ContextMenu menu, View v, |
| 1194 | ContextMenuInfo menuInfo) { |
| 1195 | if (v instanceof TitleBarBase) { |
| 1196 | return; |
| 1197 | } |
| 1198 | if (!(v instanceof WebView)) { |
| 1199 | return; |
| 1200 | } |
Leon Scroggins | 026f254 | 2010-11-22 13:26:12 -0500 | [diff] [blame] | 1201 | final WebView webview = (WebView) v; |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 1202 | WebView.HitTestResult result = webview.getHitTestResult(); |
| 1203 | if (result == null) { |
| 1204 | return; |
| 1205 | } |
| 1206 | |
| 1207 | int type = result.getType(); |
| 1208 | if (type == WebView.HitTestResult.UNKNOWN_TYPE) { |
| 1209 | Log.w(LOGTAG, |
| 1210 | "We should not show context menu when nothing is touched"); |
| 1211 | return; |
| 1212 | } |
| 1213 | if (type == WebView.HitTestResult.EDIT_TEXT_TYPE) { |
| 1214 | // let TextView handles context menu |
| 1215 | return; |
| 1216 | } |
| 1217 | |
| 1218 | // Note, http://b/issue?id=1106666 is requesting that |
| 1219 | // an inflated menu can be used again. This is not available |
| 1220 | // yet, so inflate each time (yuk!) |
| 1221 | MenuInflater inflater = mActivity.getMenuInflater(); |
| 1222 | inflater.inflate(R.menu.browsercontext, menu); |
| 1223 | |
| 1224 | // Show the correct menu group |
| 1225 | final String extra = result.getExtra(); |
| 1226 | menu.setGroupVisible(R.id.PHONE_MENU, |
| 1227 | type == WebView.HitTestResult.PHONE_TYPE); |
| 1228 | menu.setGroupVisible(R.id.EMAIL_MENU, |
| 1229 | type == WebView.HitTestResult.EMAIL_TYPE); |
| 1230 | menu.setGroupVisible(R.id.GEO_MENU, |
| 1231 | type == WebView.HitTestResult.GEO_TYPE); |
| 1232 | menu.setGroupVisible(R.id.IMAGE_MENU, |
| 1233 | type == WebView.HitTestResult.IMAGE_TYPE |
| 1234 | || type == WebView.HitTestResult.SRC_IMAGE_ANCHOR_TYPE); |
| 1235 | menu.setGroupVisible(R.id.ANCHOR_MENU, |
| 1236 | type == WebView.HitTestResult.SRC_ANCHOR_TYPE |
| 1237 | || type == WebView.HitTestResult.SRC_IMAGE_ANCHOR_TYPE); |
Cary Clark | 8974d28 | 2010-11-22 10:46:05 -0500 | [diff] [blame] | 1238 | boolean hitText = type == WebView.HitTestResult.SRC_ANCHOR_TYPE |
| 1239 | || type == WebView.HitTestResult.PHONE_TYPE |
| 1240 | || type == WebView.HitTestResult.EMAIL_TYPE |
| 1241 | || type == WebView.HitTestResult.GEO_TYPE; |
| 1242 | menu.setGroupVisible(R.id.SELECT_TEXT_MENU, hitText); |
| 1243 | if (hitText) { |
| 1244 | menu.findItem(R.id.select_text_menu_id) |
| 1245 | .setOnMenuItemClickListener(new SelectText(webview)); |
| 1246 | } |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 1247 | // Setup custom handling depending on the type |
| 1248 | switch (type) { |
| 1249 | case WebView.HitTestResult.PHONE_TYPE: |
| 1250 | menu.setHeaderTitle(Uri.decode(extra)); |
| 1251 | menu.findItem(R.id.dial_context_menu_id).setIntent( |
| 1252 | new Intent(Intent.ACTION_VIEW, Uri |
| 1253 | .parse(WebView.SCHEME_TEL + extra))); |
| 1254 | Intent addIntent = new Intent(Intent.ACTION_INSERT_OR_EDIT); |
| 1255 | addIntent.putExtra(Insert.PHONE, Uri.decode(extra)); |
| 1256 | addIntent.setType(ContactsContract.Contacts.CONTENT_ITEM_TYPE); |
| 1257 | menu.findItem(R.id.add_contact_context_menu_id).setIntent( |
| 1258 | addIntent); |
| 1259 | menu.findItem(R.id.copy_phone_context_menu_id) |
| 1260 | .setOnMenuItemClickListener( |
| 1261 | new Copy(extra)); |
| 1262 | break; |
| 1263 | |
| 1264 | case WebView.HitTestResult.EMAIL_TYPE: |
| 1265 | menu.setHeaderTitle(extra); |
| 1266 | menu.findItem(R.id.email_context_menu_id).setIntent( |
| 1267 | new Intent(Intent.ACTION_VIEW, Uri |
| 1268 | .parse(WebView.SCHEME_MAILTO + extra))); |
| 1269 | menu.findItem(R.id.copy_mail_context_menu_id) |
| 1270 | .setOnMenuItemClickListener( |
| 1271 | new Copy(extra)); |
| 1272 | break; |
| 1273 | |
| 1274 | case WebView.HitTestResult.GEO_TYPE: |
| 1275 | menu.setHeaderTitle(extra); |
| 1276 | menu.findItem(R.id.map_context_menu_id).setIntent( |
| 1277 | new Intent(Intent.ACTION_VIEW, Uri |
| 1278 | .parse(WebView.SCHEME_GEO |
| 1279 | + URLEncoder.encode(extra)))); |
| 1280 | menu.findItem(R.id.copy_geo_context_menu_id) |
| 1281 | .setOnMenuItemClickListener( |
| 1282 | new Copy(extra)); |
| 1283 | break; |
| 1284 | |
| 1285 | case WebView.HitTestResult.SRC_ANCHOR_TYPE: |
| 1286 | case WebView.HitTestResult.SRC_IMAGE_ANCHOR_TYPE: |
| 1287 | TextView titleView = (TextView) LayoutInflater.from(mActivity) |
| 1288 | .inflate(android.R.layout.browser_link_context_header, |
| 1289 | null); |
| 1290 | titleView.setText(extra); |
| 1291 | menu.setHeaderView(titleView); |
| 1292 | // decide whether to show the open link in new tab option |
| 1293 | boolean showNewTab = mTabControl.canCreateNewTab(); |
| 1294 | MenuItem newTabItem |
| 1295 | = menu.findItem(R.id.open_newtab_context_menu_id); |
| 1296 | newTabItem.setVisible(showNewTab); |
| 1297 | if (showNewTab) { |
Leon Scroggins | 026f254 | 2010-11-22 13:26:12 -0500 | [diff] [blame] | 1298 | if (WebView.HitTestResult.SRC_IMAGE_ANCHOR_TYPE == type) { |
| 1299 | newTabItem.setOnMenuItemClickListener( |
| 1300 | new MenuItem.OnMenuItemClickListener() { |
| 1301 | @Override |
| 1302 | public boolean onMenuItemClick(MenuItem item) { |
| 1303 | final HashMap<String, WebView> hrefMap = |
| 1304 | new HashMap<String, WebView>(); |
| 1305 | hrefMap.put("webview", webview); |
| 1306 | final Message msg = mHandler.obtainMessage( |
| 1307 | FOCUS_NODE_HREF, |
| 1308 | R.id.open_newtab_context_menu_id, |
| 1309 | 0, hrefMap); |
| 1310 | webview.requestFocusNodeHref(msg); |
| 1311 | return true; |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 1312 | } |
Leon Scroggins | 026f254 | 2010-11-22 13:26:12 -0500 | [diff] [blame] | 1313 | }); |
| 1314 | } else { |
| 1315 | newTabItem.setOnMenuItemClickListener( |
| 1316 | new MenuItem.OnMenuItemClickListener() { |
| 1317 | @Override |
| 1318 | public boolean onMenuItemClick(MenuItem item) { |
| 1319 | final Tab parent = mTabControl.getCurrentTab(); |
Michael Kolb | 18eb377 | 2010-12-10 14:29:51 -0800 | [diff] [blame^] | 1320 | final Tab newTab = openTab(parent, |
| 1321 | extra, false); |
Leon Scroggins | 026f254 | 2010-11-22 13:26:12 -0500 | [diff] [blame] | 1322 | if (newTab != parent) { |
| 1323 | parent.addChildTab(newTab); |
| 1324 | } |
| 1325 | return true; |
| 1326 | } |
| 1327 | }); |
| 1328 | } |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 1329 | } |
| 1330 | menu.findItem(R.id.bookmark_context_menu_id).setVisible( |
| 1331 | Bookmarks.urlHasAcceptableScheme(extra)); |
| 1332 | PackageManager pm = mActivity.getPackageManager(); |
| 1333 | Intent send = new Intent(Intent.ACTION_SEND); |
| 1334 | send.setType("text/plain"); |
| 1335 | ResolveInfo ri = pm.resolveActivity(send, |
| 1336 | PackageManager.MATCH_DEFAULT_ONLY); |
| 1337 | menu.findItem(R.id.share_link_context_menu_id) |
| 1338 | .setVisible(ri != null); |
| 1339 | if (type == WebView.HitTestResult.SRC_ANCHOR_TYPE) { |
| 1340 | break; |
| 1341 | } |
| 1342 | // otherwise fall through to handle image part |
| 1343 | case WebView.HitTestResult.IMAGE_TYPE: |
| 1344 | if (type == WebView.HitTestResult.IMAGE_TYPE) { |
| 1345 | menu.setHeaderTitle(extra); |
| 1346 | } |
| 1347 | menu.findItem(R.id.view_image_context_menu_id).setIntent( |
| 1348 | new Intent(Intent.ACTION_VIEW, Uri.parse(extra))); |
| 1349 | menu.findItem(R.id.download_context_menu_id). |
Leon Scroggins | 63c0266 | 2010-11-18 15:16:27 -0500 | [diff] [blame] | 1350 | setOnMenuItemClickListener(new Download(mActivity, extra)); |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 1351 | menu.findItem(R.id.set_wallpaper_context_menu_id). |
| 1352 | setOnMenuItemClickListener(new WallpaperHandler(mActivity, |
| 1353 | extra)); |
| 1354 | break; |
| 1355 | |
| 1356 | default: |
| 1357 | Log.w(LOGTAG, "We should not get here."); |
| 1358 | break; |
| 1359 | } |
| 1360 | //update the ui |
| 1361 | mUi.onContextMenuCreated(menu); |
| 1362 | } |
| 1363 | |
| 1364 | /** |
| 1365 | * As the menu can be open when loading state changes |
| 1366 | * we must manually update the state of the stop/reload menu |
| 1367 | * item |
| 1368 | */ |
| 1369 | private void updateInLoadMenuItems(Menu menu) { |
| 1370 | if (menu == null) { |
| 1371 | return; |
| 1372 | } |
| 1373 | MenuItem dest = menu.findItem(R.id.stop_reload_menu_id); |
| 1374 | MenuItem src = mInLoad ? |
| 1375 | menu.findItem(R.id.stop_menu_id): |
| 1376 | menu.findItem(R.id.reload_menu_id); |
| 1377 | if (src != null) { |
| 1378 | dest.setIcon(src.getIcon()); |
| 1379 | dest.setTitle(src.getTitle()); |
| 1380 | } |
| 1381 | } |
| 1382 | |
| 1383 | boolean prepareOptionsMenu(Menu menu) { |
| 1384 | // This happens when the user begins to hold down the menu key, so |
| 1385 | // allow them to chord to get a shortcut. |
| 1386 | mCanChord = true; |
| 1387 | // Note: setVisible will decide whether an item is visible; while |
| 1388 | // setEnabled() will decide whether an item is enabled, which also means |
| 1389 | // whether the matching shortcut key will function. |
| 1390 | switch (mMenuState) { |
| 1391 | case EMPTY_MENU: |
| 1392 | if (mCurrentMenuState != mMenuState) { |
| 1393 | menu.setGroupVisible(R.id.MAIN_MENU, false); |
| 1394 | menu.setGroupEnabled(R.id.MAIN_MENU, false); |
| 1395 | menu.setGroupEnabled(R.id.MAIN_SHORTCUT_MENU, false); |
| 1396 | } |
| 1397 | break; |
| 1398 | default: |
| 1399 | if (mCurrentMenuState != mMenuState) { |
| 1400 | menu.setGroupVisible(R.id.MAIN_MENU, true); |
| 1401 | menu.setGroupEnabled(R.id.MAIN_MENU, true); |
| 1402 | menu.setGroupEnabled(R.id.MAIN_SHORTCUT_MENU, true); |
| 1403 | } |
| 1404 | final WebView w = getCurrentTopWebView(); |
| 1405 | boolean canGoBack = false; |
| 1406 | boolean canGoForward = false; |
| 1407 | boolean isHome = false; |
| 1408 | if (w != null) { |
| 1409 | canGoBack = w.canGoBack(); |
| 1410 | canGoForward = w.canGoForward(); |
| 1411 | isHome = mSettings.getHomePage().equals(w.getUrl()); |
| 1412 | } |
| 1413 | final MenuItem back = menu.findItem(R.id.back_menu_id); |
| 1414 | back.setEnabled(canGoBack); |
| 1415 | |
| 1416 | final MenuItem home = menu.findItem(R.id.homepage_menu_id); |
| 1417 | home.setEnabled(!isHome); |
| 1418 | |
| 1419 | final MenuItem forward = menu.findItem(R.id.forward_menu_id); |
| 1420 | forward.setEnabled(canGoForward); |
| 1421 | |
| 1422 | // decide whether to show the share link option |
| 1423 | PackageManager pm = mActivity.getPackageManager(); |
| 1424 | Intent send = new Intent(Intent.ACTION_SEND); |
| 1425 | send.setType("text/plain"); |
| 1426 | ResolveInfo ri = pm.resolveActivity(send, |
| 1427 | PackageManager.MATCH_DEFAULT_ONLY); |
| 1428 | menu.findItem(R.id.share_page_menu_id).setVisible(ri != null); |
| 1429 | |
| 1430 | boolean isNavDump = mSettings.isNavDump(); |
| 1431 | final MenuItem nav = menu.findItem(R.id.dump_nav_menu_id); |
| 1432 | nav.setVisible(isNavDump); |
| 1433 | nav.setEnabled(isNavDump); |
| 1434 | |
| 1435 | boolean showDebugSettings = mSettings.showDebugSettings(); |
| 1436 | final MenuItem counter = menu.findItem(R.id.dump_counters_menu_id); |
| 1437 | counter.setVisible(showDebugSettings); |
| 1438 | counter.setEnabled(showDebugSettings); |
| 1439 | |
| 1440 | // allow the ui to adjust state based settings |
| 1441 | mUi.onPrepareOptionsMenu(menu); |
| 1442 | |
| 1443 | break; |
| 1444 | } |
| 1445 | mCurrentMenuState = mMenuState; |
| 1446 | return true; |
| 1447 | } |
| 1448 | |
| 1449 | public boolean onOptionsItemSelected(MenuItem item) { |
| 1450 | if (item.getGroupId() != R.id.CONTEXT_MENU) { |
| 1451 | // menu remains active, so ensure comboview is dismissed |
| 1452 | // if main menu option is selected |
| 1453 | removeComboView(); |
| 1454 | } |
| 1455 | // check the action bar button before mCanChord check, as the prepare call |
| 1456 | // doesn't come for action bar buttons |
| 1457 | if (item.getItemId() == R.id.newtab) { |
| 1458 | openTabToHomePage(); |
| 1459 | return true; |
| 1460 | } |
| 1461 | if (!mCanChord) { |
| 1462 | // The user has already fired a shortcut with this hold down of the |
| 1463 | // menu key. |
| 1464 | return false; |
| 1465 | } |
| 1466 | if (null == getCurrentTopWebView()) { |
| 1467 | return false; |
| 1468 | } |
| 1469 | if (mMenuIsDown) { |
| 1470 | // The shortcut action consumes the MENU. Even if it is still down, |
| 1471 | // it won't trigger the next shortcut action. In the case of the |
| 1472 | // shortcut action triggering a new activity, like Bookmarks, we |
| 1473 | // won't get onKeyUp for MENU. So it is important to reset it here. |
| 1474 | mMenuIsDown = false; |
| 1475 | } |
| 1476 | switch (item.getItemId()) { |
| 1477 | // -- Main menu |
| 1478 | case R.id.new_tab_menu_id: |
| 1479 | openTabToHomePage(); |
| 1480 | break; |
| 1481 | |
| 1482 | case R.id.incognito_menu_id: |
| 1483 | openIncognitoTab(); |
| 1484 | break; |
| 1485 | |
| 1486 | case R.id.goto_menu_id: |
| 1487 | editUrl(); |
| 1488 | break; |
| 1489 | |
| 1490 | case R.id.bookmarks_menu_id: |
| 1491 | bookmarksOrHistoryPicker(false); |
| 1492 | break; |
| 1493 | |
| 1494 | case R.id.active_tabs_menu_id: |
| 1495 | showActiveTabsPage(); |
| 1496 | break; |
| 1497 | |
| 1498 | case R.id.add_bookmark_menu_id: |
| 1499 | bookmarkCurrentPage(AddBookmarkPage.DEFAULT_FOLDER_ID); |
| 1500 | break; |
| 1501 | |
| 1502 | case R.id.stop_reload_menu_id: |
| 1503 | if (mInLoad) { |
| 1504 | stopLoading(); |
| 1505 | } else { |
| 1506 | getCurrentTopWebView().reload(); |
| 1507 | } |
| 1508 | break; |
| 1509 | |
| 1510 | case R.id.back_menu_id: |
| 1511 | getCurrentTopWebView().goBack(); |
| 1512 | break; |
| 1513 | |
| 1514 | case R.id.forward_menu_id: |
| 1515 | getCurrentTopWebView().goForward(); |
| 1516 | break; |
| 1517 | |
| 1518 | case R.id.close_menu_id: |
| 1519 | // Close the subwindow if it exists. |
| 1520 | if (mTabControl.getCurrentSubWindow() != null) { |
| 1521 | dismissSubWindow(mTabControl.getCurrentTab()); |
| 1522 | break; |
| 1523 | } |
| 1524 | closeCurrentTab(); |
| 1525 | break; |
| 1526 | |
| 1527 | case R.id.homepage_menu_id: |
| 1528 | Tab current = mTabControl.getCurrentTab(); |
| 1529 | if (current != null) { |
| 1530 | dismissSubWindow(current); |
| 1531 | loadUrl(current.getWebView(), mSettings.getHomePage()); |
| 1532 | } |
| 1533 | break; |
| 1534 | |
| 1535 | case R.id.preferences_menu_id: |
| 1536 | Intent intent = new Intent(mActivity, BrowserPreferencesPage.class); |
| 1537 | intent.putExtra(BrowserPreferencesPage.CURRENT_PAGE, |
| 1538 | getCurrentTopWebView().getUrl()); |
| 1539 | mActivity.startActivityForResult(intent, PREFERENCES_PAGE); |
| 1540 | break; |
| 1541 | |
| 1542 | case R.id.find_menu_id: |
| 1543 | getCurrentTopWebView().showFindDialog(null); |
| 1544 | break; |
| 1545 | |
| 1546 | case R.id.page_info_menu_id: |
| 1547 | mPageDialogsHandler.showPageInfo(mTabControl.getCurrentTab(), |
| 1548 | false); |
| 1549 | break; |
| 1550 | |
| 1551 | case R.id.classic_history_menu_id: |
| 1552 | bookmarksOrHistoryPicker(true); |
| 1553 | break; |
| 1554 | |
| 1555 | case R.id.title_bar_share_page_url: |
| 1556 | case R.id.share_page_menu_id: |
| 1557 | Tab currentTab = mTabControl.getCurrentTab(); |
| 1558 | if (null == currentTab) { |
| 1559 | mCanChord = false; |
| 1560 | return false; |
| 1561 | } |
Michael Kolb | ba99c5d | 2010-11-29 14:57:41 -0800 | [diff] [blame] | 1562 | shareCurrentPage(currentTab); |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 1563 | break; |
| 1564 | |
| 1565 | case R.id.dump_nav_menu_id: |
| 1566 | getCurrentTopWebView().debugDump(); |
| 1567 | break; |
| 1568 | |
| 1569 | case R.id.dump_counters_menu_id: |
| 1570 | getCurrentTopWebView().dumpV8Counters(); |
| 1571 | break; |
| 1572 | |
| 1573 | case R.id.zoom_in_menu_id: |
| 1574 | getCurrentTopWebView().zoomIn(); |
| 1575 | break; |
| 1576 | |
| 1577 | case R.id.zoom_out_menu_id: |
| 1578 | getCurrentTopWebView().zoomOut(); |
| 1579 | break; |
| 1580 | |
| 1581 | case R.id.view_downloads_menu_id: |
| 1582 | viewDownloads(); |
| 1583 | break; |
| 1584 | |
| 1585 | case R.id.window_one_menu_id: |
| 1586 | case R.id.window_two_menu_id: |
| 1587 | case R.id.window_three_menu_id: |
| 1588 | case R.id.window_four_menu_id: |
| 1589 | case R.id.window_five_menu_id: |
| 1590 | case R.id.window_six_menu_id: |
| 1591 | case R.id.window_seven_menu_id: |
| 1592 | case R.id.window_eight_menu_id: |
| 1593 | { |
| 1594 | int menuid = item.getItemId(); |
| 1595 | for (int id = 0; id < WINDOW_SHORTCUT_ID_ARRAY.length; id++) { |
| 1596 | if (WINDOW_SHORTCUT_ID_ARRAY[id] == menuid) { |
| 1597 | Tab desiredTab = mTabControl.getTab(id); |
| 1598 | if (desiredTab != null && |
| 1599 | desiredTab != mTabControl.getCurrentTab()) { |
| 1600 | switchToTab(id); |
| 1601 | } |
| 1602 | break; |
| 1603 | } |
| 1604 | } |
| 1605 | } |
| 1606 | break; |
| 1607 | |
| 1608 | default: |
| 1609 | return false; |
| 1610 | } |
| 1611 | mCanChord = false; |
| 1612 | return true; |
| 1613 | } |
| 1614 | |
| 1615 | public boolean onContextItemSelected(MenuItem item) { |
John Reck | dbf57df | 2010-11-09 16:34:03 -0800 | [diff] [blame] | 1616 | // Let the History and Bookmark fragments handle menus they created. |
| 1617 | if (item.getGroupId() == R.id.CONTEXT_MENU) { |
| 1618 | return false; |
| 1619 | } |
| 1620 | |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 1621 | // chording is not an issue with context menus, but we use the same |
| 1622 | // options selector, so set mCanChord to true so we can access them. |
| 1623 | mCanChord = true; |
| 1624 | int id = item.getItemId(); |
| 1625 | boolean result = true; |
| 1626 | switch (id) { |
| 1627 | // For the context menu from the title bar |
| 1628 | case R.id.title_bar_copy_page_url: |
| 1629 | Tab currentTab = mTabControl.getCurrentTab(); |
| 1630 | if (null == currentTab) { |
| 1631 | result = false; |
| 1632 | break; |
| 1633 | } |
| 1634 | WebView mainView = currentTab.getWebView(); |
| 1635 | if (null == mainView) { |
| 1636 | result = false; |
| 1637 | break; |
| 1638 | } |
| 1639 | copy(mainView.getUrl()); |
| 1640 | break; |
| 1641 | // -- Browser context menu |
| 1642 | case R.id.open_context_menu_id: |
| 1643 | case R.id.bookmark_context_menu_id: |
| 1644 | case R.id.save_link_context_menu_id: |
| 1645 | case R.id.share_link_context_menu_id: |
| 1646 | case R.id.copy_link_context_menu_id: |
| 1647 | final WebView webView = getCurrentTopWebView(); |
| 1648 | if (null == webView) { |
| 1649 | result = false; |
| 1650 | break; |
| 1651 | } |
| 1652 | final HashMap<String, WebView> hrefMap = |
| 1653 | new HashMap<String, WebView>(); |
| 1654 | hrefMap.put("webview", webView); |
| 1655 | final Message msg = mHandler.obtainMessage( |
| 1656 | FOCUS_NODE_HREF, id, 0, hrefMap); |
| 1657 | webView.requestFocusNodeHref(msg); |
| 1658 | break; |
| 1659 | |
| 1660 | default: |
| 1661 | // For other context menus |
| 1662 | result = onOptionsItemSelected(item); |
| 1663 | } |
| 1664 | mCanChord = false; |
| 1665 | return result; |
| 1666 | } |
| 1667 | |
| 1668 | /** |
| 1669 | * support programmatically opening the context menu |
| 1670 | */ |
| 1671 | public void openContextMenu(View view) { |
| 1672 | mActivity.openContextMenu(view); |
| 1673 | } |
| 1674 | |
| 1675 | /** |
| 1676 | * programmatically open the options menu |
| 1677 | */ |
| 1678 | public void openOptionsMenu() { |
| 1679 | mActivity.openOptionsMenu(); |
| 1680 | } |
| 1681 | |
| 1682 | public boolean onMenuOpened(int featureId, Menu menu) { |
| 1683 | if (mOptionsMenuOpen) { |
| 1684 | if (mConfigChanged) { |
| 1685 | // We do not need to make any changes to the state of the |
| 1686 | // title bar, since the only thing that happened was a |
| 1687 | // change in orientation |
| 1688 | mConfigChanged = false; |
| 1689 | } else { |
| 1690 | if (!mExtendedMenuOpen) { |
| 1691 | mExtendedMenuOpen = true; |
| 1692 | mUi.onExtendedMenuOpened(); |
| 1693 | } else { |
| 1694 | // Switching the menu back to icon view, so show the |
| 1695 | // title bar once again. |
| 1696 | mExtendedMenuOpen = false; |
| 1697 | mUi.onExtendedMenuClosed(mInLoad); |
| 1698 | mUi.onOptionsMenuOpened(); |
| 1699 | } |
| 1700 | } |
| 1701 | } else { |
| 1702 | // The options menu is closed, so open it, and show the title |
| 1703 | mOptionsMenuOpen = true; |
| 1704 | mConfigChanged = false; |
| 1705 | mExtendedMenuOpen = false; |
| 1706 | mUi.onOptionsMenuOpened(); |
| 1707 | } |
| 1708 | return true; |
| 1709 | } |
| 1710 | |
| 1711 | public void onOptionsMenuClosed(Menu menu) { |
| 1712 | mOptionsMenuOpen = false; |
| 1713 | mUi.onOptionsMenuClosed(mInLoad); |
| 1714 | } |
| 1715 | |
| 1716 | public void onContextMenuClosed(Menu menu) { |
| 1717 | mUi.onContextMenuClosed(menu, mInLoad); |
| 1718 | } |
| 1719 | |
| 1720 | // Helper method for getting the top window. |
| 1721 | @Override |
| 1722 | public WebView getCurrentTopWebView() { |
| 1723 | return mTabControl.getCurrentTopWebView(); |
| 1724 | } |
| 1725 | |
| 1726 | @Override |
| 1727 | public WebView getCurrentWebView() { |
| 1728 | return mTabControl.getCurrentWebView(); |
| 1729 | } |
| 1730 | |
| 1731 | /* |
| 1732 | * This method is called as a result of the user selecting the options |
| 1733 | * menu to see the download window. It shows the download window on top of |
| 1734 | * the current window. |
| 1735 | */ |
| 1736 | void viewDownloads() { |
| 1737 | Intent intent = new Intent(DownloadManager.ACTION_VIEW_DOWNLOADS); |
| 1738 | mActivity.startActivity(intent); |
| 1739 | } |
| 1740 | |
| 1741 | // action mode |
| 1742 | |
| 1743 | void onActionModeStarted(ActionMode mode) { |
| 1744 | mUi.onActionModeStarted(mode); |
| 1745 | mActionMode = mode; |
| 1746 | } |
| 1747 | |
| 1748 | /* |
| 1749 | * True if a custom ActionMode (i.e. find or select) is in use. |
| 1750 | */ |
| 1751 | @Override |
| 1752 | public boolean isInCustomActionMode() { |
| 1753 | return mActionMode != null; |
| 1754 | } |
| 1755 | |
| 1756 | /* |
| 1757 | * End the current ActionMode. |
| 1758 | */ |
| 1759 | @Override |
| 1760 | public void endActionMode() { |
| 1761 | if (mActionMode != null) { |
| 1762 | mActionMode.finish(); |
| 1763 | } |
| 1764 | } |
| 1765 | |
| 1766 | /* |
| 1767 | * Called by find and select when they are finished. Replace title bars |
| 1768 | * as necessary. |
| 1769 | */ |
| 1770 | public void onActionModeFinished(ActionMode mode) { |
| 1771 | if (!isInCustomActionMode()) return; |
| 1772 | mUi.onActionModeFinished(mInLoad); |
| 1773 | mActionMode = null; |
| 1774 | } |
| 1775 | |
| 1776 | boolean isInLoad() { |
| 1777 | return mInLoad; |
| 1778 | } |
| 1779 | |
| 1780 | // bookmark handling |
| 1781 | |
| 1782 | /** |
| 1783 | * add the current page as a bookmark to the given folder id |
| 1784 | * @param folderId use -1 for the default folder |
| 1785 | */ |
| 1786 | @Override |
| 1787 | public void bookmarkCurrentPage(long folderId) { |
| 1788 | Intent i = new Intent(mActivity, |
| 1789 | AddBookmarkPage.class); |
| 1790 | WebView w = getCurrentTopWebView(); |
| 1791 | i.putExtra(BrowserContract.Bookmarks.URL, w.getUrl()); |
| 1792 | i.putExtra(BrowserContract.Bookmarks.TITLE, w.getTitle()); |
| 1793 | String touchIconUrl = w.getTouchIconUrl(); |
| 1794 | if (touchIconUrl != null) { |
| 1795 | i.putExtra(AddBookmarkPage.TOUCH_ICON_URL, touchIconUrl); |
| 1796 | WebSettings settings = w.getSettings(); |
| 1797 | if (settings != null) { |
| 1798 | i.putExtra(AddBookmarkPage.USER_AGENT, |
| 1799 | settings.getUserAgentString()); |
| 1800 | } |
| 1801 | } |
| 1802 | i.putExtra(BrowserContract.Bookmarks.THUMBNAIL, |
| 1803 | createScreenshot(w, getDesiredThumbnailWidth(mActivity), |
| 1804 | getDesiredThumbnailHeight(mActivity))); |
| 1805 | i.putExtra(BrowserContract.Bookmarks.FAVICON, w.getFavicon()); |
| 1806 | i.putExtra(BrowserContract.Bookmarks.PARENT, |
| 1807 | folderId); |
| 1808 | // Put the dialog at the upper right of the screen, covering the |
| 1809 | // star on the title bar. |
| 1810 | i.putExtra("gravity", Gravity.RIGHT | Gravity.TOP); |
| 1811 | mActivity.startActivity(i); |
| 1812 | } |
| 1813 | |
| 1814 | // file chooser |
| 1815 | public void openFileChooser(ValueCallback<Uri> uploadMsg, String acceptType) { |
| 1816 | mUploadHandler = new UploadHandler(this); |
| 1817 | mUploadHandler.openFileChooser(uploadMsg, acceptType); |
| 1818 | } |
| 1819 | |
| 1820 | // thumbnails |
| 1821 | |
| 1822 | /** |
| 1823 | * Return the desired width for thumbnail screenshots, which are stored in |
| 1824 | * the database, and used on the bookmarks screen. |
| 1825 | * @param context Context for finding out the density of the screen. |
| 1826 | * @return desired width for thumbnail screenshot. |
| 1827 | */ |
| 1828 | static int getDesiredThumbnailWidth(Context context) { |
| 1829 | return context.getResources().getDimensionPixelOffset( |
| 1830 | R.dimen.bookmarkThumbnailWidth); |
| 1831 | } |
| 1832 | |
| 1833 | /** |
| 1834 | * Return the desired height for thumbnail screenshots, which are stored in |
| 1835 | * the database, and used on the bookmarks screen. |
| 1836 | * @param context Context for finding out the density of the screen. |
| 1837 | * @return desired height for thumbnail screenshot. |
| 1838 | */ |
| 1839 | static int getDesiredThumbnailHeight(Context context) { |
| 1840 | return context.getResources().getDimensionPixelOffset( |
| 1841 | R.dimen.bookmarkThumbnailHeight); |
| 1842 | } |
| 1843 | |
| 1844 | private static Bitmap createScreenshot(WebView view, int width, int height) { |
| 1845 | Picture thumbnail = view.capturePicture(); |
| 1846 | if (thumbnail == null) { |
| 1847 | return null; |
| 1848 | } |
| 1849 | Bitmap bm = Bitmap.createBitmap(width, height, Bitmap.Config.RGB_565); |
| 1850 | Canvas canvas = new Canvas(bm); |
| 1851 | // May need to tweak these values to determine what is the |
| 1852 | // best scale factor |
| 1853 | int thumbnailWidth = thumbnail.getWidth(); |
| 1854 | int thumbnailHeight = thumbnail.getHeight(); |
John Reck | fe49ab4 | 2010-11-16 17:09:37 -0800 | [diff] [blame] | 1855 | float scaleFactor = 1.0f; |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 1856 | if (thumbnailWidth > 0) { |
John Reck | fe49ab4 | 2010-11-16 17:09:37 -0800 | [diff] [blame] | 1857 | scaleFactor = (float) width / (float)thumbnailWidth; |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 1858 | } else { |
| 1859 | return null; |
| 1860 | } |
John Reck | fe49ab4 | 2010-11-16 17:09:37 -0800 | [diff] [blame] | 1861 | |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 1862 | if (view.getWidth() > view.getHeight() && |
| 1863 | thumbnailHeight < view.getHeight() && thumbnailHeight > 0) { |
| 1864 | // If the device is in landscape and the page is shorter |
John Reck | fe49ab4 | 2010-11-16 17:09:37 -0800 | [diff] [blame] | 1865 | // than the height of the view, center the thumnail and crop the sides |
| 1866 | scaleFactor = (float) height / (float)thumbnailHeight; |
| 1867 | float wx = (thumbnailWidth * scaleFactor) - width; |
| 1868 | canvas.translate((int) -(wx / 2), 0); |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 1869 | } |
| 1870 | |
John Reck | fe49ab4 | 2010-11-16 17:09:37 -0800 | [diff] [blame] | 1871 | canvas.scale(scaleFactor, scaleFactor); |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 1872 | |
| 1873 | thumbnail.draw(canvas); |
| 1874 | return bm; |
| 1875 | } |
| 1876 | |
| 1877 | private void updateScreenshot(WebView view) { |
| 1878 | // If this is a bookmarked site, add a screenshot to the database. |
| 1879 | // FIXME: When should we update? Every time? |
| 1880 | // FIXME: Would like to make sure there is actually something to |
| 1881 | // draw, but the API for that (WebViewCore.pictureReady()) is not |
| 1882 | // currently accessible here. |
| 1883 | |
| 1884 | final Bitmap bm = createScreenshot(view, getDesiredThumbnailWidth(mActivity), |
| 1885 | getDesiredThumbnailHeight(mActivity)); |
| 1886 | if (bm == null) { |
| 1887 | return; |
| 1888 | } |
| 1889 | |
| 1890 | final ContentResolver cr = mActivity.getContentResolver(); |
| 1891 | final String url = view.getUrl(); |
| 1892 | final String originalUrl = view.getOriginalUrl(); |
| 1893 | |
| 1894 | new AsyncTask<Void, Void, Void>() { |
| 1895 | @Override |
| 1896 | protected Void doInBackground(Void... unused) { |
| 1897 | Cursor cursor = null; |
| 1898 | try { |
| 1899 | cursor = Bookmarks.queryCombinedForUrl(cr, originalUrl, url); |
| 1900 | if (cursor != null && cursor.moveToFirst()) { |
| 1901 | final ByteArrayOutputStream os = |
| 1902 | new ByteArrayOutputStream(); |
| 1903 | bm.compress(Bitmap.CompressFormat.PNG, 100, os); |
| 1904 | |
| 1905 | ContentValues values = new ContentValues(); |
| 1906 | values.put(Images.THUMBNAIL, os.toByteArray()); |
| 1907 | values.put(Images.URL, cursor.getString(0)); |
| 1908 | |
| 1909 | do { |
| 1910 | cr.update(Images.CONTENT_URI, values, null, null); |
| 1911 | } while (cursor.moveToNext()); |
| 1912 | } |
| 1913 | } catch (IllegalStateException e) { |
| 1914 | // Ignore |
| 1915 | } finally { |
| 1916 | if (cursor != null) cursor.close(); |
| 1917 | } |
| 1918 | return null; |
| 1919 | } |
| 1920 | }.execute(); |
| 1921 | } |
| 1922 | |
| 1923 | private class Copy implements OnMenuItemClickListener { |
| 1924 | private CharSequence mText; |
| 1925 | |
| 1926 | public boolean onMenuItemClick(MenuItem item) { |
| 1927 | copy(mText); |
| 1928 | return true; |
| 1929 | } |
| 1930 | |
| 1931 | public Copy(CharSequence toCopy) { |
| 1932 | mText = toCopy; |
| 1933 | } |
| 1934 | } |
| 1935 | |
Leon Scroggins | 63c0266 | 2010-11-18 15:16:27 -0500 | [diff] [blame] | 1936 | private static class Download implements OnMenuItemClickListener { |
| 1937 | private Activity mActivity; |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 1938 | private String mText; |
| 1939 | |
| 1940 | public boolean onMenuItemClick(MenuItem item) { |
Leon Scroggins | 63c0266 | 2010-11-18 15:16:27 -0500 | [diff] [blame] | 1941 | DownloadHandler.onDownloadStartNoStream(mActivity, mText, null, |
| 1942 | null, null); |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 1943 | return true; |
| 1944 | } |
| 1945 | |
Leon Scroggins | 63c0266 | 2010-11-18 15:16:27 -0500 | [diff] [blame] | 1946 | public Download(Activity activity, String toDownload) { |
| 1947 | mActivity = activity; |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 1948 | mText = toDownload; |
| 1949 | } |
| 1950 | } |
| 1951 | |
Cary Clark | 8974d28 | 2010-11-22 10:46:05 -0500 | [diff] [blame] | 1952 | private static class SelectText implements OnMenuItemClickListener { |
| 1953 | private WebView mWebView; |
| 1954 | |
| 1955 | public boolean onMenuItemClick(MenuItem item) { |
| 1956 | if (mWebView != null) { |
| 1957 | return mWebView.selectText(); |
| 1958 | } |
| 1959 | return false; |
| 1960 | } |
| 1961 | |
| 1962 | public SelectText(WebView webView) { |
| 1963 | mWebView = webView; |
| 1964 | } |
| 1965 | |
| 1966 | } |
| 1967 | |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 1968 | /********************** TODO: UI stuff *****************************/ |
| 1969 | |
| 1970 | // these methods have been copied, they still need to be cleaned up |
| 1971 | |
| 1972 | /****************** tabs ***************************************************/ |
| 1973 | |
| 1974 | // basic tab interactions: |
| 1975 | |
| 1976 | // it is assumed that tabcontrol already knows about the tab |
| 1977 | protected void addTab(Tab tab) { |
| 1978 | mUi.addTab(tab); |
| 1979 | } |
| 1980 | |
| 1981 | protected void removeTab(Tab tab) { |
| 1982 | mUi.removeTab(tab); |
| 1983 | mTabControl.removeTab(tab); |
| 1984 | } |
| 1985 | |
| 1986 | protected void setActiveTab(Tab tab) { |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 1987 | mTabControl.setCurrentTab(tab); |
Michael Kolb | 77df456 | 2010-11-19 14:49:34 -0800 | [diff] [blame] | 1988 | // the tab is guaranteed to have a webview after setCurrentTab |
| 1989 | mUi.setActiveTab(tab); |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 1990 | } |
| 1991 | |
| 1992 | protected void closeEmptyChildTab() { |
| 1993 | Tab current = mTabControl.getCurrentTab(); |
| 1994 | if (current != null |
| 1995 | && current.getWebView().copyBackForwardList().getSize() == 0) { |
| 1996 | Tab parent = current.getParentTab(); |
| 1997 | if (parent != null) { |
| 1998 | switchToTab(mTabControl.getTabIndex(parent)); |
| 1999 | closeTab(current); |
| 2000 | } |
| 2001 | } |
| 2002 | } |
| 2003 | |
| 2004 | protected void reuseTab(Tab appTab, String appId, UrlData urlData) { |
| 2005 | Log.i(LOGTAG, "Reusing tab for " + appId); |
| 2006 | // Dismiss the subwindow if applicable. |
| 2007 | dismissSubWindow(appTab); |
| 2008 | // Since we might kill the WebView, remove it from the |
| 2009 | // content view first. |
| 2010 | mUi.detachTab(appTab); |
| 2011 | // Recreate the main WebView after destroying the old one. |
| 2012 | // If the WebView has the same original url and is on that |
| 2013 | // page, it can be reused. |
| 2014 | boolean needsLoad = |
| 2015 | mTabControl.recreateWebView(appTab, urlData); |
| 2016 | // TODO: analyze why the remove and add are necessary |
| 2017 | mUi.attachTab(appTab); |
| 2018 | if (mTabControl.getCurrentTab() != appTab) { |
| 2019 | switchToTab(mTabControl.getTabIndex(appTab)); |
| 2020 | if (needsLoad) { |
| 2021 | loadUrlDataIn(appTab, urlData); |
| 2022 | } |
| 2023 | } else { |
| 2024 | // If the tab was the current tab, we have to attach |
| 2025 | // it to the view system again. |
| 2026 | setActiveTab(appTab); |
| 2027 | if (needsLoad) { |
| 2028 | loadUrlDataIn(appTab, urlData); |
| 2029 | } |
| 2030 | } |
| 2031 | } |
| 2032 | |
| 2033 | // Remove the sub window if it exists. Also called by TabControl when the |
| 2034 | // user clicks the 'X' to dismiss a sub window. |
| 2035 | public void dismissSubWindow(Tab tab) { |
| 2036 | removeSubWindow(tab); |
| 2037 | // dismiss the subwindow. This will destroy the WebView. |
| 2038 | tab.dismissSubWindow(); |
| 2039 | getCurrentTopWebView().requestFocus(); |
| 2040 | } |
| 2041 | |
| 2042 | @Override |
| 2043 | public void removeSubWindow(Tab t) { |
| 2044 | if (t.getSubWebView() != null) { |
| 2045 | mUi.removeSubWindow(t.getSubViewContainer()); |
| 2046 | } |
| 2047 | } |
| 2048 | |
| 2049 | @Override |
| 2050 | public void attachSubWindow(Tab tab) { |
| 2051 | if (tab.getSubWebView() != null) { |
| 2052 | mUi.attachSubWindow(tab.getSubViewContainer()); |
| 2053 | getCurrentTopWebView().requestFocus(); |
| 2054 | } |
| 2055 | } |
| 2056 | |
Michael Kolb | 843510f | 2010-12-09 10:51:49 -0800 | [diff] [blame] | 2057 | @Override |
| 2058 | public Tab openTabToHomePage() { |
| 2059 | // check for max tabs |
| 2060 | if (mTabControl.canCreateNewTab()) { |
Michael Kolb | 18eb377 | 2010-12-10 14:29:51 -0800 | [diff] [blame^] | 2061 | return openTabAndShow(null, new UrlData(mSettings.getHomePage()), |
| 2062 | false, null); |
Michael Kolb | 843510f | 2010-12-09 10:51:49 -0800 | [diff] [blame] | 2063 | } else { |
| 2064 | mUi.showMaxTabsWarning(); |
| 2065 | return null; |
| 2066 | } |
| 2067 | } |
| 2068 | |
Michael Kolb | 18eb377 | 2010-12-10 14:29:51 -0800 | [diff] [blame^] | 2069 | protected Tab openTab(Tab parent, String url, boolean forceForeground) { |
| 2070 | if (mSettings.openInBackground() && !forceForeground) { |
| 2071 | Tab tab = mTabControl.createNewTab(false, null, null, |
| 2072 | (parent != null) && parent.isPrivateBrowsingEnabled()); |
| 2073 | if (tab != null) { |
| 2074 | addTab(tab); |
| 2075 | WebView view = tab.getWebView(); |
| 2076 | loadUrl(view, url); |
| 2077 | } |
| 2078 | return tab; |
| 2079 | } else { |
| 2080 | return openTabAndShow(parent, new UrlData(url), false, null); |
| 2081 | } |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 2082 | } |
| 2083 | |
Michael Kolb | 18eb377 | 2010-12-10 14:29:51 -0800 | [diff] [blame^] | 2084 | |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 2085 | // This method does a ton of stuff. It will attempt to create a new tab |
| 2086 | // if we haven't reached MAX_TABS. Otherwise it uses the current tab. If |
| 2087 | // url isn't null, it will load the given url. |
Michael Kolb | 18eb377 | 2010-12-10 14:29:51 -0800 | [diff] [blame^] | 2088 | public Tab openTabAndShow(Tab parent, UrlData urlData, boolean closeOnExit, |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 2089 | String appId) { |
| 2090 | final Tab currentTab = mTabControl.getCurrentTab(); |
| 2091 | if (mTabControl.canCreateNewTab()) { |
| 2092 | final Tab tab = mTabControl.createNewTab(closeOnExit, appId, |
Michael Kolb | 18eb377 | 2010-12-10 14:29:51 -0800 | [diff] [blame^] | 2093 | urlData.mUrl, |
| 2094 | (parent != null) && parent.isPrivateBrowsingEnabled()); |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 2095 | WebView webview = tab.getWebView(); |
| 2096 | // We must set the new tab as the current tab to reflect the old |
| 2097 | // animation behavior. |
| 2098 | addTab(tab); |
| 2099 | setActiveTab(tab); |
| 2100 | if (!urlData.isEmpty()) { |
| 2101 | loadUrlDataIn(tab, urlData); |
| 2102 | } |
| 2103 | return tab; |
| 2104 | } else { |
| 2105 | // Get rid of the subwindow if it exists |
| 2106 | dismissSubWindow(currentTab); |
| 2107 | if (!urlData.isEmpty()) { |
| 2108 | // Load the given url. |
| 2109 | loadUrlDataIn(currentTab, urlData); |
| 2110 | } |
| 2111 | return currentTab; |
| 2112 | } |
| 2113 | } |
| 2114 | |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 2115 | @Override |
| 2116 | public Tab openIncognitoTab() { |
| 2117 | if (mTabControl.canCreateNewTab()) { |
| 2118 | Tab currentTab = mTabControl.getCurrentTab(); |
| 2119 | Tab tab = mTabControl.createNewTab(false, null, null, true); |
| 2120 | addTab(tab); |
| 2121 | setActiveTab(tab); |
| 2122 | return tab; |
Michael Kolb | 843510f | 2010-12-09 10:51:49 -0800 | [diff] [blame] | 2123 | } else { |
| 2124 | mUi.showMaxTabsWarning(); |
| 2125 | return null; |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 2126 | } |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 2127 | } |
| 2128 | |
| 2129 | /** |
| 2130 | * @param index Index of the tab to change to, as defined by |
| 2131 | * mTabControl.getTabIndex(Tab t). |
| 2132 | * @return boolean True if we successfully switched to a different tab. If |
| 2133 | * the indexth tab is null, or if that tab is the same as |
| 2134 | * the current one, return false. |
| 2135 | */ |
| 2136 | @Override |
| 2137 | public boolean switchToTab(int index) { |
Michael Kolb | 14ee8fb | 2010-12-09 09:08:20 -0800 | [diff] [blame] | 2138 | // hide combo view if open |
| 2139 | removeComboView(); |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 2140 | Tab tab = mTabControl.getTab(index); |
| 2141 | Tab currentTab = mTabControl.getCurrentTab(); |
| 2142 | if (tab == null || tab == currentTab) { |
| 2143 | return false; |
| 2144 | } |
| 2145 | setActiveTab(tab); |
| 2146 | return true; |
| 2147 | } |
| 2148 | |
| 2149 | @Override |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 2150 | public void closeCurrentTab() { |
Michael Kolb | 14ee8fb | 2010-12-09 09:08:20 -0800 | [diff] [blame] | 2151 | // hide combo view if open |
| 2152 | removeComboView(); |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 2153 | final Tab current = mTabControl.getCurrentTab(); |
| 2154 | if (mTabControl.getTabCount() == 1) { |
| 2155 | // This is the last tab. Open a new one, with the home |
| 2156 | // page and close the current one. |
| 2157 | openTabToHomePage(); |
| 2158 | closeTab(current); |
| 2159 | return; |
| 2160 | } |
| 2161 | final Tab parent = current.getParentTab(); |
| 2162 | int indexToShow = -1; |
| 2163 | if (parent != null) { |
| 2164 | indexToShow = mTabControl.getTabIndex(parent); |
| 2165 | } else { |
| 2166 | final int currentIndex = mTabControl.getCurrentIndex(); |
| 2167 | // Try to move to the tab to the right |
| 2168 | indexToShow = currentIndex + 1; |
| 2169 | if (indexToShow > mTabControl.getTabCount() - 1) { |
| 2170 | // Try to move to the tab to the left |
| 2171 | indexToShow = currentIndex - 1; |
| 2172 | } |
| 2173 | } |
| 2174 | if (switchToTab(indexToShow)) { |
| 2175 | // Close window |
| 2176 | closeTab(current); |
| 2177 | } |
| 2178 | } |
| 2179 | |
| 2180 | /** |
| 2181 | * Close the tab, remove its associated title bar, and adjust mTabControl's |
| 2182 | * current tab to a valid value. |
| 2183 | */ |
| 2184 | @Override |
| 2185 | public void closeTab(Tab tab) { |
Michael Kolb | 14ee8fb | 2010-12-09 09:08:20 -0800 | [diff] [blame] | 2186 | // hide combo view if open |
| 2187 | removeComboView(); |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 2188 | int currentIndex = mTabControl.getCurrentIndex(); |
| 2189 | int removeIndex = mTabControl.getTabIndex(tab); |
| 2190 | removeTab(tab); |
| 2191 | if (currentIndex >= removeIndex && currentIndex != 0) { |
| 2192 | currentIndex--; |
| 2193 | } |
| 2194 | Tab newtab = mTabControl.getTab(currentIndex); |
| 2195 | setActiveTab(newtab); |
| 2196 | if (!mTabControl.hasAnyOpenIncognitoTabs()) { |
Steve Block | 83101a8 | 2010-11-26 11:33:35 +0000 | [diff] [blame] | 2197 | WebView.cleanupPrivateBrowsingFiles(); |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 2198 | } |
| 2199 | } |
| 2200 | |
| 2201 | /**************** TODO: Url loading clean up *******************************/ |
| 2202 | |
| 2203 | // Called when loading from context menu or LOAD_URL message |
| 2204 | protected void loadUrlFromContext(WebView view, String url) { |
| 2205 | // In case the user enters nothing. |
| 2206 | if (url != null && url.length() != 0 && view != null) { |
| 2207 | url = UrlUtils.smartUrlFilter(url); |
| 2208 | if (!view.getWebViewClient().shouldOverrideUrlLoading(view, url)) { |
| 2209 | loadUrl(view, url); |
| 2210 | } |
| 2211 | } |
| 2212 | } |
| 2213 | |
| 2214 | /** |
| 2215 | * Load the URL into the given WebView and update the title bar |
| 2216 | * to reflect the new load. Call this instead of WebView.loadUrl |
| 2217 | * directly. |
| 2218 | * @param view The WebView used to load url. |
| 2219 | * @param url The URL to load. |
| 2220 | */ |
| 2221 | protected void loadUrl(WebView view, String url) { |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 2222 | view.loadUrl(url); |
| 2223 | } |
| 2224 | |
| 2225 | /** |
| 2226 | * Load UrlData into a Tab and update the title bar to reflect the new |
| 2227 | * load. Call this instead of UrlData.loadIn directly. |
| 2228 | * @param t The Tab used to load. |
| 2229 | * @param data The UrlData being loaded. |
| 2230 | */ |
| 2231 | protected void loadUrlDataIn(Tab t, UrlData data) { |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 2232 | data.loadIn(t); |
| 2233 | } |
| 2234 | |
| 2235 | /** |
| 2236 | * Resets the browser title-view to whatever it must be |
| 2237 | * (for example, if we had a loading error) |
| 2238 | * When we have a new page, we call resetTitle, when we |
| 2239 | * have to reset the titlebar to whatever it used to be |
| 2240 | * (for example, if the user chose to stop loading), we |
| 2241 | * call resetTitleAndRevertLockIcon. |
| 2242 | */ |
| 2243 | public void resetTitleAndRevertLockIcon(Tab tab) { |
| 2244 | mUi.resetTitleAndRevertLockIcon(tab); |
| 2245 | } |
| 2246 | |
| 2247 | void resetTitleAndIcon(Tab tab) { |
| 2248 | mUi.resetTitleAndIcon(tab); |
| 2249 | } |
| 2250 | |
| 2251 | /** |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 2252 | * Sets a title composed of the URL and the title string. |
| 2253 | * @param url The URL of the site being loaded. |
| 2254 | * @param title The title of the site being loaded. |
| 2255 | */ |
| 2256 | void setUrlTitle(Tab tab, String url, String title) { |
| 2257 | tab.setCurrentUrl(url); |
| 2258 | tab.setCurrentTitle(title); |
| 2259 | // If we are in voice search mode, the title has already been set. |
| 2260 | if (tab.isInVoiceSearchMode()) return; |
| 2261 | mUi.setUrlTitle(tab, url, title); |
| 2262 | } |
| 2263 | |
| 2264 | void goBackOnePageOrQuit() { |
| 2265 | Tab current = mTabControl.getCurrentTab(); |
| 2266 | if (current == null) { |
| 2267 | /* |
| 2268 | * Instead of finishing the activity, simply push this to the back |
| 2269 | * of the stack and let ActivityManager to choose the foreground |
| 2270 | * activity. As BrowserActivity is singleTask, it will be always the |
| 2271 | * root of the task. So we can use either true or false for |
| 2272 | * moveTaskToBack(). |
| 2273 | */ |
| 2274 | mActivity.moveTaskToBack(true); |
| 2275 | return; |
| 2276 | } |
| 2277 | WebView w = current.getWebView(); |
| 2278 | if (w.canGoBack()) { |
| 2279 | w.goBack(); |
| 2280 | } else { |
| 2281 | // Check to see if we are closing a window that was created by |
| 2282 | // another window. If so, we switch back to that window. |
| 2283 | Tab parent = current.getParentTab(); |
| 2284 | if (parent != null) { |
| 2285 | switchToTab(mTabControl.getTabIndex(parent)); |
| 2286 | // Now we close the other tab |
| 2287 | closeTab(current); |
| 2288 | } else { |
| 2289 | if (current.closeOnExit()) { |
| 2290 | // force the tab's inLoad() to be false as we are going to |
| 2291 | // either finish the activity or remove the tab. This will |
| 2292 | // ensure pauseWebViewTimers() taking action. |
Michael Kolb | 7097693 | 2010-11-30 11:34:01 -0800 | [diff] [blame] | 2293 | current.clearInPageLoad(); |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 2294 | if (mTabControl.getTabCount() == 1) { |
| 2295 | mActivity.finish(); |
| 2296 | return; |
| 2297 | } |
| 2298 | if (mActivityPaused) { |
| 2299 | Log.e(LOGTAG, "BrowserActivity is already paused " |
| 2300 | + "while handing goBackOnePageOrQuit."); |
| 2301 | } |
Michael Kolb | 7097693 | 2010-11-30 11:34:01 -0800 | [diff] [blame] | 2302 | pauseWebViewTimers(current); |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 2303 | removeTab(current); |
| 2304 | } |
| 2305 | /* |
| 2306 | * Instead of finishing the activity, simply push this to the back |
| 2307 | * of the stack and let ActivityManager to choose the foreground |
| 2308 | * activity. As BrowserActivity is singleTask, it will be always the |
| 2309 | * root of the task. So we can use either true or false for |
| 2310 | * moveTaskToBack(). |
| 2311 | */ |
| 2312 | mActivity.moveTaskToBack(true); |
| 2313 | } |
| 2314 | } |
| 2315 | } |
| 2316 | |
| 2317 | /** |
| 2318 | * Feed the previously stored results strings to the BrowserProvider so that |
| 2319 | * the SearchDialog will show them instead of the standard searches. |
| 2320 | * @param result String to show on the editable line of the SearchDialog. |
| 2321 | */ |
| 2322 | @Override |
| 2323 | public void showVoiceSearchResults(String result) { |
| 2324 | ContentProviderClient client = mActivity.getContentResolver() |
| 2325 | .acquireContentProviderClient(Browser.BOOKMARKS_URI); |
| 2326 | ContentProvider prov = client.getLocalContentProvider(); |
| 2327 | BrowserProvider bp = (BrowserProvider) prov; |
| 2328 | bp.setQueryResults(mTabControl.getCurrentTab().getVoiceSearchResults()); |
| 2329 | client.release(); |
| 2330 | |
| 2331 | Bundle bundle = createGoogleSearchSourceBundle( |
| 2332 | GOOGLE_SEARCH_SOURCE_SEARCHKEY); |
| 2333 | bundle.putBoolean(SearchManager.CONTEXT_IS_VOICE, true); |
| 2334 | startSearch(result, false, bundle, false); |
| 2335 | } |
| 2336 | |
| 2337 | private void startSearch(String initialQuery, boolean selectInitialQuery, |
| 2338 | Bundle appSearchData, boolean globalSearch) { |
| 2339 | if (appSearchData == null) { |
| 2340 | appSearchData = createGoogleSearchSourceBundle( |
| 2341 | GOOGLE_SEARCH_SOURCE_TYPE); |
| 2342 | } |
| 2343 | |
| 2344 | SearchEngine searchEngine = mSettings.getSearchEngine(); |
| 2345 | if (searchEngine != null && !searchEngine.supportsVoiceSearch()) { |
| 2346 | appSearchData.putBoolean(SearchManager.DISABLE_VOICE_SEARCH, true); |
| 2347 | } |
| 2348 | mActivity.startSearch(initialQuery, selectInitialQuery, appSearchData, |
| 2349 | globalSearch); |
| 2350 | } |
| 2351 | |
| 2352 | private Bundle createGoogleSearchSourceBundle(String source) { |
| 2353 | Bundle bundle = new Bundle(); |
| 2354 | bundle.putString(Search.SOURCE, source); |
| 2355 | return bundle; |
| 2356 | } |
| 2357 | |
| 2358 | /** |
| 2359 | * handle key events in browser |
| 2360 | * |
| 2361 | * @param keyCode |
| 2362 | * @param event |
| 2363 | * @return true if handled, false to pass to super |
| 2364 | */ |
| 2365 | boolean onKeyDown(int keyCode, KeyEvent event) { |
| 2366 | // Even if MENU is already held down, we need to call to super to open |
| 2367 | // the IME on long press. |
| 2368 | if (KeyEvent.KEYCODE_MENU == keyCode) { |
| 2369 | mMenuIsDown = true; |
| 2370 | return false; |
| 2371 | } |
| 2372 | // The default key mode is DEFAULT_KEYS_SEARCH_LOCAL. As the MENU is |
| 2373 | // still down, we don't want to trigger the search. Pretend to consume |
| 2374 | // the key and do nothing. |
| 2375 | if (mMenuIsDown) return true; |
| 2376 | |
| 2377 | switch(keyCode) { |
| 2378 | case KeyEvent.KEYCODE_SPACE: |
| 2379 | // WebView/WebTextView handle the keys in the KeyDown. As |
| 2380 | // the Activity's shortcut keys are only handled when WebView |
| 2381 | // doesn't, have to do it in onKeyDown instead of onKeyUp. |
| 2382 | if (event.isShiftPressed()) { |
| 2383 | pageUp(); |
| 2384 | } else { |
| 2385 | pageDown(); |
| 2386 | } |
| 2387 | return true; |
| 2388 | case KeyEvent.KEYCODE_BACK: |
| 2389 | if (event.getRepeatCount() == 0) { |
| 2390 | event.startTracking(); |
| 2391 | return true; |
| 2392 | } else if (mUi.showsWeb() |
| 2393 | && event.isLongPress()) { |
| 2394 | bookmarksOrHistoryPicker(true); |
| 2395 | return true; |
| 2396 | } |
| 2397 | break; |
| 2398 | } |
| 2399 | return false; |
| 2400 | } |
| 2401 | |
| 2402 | boolean onKeyUp(int keyCode, KeyEvent event) { |
| 2403 | switch(keyCode) { |
| 2404 | case KeyEvent.KEYCODE_MENU: |
| 2405 | mMenuIsDown = false; |
| 2406 | break; |
| 2407 | case KeyEvent.KEYCODE_BACK: |
| 2408 | if (event.isTracking() && !event.isCanceled()) { |
| 2409 | onBackKey(); |
| 2410 | return true; |
| 2411 | } |
| 2412 | break; |
| 2413 | } |
| 2414 | return false; |
| 2415 | } |
| 2416 | |
| 2417 | public boolean isMenuDown() { |
| 2418 | return mMenuIsDown; |
| 2419 | } |
| 2420 | |
Ben Murdoch | 8029a77 | 2010-11-16 11:58:21 +0000 | [diff] [blame] | 2421 | public void setupAutoFill(Message message) { |
| 2422 | // Open the settings activity at the AutoFill profile fragment so that |
| 2423 | // the user can create a new profile. When they return, we will dispatch |
| 2424 | // the message so that we can autofill the form using their new profile. |
| 2425 | Intent intent = new Intent(mActivity, BrowserPreferencesPage.class); |
| 2426 | intent.putExtra(PreferenceActivity.EXTRA_SHOW_FRAGMENT, |
| 2427 | AutoFillSettingsFragment.class.getName()); |
| 2428 | mAutoFillSetupMessage = message; |
| 2429 | mActivity.startActivityForResult(intent, AUTOFILL_SETUP); |
| 2430 | } |
Michael Kolb | 8233fac | 2010-10-26 16:08:53 -0700 | [diff] [blame] | 2431 | } |