OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_UI_VIEWS_EXTENSIONS_EXTENSION_ACTION_VIEW_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_EXTENSIONS_EXTENSION_ACTION_VIEW_CONTROLLER_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_EXTENSIONS_EXTENSION_ACTION_VIEW_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_EXTENSIONS_EXTENSION_ACTION_VIEW_CONTROLLER_H_ |
7 | 7 |
8 #include "chrome/browser/extensions/extension_action_icon_factory.h" | 8 #include "chrome/browser/extensions/extension_action_icon_factory.h" |
9 #include "chrome/browser/extensions/extension_context_menu_model.h" | 9 #include "chrome/browser/extensions/extension_context_menu_model.h" |
10 #include "chrome/browser/ui/views/extensions/extension_popup.h" | 10 #include "chrome/browser/ui/views/extensions/extension_popup.h" |
| 11 #include "chrome/browser/ui/views/toolbar/toolbar_action_view_controller.h" |
| 12 #include "content/public/browser/notification_observer.h" |
| 13 #include "content/public/browser/notification_registrar.h" |
11 #include "ui/base/accelerators/accelerator.h" | 14 #include "ui/base/accelerators/accelerator.h" |
12 #include "ui/gfx/image/image.h" | 15 #include "ui/gfx/image/image.h" |
13 #include "ui/views/context_menu_controller.h" | 16 #include "ui/views/context_menu_controller.h" |
14 #include "ui/views/widget/widget_observer.h" | 17 #include "ui/views/widget/widget_observer.h" |
15 | 18 |
16 class Browser; | 19 class Browser; |
17 class ExtensionAction; | 20 class ExtensionAction; |
18 class ExtensionActionViewDelegate; | 21 class ToolbarActionViewDelegate; |
19 | 22 |
20 namespace content { | 23 namespace content { |
21 class WebContents; | 24 class WebContents; |
22 } | 25 } |
23 | 26 |
24 namespace extensions { | 27 namespace extensions { |
25 class Command; | 28 class Command; |
26 class Extension; | 29 class Extension; |
27 } | 30 } |
28 | 31 |
29 namespace ui { | 32 namespace ui { |
30 class Accelerator; | 33 class Accelerator; |
31 } | 34 } |
32 | 35 |
33 namespace views { | 36 namespace views { |
34 class MenuRunner; | 37 class MenuRunner; |
35 class View; | 38 class View; |
36 class Widget; | 39 class Widget; |
37 } | 40 } |
38 | 41 |
39 // An abstract "View" for an ExtensionAction (either a BrowserAction or a | 42 // An abstract "View" for an ExtensionAction (either a BrowserAction or a |
40 // PageAction). This contains the logic for showing the action's popup and | 43 // PageAction). This contains the logic for showing the action's popup and |
41 // the context menu. This class doesn't subclass View directly, as the | 44 // the context menu. This class doesn't subclass View directly, as the |
42 // implementations for page actions/browser actions are different types of | 45 // implementations for page actions/browser actions are different types of |
43 // views. | 46 // views. |
44 // All common logic for executing extension actions should go in this class; | 47 // All common logic for executing extension actions should go in this class; |
45 // ExtensionActionViewDelegate classes should only have knowledge relating to | 48 // ExtensionActionViewDelegate classes should only have knowledge relating to |
46 // the views::View wrapper. | 49 // the views::View wrapper. |
47 class ExtensionActionViewController | 50 class ExtensionActionViewController |
48 : public ExtensionActionIconFactory::Observer, | 51 : public ToolbarActionViewController, |
| 52 public content::NotificationObserver, |
| 53 public ExtensionActionIconFactory::Observer, |
49 public ExtensionContextMenuModel::PopupDelegate, | 54 public ExtensionContextMenuModel::PopupDelegate, |
50 public ui::AcceleratorTarget, | 55 public ui::AcceleratorTarget, |
51 public views::ContextMenuController, | 56 public views::ContextMenuController, |
52 public views::WidgetObserver { | 57 public views::WidgetObserver { |
53 public: | 58 public: |
54 ExtensionActionViewController(const extensions::Extension* extension, | 59 ExtensionActionViewController(const extensions::Extension* extension, |
55 Browser* browser, | 60 Browser* browser, |
56 ExtensionAction* extension_action, | 61 ExtensionAction* extension_action, |
57 ExtensionActionViewDelegate* delegate); | 62 ToolbarActionViewDelegate* delegate); |
58 virtual ~ExtensionActionViewController(); | 63 virtual ~ExtensionActionViewController(); |
59 | 64 |
| 65 // ToolbarActionViewController: |
| 66 virtual void SetDelegate(ToolbarActionViewDelegate* delegate) override; |
| 67 virtual gfx::Image GetIcon(int tab_id) override; |
| 68 virtual base::string16 GetAccessibleName(int tab_id) const override; |
| 69 virtual base::string16 GetTooltip(int tab_id) const override; |
| 70 virtual bool IsEnabled(int tab_id) const override; |
| 71 virtual bool HasPopup(int tab_id) const override; |
| 72 virtual void HidePopup() override; |
| 73 virtual bool IsMenuRunning() const override; |
| 74 virtual void ExecuteActionByUser() override; |
| 75 virtual void PaintExtra(gfx::Canvas* canvas, |
| 76 const gfx::Rect& bounds, |
| 77 int tab_id) const override; |
| 78 virtual void RegisterCommand() override; |
| 79 |
60 // ExtensionContextMenuModel::PopupDelegate: | 80 // ExtensionContextMenuModel::PopupDelegate: |
61 virtual void InspectPopup() override; | 81 virtual void InspectPopup() override; |
62 | 82 |
63 // Executes the default extension action (typically showing the popup), and | |
64 // attributes the action to a user (thus, only use this for actions that | |
65 // *were* done by the user). | |
66 void ExecuteActionByUser(); | |
67 | |
68 // Executes the extension action with |show_action|. If | 83 // Executes the extension action with |show_action|. If |
69 // |grant_tab_permissions| is true, this will grant the extension active tab | 84 // |grant_tab_permissions| is true, this will grant the extension active tab |
70 // permissions. Only do this if this was done through a user action (and not | 85 // permissions. Only do this if this was done through a user action (and not |
71 // e.g. an API). Returns true if a popup is shown. | 86 // e.g. an API). Returns true if a popup is shown. |
72 bool ExecuteAction(ExtensionPopup::ShowAction show_action, | 87 bool ExecuteAction(ExtensionPopup::ShowAction show_action, |
73 bool grant_tab_permissions); | 88 bool grant_tab_permissions); |
74 | 89 |
75 // Hides the popup, if one is open. | 90 // Returns the icon, plus any badge, for the current tab. |
76 void HidePopup(); | 91 gfx::ImageSkia GetIconWithBadge(); |
77 | 92 |
78 // Returns the icon from the |icon_factory_|. | 93 void set_icon_observer(ExtensionActionIconFactory::Observer* icon_observer) { |
79 gfx::Image GetIcon(int tab_id); | 94 icon_observer_ = icon_observer; |
80 | 95 } |
81 // Returns the current tab id. | |
82 int GetCurrentTabId() const; | |
83 | |
84 // Registers an accelerator for the extension action's command, if one | |
85 // exists. | |
86 void RegisterCommand(); | |
87 | |
88 // Unregisters the accelerator for the extension action's command, if one | |
89 // exists. If |only_if_removed| is true, then this will only unregister if the | |
90 // command has been removed. | |
91 void UnregisterCommand(bool only_if_removed); | |
92 | 96 |
93 const extensions::Extension* extension() const { return extension_; } | 97 const extensions::Extension* extension() const { return extension_; } |
94 Browser* browser() { return browser_; } | 98 Browser* browser() { return browser_; } |
95 ExtensionAction* extension_action() { return extension_action_; } | 99 ExtensionAction* extension_action() { return extension_action_; } |
96 const ExtensionAction* extension_action() const { return extension_action_; } | 100 const ExtensionAction* extension_action() const { return extension_action_; } |
97 ExtensionPopup* popup() { return popup_; } | 101 ExtensionPopup* popup() { return popup_; } |
98 bool is_menu_running() const { return menu_runner_.get() != NULL; } | |
99 | 102 |
100 private: | 103 private: |
101 // ExtensionActionIconFactory::Observer: | 104 // ExtensionActionIconFactory::Observer: |
102 virtual void OnIconUpdated() override; | 105 virtual void OnIconUpdated() override; |
103 | 106 |
104 // ui::AcceleratorTarget: | 107 // ui::AcceleratorTarget: |
105 virtual bool AcceleratorPressed(const ui::Accelerator& accelerator) override; | 108 virtual bool AcceleratorPressed(const ui::Accelerator& accelerator) override; |
106 virtual bool CanHandleAccelerators() const override; | 109 virtual bool CanHandleAccelerators() const override; |
107 | 110 |
108 // views::WidgetObserver: | 111 // views::WidgetObserver: |
109 virtual void OnWidgetDestroying(views::Widget* widget) override; | 112 virtual void OnWidgetDestroying(views::Widget* widget) override; |
110 | 113 |
111 // views::ContextMenuController: | 114 // views::ContextMenuController: |
112 virtual void ShowContextMenuForView(views::View* source, | 115 virtual void ShowContextMenuForView(views::View* source, |
113 const gfx::Point& point, | 116 const gfx::Point& point, |
114 ui::MenuSourceType source_type) override; | 117 ui::MenuSourceType source_type) override; |
115 | 118 |
| 119 // content::NotificationObserver: |
| 120 virtual void Observe(int type, |
| 121 const content::NotificationSource& source, |
| 122 const content::NotificationDetails& details) override; |
| 123 |
116 // Shows the context menu for extension action. | 124 // Shows the context menu for extension action. |
117 void DoShowContextMenu(ui::MenuSourceType source_type); | 125 void DoShowContextMenu(ui::MenuSourceType source_type); |
118 | 126 |
119 // Shows the popup for the extension action, given the associated |popup_url|. | 127 // Shows the popup for the extension action, given the associated |popup_url|. |
120 // |grant_tab_permissions| is true if active tab permissions should be given | 128 // |grant_tab_permissions| is true if active tab permissions should be given |
121 // to the extension; this is only true if the popup is opened through a user | 129 // to the extension; this is only true if the popup is opened through a user |
122 // action. | 130 // action. |
123 // Returns true if a popup is successfully shown. | 131 // Returns true if a popup is successfully shown. |
124 bool ShowPopupWithUrl(ExtensionPopup::ShowAction show_action, | 132 bool ShowPopupWithUrl(ExtensionPopup::ShowAction show_action, |
125 const GURL& popup_url, | 133 const GURL& popup_url, |
126 bool grant_tab_permissions); | 134 bool grant_tab_permissions); |
127 | 135 |
128 // Populates |command| with the command associated with |extension|, if one | 136 // Populates |command| with the command associated with |extension|, if one |
129 // exists. Returns true if |command| was populated. | 137 // exists. Returns true if |command| was populated. |
130 bool GetExtensionCommand(extensions::Command* command); | 138 bool GetExtensionCommand(extensions::Command* command); |
131 | 139 |
| 140 // Unregisters the accelerator for the extension action's command, if one |
| 141 // exists. If |only_if_removed| is true, then this will only unregister if the |
| 142 // command has been removed. |
| 143 void UnregisterCommand(bool only_if_removed); |
| 144 |
132 // Closes the currently-active menu, if needed. This is the case when there | 145 // Closes the currently-active menu, if needed. This is the case when there |
133 // is an active menu that wouldn't close automatically when a new one is | 146 // is an active menu that wouldn't close automatically when a new one is |
134 // opened. | 147 // opened. |
135 // Returns true if a menu was closed, false otherwise. | 148 // Returns true if a menu was closed, false otherwise. |
136 bool CloseActiveMenuIfNeeded(); | 149 bool CloseActiveMenuIfNeeded(); |
137 | 150 |
138 // Cleans up after the popup. If |close_widget| is true, this will call | 151 // Cleans up after the popup. If |close_widget| is true, this will call |
139 // Widget::Close() on the popup's widget; otherwise it assumes the popup is | 152 // Widget::Close() on the popup's widget; otherwise it assumes the popup is |
140 // already closing. | 153 // already closing. |
141 void CleanupPopup(bool close_widget); | 154 void CleanupPopup(bool close_widget); |
142 | 155 |
143 // The extension associated with the action we're displaying. | 156 // The extension associated with the action we're displaying. |
144 const extensions::Extension* extension_; | 157 const extensions::Extension* extension_; |
145 | 158 |
146 // The corresponding browser. | 159 // The corresponding browser. |
147 Browser* browser_; | 160 Browser* browser_; |
148 | 161 |
149 // The browser action this view represents. The ExtensionAction is not owned | 162 // The browser action this view represents. The ExtensionAction is not owned |
150 // by this class. | 163 // by this class. |
151 ExtensionAction* extension_action_; | 164 ExtensionAction* extension_action_; |
152 | 165 |
153 // Our delegate. | 166 // Our delegate. |
154 ExtensionActionViewDelegate* delegate_; | 167 ToolbarActionViewDelegate* delegate_; |
155 | 168 |
156 // The object that will be used to get the browser action icon for us. | 169 // The object that will be used to get the browser action icon for us. |
157 // It may load the icon asynchronously (in which case the initial icon | 170 // It may load the icon asynchronously (in which case the initial icon |
158 // returned by the factory will be transparent), so we have to observe it for | 171 // returned by the factory will be transparent), so we have to observe it for |
159 // updates to the icon. | 172 // updates to the icon. |
160 ExtensionActionIconFactory icon_factory_; | 173 ExtensionActionIconFactory icon_factory_; |
161 | 174 |
| 175 // The observer that we need to notify when the icon of the button has been |
| 176 // updated. |
| 177 ExtensionActionIconFactory::Observer* icon_observer_; |
| 178 |
162 // Responsible for running the menu. | 179 // Responsible for running the menu. |
163 scoped_ptr<views::MenuRunner> menu_runner_; | 180 scoped_ptr<views::MenuRunner> menu_runner_; |
164 | 181 |
165 // The browser action's popup, if it is visible; NULL otherwise. | 182 // The browser action's popup, if it is visible; NULL otherwise. |
166 ExtensionPopup* popup_; | 183 ExtensionPopup* popup_; |
167 | 184 |
168 // The extension key binding accelerator this extension action is listening | 185 // The extension key binding accelerator this extension action is listening |
169 // for (to show the popup). | 186 // for (to show the popup). |
170 scoped_ptr<ui::Accelerator> action_keybinding_; | 187 scoped_ptr<ui::Accelerator> action_keybinding_; |
171 | 188 |
| 189 content::NotificationRegistrar registrar_; |
| 190 |
172 // If non-NULL, this is the next ExtensionActionViewController context menu | 191 // If non-NULL, this is the next ExtensionActionViewController context menu |
173 // which wants to run once the current owner (this one) is done. | 192 // which wants to run once the current owner (this one) is done. |
174 base::Closure followup_context_menu_task_; | 193 base::Closure followup_context_menu_task_; |
175 | 194 |
176 base::WeakPtrFactory<ExtensionActionViewController> weak_factory_; | 195 base::WeakPtrFactory<ExtensionActionViewController> weak_factory_; |
177 | 196 |
178 DISALLOW_COPY_AND_ASSIGN(ExtensionActionViewController); | 197 DISALLOW_COPY_AND_ASSIGN(ExtensionActionViewController); |
179 }; | 198 }; |
180 | 199 |
181 #endif // CHROME_BROWSER_UI_VIEWS_EXTENSIONS_EXTENSION_ACTION_VIEW_CONTROLLER_H
_ | 200 #endif // CHROME_BROWSER_UI_VIEWS_EXTENSIONS_EXTENSION_ACTION_VIEW_CONTROLLER_H
_ |
OLD | NEW |