| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_GTK_GLOBAL_MENU_BAR_H_ | 5 #ifndef CHROME_BROWSER_UI_GTK_GLOBAL_MENU_BAR_H_ |
| 6 #define CHROME_BROWSER_UI_GTK_GLOBAL_MENU_BAR_H_ | 6 #define CHROME_BROWSER_UI_GTK_GLOBAL_MENU_BAR_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 | 9 |
| 10 #include "chrome/browser/command_updater.h" | 10 #include "chrome/browser/command_updater.h" |
| 11 #include "chrome/browser/ui/gtk/global_bookmark_menu.h" | 11 #include "chrome/browser/ui/gtk/global_bookmark_menu.h" |
| 12 #include "chrome/browser/ui/gtk/global_history_menu.h" | 12 #include "chrome/browser/ui/gtk/global_history_menu.h" |
| 13 #include "chrome/browser/ui/gtk/owned_widget_gtk.h" | |
| 14 #include "content/common/notification_observer.h" | 13 #include "content/common/notification_observer.h" |
| 15 #include "content/common/notification_registrar.h" | 14 #include "content/common/notification_registrar.h" |
| 16 #include "ui/base/gtk/gtk_signal.h" | 15 #include "ui/base/gtk/gtk_signal.h" |
| 16 #include "ui/base/gtk/owned_widget_gtk.h" |
| 17 | 17 |
| 18 class Browser; | 18 class Browser; |
| 19 struct GlobalMenuBarCommand; | 19 struct GlobalMenuBarCommand; |
| 20 class GlobalMenuOwner; | 20 class GlobalMenuOwner; |
| 21 | 21 |
| 22 typedef struct _GtkAccelGroup GtkAccelGroup; | 22 typedef struct _GtkAccelGroup GtkAccelGroup; |
| 23 typedef struct _GtkWidget GtkWidget; | 23 typedef struct _GtkWidget GtkWidget; |
| 24 | 24 |
| 25 // Controls the Mac style menu bar on Linux. | 25 // Controls the Mac style menu bar on Linux. |
| 26 // | 26 // |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 // A mapping from command ids to GtkMenuItem objects. We use this to update | 97 // A mapping from command ids to GtkMenuItem objects. We use this to update |
| 98 // the command enable state. | 98 // the command enable state. |
| 99 CommandIDMenuItemMap id_to_menu_item_; | 99 CommandIDMenuItemMap id_to_menu_item_; |
| 100 | 100 |
| 101 // gtk_check_menu_item_set_active() will call the "activate" signal. We need | 101 // gtk_check_menu_item_set_active() will call the "activate" signal. We need |
| 102 // to block this activation while we change the checked state. | 102 // to block this activation while we change the checked state. |
| 103 bool block_activation_; | 103 bool block_activation_; |
| 104 }; | 104 }; |
| 105 | 105 |
| 106 #endif // CHROME_BROWSER_UI_GTK_GLOBAL_MENU_BAR_H_ | 106 #endif // CHROME_BROWSER_UI_GTK_GLOBAL_MENU_BAR_H_ |
| OLD | NEW |