browser_tab_strip_controller.h revision 424c4d7b64af9d0d8fd9624f381f469654d5e3d2
1// Copyright (c) 2012 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef CHROME_BROWSER_UI_VIEWS_TABS_BROWSER_TAB_STRIP_CONTROLLER_H_
6#define CHROME_BROWSER_UI_VIEWS_TABS_BROWSER_TAB_STRIP_CONTROLLER_H_
7
8#include "base/compiler_specific.h"
9#include "base/memory/scoped_ptr.h"
10#include "base/prefs/pref_change_registrar.h"
11#include "chrome/browser/ui/tabs/hover_tab_selector.h"
12#include "chrome/browser/ui/tabs/tab_strip_model.h"
13#include "chrome/browser/ui/views/frame/immersive_mode_controller.h"
14#include "chrome/browser/ui/views/tabs/tab_strip_controller.h"
15
16class Browser;
17class Tab;
18class TabStrip;
19struct TabRendererData;
20
21namespace content {
22class WebContents;
23}
24
25namespace ui {
26class ListSelectionModel;
27}
28
29// An implementation of TabStripController that sources data from the
30// WebContentses in a TabStripModel.
31class BrowserTabStripController : public TabStripController,
32                                  public TabStripModelObserver {
33 public:
34  BrowserTabStripController(Browser* browser, TabStripModel* model);
35  virtual ~BrowserTabStripController();
36
37  void InitFromModel(TabStrip* tabstrip);
38
39  TabStripModel* model() const { return model_; }
40
41  bool IsCommandEnabledForTab(TabStripModel::ContextMenuCommand command_id,
42                              Tab* tab) const;
43  void ExecuteCommandForTab(TabStripModel::ContextMenuCommand command_id,
44                            Tab* tab);
45  bool IsTabPinned(Tab* tab) const;
46
47  // TabStripController implementation:
48  virtual const ui::ListSelectionModel& GetSelectionModel() OVERRIDE;
49  virtual int GetCount() const OVERRIDE;
50  virtual bool IsValidIndex(int model_index) const OVERRIDE;
51  virtual bool IsActiveTab(int model_index) const OVERRIDE;
52  virtual int GetActiveIndex() const OVERRIDE;
53  virtual bool IsTabSelected(int model_index) const OVERRIDE;
54  virtual bool IsTabPinned(int model_index) const OVERRIDE;
55  virtual bool IsNewTabPage(int model_index) const OVERRIDE;
56  virtual void SelectTab(int model_index) OVERRIDE;
57  virtual void ExtendSelectionTo(int model_index) OVERRIDE;
58  virtual void ToggleSelected(int model_index) OVERRIDE;
59  virtual void AddSelectionFromAnchorTo(int model_index) OVERRIDE;
60  virtual void CloseTab(int model_index, CloseTabSource source) OVERRIDE;
61  virtual void ShowContextMenuForTab(Tab* tab,
62                                     const gfx::Point& p,
63                                     ui::MenuSourceType source_type) OVERRIDE;
64  virtual void UpdateLoadingAnimations() OVERRIDE;
65  virtual int HasAvailableDragActions() const OVERRIDE;
66  virtual void OnDropIndexUpdate(int index, bool drop_before) OVERRIDE;
67  virtual void PerformDrop(bool drop_before,
68                           int index,
69                           const GURL& url) OVERRIDE;
70  virtual bool IsCompatibleWith(TabStrip* other) const OVERRIDE;
71  virtual void CreateNewTab() OVERRIDE;
72  virtual bool IsIncognito() OVERRIDE;
73  virtual void LayoutTypeMaybeChanged() OVERRIDE;
74  virtual bool IsTabShowingWebViewModalDialog(int index) OVERRIDE;
75  virtual void OnStartedDraggingTabs() OVERRIDE;
76  virtual void OnStoppedDraggingTabs() OVERRIDE;
77
78  // TabStripModelObserver implementation:
79  virtual void TabInsertedAt(content::WebContents* contents,
80                             int model_index,
81                             bool is_active) OVERRIDE;
82  virtual void TabDetachedAt(content::WebContents* contents,
83                             int model_index) OVERRIDE;
84  virtual void TabSelectionChanged(
85      TabStripModel* tab_strip_model,
86      const ui::ListSelectionModel& old_model) OVERRIDE;
87  virtual void TabMoved(content::WebContents* contents,
88                        int from_model_index,
89                        int to_model_index) OVERRIDE;
90  virtual void TabChangedAt(content::WebContents* contents,
91                            int model_index,
92                            TabChangeType change_type) OVERRIDE;
93  virtual void TabReplacedAt(TabStripModel* tab_strip_model,
94                             content::WebContents* old_contents,
95                             content::WebContents* new_contents,
96                             int model_index) OVERRIDE;
97  virtual void TabPinnedStateChanged(content::WebContents* contents,
98                                     int model_index) OVERRIDE;
99  virtual void TabMiniStateChanged(content::WebContents* contents,
100                                   int model_index) OVERRIDE;
101  virtual void TabBlockedStateChanged(content::WebContents* contents,
102                                      int model_index) OVERRIDE;
103
104 protected:
105  // The context in which SetTabRendererDataFromModel is being called.
106  enum TabStatus {
107    NEW_TAB,
108    EXISTING_TAB
109  };
110
111  // Sets the TabRendererData from the TabStripModel.
112  virtual void SetTabRendererDataFromModel(content::WebContents* contents,
113                                           int model_index,
114                                           TabRendererData* data,
115                                           TabStatus tab_status);
116
117  Profile* profile() const { return model_->profile(); }
118
119  const TabStrip* tabstrip() const { return tabstrip_; }
120
121  const Browser* browser() const { return browser_; }
122
123 private:
124  class TabContextMenuContents;
125
126  // Invokes tabstrip_->SetTabData.
127  void SetTabDataAt(content::WebContents* web_contents, int model_index);
128
129  void StartHighlightTabsForCommand(
130      TabStripModel::ContextMenuCommand command_id,
131      Tab* tab);
132  void StopHighlightTabsForCommand(
133      TabStripModel::ContextMenuCommand command_id,
134      Tab* tab);
135
136  // Adds a tab.
137  void AddTab(content::WebContents* contents, int index, bool is_active);
138
139  // Resets the tabstrips layout type from prefs.
140  void UpdateLayoutType();
141
142  TabStripModel* model_;
143
144  TabStrip* tabstrip_;
145
146  // Non-owning pointer to the browser which is using this controller.
147  Browser* browser_;
148
149  // If non-NULL it means we're showing a menu for the tab.
150  scoped_ptr<TabContextMenuContents> context_menu_contents_;
151
152  // Helper for performing tab selection as a result of dragging over a tab.
153  HoverTabSelector hover_tab_selector_;
154
155  // Forces the tabs to use the regular (non-immersive) style and the
156  // top-of-window views to be revealed when the user is dragging |tabstrip|'s
157  // tabs.
158  scoped_ptr<ImmersiveRevealedLock> immersive_reveal_lock_;
159
160  PrefChangeRegistrar local_pref_registrar_;
161
162  DISALLOW_COPY_AND_ASSIGN(BrowserTabStripController);
163};
164
165#endif  // CHROME_BROWSER_UI_VIEWS_TABS_BROWSER_TAB_STRIP_CONTROLLER_H_
166