blob: cfcd87a26cd8d8ec54965a889ef68f0bd09c0cd7 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_UI_VIEWS_TABS_TAB_STRIP_H_
#define CHROME_BROWSER_UI_VIEWS_TABS_TAB_STRIP_H_
#include <map>
#include <memory>
#include <utility>
#include <vector>
#include "base/compiler_specific.h"
#include "base/gtest_prod_util.h"
#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "base/observer_list.h"
#include "base/scoped_observer.h"
#include "base/timer/timer.h"
#include "chrome/browser/ui/tabs/tab_utils.h"
#include "chrome/browser/ui/views/frame/browser_root_view.h"
#include "chrome/browser/ui/views/tabs/tab.h"
#include "chrome/browser/ui/views/tabs/tab_controller.h"
#include "chrome/browser/ui/views/tabs/tab_strip.h"
#include "ui/base/material_design/material_design_controller_observer.h"
#include "ui/gfx/animation/animation_container.h"
#include "ui/gfx/color_palette.h"
#include "ui/gfx/geometry/point.h"
#include "ui/gfx/geometry/rect.h"
#include "ui/views/accessible_pane_view.h"
#include "ui/views/animation/bounds_animator.h"
#include "ui/views/controls/button/image_button.h"
#include "ui/views/mouse_watcher.h"
#include "ui/views/view.h"
#include "ui/views/view_model.h"
#include "ui/views/view_targeter_delegate.h"
class NewTabButton;
class StackedTabStripLayout;
class Tab;
class TabDragController;
class TabStripController;
class TabStripObserver;
namespace gfx {
class Rect;
}
namespace ui {
class ListSelectionModel;
}
namespace views {
class ImageView;
}
// A View that represents the TabStripModel. The TabStrip has the
// following responsibilities:
//
// - It implements the TabStripModelObserver interface, and acts as a
// container for Tabs, and is also responsible for creating them.
//
// - It takes part in Tab Drag & Drop with Tab, TabDragHelper and
// DraggedTab, focusing on tasks that require reshuffling other tabs
// in response to dragged tabs.
class TabStrip : public views::AccessiblePaneView,
public views::ButtonListener,
public views::MouseWatcherListener,
public views::ViewTargeterDelegate,
public TabController,
public BrowserRootView::DropTarget,
public ui::MaterialDesignControllerObserver {
public:
explicit TabStrip(std::unique_ptr<TabStripController> controller);
~TabStrip() override;
// Add and remove observers to changes within this TabStrip.
void AddObserver(TabStripObserver* observer);
void RemoveObserver(TabStripObserver* observer);
// Called when the colors of the frame change.
void FrameColorsChanged();
// Returns the trailing edge of the last tab.
int GetTabsMaxX() const;
// Set the background offset used by inactive tabs to match the frame image.
void SetBackgroundOffset(int offset);
// Returns true if the specified rect (in TabStrip coordinates) intersects
// the window caption area of the browser window.
bool IsRectInWindowCaption(const gfx::Rect& rect);
// Returns true if the specified point (in TabStrip coordinates) is in the
// window caption area of the browser window.
bool IsPositionInWindowCaption(const gfx::Point& point);
// Returns false when there is a drag operation in progress so that the frame
// doesn't close.
bool IsTabStripCloseable() const;
// Returns true if the tab strip is editable. Returns false if the tab strip
// is being dragged or animated to prevent extensions from messing things up
// while that's happening.
bool IsTabStripEditable() const;
// Returns information about tabs at given indices.
bool IsTabCrashed(int tab_index) const;
bool TabHasNetworkError(int tab_index) const;
TabAlertState GetTabAlertState(int tab_index) const;
// Updates the loading animations displayed by tabs in the tabstrip to the
// next frame. The |elapsed_time| parameter is shared between tabs and used to
// keep the throbbers in sync.
void UpdateLoadingAnimations(const base::TimeDelta& elapsed_time);
bool IsAnyIconAnimating() const;
// If |adjust_layout| is true the stacked layout changes based on whether the
// user uses a mouse or a touch device with the tabstrip.
void set_adjust_layout(bool adjust_layout) { adjust_layout_ = adjust_layout; }
// |stacked_layout_| defines what should happen when the tabs won't fit at
// their ideal size. When |stacked_layout_| is true the tabs are always sized
// to their ideal size and stacked on top of each other so that only a certain
// set of tabs are visible. This is used when the user uses a touch device.
// When |stacked_layout_| is false the tabs shrink to accommodate the
// available space. This is the default.
bool stacked_layout() const { return stacked_layout_; }
// Sets |stacked_layout_| and animates if necessary.
void SetStackedLayout(bool stacked_layout);
// Called when the value of SingleTabMode() changes.
void SingleTabModeChanged();
// Returns the bounds of the new tab button.
gfx::Rect new_tab_button_bounds() const { return new_tab_button_bounds_; }
// Starts highlighting the tab at the specified index.
void StartHighlight(int model_index);
// Stops all tab higlighting.
void StopAllHighlighting();
// Adds a tab at the specified index.
void AddTabAt(int model_index, TabRendererData data, bool is_active);
// Moves a tab.
void MoveTab(int from_model_index, int to_model_index, TabRendererData data);
// Removes a tab at the specified index. If the tab with |contents| is being
// dragged then the drag is completed.
void RemoveTabAt(content::WebContents* contents,
int model_index,
bool was_active);
// Sets the tab data at the specified model index.
void SetTabData(int model_index, TabRendererData data);
// Returns true if the tab is not partly or fully clipped (due to overflow),
// and the tab couldn't become partly clipped due to changing the selected tab
// (for example, if currently the strip has the last tab selected, and
// changing that to the first tab would cause |tab| to be pushed over enough
// to clip).
bool ShouldTabBeVisible(const Tab* tab) const;
// Returns whether or not strokes should be drawn around and under the tabs.
bool ShouldDrawStrokes() const;
// Invoked when the selection is updated.
void SetSelection(const ui::ListSelectionModel& new_selection);
// Invoked when a tab needs to show UI that it needs the user's attention.
void SetTabNeedsAttention(int model_index, bool attention);
// Retrieves the ideal bounds for the Tab at the specified index.
const gfx::Rect& ideal_bounds(int tab_data_index) const {
return tabs_.ideal_bounds(tab_data_index);
}
// Returns the Tab at |index|.
// TODO(pkasting): Make const correct
Tab* tab_at(int index) const { return tabs_.view_at(index); }
// Returns the NewTabButton.
NewTabButton* new_tab_button() { return new_tab_button_; }
// Returns the index of the specified tab in the model coordinate system, or
// -1 if tab is closing or not valid.
int GetModelIndexOfTab(const Tab* tab) const;
// Gets the number of Tabs in the tab strip.
int tab_count() const { return tabs_.view_size(); }
// Cover method for TabStripController::GetCount.
int GetModelCount() const;
// Cover method for TabStripController::IsValidIndex.
bool IsValidModelIndex(int model_index) const;
TabStripController* controller() const { return controller_.get(); }
// Returns true if a drag session is currently active.
bool IsDragSessionActive() const;
// Returns the index where the dragged WebContents should be inserted into
// this tabstrip given the DraggedTabView's bounds |dragged_bounds| in
// coordinates relative to |attached_tabstrip_| and has had the mirroring
// transformation applied.
// |mouse_has_ever_moved_left| and |mouse_has_ever_moved_right| are used
// only in stacked tabs cases.
// NOTE: this is invoked from Attach() before the tabs have been inserted.
int GetInsertionIndexForDraggedBounds(const gfx::Rect& dragged_bounds,
bool attaching,
int num_dragged_tabs,
bool mouse_has_ever_moved_left,
bool mouse_has_ever_moved_right) const;
// Returns true if |dragged_bounds| is close enough to the next stacked tab
// so that the active tab should be dragged there.
bool ShouldDragToNextStackedTab(const gfx::Rect& dragged_bounds,
int index,
bool mouse_has_ever_moved_right) const;
// Returns true if |dragged_bounds| is close enough to the previous stacked
// tab so that the active tab should be dragged there.
bool ShouldDragToPreviousStackedTab(const gfx::Rect& dragged_bounds,
int index,
bool mouse_has_ever_moved_left) const;
// Returns true if a tab is being dragged into this tab strip.
bool IsActiveDropTarget() const;
// Returns the alpha that inactive tabs and the new tab button should use to
// blend against the frame background. Inactive tabs and the new tab button
// differ in whether they change alpha when tab multiselection is occurring;
// |for_new_tab_button| toggles between the two calculations.
SkAlpha GetInactiveAlpha(bool for_new_tab_button) const;
// Returns true if Tabs in this TabStrip are currently changing size or
// position.
bool IsAnimating() const;
// Stops any ongoing animations. If |layout| is true and an animation is
// ongoing this does a layout.
void StopAnimating(bool layout);
// TabController:
const ui::ListSelectionModel& GetSelectionModel() const override;
bool SupportsMultipleSelection() override;
NewTabButtonPosition GetNewTabButtonPosition() const override;
bool ShouldHideCloseButtonForTab(Tab* tab) const override;
bool MaySetClip() override;
void SelectTab(Tab* tab) override;
void ExtendSelectionTo(Tab* tab) override;
void ToggleSelected(Tab* tab) override;
void AddSelectionFromAnchorTo(Tab* tab) override;
void CloseTab(Tab* tab, CloseTabSource source) override;
void ShowContextMenuForTab(Tab* tab,
const gfx::Point& p,
ui::MenuSourceType source_type) override;
bool IsActiveTab(const Tab* tab) const override;
bool IsTabSelected(const Tab* tab) const override;
bool IsTabPinned(const Tab* tab) const override;
bool IsFirstVisibleTab(const Tab* tab) const override;
bool IsLastVisibleTab(const Tab* tab) const override;
bool SingleTabMode() const override;
void MaybeStartDrag(
Tab* tab,
const ui::LocatedEvent& event,
const ui::ListSelectionModel& original_selection) override;
void ContinueDrag(views::View* view, const ui::LocatedEvent& event) override;
bool EndDrag(EndDragReason reason) override;
Tab* GetTabAt(const gfx::Point& point) override;
const Tab* GetAdjacentTab(const Tab* tab, int offset) override;
void OnMouseEventInTab(views::View* source,
const ui::MouseEvent& event) override;
bool ShouldPaintTab(const Tab* tab, float scale, gfx::Path* clip) override;
int GetStrokeThickness() const override;
bool CanPaintThrobberToLayer() const override;
bool HasVisibleBackgroundTabShapes() const override;
bool ShouldPaintAsActiveFrame() const override;
SkColor GetToolbarTopSeparatorColor() const override;
SkColor GetTabSeparatorColor() const override;
SkColor GetTabBackgroundColor(
TabState tab_state,
BrowserNonClientFrameView::ActiveState active_state =
BrowserNonClientFrameView::kUseCurrent) const override;
SkColor GetTabForegroundColor(TabState tab_state,
SkColor background_color) const override;
base::string16 GetAccessibleTabName(const Tab* tab) const override;
int GetBackgroundResourceId(
bool* has_custom_image,
BrowserNonClientFrameView::ActiveState active_state =
BrowserNonClientFrameView::kUseCurrent) const override;
gfx::Rect GetTabAnimationTargetBounds(const Tab* tab) override;
float GetHoverOpacityForTab(float range_parameter) const override;
float GetHoverOpacityForRadialHighlight() const override;
// MouseWatcherListener:
void MouseMovedOutOfHost() override;
// views::View:
void Layout() override;
void PaintChildren(const views::PaintInfo& paint_info) override;
void OnPaint(gfx::Canvas* canvas) override;
const char* GetClassName() const override;
gfx::Size CalculatePreferredSize() const override;
void GetAccessibleNodeData(ui::AXNodeData* node_data) override;
views::View* GetTooltipHandlerForPoint(const gfx::Point& point) override;
void OnThemeChanged() override;
// BrowserRootView::DropTarget:
BrowserRootView::DropIndex GetDropIndex(
const ui::DropTargetEvent& event) override;
views::View* GetViewForDrop() override;
void HandleDragUpdate(
const base::Optional<BrowserRootView::DropIndex>& index) override;
void HandleDragExited() override;
private:
using Tabs = std::vector<Tab*>;
using TabsClosingMap = std::map<int, Tabs>;
using FindClosingTabResult =
std::pair<TabsClosingMap::iterator, Tabs::iterator>;
class RemoveTabDelegate;
friend class TabDragController;
friend class TabDragControllerTest;
friend class TabStripTest;
// Used during a drop session of a url. Tracks the position of the drop as
// well as a window used to highlight where the drop occurs.
struct DropArrow {
DropArrow(const BrowserRootView::DropIndex& index,
bool point_down,
views::Widget* context);
~DropArrow();
// Index of the tab to drop on.
BrowserRootView::DropIndex index;
// Direction the arrow should point in. If true, the arrow is displayed
// above the tab and points down. If false, the arrow is displayed beneath
// the tab and points up.
bool point_down;
// Renders the drop indicator.
views::Widget* arrow_window;
views::ImageView* arrow_view;
private:
DISALLOW_COPY_AND_ASSIGN(DropArrow);
};
void Init();
// Invoked from |AddTabAt| after the newly created tab has been inserted.
void StartInsertTabAnimation(int model_index);
// Invoked from |MoveTab| after |tab_data_| has been updated to animate the
// move.
void StartMoveTabAnimation();
// Animates all the views to their ideal bounds.
// NOTE: this does *not* invoke GenerateIdealBounds, it uses the bounds
// currently set in ideal_bounds.
void AnimateToIdealBounds();
// Returns whether the close button should be highlighted after a remove.
bool ShouldHighlightCloseButtonAfterRemove();
// If the new tab button position is AFTER_TABS, returns the spacing to use
// between the trailing edge of the tabs and the leading edge of the new tab
// button. For other button positions, returns 0.
int TabToFollowingNewTabButtonSpacing() const;
// Returns whether dragging tabs should ever result in the new tab button
// being hidden.
bool MayHideNewTabButtonWhileDragging() const;
// Returns the space to reserve after the tabs, if any, to guarantee the user
// can grab part of the window frame (to move the window with).
int GetFrameGrabWidth() const;
// Returns whether the window background behind the tabstrip is transparent.
bool TitlebarBackgroundIsTransparent() const;
// Invoked from Layout if the size changes or layout is really needed.
void DoLayout();
// Sets the visibility state of all tabs based on ShouldTabBeVisible().
void SetTabVisibility();
// Drags the active tab by |delta|. |initial_positions| is the x-coordinates
// of the tabs when the drag started. This is only called when
// |touch_layout_| is non-null.
void DragActiveTabStacked(const std::vector<int>& initial_positions,
int delta);
// Sets the ideal bounds x-coordinates to |positions|.
void SetIdealBoundsFromPositions(const std::vector<int>& positions);
// Returns true if dragging has resulted in temporarily stacking the tabs.
bool IsStackingDraggedTabs() const;
// Invoked during drag to layout the tabs being dragged in |tabs| at
// |location|. If |initial_drag| is true, this is the initial layout after the
// user moved the mouse far enough to trigger a drag.
void LayoutDraggedTabsAt(const Tabs& tabs,
Tab* active_tab,
const gfx::Point& location,
bool initial_drag);
// Returns the bounds needed for each of the tabs, relative to a leading
// coordinate of 0 for the left edge of the first tab's bounds.
static std::vector<gfx::Rect> CalculateBoundsForDraggedTabs(const Tabs& tabs);
// Used by GetInsertionIndexForDraggedBounds() when the tabstrip is stacked.
int GetInsertionIndexForDraggedBoundsStacked(
const gfx::Rect& dragged_bounds,
bool mouse_has_ever_moved_left,
bool mouse_has_ever_moved_right) const;
// Determines the index to insert tabs at. |dragged_bounds| is the bounds of
// the tab being dragged, |start| the index of the tab to start looking from.
// The search proceeds to the end of the strip.
int GetInsertionIndexFrom(const gfx::Rect& dragged_bounds, int start) const;
// Like GetInsertionIndexFrom(), but searches backwards from |start| to the
// beginning of the strip.
int GetInsertionIndexFromReversed(const gfx::Rect& dragged_bounds,
int start) const;
// Returns the X coordinate the first tab should start at.
int TabStartX() const;
// Returns where the drag region ends; tabs dragged past this should detach.
int TabDragAreaEndX() const;
// Returns the X coordinate the new tab button should be placed at. Requires
// |tabs_| to have correct ideal bounds.
int NewTabButtonIdealX() const;
// Returns the size needed for the specified tabs. This is invoked during drag
// and drop to calculate offsets and positioning.
int GetSizeNeededForTabs(const Tabs& tabs);
// Returns the number of pinned tabs.
int GetPinnedTabCount() const;
// Returns the last tab in the strip that's actually visible. This will be
// the actual last tab unless the strip is in the overflow node_data.
const Tab* GetLastVisibleTab() const;
// Adds the tab at |index| to |tabs_closing_map_| and removes the tab from
// |tabs_|.
void RemoveTabFromViewModel(int index);
// Cleans up the Tab from the TabStrip. This is called from the tab animation
// code and is not a general-purpose method.
void RemoveAndDeleteTab(Tab* tab);
// Adjusts the indices of all tabs in |tabs_closing_map_| whose index is
// >= |index| to have a new index of |index + delta|.
void UpdateTabsClosingMap(int index, int delta);
// Used by TabDragController when the user starts or stops dragging tabs.
void StartedDraggingTabs(const Tabs& tabs);
// Invoked when TabDragController detaches a set of tabs.
void DraggedTabsDetached();
// Used by TabDragController when the user stops dragging tabs. |move_only| is
// true if the move behavior is TabDragController::MOVE_VISIBLE_TABS.
// |completed| is true if the drag operation completed successfully, false if
// it was reverted.
void StoppedDraggingTabs(const Tabs& tabs,
const std::vector<int>& initial_positions,
bool move_only,
bool completed);
// Invoked from StoppedDraggingTabs to cleanup |tab|. If |tab| is known
// |is_first_tab| is set to true.
void StoppedDraggingTab(Tab* tab, bool* is_first_tab);
// Takes ownership of |controller|.
void OwnDragController(TabDragController* controller);
// Destroys the current TabDragController. This cancel the existing drag
// operation.
void DestroyDragController();
// Releases ownership of the current TabDragController.
TabDragController* ReleaseDragController();
// Finds |tab| in the |tab_closing_map_| and returns a pair of iterators
// indicating precisely where it is.
FindClosingTabResult FindClosingTab(const Tab* tab);
// Invoked when a mouse event occurs over |source|. Potentially switches the
// |stacked_layout_|.
void UpdateStackedLayoutFromMouseEvent(views::View* source,
const ui::MouseEvent& event);
// Computes and stores values derived from contrast ratios.
void UpdateContrastRatioValues();
// -- Tab Resize Layout -----------------------------------------------------
// Returns the current width of each tab. If the space for tabs is not evenly
// divisible into these widths, the initial tabs in the strip will be 1 px
// larger.
int current_inactive_width() const { return current_inactive_width_; }
int current_active_width() const { return current_active_width_; }
// Perform an animated resize-relayout of the TabStrip immediately.
void ResizeLayoutTabs();
// Invokes ResizeLayoutTabs() as long as we're not in a drag session. If we
// are in a drag session this restarts the timer.
void ResizeLayoutTabsFromTouch();
// Restarts |resize_layout_timer_|.
void StartResizeLayoutTabsFromTouchTimer();
// Sets the bounds of the tabs to |tab_bounds|.
void SetTabBoundsForDrag(const std::vector<gfx::Rect>& tab_bounds);
// Ensure that the message loop observer used for event spying is added and
// removed appropriately so we can tell when to resize layout the tab strip.
void AddMessageLoopObserver();
void RemoveMessageLoopObserver();
// -- Link Drag & Drop ------------------------------------------------------
// Returns the bounds to render the drop at, in screen coordinates. Sets
// |is_beneath| to indicate whether the arrow is beneath the tab, or above
// it.
gfx::Rect GetDropBounds(int drop_index, bool drop_before, bool* is_beneath);
// Show drop arrow with passed |tab_data_index| and |drop_before|.
// If |tab_data_index| is negative, the arrow will disappear.
void SetDropArrow(const base::Optional<BrowserRootView::DropIndex>& index);
// Returns the image to use for indicating a drop on a tab. If is_down is
// true, this returns an arrow pointing down.
static gfx::ImageSkia* GetDropArrowImage(bool is_down);
// -- Animations ------------------------------------------------------------
// Invoked prior to starting a new animation.
void PrepareForAnimation();
// Generates the ideal bounds for each of the tabs as well as the new tab
// button.
void GenerateIdealBounds();
// Generates the ideal bounds for the pinned tabs. Returns the index to
// position the first non-pinned tab and sets |first_non_pinned_index| to the
// index of the first non-pinned tab.
int GenerateIdealBoundsForPinnedTabs(int* first_non_pinned_index);
// Returns the width of the area that contains tabs. This does not include
// the width of the new tab button.
int GetTabAreaWidth() const;
// Starts various types of TabStrip animations.
void StartResizeLayoutAnimation();
void StartPinnedTabAnimation();
// Returns true if the specified point in TabStrip coords is within the
// hit-test region of the specified Tab.
bool IsPointInTab(Tab* tab, const gfx::Point& point_in_tabstrip_coords);
// -- Touch Layout ----------------------------------------------------------
// Returns the tab to use for event handling. This uses FindTabForEventFrom()
// to do the actual searching. This method should be called when
// |touch_layout_| is set.
Tab* FindTabForEvent(const gfx::Point& point);
// Helper for FindTabForEvent(). Returns the tab to use for event handling
// starting at index |start| and iterating by |delta|.
Tab* FindTabForEventFrom(const gfx::Point& point, int start, int delta);
// For a given point, finds a tab that is hit by the point. If the point hits
// an area on which two tabs are overlapping, the tab is selected as follows:
// - If one of the tabs is active, select it.
// - Select the left one.
// If no tabs are hit, returns null. This method should be called when
// |touch_layout_| is not set.
Tab* FindTabHitByPoint(const gfx::Point& point);
// Returns the x-coordinates of the tabs.
std::vector<int> GetTabXCoordinates();
// Creates/Destroys |touch_layout_| as necessary.
void SwapLayoutIfNecessary();
// Returns true if |touch_layout_| is needed.
bool NeedsTouchLayout() const;
// Sets the value of |reset_to_shrink_on_exit_|. If true |mouse_watcher_| is
// used to track when the mouse truly exits the tabstrip and the stacked
// layout is reset.
void SetResetToShrinkOnExit(bool value);
// Updates the border padding for |new_tab_button_|. This should be called
// whenever any input of the computation of the border's sizing changes.
void UpdateNewTabButtonBorder();
// views::ButtonListener:
void ButtonPressed(views::Button* sender, const ui::Event& event) override;
// views::View:
const views::View* GetViewByID(int id) const override;
bool OnMousePressed(const ui::MouseEvent& event) override;
bool OnMouseDragged(const ui::MouseEvent& event) override;
void OnMouseReleased(const ui::MouseEvent& event) override;
void OnMouseCaptureLost() override;
void OnMouseMoved(const ui::MouseEvent& event) override;
void OnMouseEntered(const ui::MouseEvent& event) override;
// ui::EventHandler:
void OnGestureEvent(ui::GestureEvent* event) override;
// views::ViewTargeterDelegate:
views::View* TargetForRect(views::View* root, const gfx::Rect& rect) override;
// ui::MaterialDesignControllerObserver:
void OnTouchUiChanged() override;
// -- Member Variables ------------------------------------------------------
base::ObserverList<TabStripObserver>::Unchecked observers_;
// There is a one-to-one mapping between each of the tabs in the
// TabStripController (TabStripModel) and |tabs_|. Because we animate tab
// removal there exists a period of time where a tab is displayed but not in
// the model. When this occurs the tab is removed from |tabs_| and placed in
// |tabs_closing_map_|. When the animation completes the tab is removed from
// |tabs_closing_map_|. The painting code ensures both sets of tabs are
// painted, and the event handling code ensures only tabs in |tabs_| are used.
views::ViewModelT<Tab> tabs_;
TabsClosingMap tabs_closing_map_;
std::unique_ptr<TabStripController> controller_;
// The "New Tab" button.
NewTabButton* new_tab_button_ = nullptr;
// Ideal bounds of the new tab button.
gfx::Rect new_tab_button_bounds_;
// Returns the current widths of each type of tab. If the tabstrip width is
// not evenly divisible into these widths, the initial tabs in the strip will
// be 1 px larger.
int current_inactive_width_;
int current_active_width_;
// If this value is nonnegative, it is used as the width to lay out tabs
// (instead of tab_area_width()). Most of the time this will be -1, but while
// we're handling closing a tab via the mouse, we'll set this to the edge of
// the last tab before closing, so that if we are closing the last tab and
// need to resize immediately, we'll resize only back to this width, thus
// once again placing the last tab under the mouse cursor.
int available_width_for_tabs_ = -1;
// True if PrepareForCloseAt has been invoked. When true remove animations
// preserve current tab bounds.
bool in_tab_close_ = false;
// Valid for the lifetime of a drag over us.
std::unique_ptr<DropArrow> drop_arrow_;
// To ensure all tabs pulse at the same time they share the same animation
// container. This is that animation container.
scoped_refptr<gfx::AnimationContainer> animation_container_{
new gfx::AnimationContainer()};
// MouseWatcher is used for two things:
// . When a tab is closed to reset the layout.
// . When a mouse is used and the layout dynamically adjusts and is currently
// stacked (|stacked_layout_| is true).
std::unique_ptr<views::MouseWatcher> mouse_watcher_;
// The controller for a drag initiated from a Tab. Valid for the lifetime of
// the drag session.
std::unique_ptr<TabDragController> drag_controller_;
views::BoundsAnimator bounds_animator_{this};
// Size we last layed out at.
gfx::Size last_layout_size_;
// See description above stacked_layout().
bool stacked_layout_ = false;
// Should the layout dynamically adjust?
bool adjust_layout_ = false;
// Only used while in touch mode.
std::unique_ptr<StackedTabStripLayout> touch_layout_;
// If true the |stacked_layout_| is set to false when the mouse exits the
// tabstrip (as determined using MouseWatcher).
bool reset_to_shrink_on_exit_ = false;
// Location of the mouse at the time of the last move.
gfx::Point last_mouse_move_location_;
// Time of the last mouse move event.
base::TimeTicks last_mouse_move_time_;
// Number of mouse moves.
int mouse_move_count_ = 0;
// Timer used when a tab is closed and we need to relayout. Only used when a
// tab close comes from a touch device.
base::OneShotTimer resize_layout_timer_;
// This represents the Tabs in |tabs_| that have been selected.
//
// Each time tab selection should change, this class will receive a
// SetSelection() callback with the new tab selection. That callback only
// includes the new selection model. This keeps track of the previous
// selection model, and is always consistent with |tabs_|. This must be
// updated to account for tab insertions/removals/moves.
ui::ListSelectionModel selected_tabs_;
// When tabs are hovered, a radial highlight is shown and the tab opacity is
// adjusted using some value between |hover_opacity_min_| and
// |hover_opacity_max_| (depending on tab width). All these opacities depend
// on contrast ratios and are updated when colors or active state changes,
// so for efficiency's sake they are computed and stored once here instead
// of with each tab. Note: these defaults will be overwritten at construction
// except in cases where a unit test provides no controller_.
float hover_opacity_min_ = 1.0f;
float hover_opacity_max_ = 1.0f;
float radial_highlight_opacity_ = 1.0f;
SkColor separator_color_ = gfx::kPlaceholderColor;
ScopedObserver<ui::MaterialDesignController,
ui::MaterialDesignControllerObserver>
md_observer_{this};
DISALLOW_COPY_AND_ASSIGN(TabStrip);
};
#endif // CHROME_BROWSER_UI_VIEWS_TABS_TAB_STRIP_H_