blob: 7abb2033eb8b59fcc2feaf14595cbb14257dc92f [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
Michael Kolbebba8b42010-09-30 12:57:59 -070019import com.android.browser.ScrollWebView.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 }
169 mTabs.setSelectedTab(mTabControl.getCurrentIndex());
170 }
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 Kolb7cdc4902011-02-03 17:54:40 -0800216 mUi.showTitleBarAndEdit();
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 Kolba2b2ba82010-08-04 17:54:03 -0700224 } else {
Michael Kolbebba8b42010-09-30 12:57:59 -0700225 int ix = mTabs.getChildIndex(view);
226 if (ix >= 0) {
227 mTabs.setSelectedTab(ix);
Michael Kolb8233fac2010-10-26 16:08:53 -0700228 mUiController.switchToTab(ix);
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();
240 if (tab != null) {
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;
Michael Kolba2b2ba82010-08-04 17:54:03 -0700327 ImageView mIconView;
328 ImageView mLock;
329 ImageView mClose;
330 boolean mSelected;
331 boolean mInLoad;
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800332 Path mPath;
Michael Kolbeb7001c2011-02-16 16:07:33 -0800333 Path mFocusPath;
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800334 int[] mWindowPos;
Michael Kolba2b2ba82010-08-04 17:54:03 -0700335
336 /**
337 * @param context
338 */
Michael Kolb94827b62011-01-08 14:23:45 -0800339 public TabView(Context context, Tab tab) {
Michael Kolba2b2ba82010-08-04 17:54:03 -0700340 super(context);
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800341 setWillNotDraw(false);
342 mPath = new Path();
Michael Kolbeb7001c2011-02-16 16:07:33 -0800343 mFocusPath = new Path();
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800344 mWindowPos = new int[2];
Michael Kolb94827b62011-01-08 14:23:45 -0800345 mTab = tab;
Michael Kolbed217742010-08-10 17:52:34 -0700346 setGravity(Gravity.CENTER_VERTICAL);
347 setOrientation(LinearLayout.HORIZONTAL);
Michael Kolb49f15832011-01-25 15:02:27 -0800348 setPadding(mTabOverlap, 0, mTabSliceWidth, 0);
Bjorn Bringertb1402a52010-10-12 10:53:12 +0100349 LayoutInflater inflater = LayoutInflater.from(getContext());
Michael Kolbed217742010-08-10 17:52:34 -0700350 mTabContent = inflater.inflate(R.layout.tab_title, this, true);
Michael Kolba2b2ba82010-08-04 17:54:03 -0700351 mTitle = (TextView) mTabContent.findViewById(R.id.title);
352 mIconView = (ImageView) mTabContent.findViewById(R.id.favicon);
353 mLock = (ImageView) mTabContent.findViewById(R.id.lock);
354 mClose = (ImageView) mTabContent.findViewById(R.id.close);
355 mClose.setOnClickListener(this);
Michael Kolbae62fd42010-08-18 16:33:28 -0700356 mIncognito = mTabContent.findViewById(R.id.incognito);
Michael Kolba0e2a752010-12-12 15:27:56 -0800357 mIndicator = mTabContent.findViewById(R.id.chevron);
Michael Kolba2b2ba82010-08-04 17:54:03 -0700358 mSelected = false;
359 mInLoad = false;
360 // update the status
Michael Kolb94827b62011-01-08 14:23:45 -0800361 updateFromTab();
Michael Kolba2b2ba82010-08-04 17:54:03 -0700362 }
363
Michael Kolba0e2a752010-12-12 15:27:56 -0800364 void showIndicator(boolean show) {
Michael Kolb6a85e2a2010-12-13 18:12:46 -0800365 if (mSelected) {
366 mIndicator.setVisibility(show ? View.VISIBLE : View.GONE);
Michael Kolb49f15832011-01-25 15:02:27 -0800367 LayoutParams lp = (LinearLayout.LayoutParams) getLayoutParams();
368 if (show) {
369 lp.width = mTabWidthSelected + mIndicator.getWidth();
370 } else {
371 lp.width = mTabWidthSelected;
372 }
373 lp.height = LayoutParams.MATCH_PARENT;
374 setLayoutParams(lp);
Michael Kolb6a85e2a2010-12-13 18:12:46 -0800375 } else {
376 mIndicator.setVisibility(View.GONE);
377 }
Michael Kolba0e2a752010-12-12 15:27:56 -0800378 }
379
Michael Kolb7dad8f02011-01-21 11:06:18 -0800380 boolean showsIndicator() {
381 return (mIndicator.getVisibility() == View.VISIBLE);
382 }
383
Michael Kolba2b2ba82010-08-04 17:54:03 -0700384 @Override
385 public void onClick(View v) {
386 if (v == mClose) {
387 closeTab();
388 }
389 }
390
Michael Kolb94827b62011-01-08 14:23:45 -0800391 private void updateFromTab() {
392 String displayTitle = mTab.getTitle();
John Reck30c714c2010-12-16 17:30:34 -0800393 if (displayTitle == null) {
Michael Kolb94827b62011-01-08 14:23:45 -0800394 displayTitle = mTab.getUrl();
Michael Kolba2b2ba82010-08-04 17:54:03 -0700395 }
John Reck30c714c2010-12-16 17:30:34 -0800396 setDisplayTitle(displayTitle);
Michael Kolb94827b62011-01-08 14:23:45 -0800397 setProgress(mTab.getLoadProgress());
398 if (mTab.getFavicon() != null) {
399 setFavicon(renderFavicon(mTab.getFavicon()));
Michael Kolba2b2ba82010-08-04 17:54:03 -0700400 }
Michael Kolb94827b62011-01-08 14:23:45 -0800401 if (mTab != null) {
Michael Kolbae62fd42010-08-18 16:33:28 -0700402 mIncognito.setVisibility(
Michael Kolb94827b62011-01-08 14:23:45 -0800403 mTab.isPrivateBrowsingEnabled() ?
Michael Kolbae62fd42010-08-18 16:33:28 -0700404 View.VISIBLE : View.GONE);
405 }
Michael Kolba2b2ba82010-08-04 17:54:03 -0700406 }
407
408 @Override
Michael Kolbb7b115e2010-09-25 16:59:37 -0700409 public void setActivated(boolean selected) {
Michael Kolba2b2ba82010-08-04 17:54:03 -0700410 mSelected = selected;
411 mClose.setVisibility(mSelected ? View.VISIBLE : View.GONE);
Michael Kolb6a85e2a2010-12-13 18:12:46 -0800412 mIndicator.setVisibility(View.GONE);
Michael Kolb8233fac2010-10-26 16:08:53 -0700413 mTitle.setTextAppearance(mActivity, mSelected ?
Michael Kolbc7485ae2010-09-03 10:10:58 -0700414 R.style.TabTitleSelected : R.style.TabTitleUnselected);
415 setHorizontalFadingEdgeEnabled(!mSelected);
Michael Kolbb7b115e2010-09-25 16:59:37 -0700416 super.setActivated(selected);
Michael Kolb678afc82011-05-17 14:52:41 -0700417 updateLayoutParams();
Michael Kolbdc2ee1b2011-02-14 14:34:40 -0800418 setFocusable(!selected);
419 postInvalidate();
Michael Kolba2b2ba82010-08-04 17:54:03 -0700420 }
421
Michael Kolb678afc82011-05-17 14:52:41 -0700422 public void updateLayoutParams() {
423 LayoutParams lp = (LinearLayout.LayoutParams) getLayoutParams();
424 lp.width = mSelected ? mTabWidthSelected : mTabWidthUnselected;
425 lp.height = LayoutParams.MATCH_PARENT;
426 setLayoutParams(lp);
427 }
428
Michael Kolba2b2ba82010-08-04 17:54:03 -0700429 void setDisplayTitle(String title) {
430 mTitle.setText(title);
431 }
432
433 void setFavicon(Drawable d) {
434 mIconView.setImageDrawable(d);
435 }
436
437 void setLock(Drawable d) {
438 if (null == d) {
439 mLock.setVisibility(View.GONE);
440 } else {
441 mLock.setImageDrawable(d);
442 mLock.setVisibility(View.VISIBLE);
443 }
444 }
445
Michael Kolba2b2ba82010-08-04 17:54:03 -0700446 void setProgress(int newProgress) {
447 if (newProgress >= PROGRESS_MAX) {
448 mInLoad = false;
449 } else {
450 if (!mInLoad && getWindowToken() != null) {
451 mInLoad = true;
452 }
453 }
454 }
455
456 private void closeTab() {
Michael Kolb94827b62011-01-08 14:23:45 -0800457 if (mTab == mTabControl.getCurrentTab()) {
Michael Kolb8233fac2010-10-26 16:08:53 -0700458 mUiController.closeCurrentTab();
Michael Kolba2b2ba82010-08-04 17:54:03 -0700459 } else {
Michael Kolb94827b62011-01-08 14:23:45 -0800460 mUiController.closeTab(mTab);
Michael Kolba2b2ba82010-08-04 17:54:03 -0700461 }
462 }
463
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800464 @Override
465 protected void onLayout(boolean changed, int l, int t, int r, int b) {
466 super.onLayout(changed, l, t, r, b);
467 setTabPath(mPath, 0, 0, r - l, b - t);
Michael Kolbeb7001c2011-02-16 16:07:33 -0800468 setFocusPath(mFocusPath, 0, 0, r - l, b - t);
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800469 }
Michael Kolbb4cafc52011-01-12 16:55:04 -0800470
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800471 @Override
472 protected void dispatchDraw(Canvas canvas) {
Romain Guyc8373212011-01-07 19:15:16 -0800473 if (mCurrentTextureWidth != mUi.getContentWidth() ||
474 mCurrentTextureHeight != getHeight()) {
475 mCurrentTextureWidth = mUi.getContentWidth();
476 mCurrentTextureHeight = getHeight();
477
478 if (mCurrentTextureWidth > 0 && mCurrentTextureHeight > 0) {
479 Bitmap activeTexture = getDrawableAsBitmap(mActiveDrawable,
480 mCurrentTextureWidth, mCurrentTextureHeight);
481 Bitmap inactiveTexture = getDrawableAsBitmap(mInactiveDrawable,
482 mCurrentTextureWidth, mCurrentTextureHeight);
483
484 mActiveShader = new BitmapShader(activeTexture,
485 Shader.TileMode.CLAMP, Shader.TileMode.CLAMP);
486 mActiveShaderPaint.setShader(mActiveShader);
Michael Kolbb4cafc52011-01-12 16:55:04 -0800487
Romain Guyc8373212011-01-07 19:15:16 -0800488 mInactiveShader = new BitmapShader(inactiveTexture,
489 Shader.TileMode.CLAMP, Shader.TileMode.CLAMP);
490 mInactiveShaderPaint.setShader(mInactiveShader);
491 }
492 }
Michael Kolb05902aa2011-02-22 17:43:38 -0800493 // add some monkey protection
494 if ((mActiveShader != null) && (mInactiveShader != null)) {
495 int state = canvas.save();
496 getLocationInWindow(mWindowPos);
497 Paint paint = mSelected ? mActiveShaderPaint : mInactiveShaderPaint;
498 drawClipped(canvas, paint, mPath, mWindowPos[0]);
499 canvas.restoreToCount(state);
500 }
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800501 super.dispatchDraw(canvas);
502 }
503
Romain Guyc8373212011-01-07 19:15:16 -0800504 private void drawClipped(Canvas canvas, Paint paint, Path clipPath, int left) {
505 // TODO: We should change the matrix/shader only when needed
506 final Matrix matrix = mSelected ? mActiveMatrix : mInactiveMatrix;
507 matrix.setTranslate(-left, 0.0f);
508 (mSelected ? mActiveShader : mInactiveShader).setLocalMatrix(matrix);
509 canvas.drawPath(clipPath, paint);
Michael Kolbdc2ee1b2011-02-14 14:34:40 -0800510 if (isFocused()) {
Michael Kolbeb7001c2011-02-16 16:07:33 -0800511 canvas.drawPath(mFocusPath, mFocusPaint);
Michael Kolbdc2ee1b2011-02-14 14:34:40 -0800512 }
Michael Kolb2b5a13a2010-12-09 14:13:42 -0800513 }
514
515 private void setTabPath(Path path, int l, int t, int r, int b) {
516 path.reset();
517 path.moveTo(l, b);
518 path.lineTo(l, t);
519 path.lineTo(r - mTabSliceWidth, t);
520 path.lineTo(r, b);
521 path.close();
522 }
523
Michael Kolbeb7001c2011-02-16 16:07:33 -0800524 private void setFocusPath(Path path, int l, int t, int r, int b) {
525 path.reset();
526 path.moveTo(l, b);
527 path.lineTo(l, t);
528 path.lineTo(r - mTabSliceWidth, t);
529 path.lineTo(r, b);
530 }
531
Michael Kolba2b2ba82010-08-04 17:54:03 -0700532 }
533
Michael Kolb49f15832011-01-25 15:02:27 -0800534 static Drawable createFaviconBackground(Context context) {
535 PaintDrawable faviconBackground = new PaintDrawable();
536 Resources res = context.getResources();
537 faviconBackground.getPaint().setColor(context.getResources()
538 .getColor(R.color.tabFaviconBackground));
539 faviconBackground.setCornerRadius(
540 res.getDimension(R.dimen.tab_favicon_corner_radius));
541 return faviconBackground;
542 }
543
Michael Kolb94827b62011-01-08 14:23:45 -0800544 private Drawable renderFavicon(Bitmap icon) {
Michael Kolb49f15832011-01-25 15:02:27 -0800545 Drawable[] array = new Drawable[2];
546 array[0] = createFaviconBackground(getContext());
Michael Kolb94827b62011-01-08 14:23:45 -0800547 if (icon == null) {
Michael Kolb49f15832011-01-25 15:02:27 -0800548 array[1] = mGenericFavicon;
Michael Kolb94827b62011-01-08 14:23:45 -0800549 } else {
Michael Kolb49f15832011-01-25 15:02:27 -0800550 array[1] = new BitmapDrawable(icon);
Michael Kolba2b2ba82010-08-04 17:54:03 -0700551 }
Michael Kolb94827b62011-01-08 14:23:45 -0800552 LayerDrawable d = new LayerDrawable(array);
Michael Kolb49f15832011-01-25 15:02:27 -0800553 d.setLayerInset(1, 2, 2, 2, 2);
Michael Kolb94827b62011-01-08 14:23:45 -0800554 return d;
Michael Kolba2b2ba82010-08-04 17:54:03 -0700555 }
556
Michael Kolb2d59c322011-01-25 13:18:55 -0800557 private void animateTabOut(final Tab tab, final TabView tv) {
558 ObjectAnimator scalex = ObjectAnimator.ofFloat(tv, "scaleX", 1.0f, 0.0f);
559 ObjectAnimator scaley = ObjectAnimator.ofFloat(tv, "scaleY", 1.0f, 0.0f);
Michael Kolb49f15832011-01-25 15:02:27 -0800560 ObjectAnimator alpha = ObjectAnimator.ofFloat(tv, "alpha", 1.0f, 0.0f);
Michael Kolb2d59c322011-01-25 13:18:55 -0800561 AnimatorSet animator = new AnimatorSet();
Michael Kolb49f15832011-01-25 15:02:27 -0800562 animator.playTogether(scalex, scaley, alpha);
Michael Kolb2d59c322011-01-25 13:18:55 -0800563 animator.setDuration(150);
564 animator.addListener(new AnimatorListener() {
565
566 @Override
567 public void onAnimationCancel(Animator animation) {
568 }
569
570 @Override
571 public void onAnimationEnd(Animator animation) {
572 mTabs.removeTab(tv);
573 mTabMap.remove(tab);
Michael Kolb8814d732011-01-26 11:22:30 -0800574 mUi.onRemoveTabCompleted(tab);
Michael Kolb2d59c322011-01-25 13:18:55 -0800575 }
576
577 @Override
578 public void onAnimationRepeat(Animator animation) {
579 }
580
581 @Override
582 public void onAnimationStart(Animator animation) {
583 }
584
585 });
586 animator.start();
587 }
588
589 private void animateTabIn(final Tab tab, final TabView tv) {
Michael Kolb49f15832011-01-25 15:02:27 -0800590 ObjectAnimator scalex = ObjectAnimator.ofFloat(tv, "scaleX", 0.0f, 1.0f);
Michael Kolb2d59c322011-01-25 13:18:55 -0800591 scalex.setDuration(150);
592 scalex.addListener(new AnimatorListener() {
593
594 @Override
595 public void onAnimationCancel(Animator animation) {
596 }
597
598 @Override
599 public void onAnimationEnd(Animator animation) {
Michael Kolb8814d732011-01-26 11:22:30 -0800600 mUi.onAddTabCompleted(tab);
Michael Kolb2d59c322011-01-25 13:18:55 -0800601 }
602
603 @Override
604 public void onAnimationRepeat(Animator animation) {
605 }
606
607 @Override
608 public void onAnimationStart(Animator animation) {
609 mTabs.addTab(tv);
610 }
611
612 });
613 scalex.start();
614 }
615
Michael Kolba2b2ba82010-08-04 17:54:03 -0700616 // TabChangeListener implementation
617
Michael Kolb8233fac2010-10-26 16:08:53 -0700618 public void onSetActiveTab(Tab tab) {
619 mTabs.setSelectedTab(mTabControl.getTabIndex(tab));
Michael Kolb94827b62011-01-08 14:23:45 -0800620 TabView tv = mTabMap.get(tab);
621 if (tv != null) {
622 tv.setProgress(tv.mTab.getLoadProgress());
Michael Kolba2b2ba82010-08-04 17:54:03 -0700623 // update the scroll state
624 WebView webview = tab.getWebView();
Michael Kolb6a85e2a2010-12-13 18:12:46 -0800625 if (webview != null) {
626 int h = webview.getVisibleTitleHeight();
Michael Kolb5ee018e2011-02-18 15:47:21 -0800627 onScroll(h, true);
Michael Kolb6a85e2a2010-12-13 18:12:46 -0800628 }
Michael Kolba2b2ba82010-08-04 17:54:03 -0700629 }
630 }
631
Michael Kolba2b2ba82010-08-04 17:54:03 -0700632 public void onFavicon(Tab tab, Bitmap favicon) {
Michael Kolb94827b62011-01-08 14:23:45 -0800633 TabView tv = mTabMap.get(tab);
634 if (tv != null) {
635 tv.setFavicon(renderFavicon(favicon));
Michael Kolba2b2ba82010-08-04 17:54:03 -0700636 }
637 }
638
Michael Kolba2b2ba82010-08-04 17:54:03 -0700639 public void onNewTab(Tab tab) {
Michael Kolb94827b62011-01-08 14:23:45 -0800640 TabView tv = buildTabView(tab);
Michael Kolb2d59c322011-01-25 13:18:55 -0800641 animateTabIn(tab, tv);
Michael Kolba2b2ba82010-08-04 17:54:03 -0700642 }
643
Michael Kolba2b2ba82010-08-04 17:54:03 -0700644 public void onProgress(Tab tab, int progress) {
Michael Kolb94827b62011-01-08 14:23:45 -0800645 TabView tv = mTabMap.get(tab);
646 if (tv != null) {
647 tv.setProgress(progress);
Michael Kolba2b2ba82010-08-04 17:54:03 -0700648 }
649 }
650
Michael Kolba2b2ba82010-08-04 17:54:03 -0700651 public void onRemoveTab(Tab tab) {
Michael Kolb94827b62011-01-08 14:23:45 -0800652 TabView tv = mTabMap.get(tab);
653 if (tv != null) {
Michael Kolb2d59c322011-01-25 13:18:55 -0800654 animateTabOut(tab, tv);
655 } else {
656 mTabMap.remove(tab);
Michael Kolba2b2ba82010-08-04 17:54:03 -0700657 }
Michael Kolba2b2ba82010-08-04 17:54:03 -0700658 }
659
Michael Kolba2b2ba82010-08-04 17:54:03 -0700660 public void onUrlAndTitle(Tab tab, String url, String title) {
Michael Kolb94827b62011-01-08 14:23:45 -0800661 TabView tv = mTabMap.get(tab);
662 if (tv != null) {
663 if (title != null) {
664 tv.setDisplayTitle(title);
665 } else if (url != null) {
666 tv.setDisplayTitle(UrlUtils.stripUrl(url));
667 }
Michael Kolba2b2ba82010-08-04 17:54:03 -0700668 }
669 }
670
Michael Kolba2b2ba82010-08-04 17:54:03 -0700671 private boolean isLoading() {
Michael Kolb94827b62011-01-08 14:23:45 -0800672 TabView tv = mTabMap.get(mTabControl.getCurrentTab());
673 if (tv != null) {
674 return tv.mInLoad;
Michael Kolb8233fac2010-10-26 16:08:53 -0700675 } else {
676 return false;
677 }
Michael Kolba2b2ba82010-08-04 17:54:03 -0700678 }
679
Michael Kolba2b2ba82010-08-04 17:54:03 -0700680}