blob: 6e84a4049b51208324116d1c7aae05b0346cb5dd [file] [log] [blame]
Michael Kolba2b2ba82010-08-04 17:54:03 -07001/*
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
17package com.android.browser;
18
John Reckb9a051b2011-03-18 11:55:48 -070019import com.android.browser.BrowserWebView.ScrollListener;
Michael Kolbebba8b42010-09-30 12:57:59 -070020
Michael Kolb2d59c322011-01-25 13:18:55 -080021import android.animation.Animator;
22import android.animation.Animator.AnimatorListener;
23import android.animation.AnimatorSet;
24import android.animation.ObjectAnimator;
Michael Kolb8233fac2010-10-26 16:08:53 -070025import android.app.Activity;
Michael Kolba2b2ba82010-08-04 17:54:03 -070026import android.content.Context;
Michael Kolb678afc82011-05-17 14:52:41 -070027import android.content.res.Configuration;
Michael Kolba2b2ba82010-08-04 17:54:03 -070028import android.content.res.Resources;
29import android.graphics.Bitmap;
Michael Kolb2b5a13a2010-12-09 14:13:42 -080030import android.graphics.BitmapShader;
31import android.graphics.Canvas;
Michael Kolb467af0a2011-01-11 13:09:49 -080032import android.graphics.Matrix;
Michael Kolb2b5a13a2010-12-09 14:13:42 -080033import android.graphics.Paint;
34import android.graphics.Path;
35import android.graphics.Shader;
Michael Kolba2b2ba82010-08-04 17:54:03 -070036import android.graphics.drawable.BitmapDrawable;
37import android.graphics.drawable.Drawable;
38import android.graphics.drawable.LayerDrawable;
39import android.graphics.drawable.PaintDrawable;
40import android.view.ContextMenu;
Michael Kolbed217742010-08-10 17:52:34 -070041import android.view.Gravity;
Michael Kolba2b2ba82010-08-04 17:54:03 -070042import android.view.LayoutInflater;
43import android.view.MenuInflater;
44import android.view.View;
45import android.view.View.OnClickListener;
46import android.webkit.WebView;
Michael Kolbed217742010-08-10 17:52:34 -070047import android.widget.ImageButton;
Michael Kolba2b2ba82010-08-04 17:54:03 -070048import android.widget.ImageView;
49import android.widget.LinearLayout;
50import android.widget.TextView;
51
Michael Kolba2b2ba82010-08-04 17:54:03 -070052import java.util.HashMap;
Michael Kolb1bf23132010-11-19 12:55:12 -080053import java.util.List;
Michael Kolba2b2ba82010-08-04 17:54:03 -070054import java.util.Map;
55
56/**
57 * tabbed title bar for xlarge screen browser
58 */
59public class TabBar extends LinearLayout
Michael Kolb8233fac2010-10-26 16:08:53 -070060 implements ScrollListener, OnClickListener {
Michael Kolba2b2ba82010-08-04 17:54:03 -070061
62 private static final int PROGRESS_MAX = 100;
63
Michael Kolb8233fac2010-10-26 16:08:53 -070064 private Activity mActivity;
65 private UiController mUiController;
66 private TabControl mTabControl;
Michael Kolb66706532010-12-12 19:50:22 -080067 private XLargeUi mUi;
Michael Kolba2b2ba82010-08-04 17:54:03 -070068
Michael Kolb678afc82011-05-17 14:52:41 -070069 private int mTabWidthSelected;
70 private int mTabWidthUnselected;
Michael Kolbed217742010-08-10 17:52:34 -070071
Michael Kolba2b2ba82010-08-04 17:54:03 -070072 private TabScrollView mTabs;
Michael Kolb8233fac2010-10-26 16:08:53 -070073
Michael Kolbebba8b42010-09-30 12:57:59 -070074 private ImageButton mNewTab;
75 private int mButtonWidth;
Michael Kolba2b2ba82010-08-04 17:54:03 -070076
Michael Kolb94827b62011-01-08 14:23:45 -080077 private Map<Tab, TabView> mTabMap;
Michael Kolba2b2ba82010-08-04 17:54:03 -070078
John Reckaff60fb2010-10-25 13:47:58 -070079 private Drawable mGenericFavicon;
80
Romain Guyc8373212011-01-07 19:15:16 -080081 private int mCurrentTextureWidth = 0;
82 private int mCurrentTextureHeight = 0;
83
Michael Kolb2b5a13a2010-12-09 14:13:42 -080084 private Drawable mActiveDrawable;
85 private Drawable mInactiveDrawable;
86
Romain Guyc8373212011-01-07 19:15:16 -080087 private final Paint mActiveShaderPaint = new Paint();
88 private final Paint mInactiveShaderPaint = new Paint();
Michael Kolbdc2ee1b2011-02-14 14:34:40 -080089 private final Paint mFocusPaint = new Paint();
Romain Guyc8373212011-01-07 19:15:16 -080090 private final Matrix mActiveMatrix = new Matrix();
91 private final Matrix mInactiveMatrix = new Matrix();
92
93 private BitmapShader mActiveShader;
94 private BitmapShader mInactiveShader;
95
Michael Kolb2b5a13a2010-12-09 14:13:42 -080096 private int mTabOverlap;
Michael Kolb5a72f182011-01-13 20:35:06 -080097 private int mAddTabOverlap;
Michael Kolb2b5a13a2010-12-09 14:13:42 -080098 private int mTabSliceWidth;
Michael Kolb376b5412010-12-15 11:52:57 -080099 private boolean mUseQuickControls;
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800100
Michael Kolb66706532010-12-12 19:50:22 -0800101 public TabBar(Activity activity, UiController controller, XLargeUi ui) {
Michael Kolb8233fac2010-10-26 16:08:53 -0700102 super(activity);
103 mActivity = activity;
104 mUiController = controller;
105 mTabControl = mUiController.getTabControl();
106 mUi = ui;
107 Resources res = activity.getResources();
Michael Kolbed217742010-08-10 17:52:34 -0700108 mTabWidthSelected = (int) res.getDimension(R.dimen.tab_width_selected);
109 mTabWidthUnselected = (int) res.getDimension(R.dimen.tab_width_unselected);
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800110 mActiveDrawable = res.getDrawable(R.drawable.bg_urlbar);
111 mInactiveDrawable = res.getDrawable(R.drawable.browsertab_inactive);
Michael Kolba2b2ba82010-08-04 17:54:03 -0700112
Michael Kolb94827b62011-01-08 14:23:45 -0800113 mTabMap = new HashMap<Tab, TabView>();
114 Resources resources = activity.getResources();
Michael Kolb8233fac2010-10-26 16:08:53 -0700115 LayoutInflater factory = LayoutInflater.from(activity);
Michael Kolba2b2ba82010-08-04 17:54:03 -0700116 factory.inflate(R.layout.tab_bar, this);
Michael Kolbf558f0d2011-01-13 19:24:18 -0800117 setPadding(0, (int) res.getDimension(R.dimen.tab_padding_top), 0, 0);
Michael Kolba2b2ba82010-08-04 17:54:03 -0700118 mTabs = (TabScrollView) findViewById(R.id.tabs);
Michael Kolbebba8b42010-09-30 12:57:59 -0700119 mNewTab = (ImageButton) findViewById(R.id.newtab);
120 mNewTab.setOnClickListener(this);
John Reckaff60fb2010-10-25 13:47:58 -0700121 mGenericFavicon = res.getDrawable(R.drawable.app_web_browser_sm);
Michael Kolba2b2ba82010-08-04 17:54:03 -0700122
Michael Kolb1bf23132010-11-19 12:55:12 -0800123 updateTabs(mUiController.getTabs());
Michael Kolbebba8b42010-09-30 12:57:59 -0700124 mButtonWidth = -1;
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800125 // tab dimensions
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800126 mTabOverlap = (int) res.getDimension(R.dimen.tab_overlap);
Michael Kolb5a72f182011-01-13 20:35:06 -0800127 mAddTabOverlap = (int) res.getDimension(R.dimen.tab_addoverlap);
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800128 mTabSliceWidth = (int) res.getDimension(R.dimen.tab_slice);
Romain Guyc8373212011-01-07 19:15:16 -0800129
130 mActiveShaderPaint.setStyle(Paint.Style.FILL);
131 mActiveShaderPaint.setAntiAlias(true);
132
133 mInactiveShaderPaint.setStyle(Paint.Style.FILL);
134 mInactiveShaderPaint.setAntiAlias(true);
Michael Kolbb4cafc52011-01-12 16:55:04 -0800135
Michael Kolbdc2ee1b2011-02-14 14:34:40 -0800136 mFocusPaint.setStyle(Paint.Style.STROKE);
Michael Kolbeb7001c2011-02-16 16:07:33 -0800137 mFocusPaint.setStrokeWidth(res.getDimension(R.dimen.tab_focus_stroke));
Michael Kolbdc2ee1b2011-02-14 14:34:40 -0800138 mFocusPaint.setAntiAlias(true);
139 mFocusPaint.setColor(res.getColor(R.color.tabFocusHighlight));
Michael Kolbebba8b42010-09-30 12:57:59 -0700140 }
141
Michael Kolb678afc82011-05-17 14:52:41 -0700142 @Override
143 public void onConfigurationChanged(Configuration config) {
144 super.onConfigurationChanged(config);
145 Resources res = mActivity.getResources();
146 mTabWidthSelected = (int) res.getDimension(R.dimen.tab_width_selected);
147 mTabWidthUnselected = (int) res.getDimension(R.dimen.tab_width_unselected);
148 // force update of tab bar
149 mTabs.updateLayout();
150 }
151
Michael Kolb376b5412010-12-15 11:52:57 -0800152 void setUseQuickControls(boolean useQuickControls) {
153 mUseQuickControls = useQuickControls;
Michael Kolb467af0a2011-01-11 13:09:49 -0800154 mNewTab.setVisibility(mUseQuickControls ? View.GONE
155 : View.VISIBLE);
Michael Kolb376b5412010-12-15 11:52:57 -0800156 }
157
158 int getTabCount() {
159 return mTabMap.size();
160 }
161
Michael Kolb1bf23132010-11-19 12:55:12 -0800162 void updateTabs(List<Tab> tabs) {
163 mTabs.clearTabs();
164 mTabMap.clear();
165 for (Tab tab : tabs) {
Michael Kolb94827b62011-01-08 14:23:45 -0800166 TabView tv = buildTabView(tab);
Michael Kolb2d59c322011-01-25 13:18:55 -0800167 mTabs.addTab(tv);
Michael Kolb1bf23132010-11-19 12:55:12 -0800168 }
Michael Kolbc831b632011-05-11 09:30:34 -0700169 mTabs.setSelectedTab(mTabControl.getCurrentPosition());
Michael Kolb1bf23132010-11-19 12:55:12 -0800170 }
171
Michael Kolbebba8b42010-09-30 12:57:59 -0700172 @Override
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800173 protected void onMeasure(int hspec, int vspec) {
174 super.onMeasure(hspec, vspec);
175 int w = getMeasuredWidth();
176 // adjust for new tab overlap
Michael Kolb467af0a2011-01-11 13:09:49 -0800177 if (!mUseQuickControls) {
Michael Kolb5a72f182011-01-13 20:35:06 -0800178 w -= mAddTabOverlap;
Michael Kolb467af0a2011-01-11 13:09:49 -0800179 }
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800180 setMeasuredDimension(w, getMeasuredHeight());
181 }
182
183 @Override
Michael Kolbebba8b42010-09-30 12:57:59 -0700184 protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800185 // use paddingLeft and paddingTop
186 int pl = getPaddingLeft();
187 int pt = getPaddingTop();
Michael Kolbebba8b42010-09-30 12:57:59 -0700188 int sw = mTabs.getMeasuredWidth();
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800189 int w = right - left - pl;
Michael Kolbb4cafc52011-01-12 16:55:04 -0800190 if (mUseQuickControls) {
191 mButtonWidth = 0;
192 } else {
Michael Kolb5a72f182011-01-13 20:35:06 -0800193 mButtonWidth = mNewTab.getMeasuredWidth() - mAddTabOverlap;
Michael Kolbb4cafc52011-01-12 16:55:04 -0800194 if (w-sw < mButtonWidth) {
195 sw = w - mButtonWidth;
196 }
Michael Kolbebba8b42010-09-30 12:57:59 -0700197 }
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800198 mTabs.layout(pl, pt, pl + sw, bottom - top);
199 // adjust for overlap
Michael Kolbb4cafc52011-01-12 16:55:04 -0800200 if (!mUseQuickControls) {
Michael Kolb5a72f182011-01-13 20:35:06 -0800201 mNewTab.layout(pl + sw - mAddTabOverlap, pt,
202 pl + sw + mButtonWidth - mAddTabOverlap, bottom - top);
Michael Kolbb4cafc52011-01-12 16:55:04 -0800203 }
Michael Kolba2b2ba82010-08-04 17:54:03 -0700204 }
205
206 public void onClick(View view) {
Michael Kolbebba8b42010-09-30 12:57:59 -0700207 if (mNewTab == view) {
Michael Kolb8233fac2010-10-26 16:08:53 -0700208 mUiController.openTabToHomePage();
Michael Kolbebba8b42010-09-30 12:57:59 -0700209 } else if (mTabs.getSelectedTab() == view) {
Michael Kolb467af0a2011-01-11 13:09:49 -0800210 if (mUseQuickControls) {
Michael Kolb7cdc4902011-02-03 17:54:40 -0800211 if (mUi.isTitleBarShowing() && !isLoading()) {
212 mUi.stopEditingUrl();
213 mUi.hideTitleBar();
Michael Kolb467af0a2011-01-11 13:09:49 -0800214 } else {
215 mUi.stopWebViewScrolling();
Michael Kolb46f987e2011-04-05 10:39:10 -0700216 mUi.editUrl(false);
Michael Kolb467af0a2011-01-11 13:09:49 -0800217 }
Michael Kolb7cdc4902011-02-03 17:54:40 -0800218 } else if (mUi.isTitleBarShowing() && !isLoading()) {
219 mUi.stopEditingUrl();
220 mUi.hideTitleBar();
Michael Kolbed217742010-08-10 17:52:34 -0700221 } else {
222 showUrlBar();
223 }
Michael Kolbc831b632011-05-11 09:30:34 -0700224 } else if (view instanceof TabView) {
225 final Tab tab = ((TabView) view).mTab;
Michael Kolbebba8b42010-09-30 12:57:59 -0700226 int ix = mTabs.getChildIndex(view);
227 if (ix >= 0) {
228 mTabs.setSelectedTab(ix);
Michael Kolbc831b632011-05-11 09:30:34 -0700229 mUiController.switchToTab(tab);
Michael Kolbebba8b42010-09-30 12:57:59 -0700230 }
Michael Kolba2b2ba82010-08-04 17:54:03 -0700231 }
232 }
233
Michael Kolbed217742010-08-10 17:52:34 -0700234 private void showUrlBar() {
Michael Kolb8233fac2010-10-26 16:08:53 -0700235 mUi.stopWebViewScrolling();
Michael Kolb7cdc4902011-02-03 17:54:40 -0800236 mUi.showTitleBar();
Michael Kolba2b2ba82010-08-04 17:54:03 -0700237 }
238
Michael Kolb376b5412010-12-15 11:52:57 -0800239 void showTitleBarIndicator(boolean show) {
Michael Kolba0e2a752010-12-12 15:27:56 -0800240 Tab tab = mTabControl.getCurrentTab();
John Reck541f55a2011-06-07 16:34:43 -0700241 if (tab != null && !tab.isSnapshot()) {
Michael Kolb94827b62011-01-08 14:23:45 -0800242 TabView tv = mTabMap.get(tab);
243 if (tv != null) {
244 tv.showIndicator(show);
Michael Kolba0e2a752010-12-12 15:27:56 -0800245 }
246 }
Michael Kolbed217742010-08-10 17:52:34 -0700247 }
248
Michael Kolb7dad8f02011-01-21 11:06:18 -0800249 boolean showsTitleBarIndicator() {
250 Tab tab = mTabControl.getCurrentTab();
251 if (tab != null) {
252 TabView tv = mTabMap.get(tab);
253 if (tv != null) {
254 return tv.showsIndicator();
255 }
256 }
257 return false;
258 }
259
Michael Kolbed217742010-08-10 17:52:34 -0700260 // callback after fake titlebar is shown
261 void onShowTitleBar() {
Michael Kolba0e2a752010-12-12 15:27:56 -0800262 showTitleBarIndicator(false);
Michael Kolbed217742010-08-10 17:52:34 -0700263 }
264
265 // callback after fake titlebar is hidden
Michael Kolba2b2ba82010-08-04 17:54:03 -0700266 void onHideTitleBar() {
Michael Kolb8233fac2010-10-26 16:08:53 -0700267 Tab tab = mTabControl.getCurrentTab();
Michael Kolb7cdc4902011-02-03 17:54:40 -0800268 WebView w = tab.getWebView();
269 if (w != null) {
270 showTitleBarIndicator(w.getVisibleTitleHeight() == 0);
271 }
Michael Kolba2b2ba82010-08-04 17:54:03 -0700272 }
273
Michael Kolbed217742010-08-10 17:52:34 -0700274 // webview scroll listener
275
276 @Override
Michael Kolb5ee018e2011-02-18 15:47:21 -0800277 public void onScroll(int visibleTitleHeight, boolean userInitiated) {
Michael Kolb376b5412010-12-15 11:52:57 -0800278 if (mUseQuickControls) return;
Michael Kolb8233fac2010-10-26 16:08:53 -0700279 // isLoading is using the current tab, which initially might not be set yet
John Reckdcf911c2010-12-22 16:32:31 -0800280 if (mTabControl.getCurrentTab() != null
281 && !isLoading()) {
282 if (visibleTitleHeight == 0) {
Michael Kolb5ee018e2011-02-18 15:47:21 -0800283 if (!showsTitleBarIndicator()
284 && (!mUi.isEditingUrl() || userInitiated)) {
Michael Kolb7cdc4902011-02-03 17:54:40 -0800285 mUi.hideTitleBar();
Michael Kolb7dad8f02011-01-21 11:06:18 -0800286 showTitleBarIndicator(true);
287 }
John Reckdcf911c2010-12-22 16:32:31 -0800288 } else {
Michael Kolb7dad8f02011-01-21 11:06:18 -0800289 if (showsTitleBarIndicator()) {
290 showTitleBarIndicator(false);
291 }
Michael Kolbed217742010-08-10 17:52:34 -0700292 }
293 }
294 }
Michael Kolba2b2ba82010-08-04 17:54:03 -0700295
296 @Override
297 public void createContextMenu(ContextMenu menu) {
Michael Kolb8233fac2010-10-26 16:08:53 -0700298 MenuInflater inflater = mActivity.getMenuInflater();
Michael Kolba2b2ba82010-08-04 17:54:03 -0700299 inflater.inflate(R.menu.title_context, menu);
Michael Kolb8233fac2010-10-26 16:08:53 -0700300 mActivity.onCreateContextMenu(menu, this, null);
Michael Kolba2b2ba82010-08-04 17:54:03 -0700301 }
302
Michael Kolb94827b62011-01-08 14:23:45 -0800303 private TabView buildTabView(Tab tab) {
304 TabView tabview = new TabView(mActivity, tab);
305 mTabMap.put(tab, tabview);
306 tabview.setOnClickListener(this);
Michael Kolb94827b62011-01-08 14:23:45 -0800307 return tabview;
Michael Kolba2b2ba82010-08-04 17:54:03 -0700308 }
309
Romain Guyc8373212011-01-07 19:15:16 -0800310 private static Bitmap getDrawableAsBitmap(Drawable drawable, int width, int height) {
311 Bitmap b = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
312 Canvas c = new Canvas(b);
313 drawable.setBounds(0, 0, width, height);
314 drawable.draw(c);
315 return b;
Michael Kolbb4cafc52011-01-12 16:55:04 -0800316 }
317
Michael Kolba2b2ba82010-08-04 17:54:03 -0700318 /**
319 * View used in the tab bar
320 */
321 class TabView extends LinearLayout implements OnClickListener {
322
Michael Kolb94827b62011-01-08 14:23:45 -0800323 Tab mTab;
Michael Kolba2b2ba82010-08-04 17:54:03 -0700324 View mTabContent;
325 TextView mTitle;
Michael Kolba0e2a752010-12-12 15:27:56 -0800326 View mIndicator;
Michael Kolbae62fd42010-08-18 16:33:28 -0700327 View mIncognito;
John Reck541f55a2011-06-07 16:34:43 -0700328 View mSnapshot;
Michael Kolba2b2ba82010-08-04 17:54:03 -0700329 ImageView mIconView;
330 ImageView mLock;
331 ImageView mClose;
332 boolean mSelected;
333 boolean mInLoad;
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800334 Path mPath;
Michael Kolbeb7001c2011-02-16 16:07:33 -0800335 Path mFocusPath;
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800336 int[] mWindowPos;
Michael Kolba2b2ba82010-08-04 17:54:03 -0700337
338 /**
339 * @param context
340 */
Michael Kolb94827b62011-01-08 14:23:45 -0800341 public TabView(Context context, Tab tab) {
Michael Kolba2b2ba82010-08-04 17:54:03 -0700342 super(context);
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800343 setWillNotDraw(false);
344 mPath = new Path();
Michael Kolbeb7001c2011-02-16 16:07:33 -0800345 mFocusPath = new Path();
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800346 mWindowPos = new int[2];
Michael Kolb94827b62011-01-08 14:23:45 -0800347 mTab = tab;
Michael Kolbed217742010-08-10 17:52:34 -0700348 setGravity(Gravity.CENTER_VERTICAL);
349 setOrientation(LinearLayout.HORIZONTAL);
Michael Kolb49f15832011-01-25 15:02:27 -0800350 setPadding(mTabOverlap, 0, mTabSliceWidth, 0);
Bjorn Bringertb1402a52010-10-12 10:53:12 +0100351 LayoutInflater inflater = LayoutInflater.from(getContext());
Michael Kolbed217742010-08-10 17:52:34 -0700352 mTabContent = inflater.inflate(R.layout.tab_title, this, true);
Michael Kolba2b2ba82010-08-04 17:54:03 -0700353 mTitle = (TextView) mTabContent.findViewById(R.id.title);
354 mIconView = (ImageView) mTabContent.findViewById(R.id.favicon);
355 mLock = (ImageView) mTabContent.findViewById(R.id.lock);
356 mClose = (ImageView) mTabContent.findViewById(R.id.close);
357 mClose.setOnClickListener(this);
Michael Kolbae62fd42010-08-18 16:33:28 -0700358 mIncognito = mTabContent.findViewById(R.id.incognito);
John Reck541f55a2011-06-07 16:34:43 -0700359 mSnapshot = mTabContent.findViewById(R.id.snapshot);
Michael Kolba0e2a752010-12-12 15:27:56 -0800360 mIndicator = mTabContent.findViewById(R.id.chevron);
Michael Kolba2b2ba82010-08-04 17:54:03 -0700361 mSelected = false;
362 mInLoad = false;
363 // update the status
Michael Kolb94827b62011-01-08 14:23:45 -0800364 updateFromTab();
Michael Kolba2b2ba82010-08-04 17:54:03 -0700365 }
366
Michael Kolba0e2a752010-12-12 15:27:56 -0800367 void showIndicator(boolean show) {
Michael Kolb6a85e2a2010-12-13 18:12:46 -0800368 if (mSelected) {
369 mIndicator.setVisibility(show ? View.VISIBLE : View.GONE);
Michael Kolb49f15832011-01-25 15:02:27 -0800370 LayoutParams lp = (LinearLayout.LayoutParams) getLayoutParams();
371 if (show) {
372 lp.width = mTabWidthSelected + mIndicator.getWidth();
373 } else {
374 lp.width = mTabWidthSelected;
375 }
376 lp.height = LayoutParams.MATCH_PARENT;
377 setLayoutParams(lp);
Michael Kolb6a85e2a2010-12-13 18:12:46 -0800378 } else {
379 mIndicator.setVisibility(View.GONE);
380 }
Michael Kolba0e2a752010-12-12 15:27:56 -0800381 }
382
Michael Kolb7dad8f02011-01-21 11:06:18 -0800383 boolean showsIndicator() {
384 return (mIndicator.getVisibility() == View.VISIBLE);
385 }
386
Michael Kolba2b2ba82010-08-04 17:54:03 -0700387 @Override
388 public void onClick(View v) {
389 if (v == mClose) {
390 closeTab();
391 }
392 }
393
Michael Kolb94827b62011-01-08 14:23:45 -0800394 private void updateFromTab() {
395 String displayTitle = mTab.getTitle();
John Reck30c714c2010-12-16 17:30:34 -0800396 if (displayTitle == null) {
Michael Kolb94827b62011-01-08 14:23:45 -0800397 displayTitle = mTab.getUrl();
Michael Kolba2b2ba82010-08-04 17:54:03 -0700398 }
John Reck30c714c2010-12-16 17:30:34 -0800399 setDisplayTitle(displayTitle);
Michael Kolb94827b62011-01-08 14:23:45 -0800400 setProgress(mTab.getLoadProgress());
401 if (mTab.getFavicon() != null) {
402 setFavicon(renderFavicon(mTab.getFavicon()));
Michael Kolba2b2ba82010-08-04 17:54:03 -0700403 }
John Reck541f55a2011-06-07 16:34:43 -0700404 updateTabIcons();
405 }
406
407 private void updateTabIcons() {
408 mIncognito.setVisibility(
409 mTab.isPrivateBrowsingEnabled() ?
410 View.VISIBLE : View.GONE);
411 mSnapshot.setVisibility(mTab.isSnapshot()
412 ? View.VISIBLE : View.GONE);
Michael Kolba2b2ba82010-08-04 17:54:03 -0700413 }
414
415 @Override
Michael Kolbb7b115e2010-09-25 16:59:37 -0700416 public void setActivated(boolean selected) {
Michael Kolba2b2ba82010-08-04 17:54:03 -0700417 mSelected = selected;
418 mClose.setVisibility(mSelected ? View.VISIBLE : View.GONE);
Michael Kolb6a85e2a2010-12-13 18:12:46 -0800419 mIndicator.setVisibility(View.GONE);
Michael Kolb8233fac2010-10-26 16:08:53 -0700420 mTitle.setTextAppearance(mActivity, mSelected ?
Michael Kolbc7485ae2010-09-03 10:10:58 -0700421 R.style.TabTitleSelected : R.style.TabTitleUnselected);
422 setHorizontalFadingEdgeEnabled(!mSelected);
Michael Kolbb7b115e2010-09-25 16:59:37 -0700423 super.setActivated(selected);
Michael Kolb678afc82011-05-17 14:52:41 -0700424 updateLayoutParams();
Michael Kolbdc2ee1b2011-02-14 14:34:40 -0800425 setFocusable(!selected);
426 postInvalidate();
Michael Kolba2b2ba82010-08-04 17:54:03 -0700427 }
428
Michael Kolb678afc82011-05-17 14:52:41 -0700429 public void updateLayoutParams() {
430 LayoutParams lp = (LinearLayout.LayoutParams) getLayoutParams();
431 lp.width = mSelected ? mTabWidthSelected : mTabWidthUnselected;
432 lp.height = LayoutParams.MATCH_PARENT;
433 setLayoutParams(lp);
434 }
435
Michael Kolba2b2ba82010-08-04 17:54:03 -0700436 void setDisplayTitle(String title) {
437 mTitle.setText(title);
438 }
439
440 void setFavicon(Drawable d) {
441 mIconView.setImageDrawable(d);
442 }
443
444 void setLock(Drawable d) {
445 if (null == d) {
446 mLock.setVisibility(View.GONE);
447 } else {
448 mLock.setImageDrawable(d);
449 mLock.setVisibility(View.VISIBLE);
450 }
451 }
452
Michael Kolba2b2ba82010-08-04 17:54:03 -0700453 void setProgress(int newProgress) {
454 if (newProgress >= PROGRESS_MAX) {
455 mInLoad = false;
456 } else {
457 if (!mInLoad && getWindowToken() != null) {
458 mInLoad = true;
459 }
460 }
461 }
462
463 private void closeTab() {
Michael Kolb94827b62011-01-08 14:23:45 -0800464 if (mTab == mTabControl.getCurrentTab()) {
Michael Kolb8233fac2010-10-26 16:08:53 -0700465 mUiController.closeCurrentTab();
Michael Kolba2b2ba82010-08-04 17:54:03 -0700466 } else {
Michael Kolb94827b62011-01-08 14:23:45 -0800467 mUiController.closeTab(mTab);
Michael Kolba2b2ba82010-08-04 17:54:03 -0700468 }
469 }
470
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800471 @Override
472 protected void onLayout(boolean changed, int l, int t, int r, int b) {
473 super.onLayout(changed, l, t, r, b);
474 setTabPath(mPath, 0, 0, r - l, b - t);
Michael Kolbeb7001c2011-02-16 16:07:33 -0800475 setFocusPath(mFocusPath, 0, 0, r - l, b - t);
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800476 }
Michael Kolbb4cafc52011-01-12 16:55:04 -0800477
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800478 @Override
479 protected void dispatchDraw(Canvas canvas) {
Romain Guyc8373212011-01-07 19:15:16 -0800480 if (mCurrentTextureWidth != mUi.getContentWidth() ||
481 mCurrentTextureHeight != getHeight()) {
482 mCurrentTextureWidth = mUi.getContentWidth();
483 mCurrentTextureHeight = getHeight();
484
485 if (mCurrentTextureWidth > 0 && mCurrentTextureHeight > 0) {
486 Bitmap activeTexture = getDrawableAsBitmap(mActiveDrawable,
487 mCurrentTextureWidth, mCurrentTextureHeight);
488 Bitmap inactiveTexture = getDrawableAsBitmap(mInactiveDrawable,
489 mCurrentTextureWidth, mCurrentTextureHeight);
490
491 mActiveShader = new BitmapShader(activeTexture,
492 Shader.TileMode.CLAMP, Shader.TileMode.CLAMP);
493 mActiveShaderPaint.setShader(mActiveShader);
Michael Kolbb4cafc52011-01-12 16:55:04 -0800494
Romain Guyc8373212011-01-07 19:15:16 -0800495 mInactiveShader = new BitmapShader(inactiveTexture,
496 Shader.TileMode.CLAMP, Shader.TileMode.CLAMP);
497 mInactiveShaderPaint.setShader(mInactiveShader);
498 }
499 }
Michael Kolb05902aa2011-02-22 17:43:38 -0800500 // add some monkey protection
501 if ((mActiveShader != null) && (mInactiveShader != null)) {
502 int state = canvas.save();
503 getLocationInWindow(mWindowPos);
504 Paint paint = mSelected ? mActiveShaderPaint : mInactiveShaderPaint;
505 drawClipped(canvas, paint, mPath, mWindowPos[0]);
506 canvas.restoreToCount(state);
507 }
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800508 super.dispatchDraw(canvas);
509 }
510
Romain Guyc8373212011-01-07 19:15:16 -0800511 private void drawClipped(Canvas canvas, Paint paint, Path clipPath, int left) {
512 // TODO: We should change the matrix/shader only when needed
513 final Matrix matrix = mSelected ? mActiveMatrix : mInactiveMatrix;
514 matrix.setTranslate(-left, 0.0f);
515 (mSelected ? mActiveShader : mInactiveShader).setLocalMatrix(matrix);
516 canvas.drawPath(clipPath, paint);
Michael Kolbdc2ee1b2011-02-14 14:34:40 -0800517 if (isFocused()) {
Michael Kolbeb7001c2011-02-16 16:07:33 -0800518 canvas.drawPath(mFocusPath, mFocusPaint);
Michael Kolbdc2ee1b2011-02-14 14:34:40 -0800519 }
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800520 }
521
522 private void setTabPath(Path path, int l, int t, int r, int b) {
523 path.reset();
524 path.moveTo(l, b);
525 path.lineTo(l, t);
526 path.lineTo(r - mTabSliceWidth, t);
527 path.lineTo(r, b);
528 path.close();
529 }
530
Michael Kolbeb7001c2011-02-16 16:07:33 -0800531 private void setFocusPath(Path path, int l, int t, int r, int b) {
532 path.reset();
533 path.moveTo(l, b);
534 path.lineTo(l, t);
535 path.lineTo(r - mTabSliceWidth, t);
536 path.lineTo(r, b);
537 }
538
Michael Kolba2b2ba82010-08-04 17:54:03 -0700539 }
540
Michael Kolb49f15832011-01-25 15:02:27 -0800541 static Drawable createFaviconBackground(Context context) {
542 PaintDrawable faviconBackground = new PaintDrawable();
543 Resources res = context.getResources();
544 faviconBackground.getPaint().setColor(context.getResources()
545 .getColor(R.color.tabFaviconBackground));
546 faviconBackground.setCornerRadius(
547 res.getDimension(R.dimen.tab_favicon_corner_radius));
548 return faviconBackground;
549 }
550
Michael Kolb94827b62011-01-08 14:23:45 -0800551 private Drawable renderFavicon(Bitmap icon) {
Michael Kolb49f15832011-01-25 15:02:27 -0800552 Drawable[] array = new Drawable[2];
553 array[0] = createFaviconBackground(getContext());
Michael Kolb94827b62011-01-08 14:23:45 -0800554 if (icon == null) {
Michael Kolb49f15832011-01-25 15:02:27 -0800555 array[1] = mGenericFavicon;
Michael Kolb94827b62011-01-08 14:23:45 -0800556 } else {
Michael Kolb49f15832011-01-25 15:02:27 -0800557 array[1] = new BitmapDrawable(icon);
Michael Kolba2b2ba82010-08-04 17:54:03 -0700558 }
Michael Kolb94827b62011-01-08 14:23:45 -0800559 LayerDrawable d = new LayerDrawable(array);
Michael Kolb49f15832011-01-25 15:02:27 -0800560 d.setLayerInset(1, 2, 2, 2, 2);
Michael Kolb94827b62011-01-08 14:23:45 -0800561 return d;
Michael Kolba2b2ba82010-08-04 17:54:03 -0700562 }
563
Michael Kolb2d59c322011-01-25 13:18:55 -0800564 private void animateTabOut(final Tab tab, final TabView tv) {
565 ObjectAnimator scalex = ObjectAnimator.ofFloat(tv, "scaleX", 1.0f, 0.0f);
566 ObjectAnimator scaley = ObjectAnimator.ofFloat(tv, "scaleY", 1.0f, 0.0f);
Michael Kolb49f15832011-01-25 15:02:27 -0800567 ObjectAnimator alpha = ObjectAnimator.ofFloat(tv, "alpha", 1.0f, 0.0f);
Michael Kolb2d59c322011-01-25 13:18:55 -0800568 AnimatorSet animator = new AnimatorSet();
Michael Kolb49f15832011-01-25 15:02:27 -0800569 animator.playTogether(scalex, scaley, alpha);
Michael Kolb2d59c322011-01-25 13:18:55 -0800570 animator.setDuration(150);
571 animator.addListener(new AnimatorListener() {
572
573 @Override
574 public void onAnimationCancel(Animator animation) {
575 }
576
577 @Override
578 public void onAnimationEnd(Animator animation) {
579 mTabs.removeTab(tv);
580 mTabMap.remove(tab);
Michael Kolb8814d732011-01-26 11:22:30 -0800581 mUi.onRemoveTabCompleted(tab);
Michael Kolb2d59c322011-01-25 13:18:55 -0800582 }
583
584 @Override
585 public void onAnimationRepeat(Animator animation) {
586 }
587
588 @Override
589 public void onAnimationStart(Animator animation) {
590 }
591
592 });
593 animator.start();
594 }
595
596 private void animateTabIn(final Tab tab, final TabView tv) {
Michael Kolb49f15832011-01-25 15:02:27 -0800597 ObjectAnimator scalex = ObjectAnimator.ofFloat(tv, "scaleX", 0.0f, 1.0f);
Michael Kolb2d59c322011-01-25 13:18:55 -0800598 scalex.setDuration(150);
599 scalex.addListener(new AnimatorListener() {
600
601 @Override
602 public void onAnimationCancel(Animator animation) {
603 }
604
605 @Override
606 public void onAnimationEnd(Animator animation) {
Michael Kolb8814d732011-01-26 11:22:30 -0800607 mUi.onAddTabCompleted(tab);
Michael Kolb2d59c322011-01-25 13:18:55 -0800608 }
609
610 @Override
611 public void onAnimationRepeat(Animator animation) {
612 }
613
614 @Override
615 public void onAnimationStart(Animator animation) {
616 mTabs.addTab(tv);
617 }
618
619 });
620 scalex.start();
621 }
622
Michael Kolba2b2ba82010-08-04 17:54:03 -0700623 // TabChangeListener implementation
624
Michael Kolb8233fac2010-10-26 16:08:53 -0700625 public void onSetActiveTab(Tab tab) {
Michael Kolbc831b632011-05-11 09:30:34 -0700626 mTabs.setSelectedTab(mTabControl.getTabPosition(tab));
Michael Kolb94827b62011-01-08 14:23:45 -0800627 TabView tv = mTabMap.get(tab);
628 if (tv != null) {
629 tv.setProgress(tv.mTab.getLoadProgress());
Michael Kolba2b2ba82010-08-04 17:54:03 -0700630 // update the scroll state
631 WebView webview = tab.getWebView();
Michael Kolb6a85e2a2010-12-13 18:12:46 -0800632 if (webview != null) {
633 int h = webview.getVisibleTitleHeight();
Michael Kolb5ee018e2011-02-18 15:47:21 -0800634 onScroll(h, true);
Michael Kolb6a85e2a2010-12-13 18:12:46 -0800635 }
Michael Kolba2b2ba82010-08-04 17:54:03 -0700636 }
637 }
638
Michael Kolba2b2ba82010-08-04 17:54:03 -0700639 public void onFavicon(Tab tab, Bitmap favicon) {
Michael Kolb94827b62011-01-08 14:23:45 -0800640 TabView tv = mTabMap.get(tab);
641 if (tv != null) {
642 tv.setFavicon(renderFavicon(favicon));
Michael Kolba2b2ba82010-08-04 17:54:03 -0700643 }
644 }
645
Michael Kolba2b2ba82010-08-04 17:54:03 -0700646 public void onNewTab(Tab tab) {
Michael Kolb94827b62011-01-08 14:23:45 -0800647 TabView tv = buildTabView(tab);
Michael Kolb2d59c322011-01-25 13:18:55 -0800648 animateTabIn(tab, tv);
Michael Kolba2b2ba82010-08-04 17:54:03 -0700649 }
650
Michael Kolba2b2ba82010-08-04 17:54:03 -0700651 public void onProgress(Tab tab, int progress) {
Michael Kolb94827b62011-01-08 14:23:45 -0800652 TabView tv = mTabMap.get(tab);
653 if (tv != null) {
654 tv.setProgress(progress);
Michael Kolba2b2ba82010-08-04 17:54:03 -0700655 }
656 }
657
Michael Kolba2b2ba82010-08-04 17:54:03 -0700658 public void onRemoveTab(Tab tab) {
Michael Kolb94827b62011-01-08 14:23:45 -0800659 TabView tv = mTabMap.get(tab);
660 if (tv != null) {
Michael Kolb2d59c322011-01-25 13:18:55 -0800661 animateTabOut(tab, tv);
662 } else {
663 mTabMap.remove(tab);
Michael Kolba2b2ba82010-08-04 17:54:03 -0700664 }
Michael Kolba2b2ba82010-08-04 17:54:03 -0700665 }
666
Michael Kolba2b2ba82010-08-04 17:54:03 -0700667 public void onUrlAndTitle(Tab tab, String url, String title) {
Michael Kolb94827b62011-01-08 14:23:45 -0800668 TabView tv = mTabMap.get(tab);
669 if (tv != null) {
670 if (title != null) {
671 tv.setDisplayTitle(title);
672 } else if (url != null) {
673 tv.setDisplayTitle(UrlUtils.stripUrl(url));
674 }
John Reck541f55a2011-06-07 16:34:43 -0700675 tv.updateTabIcons();
Michael Kolba2b2ba82010-08-04 17:54:03 -0700676 }
677 }
678
Michael Kolba2b2ba82010-08-04 17:54:03 -0700679 private boolean isLoading() {
Michael Kolb94827b62011-01-08 14:23:45 -0800680 TabView tv = mTabMap.get(mTabControl.getCurrentTab());
681 if (tv != null) {
682 return tv.mInLoad;
Michael Kolb8233fac2010-10-26 16:08:53 -0700683 } else {
684 return false;
685 }
Michael Kolba2b2ba82010-08-04 17:54:03 -0700686 }
687
Michael Kolba2b2ba82010-08-04 17:54:03 -0700688}