Home | History | Annotate | Download | only in browser

Lines Matching refs:tab

55 import com.android.browser.Tab.SecurityState;
84 protected Tab mActiveTab;
168 // check if we exited without setting active tab
170 final Tab ct = mTabControl.getCurrentTab();
219 // Tab callbacks
221 public void onTabDataChanged(Tab tab) {
222 setUrlTitle(tab);
223 setFavicon(tab);
224 updateLockIconToLatest(tab);
225 updateNavigationState(tab);
226 mTitleBar.onTabDataChanged(tab);
227 mNavigationBar.onTabDataChanged(tab);
228 onProgressChanged(tab);
232 public void onProgressChanged(Tab tab) {
233 int progress = tab.getLoadProgress();
234 if (tab.inForeground()) {
240 public void bookmarkedStatusHasChanged(Tab tab) {
241 if (tab.inForeground()) {
242 boolean isBookmark = tab.isBookmarkedSite();
248 public void onPageStopped(Tab tab) {
250 if (tab.inForeground()) {
263 public void addTab(Tab tab) {
267 public void setActiveTab(final Tab tab) {
268 if (tab == null) return;
269 // block unnecessary focus change animations during tab switch
272 if ((tab != mActiveTab) && (mActiveTab != null)) {
279 mActiveTab = tab;
282 attachTabToContentView(tab);
295 tab.getTopWindow().requestFocus();
296 setShouldShowErrorConsole(tab, mUiController.shouldShowErrorConsole());
297 onTabDataChanged(tab);
298 onProgressChanged(tab);
299 mNavigationBar.setIncognitoMode(tab.isPrivateBrowsingEnabled());
300 updateAutoLogin(tab, false);
313 Tab getActiveTab() {
318 public void updateTabs(List<Tab> tabs) {
322 public void removeTab(Tab tab) {
323 if (mActiveTab == tab) {
324 removeTabFromContentView(tab);
330 public void detachTab(Tab tab) {
331 removeTabFromContentView(tab);
335 public void attachTab(Tab tab) {
336 attachTabToContentView(tab);
339 protected void attachTabToContentView(Tab tab) {
340 if ((tab == null) || (tab.getWebView() == null)) {
343 View container = tab.getViewContainer();
344 WebView mainView = tab.getWebView();
363 mUiController.attachSubWindow(tab);
366 private void removeTabFromContentView(Tab tab) {
369 WebView mainView = tab.getWebView();
370 View container = tab.getViewContainer();
382 mUiController.removeSubWindow(tab);
383 ErrorConsoleView errorConsole = tab.getErrorConsole(false);
390 public void onSetWebView(Tab tab, WebView webView) {
391 View container = tab.getViewContainer();
393 // The tab consists of a container view, which contains the main
394 // WebView, as well as any other UI elements associated with the tab.
395 container = mActivity.getLayoutInflater().inflate(R.layout.tab,
397 tab.setViewContainer(container);
399 if (tab.getWebView() != webView) {
403 wrapper.removeView(tab.getWebView());
408 * create a sub window container and webview for the tab
410 * it sets both the subView and subViewContainer for the given tab
411 * @param tab tab to create the sub window for
412 * @param subView webview to be set as a subwindow for the tab
415 public void createSubWindow(Tab tab, WebView subView) {
431 tab.setSubWebView(subView);
432 tab.setSubViewContainer(subViewContainer);
515 Tab t = getActiveTab();
576 public void showAutoLogin(Tab tab) {
577 updateAutoLogin(tab, true);
581 public void hideAutoLogin(Tab tab) {
582 updateAutoLogin(tab, true);
587 protected void updateNavigationState(Tab tab) {
590 protected void updateAutoLogin(Tab tab, boolean animate) {
591 mTitleBar.updateAutoLogin(tab, animate);
597 protected void updateLockIconToLatest(Tab t) {
619 protected void setUrlTitle(Tab tab) {
620 String url = tab.getUrl();
621 String title = tab.getTitle();
625 if (tab.inForeground()) {
631 protected void setFavicon(Tab tab) {
632 if (tab.inForeground()) {
633 Bitmap icon = tab.getFavicon();
661 public void updateMenuState(Tab tab, Menu menu) {
696 public void setShouldShowErrorConsole(Tab tab, boolean flag) {
697 if (tab == null) return;
698 ErrorConsoleView errorConsole = tab.getErrorConsole(true);