2011-11-18 10:28:17 -08:00
|
|
|
/* -*- Mode: Java; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*-
|
2012-05-21 04:12:37 -07: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 10:28:17 -08:00
|
|
|
|
|
|
|
package org.mozilla.gecko;
|
|
|
|
|
2012-05-31 16:01:50 -07:00
|
|
|
import java.util.List;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
2011-11-18 10:28:17 -08:00
|
|
|
import android.content.Context;
|
2012-01-27 11:19:13 -08:00
|
|
|
import android.content.res.Configuration;
|
2011-11-18 10:28:17 -08:00
|
|
|
import android.graphics.Color;
|
|
|
|
import android.graphics.drawable.AnimationDrawable;
|
2012-06-02 11:23:45 -07:00
|
|
|
import android.graphics.drawable.BitmapDrawable;
|
2012-05-31 16:01:50 -07:00
|
|
|
import android.graphics.drawable.ColorDrawable;
|
2011-11-18 10:28:17 -08:00
|
|
|
import android.graphics.drawable.Drawable;
|
2012-01-27 11:19:13 -08:00
|
|
|
import android.os.Build;
|
2011-11-18 10:28:17 -08:00
|
|
|
import android.os.Handler;
|
2012-01-24 12:39:23 -08:00
|
|
|
import android.os.SystemClock;
|
2011-11-18 10:28:17 -08:00
|
|
|
import android.util.AttributeSet;
|
2012-05-31 16:01:50 -07:00
|
|
|
import android.util.DisplayMetrics;
|
2012-01-24 12:39:23 -08:00
|
|
|
import android.util.Log;
|
2011-11-18 10:28:17 -08:00
|
|
|
import android.view.animation.TranslateAnimation;
|
|
|
|
import android.view.Gravity;
|
2012-05-25 15:10:26 -07:00
|
|
|
import android.view.LayoutInflater;
|
2011-11-18 10:28:17 -08:00
|
|
|
import android.view.View;
|
2012-06-02 11:23:45 -07:00
|
|
|
import android.view.View.MeasureSpec;
|
2012-05-31 16:01:50 -07:00
|
|
|
import android.view.ViewGroup;
|
|
|
|
import android.view.ViewConfiguration;
|
|
|
|
import android.view.Window;
|
2011-11-18 10:28:17 -08:00
|
|
|
import android.widget.Button;
|
|
|
|
import android.widget.ImageButton;
|
2011-12-15 11:53:04 -08:00
|
|
|
import android.widget.ImageView;
|
2012-06-02 11:23:45 -07:00
|
|
|
import android.widget.FrameLayout;
|
2011-11-18 10:28:17 -08:00
|
|
|
import android.widget.LinearLayout;
|
2012-06-02 11:23:45 -07:00
|
|
|
import android.widget.LinearLayout.LayoutParams;
|
2012-05-31 16:01:50 -07:00
|
|
|
import android.widget.PopupWindow;
|
|
|
|
import android.widget.RelativeLayout;
|
2011-11-18 10:28:17 -08:00
|
|
|
import android.widget.TextView;
|
|
|
|
import android.widget.TextSwitcher;
|
2012-06-02 11:23:45 -07:00
|
|
|
import android.widget.Toast;
|
2012-05-25 15:10:26 -07:00
|
|
|
import android.widget.ViewSwitcher;
|
2011-11-18 10:28:17 -08:00
|
|
|
|
2012-05-31 16:01:50 -07:00
|
|
|
public class BrowserToolbar implements ViewSwitcher.ViewFactory,
|
|
|
|
GeckoMenu.ActionItemBarPresenter {
|
2012-03-20 17:23:06 -07:00
|
|
|
private static final String LOGTAG = "GeckoToolbar";
|
|
|
|
private LinearLayout mLayout;
|
2011-12-07 15:12:51 -08:00
|
|
|
private Button mAwesomeBar;
|
|
|
|
private ImageButton mTabs;
|
2012-05-24 15:47:49 -07:00
|
|
|
private ImageView mBack;
|
|
|
|
private ImageView mForward;
|
2011-12-07 15:12:51 -08:00
|
|
|
public ImageButton mFavicon;
|
|
|
|
public ImageButton mStop;
|
|
|
|
public ImageButton mSiteSecurity;
|
2012-06-02 11:23:45 -07:00
|
|
|
public ImageButton mReader;
|
2011-12-07 15:12:51 -08:00
|
|
|
private AnimationDrawable mProgressSpinner;
|
|
|
|
private TextSwitcher mTabsCount;
|
2011-12-15 11:53:04 -08:00
|
|
|
private ImageView mShadow;
|
2012-05-31 16:01:50 -07:00
|
|
|
private ImageButton mMenu;
|
|
|
|
private LinearLayout mActionItemBar;
|
|
|
|
private MenuPopup mMenuPopup;
|
2011-11-18 10:28:17 -08:00
|
|
|
|
|
|
|
final private Context mContext;
|
2012-05-31 16:01:50 -07:00
|
|
|
private LayoutInflater mInflater;
|
2011-12-07 15:12:51 -08:00
|
|
|
private Handler mHandler;
|
2012-02-06 11:44:37 -08:00
|
|
|
private int[] mPadding;
|
2012-05-31 16:01:50 -07:00
|
|
|
private boolean mHasSoftMenuButton;
|
|
|
|
|
2012-06-02 11:23:45 -07:00
|
|
|
private boolean mShowSiteSecurity;
|
|
|
|
private boolean mShowReader;
|
|
|
|
|
|
|
|
private ReaderPopup mReaderPopup;
|
|
|
|
|
2012-05-31 16:01:50 -07:00
|
|
|
private static List<View> sActionItems;
|
2011-11-18 10:28:17 -08:00
|
|
|
|
2011-12-07 15:12:51 -08:00
|
|
|
private int mDuration;
|
|
|
|
private TranslateAnimation mSlideUpIn;
|
|
|
|
private TranslateAnimation mSlideUpOut;
|
|
|
|
private TranslateAnimation mSlideDownIn;
|
|
|
|
private TranslateAnimation mSlideDownOut;
|
2011-11-18 10:28:17 -08:00
|
|
|
|
|
|
|
private int mCount;
|
|
|
|
|
2012-03-20 17:23:06 -07:00
|
|
|
public BrowserToolbar(Context context) {
|
2011-11-18 10:28:17 -08:00
|
|
|
mContext = context;
|
2012-05-25 15:10:26 -07:00
|
|
|
mInflater = LayoutInflater.from(context);
|
2012-05-31 16:01:50 -07:00
|
|
|
|
|
|
|
sActionItems = new ArrayList<View>();
|
2012-03-20 17:23:06 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public void from(LinearLayout layout) {
|
|
|
|
mLayout = layout;
|
2012-06-02 11:23:45 -07:00
|
|
|
|
|
|
|
mShowSiteSecurity = false;
|
|
|
|
mShowReader = false;
|
|
|
|
mReaderPopup = null;
|
2012-01-27 12:28:45 -08:00
|
|
|
|
2012-03-20 17:23:06 -07:00
|
|
|
mAwesomeBar = (Button) mLayout.findViewById(R.id.awesome_bar);
|
2011-11-18 10:28:17 -08:00
|
|
|
mAwesomeBar.setOnClickListener(new Button.OnClickListener() {
|
|
|
|
public void onClick(View v) {
|
|
|
|
onAwesomeBarSearch();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2012-02-06 11:44:37 -08:00
|
|
|
mPadding = new int[] { mAwesomeBar.getPaddingLeft(),
|
|
|
|
mAwesomeBar.getPaddingTop(),
|
|
|
|
mAwesomeBar.getPaddingRight(),
|
|
|
|
mAwesomeBar.getPaddingBottom() };
|
2011-11-18 10:28:17 -08:00
|
|
|
|
2012-03-20 17:23:06 -07:00
|
|
|
mTabs = (ImageButton) mLayout.findViewById(R.id.tabs);
|
2011-11-18 10:28:17 -08:00
|
|
|
mTabs.setOnClickListener(new Button.OnClickListener() {
|
|
|
|
public void onClick(View v) {
|
|
|
|
if (Tabs.getInstance().getCount() > 1)
|
|
|
|
showTabs();
|
|
|
|
else
|
|
|
|
addTab();
|
|
|
|
}
|
|
|
|
});
|
2012-02-01 14:25:50 -08:00
|
|
|
mTabs.setImageLevel(0);
|
2011-11-18 10:28:17 -08:00
|
|
|
|
2012-03-20 17:23:06 -07:00
|
|
|
mTabsCount = (TextSwitcher) mLayout.findViewById(R.id.tabs_count);
|
2011-12-07 15:12:51 -08:00
|
|
|
mTabsCount.removeAllViews();
|
2012-05-25 15:10:26 -07:00
|
|
|
mTabsCount.setFactory(this);
|
2011-11-18 10:28:17 -08:00
|
|
|
mTabsCount.setText("0");
|
2011-12-07 15:12:51 -08:00
|
|
|
mCount = 0;
|
2011-11-18 10:28:17 -08:00
|
|
|
|
2012-05-24 15:47:49 -07: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-20 17:23:06 -07:00
|
|
|
mFavicon = (ImageButton) mLayout.findViewById(R.id.favicon);
|
|
|
|
mSiteSecurity = (ImageButton) mLayout.findViewById(R.id.site_security);
|
2012-05-02 09:07:58 -07: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-05-07 16:17:08 -07:00
|
|
|
SiteIdentityPopup.getInstance().show(leftMargin);
|
2012-05-02 09:07:58 -07:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2012-05-31 16:11:12 -07:00
|
|
|
mProgressSpinner = (AnimationDrawable) mContext.getResources().getDrawable(R.drawable.progress_spinner);
|
2011-11-18 10:28:17 -08:00
|
|
|
|
2012-03-20 17:23:06 -07:00
|
|
|
mStop = (ImageButton) mLayout.findViewById(R.id.stop);
|
2011-11-18 10:28:17 -08:00
|
|
|
mStop.setOnClickListener(new Button.OnClickListener() {
|
|
|
|
public void onClick(View v) {
|
2012-05-04 12:52:13 -07:00
|
|
|
Tab tab = Tabs.getInstance().getSelectedTab();
|
|
|
|
if (tab != null)
|
|
|
|
tab.doStop();
|
2011-11-18 10:28:17 -08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2012-06-02 11:23:45 -07:00
|
|
|
mReader = (ImageButton) mLayout.findViewById(R.id.reader);
|
|
|
|
mReader.setOnClickListener(new Button.OnClickListener() {
|
|
|
|
public void onClick(View view) {
|
|
|
|
if (mReaderPopup == null)
|
|
|
|
mReaderPopup = new ReaderPopup(GeckoApp.mAppContext);
|
|
|
|
|
|
|
|
mReaderPopup.show();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2012-03-20 17:23:06 -07:00
|
|
|
mShadow = (ImageView) mLayout.findViewById(R.id.shadow);
|
2011-12-15 11:53:04 -08:00
|
|
|
|
2011-11-18 10:28:17 -08:00
|
|
|
mHandler = new Handler();
|
2012-01-27 11:19:13 -08: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 10:28:17 -08:00
|
|
|
|
|
|
|
mDuration = 750;
|
|
|
|
mSlideUpIn.setDuration(mDuration);
|
|
|
|
mSlideUpOut.setDuration(mDuration);
|
|
|
|
mSlideDownIn.setDuration(mDuration);
|
|
|
|
mSlideDownOut.setDuration(mDuration);
|
2012-05-31 16:01:50 -07: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);
|
|
|
|
}
|
|
|
|
} else if (sActionItems.size() > 0) {
|
|
|
|
for (View view : sActionItems)
|
|
|
|
addActionItem(view);
|
|
|
|
}
|
|
|
|
}
|
2011-11-18 10:28:17 -08:00
|
|
|
}
|
|
|
|
|
2012-05-25 15:10:26 -07:00
|
|
|
@Override
|
|
|
|
public View makeView() {
|
|
|
|
// This returns a TextView for the TextSwitcher.
|
|
|
|
return mInflater.inflate(R.layout.tabs_counter, null);
|
|
|
|
}
|
|
|
|
|
2011-11-18 10:28:17 -08:00
|
|
|
private void onAwesomeBarSearch() {
|
2012-03-06 09:48:33 -08:00
|
|
|
GeckoApp.mAppContext.onSearchRequested();
|
2011-11-18 10:28:17 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
private void addTab() {
|
|
|
|
GeckoApp.mAppContext.addTab();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void showTabs() {
|
|
|
|
GeckoApp.mAppContext.showTabs();
|
|
|
|
}
|
|
|
|
|
2012-02-01 14:25:50 -08:00
|
|
|
public void updateTabCountAndAnimate(int count) {
|
2011-11-18 10:28:17 -08:00
|
|
|
if (mCount > count) {
|
|
|
|
mTabsCount.setInAnimation(mSlideDownIn);
|
|
|
|
mTabsCount.setOutAnimation(mSlideDownOut);
|
|
|
|
} else if (mCount < count) {
|
|
|
|
mTabsCount.setInAnimation(mSlideUpIn);
|
|
|
|
mTabsCount.setOutAnimation(mSlideUpOut);
|
|
|
|
}
|
|
|
|
|
2012-01-17 20:47:16 -08:00
|
|
|
// Always update the count text even if we're not showing it,
|
|
|
|
// since it can appear in a future animation (e.g. 1 -> 2)
|
2011-11-18 10:28:17 -08:00
|
|
|
mTabsCount.setText(String.valueOf(count));
|
|
|
|
mCount = count;
|
|
|
|
|
2012-01-17 20:47:16 -08:00
|
|
|
if (count > 1) {
|
|
|
|
// Show tab count if it is greater than 1
|
|
|
|
mTabsCount.setVisibility(View.VISIBLE);
|
|
|
|
// Set image to more tabs dropdown "v"
|
|
|
|
mTabs.setImageLevel(count);
|
2012-05-14 14:22:00 -07:00
|
|
|
mTabs.setContentDescription(mContext.getString(R.string.num_tabs, count));
|
2012-01-17 20:47:16 -08:00
|
|
|
}
|
|
|
|
|
2011-11-18 10:28:17 -08:00
|
|
|
mHandler.postDelayed(new Runnable() {
|
|
|
|
public void run() {
|
2012-05-31 16:11:12 -07:00
|
|
|
((TextView) mTabsCount.getCurrentView()).setTextColor(mContext.getResources().getColor(R.color.url_bar_text_highlight));
|
2011-11-18 10:28:17 -08:00
|
|
|
}
|
|
|
|
}, mDuration);
|
|
|
|
|
|
|
|
mHandler.postDelayed(new Runnable() {
|
|
|
|
public void run() {
|
2012-01-17 20:47:16 -08:00
|
|
|
// This will only happen when we are animating from 2 -> 1.
|
|
|
|
// We're doing this here (as opposed to above) because we want
|
|
|
|
// the count to disappear _after_ the animation.
|
2011-11-18 10:28:17 -08:00
|
|
|
if (Tabs.getInstance().getCount() == 1) {
|
2012-01-17 20:47:16 -08:00
|
|
|
// Set image to new tab button "+"
|
2011-11-18 10:28:17 -08:00
|
|
|
mTabs.setImageLevel(1);
|
|
|
|
mTabsCount.setVisibility(View.GONE);
|
2012-05-14 14:22:00 -07:00
|
|
|
mTabs.setContentDescription(mContext.getString(R.string.new_tab));
|
2011-11-18 10:28:17 -08:00
|
|
|
}
|
2012-05-25 15:10:26 -07:00
|
|
|
((TextView) mTabsCount.getCurrentView()).setTextColor(mContext.getResources().getColor(R.color.tabs_counter_color));
|
2011-11-18 10:28:17 -08:00
|
|
|
}
|
|
|
|
}, 2 * mDuration);
|
|
|
|
}
|
|
|
|
|
2012-02-01 14:25:50 -08:00
|
|
|
public void updateTabCount(int count) {
|
|
|
|
mTabsCount.setCurrentText(String.valueOf(count));
|
|
|
|
mTabs.setImageLevel(count);
|
2012-05-14 14:22:00 -07:00
|
|
|
if (count > 1) {
|
|
|
|
mTabsCount.setVisibility(View.VISIBLE);
|
|
|
|
mTabs.setContentDescription(mContext.getString(R.string.num_tabs, count));
|
|
|
|
} else {
|
|
|
|
mTabsCount.setVisibility(View.INVISIBLE);
|
|
|
|
mTabs.setContentDescription(mContext.getString(R.string.new_tab));
|
|
|
|
}
|
2012-02-01 14:25:50 -08:00
|
|
|
}
|
|
|
|
|
2011-11-18 10:28:17 -08:00
|
|
|
public void setProgressVisibility(boolean visible) {
|
|
|
|
if (visible) {
|
|
|
|
mFavicon.setImageDrawable(mProgressSpinner);
|
|
|
|
mProgressSpinner.start();
|
|
|
|
setStopVisibility(true);
|
2012-01-24 12:39:23 -08:00
|
|
|
Log.i(LOGTAG, "zerdatime " + SystemClock.uptimeMillis() + " - Throbber start");
|
2011-11-18 10:28:17 -08:00
|
|
|
} else {
|
|
|
|
mProgressSpinner.stop();
|
|
|
|
setStopVisibility(false);
|
2012-04-23 07:47:46 -07:00
|
|
|
Tab selectedTab = Tabs.getInstance().getSelectedTab();
|
|
|
|
if (selectedTab != null)
|
|
|
|
setFavicon(selectedTab.getFavicon());
|
2012-01-24 12:39:23 -08:00
|
|
|
Log.i(LOGTAG, "zerdatime " + SystemClock.uptimeMillis() + " - Throbber stop");
|
2011-11-18 10:28:17 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setStopVisibility(boolean visible) {
|
|
|
|
mStop.setVisibility(visible ? View.VISIBLE : View.GONE);
|
2012-06-02 11:23:45 -07:00
|
|
|
|
|
|
|
mSiteSecurity.setVisibility(mShowSiteSecurity && !visible ? View.VISIBLE : View.GONE);
|
|
|
|
mReader.setVisibility(mShowReader && !visible ? View.VISIBLE : View.GONE);
|
|
|
|
|
|
|
|
if (!visible && !mShowSiteSecurity && !mShowReader)
|
2012-02-06 11:44:37 -08: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 10:28:17 -08:00
|
|
|
}
|
|
|
|
|
2011-12-15 11:53:04 -08:00
|
|
|
public void setShadowVisibility(boolean visible) {
|
|
|
|
mShadow.setVisibility(visible ? View.VISIBLE : View.GONE);
|
|
|
|
}
|
|
|
|
|
2011-11-18 10:28:17 -08:00
|
|
|
public void setTitle(CharSequence title) {
|
2012-01-17 14:57:21 -08:00
|
|
|
Tab tab = Tabs.getInstance().getSelectedTab();
|
2012-03-16 09:29:37 -07: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 14:57:21 -08:00
|
|
|
// Setting a null title for about:home will ensure we just see
|
|
|
|
// the "Enter Search or Address" placeholder text
|
2012-03-05 13:20:04 -08:00
|
|
|
if (tab != null && "about:home".equals(tab.getURL()))
|
2012-01-17 14:57:21 -08:00
|
|
|
title = null;
|
2012-03-16 09:29:37 -07:00
|
|
|
|
2011-11-18 10:28:17 -08:00
|
|
|
mAwesomeBar.setText(title);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setFavicon(Drawable image) {
|
2012-03-07 13:58:31 -08:00
|
|
|
if (Tabs.getInstance().getSelectedTab().getState() == Tab.STATE_LOADING)
|
2011-11-18 10:28:17 -08:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (image != null)
|
|
|
|
mFavicon.setImageDrawable(image);
|
|
|
|
else
|
|
|
|
mFavicon.setImageResource(R.drawable.favicon);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setSecurityMode(String mode) {
|
2012-06-02 11:23:45 -07:00
|
|
|
mShowSiteSecurity = true;
|
2012-02-06 11:44:37 -08:00
|
|
|
|
2012-05-02 09:07:58 -07:00
|
|
|
if (mode.equals(SiteIdentityPopup.IDENTIFIED)) {
|
2011-11-18 10:28:17 -08:00
|
|
|
mSiteSecurity.setImageLevel(1);
|
2012-05-02 09:07:58 -07:00
|
|
|
} else if (mode.equals(SiteIdentityPopup.VERIFIED)) {
|
2011-12-15 11:53:04 -08:00
|
|
|
mSiteSecurity.setImageLevel(2);
|
2012-02-06 11:44:37 -08:00
|
|
|
} else {
|
2011-11-18 10:28:17 -08:00
|
|
|
mSiteSecurity.setImageLevel(0);
|
2012-06-02 11:23:45 -07:00
|
|
|
mShowSiteSecurity = false;
|
2012-02-06 11:44:37 -08:00
|
|
|
}
|
2011-11-18 10:28:17 -08:00
|
|
|
}
|
2012-01-30 15:10:16 -08:00
|
|
|
|
2012-06-02 11:23:45 -07:00
|
|
|
public void setReaderVisibility(boolean showReader) {
|
|
|
|
mShowReader = showReader;
|
|
|
|
}
|
|
|
|
|
2012-03-20 17:23:06 -07:00
|
|
|
public void setVisibility(int visibility) {
|
|
|
|
mLayout.setVisibility(visibility);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void requestFocusFromTouch() {
|
|
|
|
mLayout.requestFocusFromTouch();
|
|
|
|
}
|
|
|
|
|
2012-05-24 15:47:49 -07: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 16:01:50 -07:00
|
|
|
@Override
|
|
|
|
public void addActionItem(View actionItem) {
|
|
|
|
mActionItemBar.addView(actionItem);
|
|
|
|
|
|
|
|
if (!sActionItems.contains(actionItem))
|
|
|
|
sActionItems.add(actionItem);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2012-06-02 23:09:55 -07:00
|
|
|
public void removeActionItem(int index) {
|
|
|
|
mActionItemBar.removeViewAt(index);
|
|
|
|
sActionItems.remove(index);
|
2012-05-31 16:01:50 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getActionItemsCount() {
|
|
|
|
return sActionItems.size();
|
|
|
|
}
|
|
|
|
|
2012-02-15 16:14:02 -08:00
|
|
|
public void show() {
|
|
|
|
if (Build.VERSION.SDK_INT >= 11)
|
|
|
|
GeckoActionBar.show(GeckoApp.mAppContext);
|
|
|
|
else
|
2012-03-20 17:23:06 -07:00
|
|
|
mLayout.setVisibility(View.VISIBLE);
|
2012-02-15 16:14:02 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
public void hide() {
|
|
|
|
if (Build.VERSION.SDK_INT >= 11)
|
|
|
|
GeckoActionBar.hide(GeckoApp.mAppContext);
|
|
|
|
else
|
2012-03-20 17:23:06 -07:00
|
|
|
mLayout.setVisibility(View.GONE);
|
2012-02-15 16:14:02 -08:00
|
|
|
}
|
|
|
|
|
2012-01-30 15:10:16 -08:00
|
|
|
public void refresh() {
|
|
|
|
Tab tab = Tabs.getInstance().getSelectedTab();
|
|
|
|
if (tab != null) {
|
2012-03-05 13:20:04 -08:00
|
|
|
String url = tab.getURL();
|
2012-01-30 15:10:16 -08:00
|
|
|
setTitle(tab.getDisplayTitle());
|
|
|
|
setFavicon(tab.getFavicon());
|
|
|
|
setSecurityMode(tab.getSecurityMode());
|
2012-06-02 11:23:45 -07:00
|
|
|
setReaderVisibility(tab.getReaderEnabled());
|
2012-03-07 13:58:31 -08:00
|
|
|
setProgressVisibility(tab.getState() == Tab.STATE_LOADING);
|
2012-03-05 13:20:04 -08:00
|
|
|
setShadowVisibility((url == null) || !url.startsWith("about:"));
|
2012-02-07 11:37:36 -08:00
|
|
|
updateTabCount(Tabs.getInstance().getCount());
|
2012-05-24 15:47:49 -07:00
|
|
|
updateBackButton(tab.canDoBack());
|
|
|
|
updateForwardButton(tab.canDoForward());
|
2012-01-30 15:10:16 -08:00
|
|
|
}
|
|
|
|
}
|
2012-05-31 16:01:50 -07: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-02 23:08:29 -07:00
|
|
|
public boolean openOptionsMenu() {
|
|
|
|
if (!mHasSoftMenuButton)
|
|
|
|
return false;
|
|
|
|
|
2012-05-31 16:01:50 -07:00
|
|
|
if (mMenuPopup != null && !mMenuPopup.isShowing())
|
|
|
|
mMenuPopup.show(mMenu);
|
2012-06-02 23:08:29 -07:00
|
|
|
|
|
|
|
return true;
|
2012-05-31 16:01:50 -07:00
|
|
|
}
|
|
|
|
|
2012-06-02 23:08:29 -07:00
|
|
|
public boolean closeOptionsMenu() {
|
|
|
|
if (!mHasSoftMenuButton)
|
|
|
|
return false;
|
|
|
|
|
2012-05-31 16:01:50 -07:00
|
|
|
if (mMenuPopup != null && mMenuPopup.isShowing())
|
|
|
|
mMenuPopup.dismiss();
|
2012-06-02 23:08:29 -07:00
|
|
|
|
|
|
|
return true;
|
2012-05-31 16:01:50 -07: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);
|
|
|
|
}
|
|
|
|
}
|
2012-06-02 11:23:45 -07:00
|
|
|
|
|
|
|
public class ReaderPopup extends PopupWindow {
|
|
|
|
private int mWidth;
|
|
|
|
|
|
|
|
private ReaderPopup(Context context) {
|
|
|
|
super(context);
|
|
|
|
|
|
|
|
setBackgroundDrawable(new BitmapDrawable());
|
|
|
|
setOutsideTouchable(true);
|
|
|
|
setWindowLayoutMode(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
|
|
|
|
|
|
|
|
LayoutInflater inflater = LayoutInflater.from(context);
|
|
|
|
FrameLayout layout = (FrameLayout) inflater.inflate(R.layout.reader_popup, null);
|
|
|
|
setContentView(layout);
|
|
|
|
|
|
|
|
layout.measure(View.MeasureSpec.UNSPECIFIED, View.MeasureSpec.UNSPECIFIED);
|
|
|
|
mWidth = layout.getMeasuredWidth();
|
|
|
|
|
|
|
|
Button readingListButton = (Button) layout.findViewById(R.id.reading_list);
|
|
|
|
readingListButton.setOnClickListener(new Button.OnClickListener() {
|
|
|
|
public void onClick(View v) {
|
|
|
|
Tab selectedTab = Tabs.getInstance().getSelectedTab();
|
|
|
|
if (selectedTab != null) {
|
|
|
|
selectedTab.addToReadingList();
|
|
|
|
}
|
|
|
|
|
|
|
|
Toast.makeText(GeckoApp.mAppContext,
|
|
|
|
R.string.reading_list_added, Toast.LENGTH_SHORT).show();
|
|
|
|
|
|
|
|
dismiss();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
Button readerModeButton = (Button) layout.findViewById(R.id.reader_mode);
|
|
|
|
readerModeButton.setOnClickListener(new Button.OnClickListener() {
|
|
|
|
public void onClick(View v) {
|
|
|
|
Tab selectedTab = Tabs.getInstance().getSelectedTab();
|
|
|
|
if (selectedTab != null) {
|
|
|
|
selectedTab.readerMode();
|
|
|
|
}
|
|
|
|
|
|
|
|
dismiss();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public void show() {
|
|
|
|
showAsDropDown(mReader, (mReader.getWidth() - mWidth) / 2, 0);
|
|
|
|
}
|
|
|
|
}
|
2011-11-18 10:28:17 -08:00
|
|
|
}
|