OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 VIEWS_CONTROLS_MENU_NATIVE_MENU_GTK_H_ | 5 #ifndef VIEWS_CONTROLS_MENU_NATIVE_MENU_GTK_H_ |
6 #define VIEWS_CONTROLS_MENU_NATIVE_MENU_GTK_H_ | 6 #define VIEWS_CONTROLS_MENU_NATIVE_MENU_GTK_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <gtk/gtk.h> | 9 #include <gtk/gtk.h> |
10 | 10 |
(...skipping 27 matching lines...) Loading... |
38 | 38 |
39 // Overridden from MenuWrapper: | 39 // Overridden from MenuWrapper: |
40 virtual void RunMenuAt(const gfx::Point& point, int alignment); | 40 virtual void RunMenuAt(const gfx::Point& point, int alignment); |
41 virtual void CancelMenu(); | 41 virtual void CancelMenu(); |
42 virtual void Rebuild(); | 42 virtual void Rebuild(); |
43 virtual void UpdateStates(); | 43 virtual void UpdateStates(); |
44 virtual gfx::NativeMenu GetNativeMenu() const; | 44 virtual gfx::NativeMenu GetNativeMenu() const; |
45 virtual MenuAction GetMenuAction() const; | 45 virtual MenuAction GetMenuAction() const; |
46 virtual void AddMenuListener(MenuListener* listener); | 46 virtual void AddMenuListener(MenuListener* listener); |
47 virtual void RemoveMenuListener(MenuListener* listener); | 47 virtual void RemoveMenuListener(MenuListener* listener); |
| 48 virtual void SetMinimumWidth(int width); |
48 | 49 |
49 // Overriden from MessageLoopForUI::Dispatcher: | 50 // Overriden from MessageLoopForUI::Dispatcher: |
50 virtual bool Dispatch(GdkEvent* event); | 51 virtual bool Dispatch(GdkEvent* event); |
51 | 52 |
52 private: | 53 private: |
53 CHROMEGTK_CALLBACK_0(NativeMenuGtk, void, OnMenuHidden); | 54 CHROMEGTK_CALLBACK_0(NativeMenuGtk, void, OnMenuHidden); |
54 CHROMEGTK_CALLBACK_1(NativeMenuGtk, void, OnMenuMoveCurrent, | 55 CHROMEGTK_CALLBACK_1(NativeMenuGtk, void, OnMenuMoveCurrent, |
55 GtkMenuDirectionType); | 56 GtkMenuDirectionType); |
56 | 57 |
57 void AddSeparatorAt(int index); | 58 void AddSeparatorAt(int index); |
(...skipping 76 matching lines...) Loading... |
134 | 135 |
135 // Vector of listeners to receive callbacks when the menu opens. | 136 // Vector of listeners to receive callbacks when the menu opens. |
136 std::vector<MenuListener*> listeners_; | 137 std::vector<MenuListener*> listeners_; |
137 | 138 |
138 DISALLOW_COPY_AND_ASSIGN(NativeMenuGtk); | 139 DISALLOW_COPY_AND_ASSIGN(NativeMenuGtk); |
139 }; | 140 }; |
140 | 141 |
141 } // namespace views | 142 } // namespace views |
142 | 143 |
143 #endif // VIEWS_CONTROLS_MENU_NATIVE_MENU_GTK_H_ | 144 #endif // VIEWS_CONTROLS_MENU_NATIVE_MENU_GTK_H_ |
OLD | NEW |