[Extensions Toolbar] Fix animating() and check it for resizing
[chromium-blink-merge.git] / chrome / browser / ui / views / toolbar / browser_actions_container.h
blob0203a668b6fcc180f100333e81bfa0fcf364bd26
1 // Copyright 2013 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.
5 #ifndef CHROME_BROWSER_UI_VIEWS_TOOLBAR_BROWSER_ACTIONS_CONTAINER_H_
6 #define CHROME_BROWSER_UI_VIEWS_TOOLBAR_BROWSER_ACTIONS_CONTAINER_H_
8 #include "base/observer_list.h"
9 #include "chrome/browser/extensions/extension_keybinding_registry.h"
10 #include "chrome/browser/ui/toolbar/toolbar_actions_bar.h"
11 #include "chrome/browser/ui/toolbar/toolbar_actions_bar_delegate.h"
12 #include "chrome/browser/ui/views/extensions/extension_keybinding_registry_views.h"
13 #include "chrome/browser/ui/views/toolbar/chevron_menu_button.h"
14 #include "chrome/browser/ui/views/toolbar/toolbar_action_view.h"
15 #include "ui/gfx/animation/animation_delegate.h"
16 #include "ui/gfx/animation/slide_animation.h"
17 #include "ui/gfx/animation/tween.h"
18 #include "ui/views/controls/resize_area_delegate.h"
19 #include "ui/views/drag_controller.h"
20 #include "ui/views/view.h"
22 class BrowserActionsContainerObserver;
23 class ExtensionPopup;
25 namespace extensions {
26 class ActiveTabPermissionGranter;
27 class Command;
28 class Extension;
31 namespace views {
32 class ResizeArea;
35 // The BrowserActionsContainer is a container view, responsible for drawing the
36 // toolbar action icons (including extension icons and icons for component
37 // toolbar actions). It comes intwo flavors, a main container (when residing on
38 // the toolbar) and an overflow container (that resides in the main application
39 // menu, aka the Chrome menu).
41 // When in 'main' mode, the container supports the full functionality of a
42 // BrowserActionContainer, but in 'overflow' mode the container is effectively
43 // just an overflow for the 'main' toolbar (shows only the icons that the main
44 // toolbar does not) and as such does not have an overflow itself. The overflow
45 // container also does not support resizing. Since the main container only shows
46 // icons in the Chrome toolbar, it is limited to a single row of icons. The
47 // overflow container, however, is allowed to display icons in multiple rows.
49 // The main container is placed flush against the omnibox and hot dog menu,
50 // whereas the overflow container is placed within the hot dog menu. The
51 // layout is similar to this:
52 // rI_I_IcCs
53 // Where the letters are as follows:
54 // r: An invisible resize area. This is ToolbarView::kStandardSpacing pixels
55 // wide and directly adjacent to the omnibox. Only shown for the main
56 // container.
57 // I: An icon. This is as wide as the IDR_BROWSER_ACTION image.
58 // _: kItemSpacing pixels of empty space.
59 // c: kChevronSpacing pixels of empty space. Only present if C is present.
60 // C: An optional chevron, as wide as the IDR_BROWSER_ACTIONS_OVERFLOW image,
61 // and visible only when both of the following statements are true:
62 // - The container is set to a width smaller than needed to show all icons.
63 // - There is no other container in 'overflow' mode to handle the
64 // non-visible icons for this container.
65 // s: ToolbarView::kStandardSpacing pixels of empty space (before the wrench
66 // menu).
67 // The reason the container contains the trailing space "s", rather than having
68 // it be handled by the parent view, is so that when the chevron is invisible
69 // and the user starts dragging an icon around, we have the space to draw the
70 // ultimate drop indicator. (Otherwise, we'd be trying to draw it into the
71 // padding beyond our right edge, and it wouldn't appear.)
73 // The BrowserActionsContainer in 'main' mode follows a few rules, in terms of
74 // user experience:
76 // 1) The container can never grow beyond the space needed to show all icons
77 // (hereby referred to as the max width).
78 // 2) The container can never shrink below the space needed to show just the
79 // initial padding and the chevron (ignoring the case where there are no icons
80 // to show, in which case the container won't be visible anyway).
81 // 3) The container snaps into place (to the pixel count that fits the visible
82 // icons) to make sure there is no wasted space at the edges of the container.
83 // 4) If the user adds or removes icons (read: installs/uninstalls browser
84 // actions) we grow and shrink the container as needed - but ONLY if the
85 // container was at max width to begin with.
86 // 5) If the container is NOT at max width (has an overflow menu), we respect
87 // that size when adding and removing icons and DON'T grow/shrink the container.
88 // This means that new icons (which always appear at the far right) will show up
89 // in the overflow. The install bubble for extensions points to the chevron
90 // menu in this case.
92 // Resizing the BrowserActionsContainer:
94 // The ResizeArea view sends OnResize messages to the BrowserActionsContainer
95 // class as the user drags it. This modifies the value for |resize_amount_|.
96 // That indicates to the container that a resize is in progress and is used to
97 // calculate the size in GetPreferredSize(), though that function never exceeds
98 // the defined minimum and maximum size of the container.
100 // When the user releases the mouse (ends the resize), we calculate a target
101 // size for the container (animation_target_size_), clamp that value to the
102 // containers min and max and then animate from the *current* position (that the
103 // user has dragged the view to) to the target size.
105 // Animating the BrowserActionsContainer:
107 // Animations are used when snapping the container to a value that fits all
108 // visible icons. This can be triggered when the user finishes resizing the
109 // container or when Browser Actions are added/removed.
111 // We always animate from the current width (container_width_) to the target
112 // size (animation_target_size_), using |resize_amount| to keep track of the
113 // animation progress.
115 // NOTE: When adding Browser Actions to a maximum width container (no overflow)
116 // we make sure to suppress the chevron menu if it wasn't visible. This is
117 // because we won't have enough space to show the new Browser Action until the
118 // animation ends and we don't want the chevron to flash into view while we are
119 // growing the container.
121 ////////////////////////////////////////////////////////////////////////////////
122 class BrowserActionsContainer
123 : public views::View,
124 public ToolbarActionsBarDelegate,
125 public views::ResizeAreaDelegate,
126 public gfx::AnimationDelegate,
127 public ToolbarActionView::Delegate,
128 public extensions::ExtensionKeybindingRegistry::Delegate {
129 public:
130 // Constructs a BrowserActionContainer for a particular |browser| object. For
131 // documentation of |main_container|, see class comments.
132 BrowserActionsContainer(Browser* browser,
133 BrowserActionsContainer* main_container);
134 ~BrowserActionsContainer() override;
136 void Init();
138 // Get the number of toolbar actions being displayed.
139 size_t num_toolbar_actions() const { return toolbar_action_views_.size(); }
141 // Returns the chevron, if any.
142 views::View* chevron() { return chevron_; }
143 const views::View* chevron() const { return chevron_; }
145 // Returns the browser this container is associated with.
146 Browser* browser() const { return browser_; }
148 ToolbarActionsBar* toolbar_actions_bar() {
149 return toolbar_actions_bar_.get();
152 // The class that registers for keyboard shortcuts for extension commands.
153 extensions::ExtensionKeybindingRegistry* extension_keybinding_registry() {
154 return extension_keybinding_registry_.get();
157 // Get a particular toolbar action view.
158 ToolbarActionView* GetToolbarActionViewAt(int index) {
159 return toolbar_action_views_[index];
162 // Whether we are performing resize animation on the container.
163 bool animating() const {
164 return resize_animation_ && resize_animation_->is_animating();
167 // Returns the ID of the action represented by the view at |index|.
168 const std::string& GetIdAt(size_t index) const;
170 // Returns the ToolbarActionView* associated with the given |extension|, or
171 // NULL if none exists.
172 ToolbarActionView* GetViewForId(const std::string& id);
174 // Update the views to reflect the state of the toolbar actions.
175 void RefreshToolbarActionViews();
177 // Returns how many actions are currently visible. If the intent is to find
178 // how many are visible once the container finishes animation, see
179 // VisibleBrowserActionsAfterAnimation() below.
180 size_t VisibleBrowserActions() const;
182 // Returns how many actions will be visible once the container finishes
183 // animating to a new size, or (if not animating) the currently visible icons.
184 size_t VisibleBrowserActionsAfterAnimation() const;
186 // Executes |command| registered by |extension|.
187 void ExecuteExtensionCommand(const extensions::Extension* extension,
188 const extensions::Command& command);
190 // Add or remove an observer.
191 void AddObserver(BrowserActionsContainerObserver* observer);
192 void RemoveObserver(BrowserActionsContainerObserver* observer);
194 // Overridden from views::View:
195 gfx::Size GetPreferredSize() const override;
196 int GetHeightForWidth(int width) const override;
197 gfx::Size GetMinimumSize() const override;
198 void Layout() override;
199 bool GetDropFormats(
200 int* formats,
201 std::set<ui::OSExchangeData::CustomFormat>* custom_formats) override;
202 bool AreDropTypesRequired() override;
203 bool CanDrop(const ui::OSExchangeData& data) override;
204 int OnDragUpdated(const ui::DropTargetEvent& event) override;
205 void OnDragExited() override;
206 int OnPerformDrop(const ui::DropTargetEvent& event) override;
207 void GetAccessibleState(ui::AXViewState* state) override;
209 // Overridden from views::DragController:
210 void WriteDragDataForView(View* sender,
211 const gfx::Point& press_pt,
212 ui::OSExchangeData* data) override;
213 int GetDragOperationsForView(View* sender, const gfx::Point& p) override;
214 bool CanStartDragForView(View* sender,
215 const gfx::Point& press_pt,
216 const gfx::Point& p) override;
218 // Overridden from views::ResizeAreaDelegate:
219 void OnResize(int resize_amount, bool done_resizing) override;
221 // Overridden from gfx::AnimationDelegate:
222 void AnimationProgressed(const gfx::Animation* animation) override;
223 void AnimationCanceled(const gfx::Animation* animation) override;
224 void AnimationEnded(const gfx::Animation* animation) override;
226 // Overridden from ToolbarActionView::Delegate:
227 content::WebContents* GetCurrentWebContents() override;
228 bool ShownInsideMenu() const override;
229 void OnToolbarActionViewDragDone() override;
230 views::MenuButton* GetOverflowReferenceView() override;
231 void SetPopupOwner(ToolbarActionView* popup_owner) override;
232 void HideActivePopup() override;
233 ToolbarActionView* GetMainViewForAction(ToolbarActionView* view) override;
235 // ToolbarActionsBarDelegate:
236 void AddViewForAction(ToolbarActionViewController* action,
237 size_t index) override;
238 void RemoveViewForAction(ToolbarActionViewController* action) override;
239 void RemoveAllViews() override;
240 void Redraw(bool order_changed) override;
241 void ResizeAndAnimate(gfx::Tween::Type tween_type,
242 int target_width,
243 bool suppress_chevron) override;
244 void SetChevronVisibility(bool chevron_visible) override;
245 int GetWidth() const override;
246 bool IsAnimating() const override;
247 void StopAnimating() override;
248 int GetChevronWidth() const override;
249 bool IsPopupRunning() const override;
251 // Overridden from extension::ExtensionKeybindingRegistry::Delegate:
252 extensions::ActiveTabPermissionGranter* GetActiveTabPermissionGranter()
253 override;
255 // Retrieve the current popup. This should only be used by unit tests.
256 gfx::NativeView TestGetPopup();
258 // During testing we can disable animations by setting this flag to true,
259 // so that the bar resizes instantly, instead of having to poll it while it
260 // animates to open/closed status.
261 static bool disable_animations_during_testing_;
263 protected:
264 // Overridden from views::View:
265 void ViewHierarchyChanged(
266 const ViewHierarchyChangedDetails& details) override;
267 void OnPaint(gfx::Canvas* canvas) override;
268 void OnThemeChanged() override;
270 private:
271 // A struct representing the position at which an action will be dropped.
272 struct DropPosition;
274 typedef std::vector<ToolbarActionView*> ToolbarActionViews;
276 void LoadImages();
278 const ToolbarActionsBar::PlatformSettings& platform_settings() const {
279 return toolbar_actions_bar_->platform_settings();
282 // Whether this container is in overflow mode (as opposed to in 'main'
283 // mode). See class comments for details on the difference.
284 bool in_overflow_mode() const { return main_container_ != NULL; }
286 // The controlling ToolbarActionsBar, which handles most non-view logic.
287 scoped_ptr<ToolbarActionsBar> toolbar_actions_bar_;
289 // The vector of toolbar actions (icons/image buttons for each action).
290 ToolbarActionViews toolbar_action_views_;
292 // The Browser object the container is associated with.
293 Browser* browser_;
295 // The main container we are serving as overflow for, or NULL if this
296 // class is the the main container. See class comments for details on
297 // the difference between main and overflow.
298 BrowserActionsContainer* main_container_;
300 // The view that triggered the current popup (just a reference to a view
301 // from toolbar_action_views_).
302 ToolbarActionView* popup_owner_;
304 // The current width of the container.
305 int container_width_;
307 // The resize area for the container.
308 views::ResizeArea* resize_area_;
310 // The chevron for accessing the overflow items. Can be NULL when in overflow
311 // mode or if the toolbar is permanently suppressing the chevron menu.
312 ChevronMenuButton* chevron_;
314 // The painter used when we are highlighting a subset of extensions.
315 scoped_ptr<views::Painter> highlight_painter_;
317 // The animation that happens when the container snaps to place.
318 scoped_ptr<gfx::SlideAnimation> resize_animation_;
320 // Don't show the chevron while animating.
321 bool suppress_chevron_;
323 // This is used while the user is resizing (and when the animations are in
324 // progress) to know how wide the delta is between the current state and what
325 // we should draw.
326 int resize_amount_;
328 // Keeps track of the absolute pixel width the container should have when we
329 // are done animating.
330 int animation_target_size_;
332 // The DropPosition for the current drag-and-drop operation, or NULL if there
333 // is none.
334 scoped_ptr<DropPosition> drop_position_;
336 // The class that registers for keyboard shortcuts for extension commands.
337 scoped_ptr<ExtensionKeybindingRegistryViews> extension_keybinding_registry_;
339 ObserverList<BrowserActionsContainerObserver> observers_;
341 DISALLOW_COPY_AND_ASSIGN(BrowserActionsContainer);
344 #endif // CHROME_BROWSER_UI_VIEWS_TOOLBAR_BROWSER_ACTIONS_CONTAINER_H_