blob: 1ea6071681881dfd83104a710840043aa1090692 [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>();
Michael Kolb8233fac2010-10-26 16:08:53 -0700114 LayoutInflater factory = LayoutInflater.from(activity);
Michael Kolba2b2ba82010-08-04 17:54:03 -0700115 factory.inflate(R.layout.tab_bar, this);
Michael Kolbf558f0d2011-01-13 19:24:18 -0800116 setPadding(0, (int) res.getDimension(R.dimen.tab_padding_top), 0, 0);
Michael Kolba2b2ba82010-08-04 17:54:03 -0700117 mTabs = (TabScrollView) findViewById(R.id.tabs);
Michael Kolbebba8b42010-09-30 12:57:59 -0700118 mNewTab = (ImageButton) findViewById(R.id.newtab);
119 mNewTab.setOnClickListener(this);
John Reckaff60fb2010-10-25 13:47:58 -0700120 mGenericFavicon = res.getDrawable(R.drawable.app_web_browser_sm);
Michael Kolba2b2ba82010-08-04 17:54:03 -0700121
Michael Kolb1bf23132010-11-19 12:55:12 -0800122 updateTabs(mUiController.getTabs());
Michael Kolbebba8b42010-09-30 12:57:59 -0700123 mButtonWidth = -1;
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800124 // tab dimensions
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800125 mTabOverlap = (int) res.getDimension(R.dimen.tab_overlap);
Michael Kolb5a72f182011-01-13 20:35:06 -0800126 mAddTabOverlap = (int) res.getDimension(R.dimen.tab_addoverlap);
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800127 mTabSliceWidth = (int) res.getDimension(R.dimen.tab_slice);
Romain Guyc8373212011-01-07 19:15:16 -0800128
129 mActiveShaderPaint.setStyle(Paint.Style.FILL);
130 mActiveShaderPaint.setAntiAlias(true);
131
132 mInactiveShaderPaint.setStyle(Paint.Style.FILL);
133 mInactiveShaderPaint.setAntiAlias(true);
Michael Kolbb4cafc52011-01-12 16:55:04 -0800134
Michael Kolbdc2ee1b2011-02-14 14:34:40 -0800135 mFocusPaint.setStyle(Paint.Style.STROKE);
Michael Kolbeb7001c2011-02-16 16:07:33 -0800136 mFocusPaint.setStrokeWidth(res.getDimension(R.dimen.tab_focus_stroke));
Michael Kolbdc2ee1b2011-02-14 14:34:40 -0800137 mFocusPaint.setAntiAlias(true);
138 mFocusPaint.setColor(res.getColor(R.color.tabFocusHighlight));
Michael Kolbebba8b42010-09-30 12:57:59 -0700139 }
140
Michael Kolb678afc82011-05-17 14:52:41 -0700141 @Override
142 public void onConfigurationChanged(Configuration config) {
143 super.onConfigurationChanged(config);
144 Resources res = mActivity.getResources();
145 mTabWidthSelected = (int) res.getDimension(R.dimen.tab_width_selected);
146 mTabWidthUnselected = (int) res.getDimension(R.dimen.tab_width_unselected);
147 // force update of tab bar
148 mTabs.updateLayout();
149 }
150
Michael Kolb376b5412010-12-15 11:52:57 -0800151 void setUseQuickControls(boolean useQuickControls) {
152 mUseQuickControls = useQuickControls;
Michael Kolb467af0a2011-01-11 13:09:49 -0800153 mNewTab.setVisibility(mUseQuickControls ? View.GONE
154 : View.VISIBLE);
Michael Kolb376b5412010-12-15 11:52:57 -0800155 }
156
157 int getTabCount() {
158 return mTabMap.size();
159 }
160
Michael Kolb1bf23132010-11-19 12:55:12 -0800161 void updateTabs(List<Tab> tabs) {
162 mTabs.clearTabs();
163 mTabMap.clear();
164 for (Tab tab : tabs) {
Michael Kolb94827b62011-01-08 14:23:45 -0800165 TabView tv = buildTabView(tab);
Michael Kolb2d59c322011-01-25 13:18:55 -0800166 mTabs.addTab(tv);
Michael Kolb1bf23132010-11-19 12:55:12 -0800167 }
Michael Kolbc831b632011-05-11 09:30:34 -0700168 mTabs.setSelectedTab(mTabControl.getCurrentPosition());
Michael Kolb1bf23132010-11-19 12:55:12 -0800169 }
170
Michael Kolbebba8b42010-09-30 12:57:59 -0700171 @Override
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800172 protected void onMeasure(int hspec, int vspec) {
173 super.onMeasure(hspec, vspec);
174 int w = getMeasuredWidth();
175 // adjust for new tab overlap
Michael Kolb467af0a2011-01-11 13:09:49 -0800176 if (!mUseQuickControls) {
Michael Kolb5a72f182011-01-13 20:35:06 -0800177 w -= mAddTabOverlap;
Michael Kolb467af0a2011-01-11 13:09:49 -0800178 }
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800179 setMeasuredDimension(w, getMeasuredHeight());
180 }
181
182 @Override
Michael Kolbebba8b42010-09-30 12:57:59 -0700183 protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800184 // use paddingLeft and paddingTop
185 int pl = getPaddingLeft();
186 int pt = getPaddingTop();
Michael Kolbebba8b42010-09-30 12:57:59 -0700187 int sw = mTabs.getMeasuredWidth();
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800188 int w = right - left - pl;
Michael Kolbb4cafc52011-01-12 16:55:04 -0800189 if (mUseQuickControls) {
190 mButtonWidth = 0;
191 } else {
Michael Kolb5a72f182011-01-13 20:35:06 -0800192 mButtonWidth = mNewTab.getMeasuredWidth() - mAddTabOverlap;
Michael Kolbb4cafc52011-01-12 16:55:04 -0800193 if (w-sw < mButtonWidth) {
194 sw = w - mButtonWidth;
195 }
Michael Kolbebba8b42010-09-30 12:57:59 -0700196 }
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800197 mTabs.layout(pl, pt, pl + sw, bottom - top);
198 // adjust for overlap
Michael Kolbb4cafc52011-01-12 16:55:04 -0800199 if (!mUseQuickControls) {
Michael Kolb5a72f182011-01-13 20:35:06 -0800200 mNewTab.layout(pl + sw - mAddTabOverlap, pt,
201 pl + sw + mButtonWidth - mAddTabOverlap, bottom - top);
Michael Kolbb4cafc52011-01-12 16:55:04 -0800202 }
Michael Kolba2b2ba82010-08-04 17:54:03 -0700203 }
204
205 public void onClick(View view) {
Michael Kolbebba8b42010-09-30 12:57:59 -0700206 if (mNewTab == view) {
Michael Kolb8233fac2010-10-26 16:08:53 -0700207 mUiController.openTabToHomePage();
Michael Kolbebba8b42010-09-30 12:57:59 -0700208 } else if (mTabs.getSelectedTab() == view) {
Michael Kolb467af0a2011-01-11 13:09:49 -0800209 if (mUseQuickControls) {
Michael Kolb7cdc4902011-02-03 17:54:40 -0800210 if (mUi.isTitleBarShowing() && !isLoading()) {
211 mUi.stopEditingUrl();
212 mUi.hideTitleBar();
Michael Kolb467af0a2011-01-11 13:09:49 -0800213 } else {
214 mUi.stopWebViewScrolling();
Michael Kolb46f987e2011-04-05 10:39:10 -0700215 mUi.editUrl(false);
Michael Kolb467af0a2011-01-11 13:09:49 -0800216 }
Michael Kolb7cdc4902011-02-03 17:54:40 -0800217 } else if (mUi.isTitleBarShowing() && !isLoading()) {
218 mUi.stopEditingUrl();
219 mUi.hideTitleBar();
Michael Kolbed217742010-08-10 17:52:34 -0700220 } else {
221 showUrlBar();
222 }
Michael Kolbc831b632011-05-11 09:30:34 -0700223 } else if (view instanceof TabView) {
224 final Tab tab = ((TabView) view).mTab;
Michael Kolbebba8b42010-09-30 12:57:59 -0700225 int ix = mTabs.getChildIndex(view);
226 if (ix >= 0) {
227 mTabs.setSelectedTab(ix);
Michael Kolbc831b632011-05-11 09:30:34 -0700228 mUiController.switchToTab(tab);
Michael Kolbebba8b42010-09-30 12:57:59 -0700229 }
Michael Kolba2b2ba82010-08-04 17:54:03 -0700230 }
231 }
232
Michael Kolbed217742010-08-10 17:52:34 -0700233 private void showUrlBar() {
Michael Kolb8233fac2010-10-26 16:08:53 -0700234 mUi.stopWebViewScrolling();
Michael Kolb7cdc4902011-02-03 17:54:40 -0800235 mUi.showTitleBar();
Michael Kolba2b2ba82010-08-04 17:54:03 -0700236 }
237
Michael Kolb376b5412010-12-15 11:52:57 -0800238 void showTitleBarIndicator(boolean show) {
Michael Kolba0e2a752010-12-12 15:27:56 -0800239 Tab tab = mTabControl.getCurrentTab();
John Reck541f55a2011-06-07 16:34:43 -0700240 if (tab != null && !tab.isSnapshot()) {
Michael Kolb94827b62011-01-08 14:23:45 -0800241 TabView tv = mTabMap.get(tab);
242 if (tv != null) {
243 tv.showIndicator(show);
Michael Kolba0e2a752010-12-12 15:27:56 -0800244 }
245 }
Michael Kolbed217742010-08-10 17:52:34 -0700246 }
247
Michael Kolb7dad8f02011-01-21 11:06:18 -0800248 boolean showsTitleBarIndicator() {
249 Tab tab = mTabControl.getCurrentTab();
250 if (tab != null) {
251 TabView tv = mTabMap.get(tab);
252 if (tv != null) {
253 return tv.showsIndicator();
254 }
255 }
256 return false;
257 }
258
Michael Kolbed217742010-08-10 17:52:34 -0700259 // callback after fake titlebar is shown
260 void onShowTitleBar() {
Michael Kolba0e2a752010-12-12 15:27:56 -0800261 showTitleBarIndicator(false);
Michael Kolbed217742010-08-10 17:52:34 -0700262 }
263
264 // callback after fake titlebar is hidden
Michael Kolba2b2ba82010-08-04 17:54:03 -0700265 void onHideTitleBar() {
Michael Kolb8233fac2010-10-26 16:08:53 -0700266 Tab tab = mTabControl.getCurrentTab();
Michael Kolb7cdc4902011-02-03 17:54:40 -0800267 WebView w = tab.getWebView();
268 if (w != null) {
269 showTitleBarIndicator(w.getVisibleTitleHeight() == 0);
270 }
Michael Kolba2b2ba82010-08-04 17:54:03 -0700271 }
272
Michael Kolbed217742010-08-10 17:52:34 -0700273 // webview scroll listener
274
275 @Override
Michael Kolb5ee018e2011-02-18 15:47:21 -0800276 public void onScroll(int visibleTitleHeight, boolean userInitiated) {
Michael Kolb376b5412010-12-15 11:52:57 -0800277 if (mUseQuickControls) return;
Michael Kolb8233fac2010-10-26 16:08:53 -0700278 // isLoading is using the current tab, which initially might not be set yet
John Reckdcf911c2010-12-22 16:32:31 -0800279 if (mTabControl.getCurrentTab() != null
280 && !isLoading()) {
281 if (visibleTitleHeight == 0) {
Michael Kolb5ee018e2011-02-18 15:47:21 -0800282 if (!showsTitleBarIndicator()
283 && (!mUi.isEditingUrl() || userInitiated)) {
Michael Kolb7cdc4902011-02-03 17:54:40 -0800284 mUi.hideTitleBar();
Michael Kolb7dad8f02011-01-21 11:06:18 -0800285 showTitleBarIndicator(true);
286 }
John Reckdcf911c2010-12-22 16:32:31 -0800287 } else {
Michael Kolb7dad8f02011-01-21 11:06:18 -0800288 if (showsTitleBarIndicator()) {
289 showTitleBarIndicator(false);
290 }
Michael Kolbed217742010-08-10 17:52:34 -0700291 }
292 }
293 }
Michael Kolba2b2ba82010-08-04 17:54:03 -0700294
295 @Override
296 public void createContextMenu(ContextMenu menu) {
Michael Kolb8233fac2010-10-26 16:08:53 -0700297 MenuInflater inflater = mActivity.getMenuInflater();
Michael Kolba2b2ba82010-08-04 17:54:03 -0700298 inflater.inflate(R.menu.title_context, menu);
Michael Kolb8233fac2010-10-26 16:08:53 -0700299 mActivity.onCreateContextMenu(menu, this, null);
Michael Kolba2b2ba82010-08-04 17:54:03 -0700300 }
301
Michael Kolb94827b62011-01-08 14:23:45 -0800302 private TabView buildTabView(Tab tab) {
303 TabView tabview = new TabView(mActivity, tab);
304 mTabMap.put(tab, tabview);
305 tabview.setOnClickListener(this);
Michael Kolb94827b62011-01-08 14:23:45 -0800306 return tabview;
Michael Kolba2b2ba82010-08-04 17:54:03 -0700307 }
308
Romain Guyc8373212011-01-07 19:15:16 -0800309 private static Bitmap getDrawableAsBitmap(Drawable drawable, int width, int height) {
310 Bitmap b = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
311 Canvas c = new Canvas(b);
312 drawable.setBounds(0, 0, width, height);
313 drawable.draw(c);
314 return b;
Michael Kolbb4cafc52011-01-12 16:55:04 -0800315 }
316
Michael Kolba2b2ba82010-08-04 17:54:03 -0700317 /**
318 * View used in the tab bar
319 */
320 class TabView extends LinearLayout implements OnClickListener {
321
Michael Kolb94827b62011-01-08 14:23:45 -0800322 Tab mTab;
Michael Kolba2b2ba82010-08-04 17:54:03 -0700323 View mTabContent;
324 TextView mTitle;
Michael Kolba0e2a752010-12-12 15:27:56 -0800325 View mIndicator;
Michael Kolbae62fd42010-08-18 16:33:28 -0700326 View mIncognito;
John Reck541f55a2011-06-07 16:34:43 -0700327 View mSnapshot;
Michael Kolba2b2ba82010-08-04 17:54:03 -0700328 ImageView mIconView;
329 ImageView mLock;
330 ImageView mClose;
331 boolean mSelected;
332 boolean mInLoad;
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800333 Path mPath;
Michael Kolbeb7001c2011-02-16 16:07:33 -0800334 Path mFocusPath;
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800335 int[] mWindowPos;
Michael Kolba2b2ba82010-08-04 17:54:03 -0700336
337 /**
338 * @param context
339 */
Michael Kolb94827b62011-01-08 14:23:45 -0800340 public TabView(Context context, Tab tab) {
Michael Kolba2b2ba82010-08-04 17:54:03 -0700341 super(context);
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800342 setWillNotDraw(false);
343 mPath = new Path();
Michael Kolbeb7001c2011-02-16 16:07:33 -0800344 mFocusPath = new Path();
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800345 mWindowPos = new int[2];
Michael Kolb94827b62011-01-08 14:23:45 -0800346 mTab = tab;
Michael Kolbed217742010-08-10 17:52:34 -0700347 setGravity(Gravity.CENTER_VERTICAL);
348 setOrientation(LinearLayout.HORIZONTAL);
Michael Kolb49f15832011-01-25 15:02:27 -0800349 setPadding(mTabOverlap, 0, mTabSliceWidth, 0);
Bjorn Bringertb1402a52010-10-12 10:53:12 +0100350 LayoutInflater inflater = LayoutInflater.from(getContext());
Michael Kolbed217742010-08-10 17:52:34 -0700351 mTabContent = inflater.inflate(R.layout.tab_title, this, true);
Michael Kolba2b2ba82010-08-04 17:54:03 -0700352 mTitle = (TextView) mTabContent.findViewById(R.id.title);
353 mIconView = (ImageView) mTabContent.findViewById(R.id.favicon);
354 mLock = (ImageView) mTabContent.findViewById(R.id.lock);
355 mClose = (ImageView) mTabContent.findViewById(R.id.close);
356 mClose.setOnClickListener(this);
Michael Kolbae62fd42010-08-18 16:33:28 -0700357 mIncognito = mTabContent.findViewById(R.id.incognito);
John Reck541f55a2011-06-07 16:34:43 -0700358 mSnapshot = mTabContent.findViewById(R.id.snapshot);
Michael Kolba0e2a752010-12-12 15:27:56 -0800359 mIndicator = mTabContent.findViewById(R.id.chevron);
Michael Kolba2b2ba82010-08-04 17:54:03 -0700360 mSelected = false;
361 mInLoad = false;
362 // update the status
Michael Kolb94827b62011-01-08 14:23:45 -0800363 updateFromTab();
Michael Kolba2b2ba82010-08-04 17:54:03 -0700364 }
365
Michael Kolba0e2a752010-12-12 15:27:56 -0800366 void showIndicator(boolean show) {
Michael Kolb6a85e2a2010-12-13 18:12:46 -0800367 if (mSelected) {
368 mIndicator.setVisibility(show ? View.VISIBLE : View.GONE);
Michael Kolb49f15832011-01-25 15:02:27 -0800369 LayoutParams lp = (LinearLayout.LayoutParams) getLayoutParams();
370 if (show) {
371 lp.width = mTabWidthSelected + mIndicator.getWidth();
372 } else {
373 lp.width = mTabWidthSelected;
374 }
375 lp.height = LayoutParams.MATCH_PARENT;
376 setLayoutParams(lp);
Michael Kolb6a85e2a2010-12-13 18:12:46 -0800377 } else {
378 mIndicator.setVisibility(View.GONE);
379 }
Michael Kolba0e2a752010-12-12 15:27:56 -0800380 }
381
Michael Kolb7dad8f02011-01-21 11:06:18 -0800382 boolean showsIndicator() {
383 return (mIndicator.getVisibility() == View.VISIBLE);
384 }
385
Michael Kolba2b2ba82010-08-04 17:54:03 -0700386 @Override
387 public void onClick(View v) {
388 if (v == mClose) {
389 closeTab();
390 }
391 }
392
Michael Kolb94827b62011-01-08 14:23:45 -0800393 private void updateFromTab() {
394 String displayTitle = mTab.getTitle();
John Reck30c714c2010-12-16 17:30:34 -0800395 if (displayTitle == null) {
Michael Kolb94827b62011-01-08 14:23:45 -0800396 displayTitle = mTab.getUrl();
Michael Kolba2b2ba82010-08-04 17:54:03 -0700397 }
John Reck30c714c2010-12-16 17:30:34 -0800398 setDisplayTitle(displayTitle);
Michael Kolb94827b62011-01-08 14:23:45 -0800399 setProgress(mTab.getLoadProgress());
400 if (mTab.getFavicon() != null) {
401 setFavicon(renderFavicon(mTab.getFavicon()));
Michael Kolba2b2ba82010-08-04 17:54:03 -0700402 }
John Reck541f55a2011-06-07 16:34:43 -0700403 updateTabIcons();
404 }
405
406 private void updateTabIcons() {
407 mIncognito.setVisibility(
408 mTab.isPrivateBrowsingEnabled() ?
409 View.VISIBLE : View.GONE);
410 mSnapshot.setVisibility(mTab.isSnapshot()
411 ? View.VISIBLE : View.GONE);
Michael Kolba2b2ba82010-08-04 17:54:03 -0700412 }
413
414 @Override
Michael Kolbb7b115e2010-09-25 16:59:37 -0700415 public void setActivated(boolean selected) {
Michael Kolba2b2ba82010-08-04 17:54:03 -0700416 mSelected = selected;
417 mClose.setVisibility(mSelected ? View.VISIBLE : View.GONE);
Michael Kolb6a85e2a2010-12-13 18:12:46 -0800418 mIndicator.setVisibility(View.GONE);
Michael Kolb8233fac2010-10-26 16:08:53 -0700419 mTitle.setTextAppearance(mActivity, mSelected ?
Michael Kolbc7485ae2010-09-03 10:10:58 -0700420 R.style.TabTitleSelected : R.style.TabTitleUnselected);
421 setHorizontalFadingEdgeEnabled(!mSelected);
Michael Kolbb7b115e2010-09-25 16:59:37 -0700422 super.setActivated(selected);
Michael Kolb678afc82011-05-17 14:52:41 -0700423 updateLayoutParams();
Michael Kolbdc2ee1b2011-02-14 14:34:40 -0800424 setFocusable(!selected);
425 postInvalidate();
Michael Kolba2b2ba82010-08-04 17:54:03 -0700426 }
427
Michael Kolb678afc82011-05-17 14:52:41 -0700428 public void updateLayoutParams() {
429 LayoutParams lp = (LinearLayout.LayoutParams) getLayoutParams();
430 lp.width = mSelected ? mTabWidthSelected : mTabWidthUnselected;
431 lp.height = LayoutParams.MATCH_PARENT;
432 setLayoutParams(lp);
433 }
434
Michael Kolba2b2ba82010-08-04 17:54:03 -0700435 void setDisplayTitle(String title) {
436 mTitle.setText(title);
437 }
438
439 void setFavicon(Drawable d) {
440 mIconView.setImageDrawable(d);
441 }
442
443 void setLock(Drawable d) {
444 if (null == d) {
445 mLock.setVisibility(View.GONE);
446 } else {
447 mLock.setImageDrawable(d);
448 mLock.setVisibility(View.VISIBLE);
449 }
450 }
451
Michael Kolba2b2ba82010-08-04 17:54:03 -0700452 void setProgress(int newProgress) {
453 if (newProgress >= PROGRESS_MAX) {
454 mInLoad = false;
455 } else {
456 if (!mInLoad && getWindowToken() != null) {
457 mInLoad = true;
458 }
459 }
460 }
461
462 private void closeTab() {
Michael Kolb94827b62011-01-08 14:23:45 -0800463 if (mTab == mTabControl.getCurrentTab()) {
Michael Kolb8233fac2010-10-26 16:08:53 -0700464 mUiController.closeCurrentTab();
Michael Kolba2b2ba82010-08-04 17:54:03 -0700465 } else {
Michael Kolb94827b62011-01-08 14:23:45 -0800466 mUiController.closeTab(mTab);
Michael Kolba2b2ba82010-08-04 17:54:03 -0700467 }
468 }
469
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800470 @Override
471 protected void onLayout(boolean changed, int l, int t, int r, int b) {
472 super.onLayout(changed, l, t, r, b);
473 setTabPath(mPath, 0, 0, r - l, b - t);
Michael Kolbeb7001c2011-02-16 16:07:33 -0800474 setFocusPath(mFocusPath, 0, 0, r - l, b - t);
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800475 }
Michael Kolbb4cafc52011-01-12 16:55:04 -0800476
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800477 @Override
478 protected void dispatchDraw(Canvas canvas) {
Romain Guyc8373212011-01-07 19:15:16 -0800479 if (mCurrentTextureWidth != mUi.getContentWidth() ||
480 mCurrentTextureHeight != getHeight()) {
481 mCurrentTextureWidth = mUi.getContentWidth();
482 mCurrentTextureHeight = getHeight();
483
484 if (mCurrentTextureWidth > 0 && mCurrentTextureHeight > 0) {
485 Bitmap activeTexture = getDrawableAsBitmap(mActiveDrawable,
486 mCurrentTextureWidth, mCurrentTextureHeight);
487 Bitmap inactiveTexture = getDrawableAsBitmap(mInactiveDrawable,
488 mCurrentTextureWidth, mCurrentTextureHeight);
489
490 mActiveShader = new BitmapShader(activeTexture,
491 Shader.TileMode.CLAMP, Shader.TileMode.CLAMP);
492 mActiveShaderPaint.setShader(mActiveShader);
Michael Kolbb4cafc52011-01-12 16:55:04 -0800493
Romain Guyc8373212011-01-07 19:15:16 -0800494 mInactiveShader = new BitmapShader(inactiveTexture,
495 Shader.TileMode.CLAMP, Shader.TileMode.CLAMP);
496 mInactiveShaderPaint.setShader(mInactiveShader);
497 }
498 }
Michael Kolb05902aa2011-02-22 17:43:38 -0800499 // add some monkey protection
500 if ((mActiveShader != null) && (mInactiveShader != null)) {
501 int state = canvas.save();
502 getLocationInWindow(mWindowPos);
503 Paint paint = mSelected ? mActiveShaderPaint : mInactiveShaderPaint;
504 drawClipped(canvas, paint, mPath, mWindowPos[0]);
505 canvas.restoreToCount(state);
506 }
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800507 super.dispatchDraw(canvas);
508 }
509
Romain Guyc8373212011-01-07 19:15:16 -0800510 private void drawClipped(Canvas canvas, Paint paint, Path clipPath, int left) {
511 // TODO: We should change the matrix/shader only when needed
512 final Matrix matrix = mSelected ? mActiveMatrix : mInactiveMatrix;
513 matrix.setTranslate(-left, 0.0f);
514 (mSelected ? mActiveShader : mInactiveShader).setLocalMatrix(matrix);
515 canvas.drawPath(clipPath, paint);
Michael Kolbdc2ee1b2011-02-14 14:34:40 -0800516 if (isFocused()) {
Michael Kolbeb7001c2011-02-16 16:07:33 -0800517 canvas.drawPath(mFocusPath, mFocusPaint);
Michael Kolbdc2ee1b2011-02-14 14:34:40 -0800518 }
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800519 }
520
521 private void setTabPath(Path path, int l, int t, int r, int b) {
522 path.reset();
523 path.moveTo(l, b);
524 path.lineTo(l, t);
525 path.lineTo(r - mTabSliceWidth, t);
526 path.lineTo(r, b);
527 path.close();
528 }
529
Michael Kolbeb7001c2011-02-16 16:07:33 -0800530 private void setFocusPath(Path path, int l, int t, int r, int b) {
531 path.reset();
532 path.moveTo(l, b);
533 path.lineTo(l, t);
534 path.lineTo(r - mTabSliceWidth, t);
535 path.lineTo(r, b);
536 }
537
Michael Kolba2b2ba82010-08-04 17:54:03 -0700538 }
539
Michael Kolb49f15832011-01-25 15:02:27 -0800540 static Drawable createFaviconBackground(Context context) {
541 PaintDrawable faviconBackground = new PaintDrawable();
542 Resources res = context.getResources();
543 faviconBackground.getPaint().setColor(context.getResources()
544 .getColor(R.color.tabFaviconBackground));
545 faviconBackground.setCornerRadius(
546 res.getDimension(R.dimen.tab_favicon_corner_radius));
547 return faviconBackground;
548 }
549
Michael Kolb94827b62011-01-08 14:23:45 -0800550 private Drawable renderFavicon(Bitmap icon) {
Michael Kolb49f15832011-01-25 15:02:27 -0800551 Drawable[] array = new Drawable[2];
552 array[0] = createFaviconBackground(getContext());
Michael Kolb94827b62011-01-08 14:23:45 -0800553 if (icon == null) {
Michael Kolb49f15832011-01-25 15:02:27 -0800554 array[1] = mGenericFavicon;
Michael Kolb94827b62011-01-08 14:23:45 -0800555 } else {
Michael Kolb49f15832011-01-25 15:02:27 -0800556 array[1] = new BitmapDrawable(icon);
Michael Kolba2b2ba82010-08-04 17:54:03 -0700557 }
Michael Kolb94827b62011-01-08 14:23:45 -0800558 LayerDrawable d = new LayerDrawable(array);
Michael Kolb49f15832011-01-25 15:02:27 -0800559 d.setLayerInset(1, 2, 2, 2, 2);
Michael Kolb94827b62011-01-08 14:23:45 -0800560 return d;
Michael Kolba2b2ba82010-08-04 17:54:03 -0700561 }
562
Michael Kolb2d59c322011-01-25 13:18:55 -0800563 private void animateTabOut(final Tab tab, final TabView tv) {
564 ObjectAnimator scalex = ObjectAnimator.ofFloat(tv, "scaleX", 1.0f, 0.0f);
565 ObjectAnimator scaley = ObjectAnimator.ofFloat(tv, "scaleY", 1.0f, 0.0f);
Michael Kolb49f15832011-01-25 15:02:27 -0800566 ObjectAnimator alpha = ObjectAnimator.ofFloat(tv, "alpha", 1.0f, 0.0f);
Michael Kolb2d59c322011-01-25 13:18:55 -0800567 AnimatorSet animator = new AnimatorSet();
Michael Kolb49f15832011-01-25 15:02:27 -0800568 animator.playTogether(scalex, scaley, alpha);
Michael Kolb2d59c322011-01-25 13:18:55 -0800569 animator.setDuration(150);
570 animator.addListener(new AnimatorListener() {
571
572 @Override
573 public void onAnimationCancel(Animator animation) {
574 }
575
576 @Override
577 public void onAnimationEnd(Animator animation) {
578 mTabs.removeTab(tv);
579 mTabMap.remove(tab);
Michael Kolb8814d732011-01-26 11:22:30 -0800580 mUi.onRemoveTabCompleted(tab);
Michael Kolb2d59c322011-01-25 13:18:55 -0800581 }
582
583 @Override
584 public void onAnimationRepeat(Animator animation) {
585 }
586
587 @Override
588 public void onAnimationStart(Animator animation) {
589 }
590
591 });
592 animator.start();
593 }
594
595 private void animateTabIn(final Tab tab, final TabView tv) {
Michael Kolb49f15832011-01-25 15:02:27 -0800596 ObjectAnimator scalex = ObjectAnimator.ofFloat(tv, "scaleX", 0.0f, 1.0f);
Michael Kolb2d59c322011-01-25 13:18:55 -0800597 scalex.setDuration(150);
598 scalex.addListener(new AnimatorListener() {
599
600 @Override
601 public void onAnimationCancel(Animator animation) {
602 }
603
604 @Override
605 public void onAnimationEnd(Animator animation) {
Michael Kolb8814d732011-01-26 11:22:30 -0800606 mUi.onAddTabCompleted(tab);
Michael Kolb2d59c322011-01-25 13:18:55 -0800607 }
608
609 @Override
610 public void onAnimationRepeat(Animator animation) {
611 }
612
613 @Override
614 public void onAnimationStart(Animator animation) {
615 mTabs.addTab(tv);
616 }
617
618 });
619 scalex.start();
620 }
621
Michael Kolba2b2ba82010-08-04 17:54:03 -0700622 // TabChangeListener implementation
623
Michael Kolb8233fac2010-10-26 16:08:53 -0700624 public void onSetActiveTab(Tab tab) {
Michael Kolbc831b632011-05-11 09:30:34 -0700625 mTabs.setSelectedTab(mTabControl.getTabPosition(tab));
Michael Kolb94827b62011-01-08 14:23:45 -0800626 TabView tv = mTabMap.get(tab);
627 if (tv != null) {
628 tv.setProgress(tv.mTab.getLoadProgress());
Michael Kolba2b2ba82010-08-04 17:54:03 -0700629 // update the scroll state
630 WebView webview = tab.getWebView();
Michael Kolb6a85e2a2010-12-13 18:12:46 -0800631 if (webview != null) {
632 int h = webview.getVisibleTitleHeight();
Michael Kolb5ee018e2011-02-18 15:47:21 -0800633 onScroll(h, true);
Michael Kolb6a85e2a2010-12-13 18:12:46 -0800634 }
Michael Kolba2b2ba82010-08-04 17:54:03 -0700635 }
636 }
637
Michael Kolba2b2ba82010-08-04 17:54:03 -0700638 public void onFavicon(Tab tab, Bitmap favicon) {
Michael Kolb94827b62011-01-08 14:23:45 -0800639 TabView tv = mTabMap.get(tab);
640 if (tv != null) {
641 tv.setFavicon(renderFavicon(favicon));
Michael Kolba2b2ba82010-08-04 17:54:03 -0700642 }
643 }
644
Michael Kolba2b2ba82010-08-04 17:54:03 -0700645 public void onNewTab(Tab tab) {
Michael Kolb94827b62011-01-08 14:23:45 -0800646 TabView tv = buildTabView(tab);
Michael Kolb2d59c322011-01-25 13:18:55 -0800647 animateTabIn(tab, tv);
Michael Kolba2b2ba82010-08-04 17:54:03 -0700648 }
649
Michael Kolba2b2ba82010-08-04 17:54:03 -0700650 public void onProgress(Tab tab, int progress) {
Michael Kolb94827b62011-01-08 14:23:45 -0800651 TabView tv = mTabMap.get(tab);
652 if (tv != null) {
653 tv.setProgress(progress);
Michael Kolba2b2ba82010-08-04 17:54:03 -0700654 }
655 }
656
Michael Kolba2b2ba82010-08-04 17:54:03 -0700657 public void onRemoveTab(Tab tab) {
Michael Kolb94827b62011-01-08 14:23:45 -0800658 TabView tv = mTabMap.get(tab);
659 if (tv != null) {
Michael Kolb2d59c322011-01-25 13:18:55 -0800660 animateTabOut(tab, tv);
661 } else {
662 mTabMap.remove(tab);
Michael Kolba2b2ba82010-08-04 17:54:03 -0700663 }
Michael Kolba2b2ba82010-08-04 17:54:03 -0700664 }
665
Michael Kolba2b2ba82010-08-04 17:54:03 -0700666 public void onUrlAndTitle(Tab tab, String url, String title) {
Michael Kolb94827b62011-01-08 14:23:45 -0800667 TabView tv = mTabMap.get(tab);
668 if (tv != null) {
669 if (title != null) {
670 tv.setDisplayTitle(title);
671 } else if (url != null) {
672 tv.setDisplayTitle(UrlUtils.stripUrl(url));
673 }
John Reck541f55a2011-06-07 16:34:43 -0700674 tv.updateTabIcons();
Michael Kolba2b2ba82010-08-04 17:54:03 -0700675 }
676 }
677
Michael Kolba2b2ba82010-08-04 17:54:03 -0700678 private boolean isLoading() {
Michael Kolb94827b62011-01-08 14:23:45 -0800679 TabView tv = mTabMap.get(mTabControl.getCurrentTab());
680 if (tv != null) {
681 return tv.mInLoad;
Michael Kolb8233fac2010-10-26 16:08:53 -0700682 } else {
683 return false;
684 }
Michael Kolba2b2ba82010-08-04 17:54:03 -0700685 }
686
Michael Kolba2b2ba82010-08-04 17:54:03 -0700687}