| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 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_TOOLBAR_TOOLBAR_BUTTON_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_TOOLBAR_TOOLBAR_BUTTON_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_TOOLBAR_TOOLBAR_BUTTON_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_TOOLBAR_TOOLBAR_BUTTON_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "ui/gfx/geometry/point.h" |
| 9 #include "ui/views/animation/ink_drop_host.h" | 10 #include "ui/views/animation/ink_drop_host.h" |
| 10 #include "ui/views/context_menu_controller.h" | 11 #include "ui/views/context_menu_controller.h" |
| 11 #include "ui/views/controls/button/button.h" | 12 #include "ui/views/controls/button/button.h" |
| 12 #include "ui/views/controls/button/label_button.h" | 13 #include "ui/views/controls/button/label_button.h" |
| 13 | 14 |
| 14 namespace ui { | 15 namespace ui { |
| 15 class MenuModel; | 16 class MenuModel; |
| 16 } | 17 } |
| 17 | 18 |
| 18 namespace views { | 19 namespace views { |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 // views::ContextMenuController: | 56 // views::ContextMenuController: |
| 56 void ShowContextMenuForView(View* source, | 57 void ShowContextMenuForView(View* source, |
| 57 const gfx::Point& point, | 58 const gfx::Point& point, |
| 58 ui::MenuSourceType source_type) override; | 59 ui::MenuSourceType source_type) override; |
| 59 | 60 |
| 60 // views::InkDropHost: | 61 // views::InkDropHost: |
| 61 void AddInkDropLayer(ui::Layer* ink_drop_layer) override; | 62 void AddInkDropLayer(ui::Layer* ink_drop_layer) override; |
| 62 void RemoveInkDropLayer(ui::Layer* ink_drop_layer) override; | 63 void RemoveInkDropLayer(ui::Layer* ink_drop_layer) override; |
| 63 | 64 |
| 64 protected: | 65 protected: |
| 65 // Overridden from CustomButton. Returns true if the button should become | 66 // views::LabelButton: |
| 66 // pressed when a user holds the mouse down over the button. For this | |
| 67 // implementation, both left and right mouse buttons can trigger a change | |
| 68 // to the PUSHED state. | |
| 69 bool ShouldEnterPushedState(const ui::Event& event) override; | 67 bool ShouldEnterPushedState(const ui::Event& event) override; |
| 68 void NotifyClick(const ui::Event& event) override; |
| 70 | 69 |
| 71 // Returns if menu should be shown. Override this to change default behavior. | 70 // Returns if menu should be shown. Override this to change default behavior. |
| 72 virtual bool ShouldShowMenu(); | 71 virtual bool ShouldShowMenu(); |
| 73 | 72 |
| 74 // Function to show the dropdown menu. | 73 // Function to show the dropdown menu. |
| 75 virtual void ShowDropDownMenu(ui::MenuSourceType source_type); | 74 virtual void ShowDropDownMenu(ui::MenuSourceType source_type); |
| 76 | 75 |
| 77 virtual void LayoutInkDrop(); | 76 // Returns the Point where the ink drop should be centered. |
| 77 virtual gfx::Point CalculateInkDropCenter() const; |
| 78 | 78 |
| 79 views::InkDropAnimationController* ink_drop_animation_controller() { | 79 views::InkDropAnimationController* ink_drop_animation_controller() { |
| 80 return ink_drop_animation_controller_.get(); | 80 return ink_drop_animation_controller_.get(); |
| 81 } | 81 } |
| 82 | 82 |
| 83 private: | 83 private: |
| 84 // views::LabelButton: | 84 // views::LabelButton: |
| 85 const char* GetClassName() const override; | 85 const char* GetClassName() const override; |
| 86 | 86 |
| 87 // The model that populates the attached menu. | 87 // The model that populates the attached menu. |
| (...skipping 11 matching lines...) Expand all Loading... |
| 99 // Animation controller for the ink drop ripple effect. | 99 // Animation controller for the ink drop ripple effect. |
| 100 scoped_ptr<views::InkDropAnimationController> ink_drop_animation_controller_; | 100 scoped_ptr<views::InkDropAnimationController> ink_drop_animation_controller_; |
| 101 | 101 |
| 102 // A factory for tasks that show the dropdown context menu for the button. | 102 // A factory for tasks that show the dropdown context menu for the button. |
| 103 base::WeakPtrFactory<ToolbarButton> show_menu_factory_; | 103 base::WeakPtrFactory<ToolbarButton> show_menu_factory_; |
| 104 | 104 |
| 105 DISALLOW_COPY_AND_ASSIGN(ToolbarButton); | 105 DISALLOW_COPY_AND_ASSIGN(ToolbarButton); |
| 106 }; | 106 }; |
| 107 | 107 |
| 108 #endif // CHROME_BROWSER_UI_VIEWS_TOOLBAR_TOOLBAR_BUTTON_H_ | 108 #endif // CHROME_BROWSER_UI_VIEWS_TOOLBAR_TOOLBAR_BUTTON_H_ |
| OLD | NEW |