OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 UI_VIEWS_CONTROLS_BUTTON_BUTTON_DROPDOWN_H_ | 5 #ifndef UI_VIEWS_CONTROLS_BUTTON_BUTTON_DROPDOWN_H_ |
6 #define UI_VIEWS_CONTROLS_BUTTON_BUTTON_DROPDOWN_H_ | 6 #define UI_VIEWS_CONTROLS_BUTTON_BUTTON_DROPDOWN_H_ |
7 | 7 |
8 #include "base/memory/weak_ptr.h" | 8 #include "base/memory/weak_ptr.h" |
9 #include "ui/views/context_menu_controller.h" | 9 #include "ui/views/context_menu_controller.h" |
10 #include "ui/views/controls/button/image_button.h" | 10 #include "ui/views/controls/button/image_button.h" |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 virtual bool OnMouseDragged(const ui::MouseEvent& event) OVERRIDE; | 46 virtual bool OnMouseDragged(const ui::MouseEvent& event) OVERRIDE; |
47 virtual void OnMouseReleased(const ui::MouseEvent& event) OVERRIDE; | 47 virtual void OnMouseReleased(const ui::MouseEvent& event) OVERRIDE; |
48 virtual const char* GetClassName() const OVERRIDE; | 48 virtual const char* GetClassName() const OVERRIDE; |
49 // Showing the drop down results in a MouseCaptureLost, we need to ignore it. | 49 // Showing the drop down results in a MouseCaptureLost, we need to ignore it. |
50 virtual void OnMouseCaptureLost() OVERRIDE {} | 50 virtual void OnMouseCaptureLost() OVERRIDE {} |
51 virtual void OnMouseExited(const ui::MouseEvent& event) OVERRIDE; | 51 virtual void OnMouseExited(const ui::MouseEvent& event) OVERRIDE; |
52 virtual void OnGestureEvent(ui::GestureEvent* event) OVERRIDE; | 52 virtual void OnGestureEvent(ui::GestureEvent* event) OVERRIDE; |
53 virtual void GetAccessibleState(ui::AccessibleViewState* state) OVERRIDE; | 53 virtual void GetAccessibleState(ui::AccessibleViewState* state) OVERRIDE; |
54 | 54 |
55 // Overridden from views::ContextMenuController | 55 // Overridden from views::ContextMenuController |
56 virtual void ShowContextMenuForView(View* source, | 56 virtual void ShowContextMenuForView( |
57 const gfx::Point& point) OVERRIDE; | 57 View* source, |
| 58 const gfx::Point& point, |
| 59 ui::ContextMenuSourceType source_type) OVERRIDE; |
58 | 60 |
59 protected: | 61 protected: |
60 // Overridden from CustomButton. Returns true if the button should become | 62 // Overridden from CustomButton. Returns true if the button should become |
61 // pressed when a user holds the mouse down over the button. For this | 63 // pressed when a user holds the mouse down over the button. For this |
62 // implementation, both left and right mouse buttons can trigger a change | 64 // implementation, both left and right mouse buttons can trigger a change |
63 // to the PUSHED state. | 65 // to the PUSHED state. |
64 virtual bool ShouldEnterPushedState(const ui::Event& event) OVERRIDE; | 66 virtual bool ShouldEnterPushedState(const ui::Event& event) OVERRIDE; |
65 | 67 |
66 // Returns if menu should be shown. Override this to change default behavior. | 68 // Returns if menu should be shown. Override this to change default behavior. |
67 virtual bool ShouldShowMenu(); | 69 virtual bool ShouldShowMenu(); |
(...skipping 16 matching lines...) Expand all Loading... |
84 | 86 |
85 // A factory for tasks that show the dropdown context menu for the button. | 87 // A factory for tasks that show the dropdown context menu for the button. |
86 base::WeakPtrFactory<ButtonDropDown> show_menu_factory_; | 88 base::WeakPtrFactory<ButtonDropDown> show_menu_factory_; |
87 | 89 |
88 DISALLOW_COPY_AND_ASSIGN(ButtonDropDown); | 90 DISALLOW_COPY_AND_ASSIGN(ButtonDropDown); |
89 }; | 91 }; |
90 | 92 |
91 } // namespace views | 93 } // namespace views |
92 | 94 |
93 #endif // UI_VIEWS_CONTROLS_BUTTON_BUTTON_DROPDOWN_H_ | 95 #endif // UI_VIEWS_CONTROLS_BUTTON_BUTTON_DROPDOWN_H_ |
OLD | NEW |