2011-11-18 18:28:17 +00:00
|
|
|
/* -*- Mode: Java; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*-
|
2012-05-21 11:12:37 +00:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2011-11-18 18:28:17 +00:00
|
|
|
|
|
|
|
package org.mozilla.gecko;
|
|
|
|
|
2012-05-31 23:01:50 +00:00
|
|
|
import java.util.List;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
2012-06-07 17:13:36 +00:00
|
|
|
import android.content.ClipboardManager;
|
2011-11-18 18:28:17 +00:00
|
|
|
import android.content.Context;
|
2012-01-27 19:19:13 +00:00
|
|
|
import android.content.res.Configuration;
|
2011-11-18 18:28:17 +00:00
|
|
|
import android.graphics.Color;
|
|
|
|
import android.graphics.drawable.AnimationDrawable;
|
2012-06-02 18:23:45 +00:00
|
|
|
import android.graphics.drawable.BitmapDrawable;
|
2012-05-31 23:01:50 +00:00
|
|
|
import android.graphics.drawable.ColorDrawable;
|
2011-11-18 18:28:17 +00:00
|
|
|
import android.graphics.drawable.Drawable;
|
2012-01-27 19:19:13 +00:00
|
|
|
import android.os.Build;
|
2011-11-18 18:28:17 +00:00
|
|
|
import android.os.Handler;
|
2012-01-24 20:39:23 +00:00
|
|
|
import android.os.SystemClock;
|
2012-06-15 15:58:13 +00:00
|
|
|
import android.text.TextUtils;
|
2011-11-18 18:28:17 +00:00
|
|
|
import android.util.AttributeSet;
|
2012-05-31 23:01:50 +00:00
|
|
|
import android.util.DisplayMetrics;
|
2012-01-24 20:39:23 +00:00
|
|
|
import android.util.Log;
|
2011-11-18 18:28:17 +00:00
|
|
|
import android.view.animation.TranslateAnimation;
|
2012-06-21 18:44:35 +00:00
|
|
|
import android.view.inputmethod.InputMethodManager;
|
2012-06-07 17:13:36 +00:00
|
|
|
import android.view.ContextMenu;
|
2011-11-18 18:28:17 +00:00
|
|
|
import android.view.Gravity;
|
2012-05-25 22:10:26 +00:00
|
|
|
import android.view.LayoutInflater;
|
2012-06-07 17:13:36 +00:00
|
|
|
import android.view.MenuInflater;
|
2011-11-18 18:28:17 +00:00
|
|
|
import android.view.View;
|
2012-06-02 18:23:45 +00:00
|
|
|
import android.view.View.MeasureSpec;
|
2012-05-31 23:01:50 +00:00
|
|
|
import android.view.ViewGroup;
|
|
|
|
import android.view.ViewConfiguration;
|
|
|
|
import android.view.Window;
|
2011-11-18 18:28:17 +00:00
|
|
|
import android.widget.Button;
|
|
|
|
import android.widget.ImageButton;
|
2011-12-15 19:53:04 +00:00
|
|
|
import android.widget.ImageView;
|
2012-06-02 18:23:45 +00:00
|
|
|
import android.widget.FrameLayout;
|
2011-11-18 18:28:17 +00:00
|
|
|
import android.widget.LinearLayout;
|
2012-06-02 18:23:45 +00:00
|
|
|
import android.widget.LinearLayout.LayoutParams;
|
2012-05-31 23:01:50 +00:00
|
|
|
import android.widget.PopupWindow;
|
|
|
|
import android.widget.RelativeLayout;
|
2011-11-18 18:28:17 +00:00
|
|
|
import android.widget.TextView;
|
|
|
|
import android.widget.TextSwitcher;
|
2012-06-02 18:23:45 +00:00
|
|
|
import android.widget.Toast;
|
2012-05-25 22:10:26 +00:00
|
|
|
import android.widget.ViewSwitcher;
|
2011-11-18 18:28:17 +00:00
|
|
|
|
2012-05-31 23:01:50 +00:00
|
|
|
public class BrowserToolbar implements ViewSwitcher.ViewFactory,
|
2012-06-11 22:18:40 +00:00
|
|
|
Tabs.OnTabsChangedListener,
|
2012-05-31 23:01:50 +00:00
|
|
|
GeckoMenu.ActionItemBarPresenter {
|
2012-03-21 00:23:06 +00:00
|
|
|
private static final String LOGTAG = "GeckoToolbar";
|
|
|
|
private LinearLayout mLayout;
|
2011-12-07 23:12:51 +00:00
|
|
|
private Button mAwesomeBar;
|
|
|
|
private ImageButton mTabs;
|
2012-05-24 22:47:49 +00:00
|
|
|
private ImageView mBack;
|
|
|
|
private ImageView mForward;
|
2011-12-07 23:12:51 +00:00
|
|
|
public ImageButton mFavicon;
|
|
|
|
public ImageButton mStop;
|
|
|
|
public ImageButton mSiteSecurity;
|
2012-06-02 18:23:45 +00:00
|
|
|
public ImageButton mReader;
|
2011-12-07 23:12:51 +00:00
|
|
|
private AnimationDrawable mProgressSpinner;
|
|
|
|
private TextSwitcher mTabsCount;
|
2011-12-15 19:53:04 +00:00
|
|
|
private ImageView mShadow;
|
2012-05-31 23:01:50 +00:00
|
|
|
private ImageButton mMenu;
|
|
|
|
private LinearLayout mActionItemBar;
|
|
|
|
private MenuPopup mMenuPopup;
|
2011-11-18 18:28:17 +00:00
|
|
|
|
|
|
|
final private Context mContext;
|
2012-05-31 23:01:50 +00:00
|
|
|
private LayoutInflater mInflater;
|
2011-12-07 23:12:51 +00:00
|
|
|
private Handler mHandler;
|
2012-02-06 19:44:37 +00:00
|
|
|
private int[] mPadding;
|
2012-05-31 23:01:50 +00:00
|
|
|
private boolean mHasSoftMenuButton;
|
|
|
|
|
2012-06-02 18:23:45 +00:00
|
|
|
private boolean mShowSiteSecurity;
|
|
|
|
private boolean mShowReader;
|
|
|
|
|
2012-05-31 23:01:50 +00:00
|
|
|
private static List<View> sActionItems;
|
2011-11-18 18:28:17 +00:00
|
|
|
|
2011-12-07 23:12:51 +00:00
|
|
|
private int mDuration;
|
|
|
|
private TranslateAnimation mSlideUpIn;
|
|
|
|
private TranslateAnimation mSlideUpOut;
|
|
|
|
private TranslateAnimation mSlideDownIn;
|
|
|
|
private TranslateAnimation mSlideDownOut;
|
2011-11-18 18:28:17 +00:00
|
|
|
|
|
|
|
private int mCount;
|
|
|
|
|
2012-06-08 04:47:22 +00:00
|
|
|
private static final int TABS_CONTRACTED = 1;
|
|
|
|
private static final int TABS_EXPANDED = 2;
|
|
|
|
|
2012-03-21 00:23:06 +00:00
|
|
|
public BrowserToolbar(Context context) {
|
2011-11-18 18:28:17 +00:00
|
|
|
mContext = context;
|
2012-05-25 22:10:26 +00:00
|
|
|
mInflater = LayoutInflater.from(context);
|
2012-05-31 23:01:50 +00:00
|
|
|
|
|
|
|
sActionItems = new ArrayList<View>();
|
2012-06-13 17:52:46 +00:00
|
|
|
Tabs.registerOnTabsChangedListener(this);
|
2012-03-21 00:23:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void from(LinearLayout layout) {
|
|
|
|
mLayout = layout;
|
2012-06-02 18:23:45 +00:00
|
|
|
|
|
|
|
mShowSiteSecurity = false;
|
|
|
|
mShowReader = false;
|
2012-01-27 20:28:45 +00:00
|
|
|
|
2012-03-21 00:23:06 +00:00
|
|
|
mAwesomeBar = (Button) mLayout.findViewById(R.id.awesome_bar);
|
2011-11-18 18:28:17 +00:00
|
|
|
mAwesomeBar.setOnClickListener(new Button.OnClickListener() {
|
|
|
|
public void onClick(View v) {
|
2012-06-19 20:37:57 +00:00
|
|
|
GeckoApp.mAppContext.autoHideTabs();
|
2011-11-18 18:28:17 +00:00
|
|
|
onAwesomeBarSearch();
|
|
|
|
}
|
|
|
|
});
|
2012-06-07 17:13:36 +00:00
|
|
|
mAwesomeBar.setOnCreateContextMenuListener(new View.OnCreateContextMenuListener() {
|
|
|
|
public void onCreateContextMenu(ContextMenu menu, View v, ContextMenu.ContextMenuInfo menuInfo) {
|
|
|
|
MenuInflater inflater = GeckoApp.mAppContext.getMenuInflater();
|
|
|
|
inflater.inflate(R.menu.titlebar_contextmenu, menu);
|
|
|
|
|
|
|
|
String clipboard = GeckoAppShell.getClipboardText();
|
2012-06-15 15:58:13 +00:00
|
|
|
if (clipboard == null || TextUtils.isEmpty(clipboard)) {
|
2012-06-07 17:13:36 +00:00
|
|
|
menu.findItem(R.id.pasteandgo).setVisible(false);
|
|
|
|
menu.findItem(R.id.paste).setVisible(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
Tab tab = Tabs.getInstance().getSelectedTab();
|
|
|
|
if (tab != null) {
|
|
|
|
String url = tab.getURL();
|
|
|
|
if (url == null) {
|
|
|
|
menu.findItem(R.id.copyurl).setVisible(false);
|
|
|
|
menu.findItem(R.id.share).setVisible(false);
|
|
|
|
menu.findItem(R.id.add_to_launcher).setVisible(false);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// if there is no tab, remove anything tab dependent
|
|
|
|
menu.findItem(R.id.copyurl).setVisible(false);
|
|
|
|
menu.findItem(R.id.share).setVisible(false);
|
|
|
|
menu.findItem(R.id.add_to_launcher).setVisible(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2011-11-18 18:28:17 +00:00
|
|
|
|
2012-02-06 19:44:37 +00:00
|
|
|
mPadding = new int[] { mAwesomeBar.getPaddingLeft(),
|
|
|
|
mAwesomeBar.getPaddingTop(),
|
|
|
|
mAwesomeBar.getPaddingRight(),
|
|
|
|
mAwesomeBar.getPaddingBottom() };
|
2011-11-18 18:28:17 +00:00
|
|
|
|
2012-03-21 00:23:06 +00:00
|
|
|
mTabs = (ImageButton) mLayout.findViewById(R.id.tabs);
|
2011-11-18 18:28:17 +00:00
|
|
|
mTabs.setOnClickListener(new Button.OnClickListener() {
|
|
|
|
public void onClick(View v) {
|
2012-06-08 04:47:22 +00:00
|
|
|
toggleTabs();
|
2011-11-18 18:28:17 +00:00
|
|
|
}
|
|
|
|
});
|
2012-02-01 22:25:50 +00:00
|
|
|
mTabs.setImageLevel(0);
|
2011-11-18 18:28:17 +00:00
|
|
|
|
2012-03-21 00:23:06 +00:00
|
|
|
mTabsCount = (TextSwitcher) mLayout.findViewById(R.id.tabs_count);
|
2011-12-07 23:12:51 +00:00
|
|
|
mTabsCount.removeAllViews();
|
2012-05-25 22:10:26 +00:00
|
|
|
mTabsCount.setFactory(this);
|
2012-06-08 04:47:22 +00:00
|
|
|
mTabsCount.setText("");
|
2011-12-07 23:12:51 +00:00
|
|
|
mCount = 0;
|
2011-11-18 18:28:17 +00:00
|
|
|
|
2012-05-24 22:47:49 +00:00
|
|
|
mBack = (ImageButton) mLayout.findViewById(R.id.back);
|
|
|
|
mBack.setOnClickListener(new Button.OnClickListener() {
|
|
|
|
public void onClick(View view) {
|
|
|
|
Tabs.getInstance().getSelectedTab().doBack();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
mForward = (ImageButton) mLayout.findViewById(R.id.forward);
|
|
|
|
mForward.setOnClickListener(new Button.OnClickListener() {
|
|
|
|
public void onClick(View view) {
|
|
|
|
Tabs.getInstance().getSelectedTab().doForward();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2012-03-21 00:23:06 +00:00
|
|
|
mFavicon = (ImageButton) mLayout.findViewById(R.id.favicon);
|
|
|
|
mSiteSecurity = (ImageButton) mLayout.findViewById(R.id.site_security);
|
2012-05-02 16:07:58 +00:00
|
|
|
mSiteSecurity.setOnClickListener(new Button.OnClickListener() {
|
|
|
|
public void onClick(View view) {
|
|
|
|
int[] lockLocation = new int[2];
|
|
|
|
view.getLocationOnScreen(lockLocation);
|
|
|
|
LayoutParams lockLayoutParams = (LayoutParams) view.getLayoutParams();
|
|
|
|
|
|
|
|
// Calculate the left margin for the arrow based on the position of the lock icon.
|
|
|
|
int leftMargin = lockLocation[0] - lockLayoutParams.rightMargin;
|
2012-06-11 22:18:40 +00:00
|
|
|
SiteIdentityPopup.getInstance().show(mSiteSecurity, leftMargin);
|
2012-05-02 16:07:58 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2012-05-31 23:11:12 +00:00
|
|
|
mProgressSpinner = (AnimationDrawable) mContext.getResources().getDrawable(R.drawable.progress_spinner);
|
2011-11-18 18:28:17 +00:00
|
|
|
|
2012-03-21 00:23:06 +00:00
|
|
|
mStop = (ImageButton) mLayout.findViewById(R.id.stop);
|
2011-11-18 18:28:17 +00:00
|
|
|
mStop.setOnClickListener(new Button.OnClickListener() {
|
|
|
|
public void onClick(View v) {
|
2012-05-04 19:52:13 +00:00
|
|
|
Tab tab = Tabs.getInstance().getSelectedTab();
|
|
|
|
if (tab != null)
|
|
|
|
tab.doStop();
|
2011-11-18 18:28:17 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2012-06-02 18:23:45 +00:00
|
|
|
mReader = (ImageButton) mLayout.findViewById(R.id.reader);
|
|
|
|
mReader.setOnClickListener(new Button.OnClickListener() {
|
|
|
|
public void onClick(View view) {
|
2012-06-20 18:10:08 +00:00
|
|
|
Tab tab = Tabs.getInstance().getSelectedTab();
|
|
|
|
if (tab != null)
|
|
|
|
tab.readerMode();
|
2012-06-02 18:23:45 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2012-03-21 00:23:06 +00:00
|
|
|
mShadow = (ImageView) mLayout.findViewById(R.id.shadow);
|
2011-12-15 19:53:04 +00:00
|
|
|
|
2011-11-18 18:28:17 +00:00
|
|
|
mHandler = new Handler();
|
2012-01-27 19:19:13 +00:00
|
|
|
mSlideUpIn = new TranslateAnimation(0, 0, 40, 0);
|
|
|
|
mSlideUpOut = new TranslateAnimation(0, 0, 0, -40);
|
|
|
|
mSlideDownIn = new TranslateAnimation(0, 0, -40, 0);
|
|
|
|
mSlideDownOut = new TranslateAnimation(0, 0, 0, 40);
|
2011-11-18 18:28:17 +00:00
|
|
|
|
|
|
|
mDuration = 750;
|
|
|
|
mSlideUpIn.setDuration(mDuration);
|
|
|
|
mSlideUpOut.setDuration(mDuration);
|
|
|
|
mSlideDownIn.setDuration(mDuration);
|
|
|
|
mSlideDownOut.setDuration(mDuration);
|
2012-05-31 23:01:50 +00:00
|
|
|
|
|
|
|
mMenu = (ImageButton) mLayout.findViewById(R.id.menu);
|
|
|
|
mActionItemBar = (LinearLayout) mLayout.findViewById(R.id.menu_items);
|
|
|
|
mHasSoftMenuButton = false;
|
|
|
|
|
|
|
|
if (Build.VERSION.SDK_INT >= 11)
|
|
|
|
mHasSoftMenuButton = true;
|
|
|
|
|
|
|
|
if (Build.VERSION.SDK_INT >= 14) {
|
|
|
|
if(!ViewConfiguration.get(GeckoApp.mAppContext).hasPermanentMenuKey())
|
|
|
|
mHasSoftMenuButton = true;
|
|
|
|
else
|
|
|
|
mHasSoftMenuButton = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mHasSoftMenuButton) {
|
|
|
|
mMenu.setVisibility(View.VISIBLE);
|
|
|
|
mMenu.setOnClickListener(new Button.OnClickListener() {
|
|
|
|
public void onClick(View view) {
|
|
|
|
GeckoApp.mAppContext.openOptionsMenu();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Build.VERSION.SDK_INT >= 11) {
|
|
|
|
View panel = GeckoApp.mAppContext.getMenuPanel();
|
|
|
|
|
|
|
|
// If panel is null, the app is starting up for the first time;
|
|
|
|
// add this to the popup only if we have a soft menu button.
|
|
|
|
// else, browser-toolbar is initialized on rotation,
|
|
|
|
// and we need to re-attach action-bar items.
|
|
|
|
|
|
|
|
if (panel == null) {
|
|
|
|
GeckoApp.mAppContext.onCreatePanelMenu(Window.FEATURE_OPTIONS_PANEL, null);
|
|
|
|
panel = GeckoApp.mAppContext.getMenuPanel();
|
|
|
|
|
|
|
|
if (mHasSoftMenuButton) {
|
|
|
|
mMenuPopup = new MenuPopup(mContext);
|
|
|
|
mMenuPopup.setPanelView(panel);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-11-18 18:28:17 +00:00
|
|
|
}
|
|
|
|
|
2012-06-13 05:47:52 +00:00
|
|
|
public View getLayout() {
|
|
|
|
return mLayout;
|
|
|
|
}
|
|
|
|
|
2012-06-08 04:47:22 +00:00
|
|
|
public void requestLayout() {
|
|
|
|
mLayout.invalidate();
|
|
|
|
}
|
|
|
|
|
2012-06-11 22:18:40 +00:00
|
|
|
public void onTabChanged(Tab tab, Tabs.TabEvents msg, Object data) {
|
|
|
|
switch(msg) {
|
|
|
|
case TITLE:
|
|
|
|
if (Tabs.getInstance().isSelectedTab(tab)) {
|
|
|
|
setTitle(tab.getDisplayTitle());
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case START:
|
|
|
|
if (Tabs.getInstance().isSelectedTab(tab)) {
|
|
|
|
setSecurityMode(tab.getSecurityMode());
|
|
|
|
setReaderVisibility(tab.getReaderEnabled());
|
|
|
|
updateBackButton(tab.canDoBack());
|
|
|
|
updateForwardButton(tab.canDoForward());
|
|
|
|
Boolean showProgress = (Boolean)data;
|
|
|
|
if (showProgress && tab.getState() == Tab.STATE_LOADING)
|
|
|
|
setProgressVisibility(true);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case STOP:
|
|
|
|
if (Tabs.getInstance().isSelectedTab(tab)) {
|
|
|
|
updateBackButton(tab.canDoBack());
|
|
|
|
updateForwardButton(tab.canDoForward());
|
|
|
|
setProgressVisibility(false);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case RESTORED:
|
|
|
|
case SELECTED:
|
|
|
|
case LOCATION_CHANGE:
|
|
|
|
case LOAD_ERROR:
|
|
|
|
if (Tabs.getInstance().isSelectedTab(tab)) {
|
|
|
|
refresh();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CLOSED:
|
|
|
|
case ADDED:
|
|
|
|
updateTabCountAndAnimate(Tabs.getInstance().getCount());
|
|
|
|
updateBackButton(false);
|
|
|
|
updateForwardButton(false);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-25 22:10:26 +00:00
|
|
|
@Override
|
|
|
|
public View makeView() {
|
|
|
|
// This returns a TextView for the TextSwitcher.
|
|
|
|
return mInflater.inflate(R.layout.tabs_counter, null);
|
|
|
|
}
|
|
|
|
|
2011-11-18 18:28:17 +00:00
|
|
|
private void onAwesomeBarSearch() {
|
2012-03-06 17:48:33 +00:00
|
|
|
GeckoApp.mAppContext.onSearchRequested();
|
2011-11-18 18:28:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private void addTab() {
|
|
|
|
GeckoApp.mAppContext.addTab();
|
|
|
|
}
|
|
|
|
|
2012-06-08 04:47:22 +00:00
|
|
|
private void toggleTabs() {
|
2012-06-21 18:44:35 +00:00
|
|
|
if (GeckoApp.mAppContext.areTabsShown()) {
|
2012-06-08 04:47:22 +00:00
|
|
|
GeckoApp.mAppContext.hideTabs();
|
2012-06-21 18:44:35 +00:00
|
|
|
} else {
|
|
|
|
// hide the virtual keyboard
|
|
|
|
InputMethodManager imm =
|
|
|
|
(InputMethodManager) mContext.getSystemService(Context.INPUT_METHOD_SERVICE);
|
|
|
|
imm.hideSoftInputFromWindow(mTabs.getWindowToken(), 0);
|
2012-06-08 04:47:22 +00:00
|
|
|
GeckoApp.mAppContext.showLocalTabs();
|
2012-06-21 18:44:35 +00:00
|
|
|
}
|
2011-11-18 18:28:17 +00:00
|
|
|
}
|
|
|
|
|
2012-02-01 22:25:50 +00:00
|
|
|
public void updateTabCountAndAnimate(int count) {
|
2011-11-18 18:28:17 +00:00
|
|
|
if (mCount > count) {
|
|
|
|
mTabsCount.setInAnimation(mSlideDownIn);
|
|
|
|
mTabsCount.setOutAnimation(mSlideDownOut);
|
|
|
|
} else if (mCount < count) {
|
|
|
|
mTabsCount.setInAnimation(mSlideUpIn);
|
|
|
|
mTabsCount.setOutAnimation(mSlideUpOut);
|
2012-06-08 04:47:22 +00:00
|
|
|
} else {
|
|
|
|
return;
|
2011-11-18 18:28:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
mTabsCount.setText(String.valueOf(count));
|
|
|
|
mCount = count;
|
2012-06-08 04:47:22 +00:00
|
|
|
mTabs.setContentDescription(mContext.getString(R.string.num_tabs, count));
|
2012-01-18 04:47:16 +00:00
|
|
|
|
2011-11-18 18:28:17 +00:00
|
|
|
mHandler.postDelayed(new Runnable() {
|
|
|
|
public void run() {
|
2012-05-31 23:11:12 +00:00
|
|
|
((TextView) mTabsCount.getCurrentView()).setTextColor(mContext.getResources().getColor(R.color.url_bar_text_highlight));
|
2011-11-18 18:28:17 +00:00
|
|
|
}
|
|
|
|
}, mDuration);
|
|
|
|
|
|
|
|
mHandler.postDelayed(new Runnable() {
|
|
|
|
public void run() {
|
2012-05-25 22:10:26 +00:00
|
|
|
((TextView) mTabsCount.getCurrentView()).setTextColor(mContext.getResources().getColor(R.color.tabs_counter_color));
|
2011-11-18 18:28:17 +00:00
|
|
|
}
|
|
|
|
}, 2 * mDuration);
|
|
|
|
}
|
|
|
|
|
2012-02-01 22:25:50 +00:00
|
|
|
public void updateTabCount(int count) {
|
|
|
|
mTabsCount.setCurrentText(String.valueOf(count));
|
2012-06-08 04:47:22 +00:00
|
|
|
mTabs.setContentDescription(mContext.getString(R.string.num_tabs, count));
|
|
|
|
mCount = count;
|
|
|
|
updateTabs(GeckoApp.mAppContext.areTabsShown());
|
|
|
|
}
|
|
|
|
|
|
|
|
public void updateTabs(boolean areTabsShown) {
|
2012-06-14 18:14:00 +00:00
|
|
|
if (areTabsShown) {
|
2012-06-08 04:47:22 +00:00
|
|
|
mTabs.setImageLevel(TABS_EXPANDED);
|
2012-06-14 18:14:00 +00:00
|
|
|
mTabs.getBackground().setLevel(TABS_EXPANDED);
|
|
|
|
} else {
|
2012-06-08 04:47:22 +00:00
|
|
|
mTabs.setImageLevel(TABS_CONTRACTED);
|
2012-06-14 18:14:00 +00:00
|
|
|
mTabs.getBackground().setLevel(TABS_CONTRACTED);
|
|
|
|
}
|
2012-02-01 22:25:50 +00:00
|
|
|
}
|
|
|
|
|
2011-11-18 18:28:17 +00:00
|
|
|
public void setProgressVisibility(boolean visible) {
|
|
|
|
if (visible) {
|
|
|
|
mFavicon.setImageDrawable(mProgressSpinner);
|
|
|
|
mProgressSpinner.start();
|
|
|
|
setStopVisibility(true);
|
2012-01-24 20:39:23 +00:00
|
|
|
Log.i(LOGTAG, "zerdatime " + SystemClock.uptimeMillis() + " - Throbber start");
|
2011-11-18 18:28:17 +00:00
|
|
|
} else {
|
|
|
|
mProgressSpinner.stop();
|
|
|
|
setStopVisibility(false);
|
2012-04-23 14:47:46 +00:00
|
|
|
Tab selectedTab = Tabs.getInstance().getSelectedTab();
|
|
|
|
if (selectedTab != null)
|
|
|
|
setFavicon(selectedTab.getFavicon());
|
2012-01-24 20:39:23 +00:00
|
|
|
Log.i(LOGTAG, "zerdatime " + SystemClock.uptimeMillis() + " - Throbber stop");
|
2011-11-18 18:28:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setStopVisibility(boolean visible) {
|
|
|
|
mStop.setVisibility(visible ? View.VISIBLE : View.GONE);
|
2012-06-02 18:23:45 +00:00
|
|
|
|
|
|
|
mSiteSecurity.setVisibility(mShowSiteSecurity && !visible ? View.VISIBLE : View.GONE);
|
|
|
|
mReader.setVisibility(mShowReader && !visible ? View.VISIBLE : View.GONE);
|
|
|
|
|
|
|
|
if (!visible && !mShowSiteSecurity && !mShowReader)
|
2012-02-06 19:44:37 +00:00
|
|
|
mAwesomeBar.setPadding(mPadding[0], mPadding[1], mPadding[2], mPadding[3]);
|
|
|
|
else
|
|
|
|
mAwesomeBar.setPadding(mPadding[0], mPadding[1], mPadding[0], mPadding[3]);
|
2011-11-18 18:28:17 +00:00
|
|
|
}
|
|
|
|
|
2011-12-15 19:53:04 +00:00
|
|
|
public void setShadowVisibility(boolean visible) {
|
|
|
|
mShadow.setVisibility(visible ? View.VISIBLE : View.GONE);
|
|
|
|
}
|
|
|
|
|
2011-11-18 18:28:17 +00:00
|
|
|
public void setTitle(CharSequence title) {
|
2012-01-17 22:57:21 +00:00
|
|
|
Tab tab = Tabs.getInstance().getSelectedTab();
|
2012-03-16 16:29:37 +00:00
|
|
|
|
|
|
|
// We use about:empty as a placeholder for an external page load and
|
|
|
|
// we don't want to change the title
|
|
|
|
if (tab != null && "about:empty".equals(tab.getURL()))
|
|
|
|
return;
|
|
|
|
|
2012-01-17 22:57:21 +00:00
|
|
|
// Setting a null title for about:home will ensure we just see
|
|
|
|
// the "Enter Search or Address" placeholder text
|
2012-03-05 21:20:04 +00:00
|
|
|
if (tab != null && "about:home".equals(tab.getURL()))
|
2012-01-17 22:57:21 +00:00
|
|
|
title = null;
|
2012-03-16 16:29:37 +00:00
|
|
|
|
2011-11-18 18:28:17 +00:00
|
|
|
mAwesomeBar.setText(title);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setFavicon(Drawable image) {
|
2012-03-07 21:58:31 +00:00
|
|
|
if (Tabs.getInstance().getSelectedTab().getState() == Tab.STATE_LOADING)
|
2011-11-18 18:28:17 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (image != null)
|
|
|
|
mFavicon.setImageDrawable(image);
|
|
|
|
else
|
|
|
|
mFavicon.setImageResource(R.drawable.favicon);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setSecurityMode(String mode) {
|
2012-06-02 18:23:45 +00:00
|
|
|
mShowSiteSecurity = true;
|
2012-02-06 19:44:37 +00:00
|
|
|
|
2012-05-02 16:07:58 +00:00
|
|
|
if (mode.equals(SiteIdentityPopup.IDENTIFIED)) {
|
2011-11-18 18:28:17 +00:00
|
|
|
mSiteSecurity.setImageLevel(1);
|
2012-05-02 16:07:58 +00:00
|
|
|
} else if (mode.equals(SiteIdentityPopup.VERIFIED)) {
|
2011-12-15 19:53:04 +00:00
|
|
|
mSiteSecurity.setImageLevel(2);
|
2012-02-06 19:44:37 +00:00
|
|
|
} else {
|
2011-11-18 18:28:17 +00:00
|
|
|
mSiteSecurity.setImageLevel(0);
|
2012-06-02 18:23:45 +00:00
|
|
|
mShowSiteSecurity = false;
|
2012-02-06 19:44:37 +00:00
|
|
|
}
|
2011-11-18 18:28:17 +00:00
|
|
|
}
|
2012-01-30 23:10:16 +00:00
|
|
|
|
2012-06-02 18:23:45 +00:00
|
|
|
public void setReaderVisibility(boolean showReader) {
|
|
|
|
mShowReader = showReader;
|
|
|
|
}
|
|
|
|
|
2012-03-21 00:23:06 +00:00
|
|
|
public void setVisibility(int visibility) {
|
|
|
|
mLayout.setVisibility(visibility);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void requestFocusFromTouch() {
|
|
|
|
mLayout.requestFocusFromTouch();
|
|
|
|
}
|
|
|
|
|
2012-05-24 22:47:49 +00:00
|
|
|
public void updateBackButton(boolean enabled) {
|
|
|
|
mBack.setColorFilter(enabled ? 0 : 0xFF999999);
|
|
|
|
mBack.setEnabled(enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void updateForwardButton(boolean enabled) {
|
|
|
|
mForward.setColorFilter(enabled ? 0 : 0xFF999999);
|
|
|
|
mForward.setEnabled(enabled);
|
|
|
|
}
|
|
|
|
|
2012-05-31 23:01:50 +00:00
|
|
|
@Override
|
|
|
|
public void addActionItem(View actionItem) {
|
|
|
|
mActionItemBar.addView(actionItem);
|
|
|
|
|
|
|
|
if (!sActionItems.contains(actionItem))
|
|
|
|
sActionItems.add(actionItem);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2012-06-03 06:09:55 +00:00
|
|
|
public void removeActionItem(int index) {
|
|
|
|
mActionItemBar.removeViewAt(index);
|
|
|
|
sActionItems.remove(index);
|
2012-05-31 23:01:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getActionItemsCount() {
|
|
|
|
return sActionItems.size();
|
|
|
|
}
|
|
|
|
|
2012-02-16 00:14:02 +00:00
|
|
|
public void show() {
|
2012-06-08 04:47:22 +00:00
|
|
|
mLayout.setVisibility(View.VISIBLE);
|
2012-02-16 00:14:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void hide() {
|
2012-06-08 04:47:22 +00:00
|
|
|
mLayout.setVisibility(View.GONE);
|
2012-02-16 00:14:02 +00:00
|
|
|
}
|
|
|
|
|
2012-01-30 23:10:16 +00:00
|
|
|
public void refresh() {
|
|
|
|
Tab tab = Tabs.getInstance().getSelectedTab();
|
|
|
|
if (tab != null) {
|
2012-03-05 21:20:04 +00:00
|
|
|
String url = tab.getURL();
|
2012-01-30 23:10:16 +00:00
|
|
|
setTitle(tab.getDisplayTitle());
|
|
|
|
setFavicon(tab.getFavicon());
|
|
|
|
setSecurityMode(tab.getSecurityMode());
|
2012-06-02 18:23:45 +00:00
|
|
|
setReaderVisibility(tab.getReaderEnabled());
|
2012-03-07 21:58:31 +00:00
|
|
|
setProgressVisibility(tab.getState() == Tab.STATE_LOADING);
|
2012-03-05 21:20:04 +00:00
|
|
|
setShadowVisibility((url == null) || !url.startsWith("about:"));
|
2012-02-07 19:37:36 +00:00
|
|
|
updateTabCount(Tabs.getInstance().getCount());
|
2012-05-24 22:47:49 +00:00
|
|
|
updateBackButton(tab.canDoBack());
|
|
|
|
updateForwardButton(tab.canDoForward());
|
2012-01-30 23:10:16 +00:00
|
|
|
}
|
|
|
|
}
|
2012-05-31 23:01:50 +00:00
|
|
|
|
|
|
|
public void destroy() {
|
|
|
|
// The action-items views are reused on rotation.
|
|
|
|
// Remove them from their parent, so they can be re-attached to new parent.
|
|
|
|
mActionItemBar.removeAllViews();
|
|
|
|
}
|
|
|
|
|
2012-06-03 06:08:29 +00:00
|
|
|
public boolean openOptionsMenu() {
|
|
|
|
if (!mHasSoftMenuButton)
|
|
|
|
return false;
|
|
|
|
|
2012-05-31 23:01:50 +00:00
|
|
|
if (mMenuPopup != null && !mMenuPopup.isShowing())
|
|
|
|
mMenuPopup.show(mMenu);
|
2012-06-03 06:08:29 +00:00
|
|
|
|
|
|
|
return true;
|
2012-05-31 23:01:50 +00:00
|
|
|
}
|
|
|
|
|
2012-06-03 06:08:29 +00:00
|
|
|
public boolean closeOptionsMenu() {
|
|
|
|
if (!mHasSoftMenuButton)
|
|
|
|
return false;
|
|
|
|
|
2012-05-31 23:01:50 +00:00
|
|
|
if (mMenuPopup != null && mMenuPopup.isShowing())
|
|
|
|
mMenuPopup.dismiss();
|
2012-06-03 06:08:29 +00:00
|
|
|
|
|
|
|
return true;
|
2012-05-31 23:01:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// MenuPopup holds the MenuPanel in Honeycomb/ICS devices with no hardware key
|
|
|
|
public class MenuPopup extends PopupWindow {
|
|
|
|
private ImageView mArrow;
|
|
|
|
private RelativeLayout mPanel;
|
|
|
|
|
|
|
|
public MenuPopup(Context context) {
|
|
|
|
super(context);
|
|
|
|
setFocusable(true);
|
|
|
|
|
|
|
|
// Setting a null background makes the popup to not close on touching outside.
|
|
|
|
setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
|
|
|
|
setWindowLayoutMode(ViewGroup.LayoutParams.WRAP_CONTENT,
|
|
|
|
ViewGroup.LayoutParams.WRAP_CONTENT);
|
|
|
|
|
|
|
|
LayoutInflater inflater = LayoutInflater.from(context);
|
|
|
|
RelativeLayout layout = (RelativeLayout) inflater.inflate(R.layout.menu_popup, null);
|
|
|
|
setContentView(layout);
|
|
|
|
|
|
|
|
mArrow = (ImageView) layout.findViewById(R.id.menu_arrow);
|
|
|
|
mPanel = (RelativeLayout) layout.findViewById(R.id.menu_panel);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setPanelView(View view) {
|
|
|
|
mPanel.removeAllViews();
|
|
|
|
mPanel.addView(view);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void show(View anchor) {
|
|
|
|
showAsDropDown(anchor);
|
|
|
|
|
|
|
|
int location[] = new int[2];
|
|
|
|
anchor.getLocationOnScreen(location);
|
|
|
|
|
|
|
|
int menuButtonWidth = anchor.getWidth();
|
|
|
|
int arrowWidth = mArrow.getWidth();
|
|
|
|
|
|
|
|
int rightMostEdge = location[0] + menuButtonWidth;
|
|
|
|
|
|
|
|
DisplayMetrics metrics = new DisplayMetrics();
|
|
|
|
GeckoApp.mAppContext.getWindowManager().getDefaultDisplay().getMetrics(metrics);
|
|
|
|
|
|
|
|
int leftMargin = (int)(240 * metrics.density) - (metrics.widthPixels - location[0] - menuButtonWidth/2);
|
|
|
|
|
|
|
|
RelativeLayout.LayoutParams params = (RelativeLayout.LayoutParams) mArrow.getLayoutParams();
|
|
|
|
RelativeLayout.LayoutParams newParams = new RelativeLayout.LayoutParams(params);
|
|
|
|
newParams.setMargins(leftMargin,
|
|
|
|
params.topMargin,
|
|
|
|
0,
|
|
|
|
params.bottomMargin);
|
|
|
|
|
|
|
|
// From the left of popup, the arrow should move half of (menuButtonWidth - arrowWidth)
|
|
|
|
mArrow.setLayoutParams(newParams);
|
|
|
|
}
|
|
|
|
}
|
2011-11-18 18:28:17 +00:00
|
|
|
}
|