OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2009 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_VIEWS_BROWSER_ACTIONS_PANEL_H_ |
| 6 #define CHROME_BROWSER_VIEWS_BROWSER_ACTIONS_PANEL_H_ |
| 7 |
| 8 #include <vector> |
| 9 |
| 10 #include "chrome/common/notification_observer.h" |
| 11 #include "chrome/common/notification_registrar.h" |
| 12 #include "views/view.h" |
| 13 |
| 14 class ContextualAction; |
| 15 class Profile; |
| 16 class ToolbarView; |
| 17 namespace views { |
| 18 class ImageButton; |
| 19 } |
| 20 |
| 21 //////////////////////////////////////////////////////////////////////////////// |
| 22 // |
| 23 // The BrowserActionsContainer is a container view, responsible for drawing the |
| 24 // icons that represent browser actions (extensions that add icons to the |
| 25 // toolbar). |
| 26 // |
| 27 //////////////////////////////////////////////////////////////////////////////// |
| 28 class BrowserActionsContainer : public views::View, |
| 29 public NotificationObserver { |
| 30 public: |
| 31 BrowserActionsContainer(Profile* profile, ToolbarView* toolbar); |
| 32 virtual ~BrowserActionsContainer(); |
| 33 |
| 34 // Update the views to reflect the state of the browser action icons. |
| 35 void RefreshBrowserActionViews(); |
| 36 |
| 37 // Delete all browser action views. |
| 38 void DeleteBrowserActionViews(); |
| 39 |
| 40 // Called when a browser action becomes visible/hidden. |
| 41 void OnBrowserActionVisibilityChanged(); |
| 42 |
| 43 // Called when the user clicks on the browser action icon. |
| 44 void OnBrowserActionExecuted(const ContextualAction& browser_action); |
| 45 |
| 46 // Overridden from views::View: |
| 47 virtual gfx::Size GetPreferredSize(); |
| 48 virtual void Layout(); |
| 49 |
| 50 // Overridden from NotificationObserver: |
| 51 virtual void Observe(NotificationType type, |
| 52 const NotificationSource& source, |
| 53 const NotificationDetails& details); |
| 54 |
| 55 private: |
| 56 // The vector of browser actions (icons/image buttons for each action). |
| 57 std::vector<views::ImageButton*> browser_action_views_; |
| 58 |
| 59 NotificationRegistrar registrar_; |
| 60 |
| 61 Profile* profile_; |
| 62 |
| 63 // The toolbar that owns us. |
| 64 ToolbarView* toolbar_; |
| 65 |
| 66 DISALLOW_COPY_AND_ASSIGN(BrowserActionsContainer); |
| 67 }; |
| 68 |
| 69 #endif // CHROME_BROWSER_VIEWS_BROWSER_ACTIONS_PANEL_H_ |
OLD | NEW |