| 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 #include "chrome/browser/ui/gtk/menu_gtk.h" | 5 #include "chrome/browser/ui/gtk/menu_gtk.h" |
| 6 | 6 |
| 7 #include <map> | 7 #include <map> |
| 8 | 8 |
| 9 #include "base/i18n/rtl.h" | 9 #include "base/i18n/rtl.h" |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| 11 #include "base/message_loop.h" | 11 #include "base/message_loop.h" |
| 12 #include "base/stl_util.h" | 12 #include "base/stl_util.h" |
| 13 #include "base/utf_string_conversions.h" | 13 #include "base/utf_string_conversions.h" |
| 14 #include "chrome/app/chrome_command_ids.h" | 14 #include "chrome/app/chrome_command_ids.h" |
| 15 #include "chrome/browser/ui/gtk/gtk_custom_menu.h" | 15 #include "chrome/browser/ui/gtk/gtk_custom_menu.h" |
| 16 #include "chrome/browser/ui/gtk/gtk_custom_menu_item.h" | 16 #include "chrome/browser/ui/gtk/gtk_custom_menu_item.h" |
| 17 #include "chrome/browser/ui/gtk/gtk_util.h" | 17 #include "chrome/browser/ui/gtk/gtk_util.h" |
| 18 #include "chrome/browser/ui/views/event_utils.h" |
| 18 #include "third_party/skia/include/core/SkBitmap.h" | 19 #include "third_party/skia/include/core/SkBitmap.h" |
| 19 #include "ui/base/models/accelerator_gtk.h" | 20 #include "ui/base/models/accelerator_gtk.h" |
| 20 #include "ui/base/models/button_menu_item_model.h" | 21 #include "ui/base/models/button_menu_item_model.h" |
| 21 #include "ui/base/models/menu_model.h" | 22 #include "ui/base/models/menu_model.h" |
| 22 #include "ui/gfx/gtk_util.h" | 23 #include "ui/gfx/gtk_util.h" |
| 23 #include "webkit/glue/window_open_disposition.h" | 24 #include "webkit/glue/window_open_disposition.h" |
| 24 | 25 |
| 25 bool MenuGtk::block_activation_ = false; | 26 bool MenuGtk::block_activation_ = false; |
| 26 | 27 |
| 27 namespace { | 28 namespace { |
| (...skipping 672 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 700 | 701 |
| 701 *y = CalculateMenuYPosition(&screen_rect, &menu_req, NULL, *y); | 702 *y = CalculateMenuYPosition(&screen_rect, &menu_req, NULL, *y); |
| 702 } | 703 } |
| 703 | 704 |
| 704 void MenuGtk::ExecuteCommand(ui::MenuModel* model, int id) { | 705 void MenuGtk::ExecuteCommand(ui::MenuModel* model, int id) { |
| 705 if (delegate_) | 706 if (delegate_) |
| 706 delegate_->CommandWillBeExecuted(); | 707 delegate_->CommandWillBeExecuted(); |
| 707 | 708 |
| 708 GdkEvent* event = gtk_get_current_event(); | 709 GdkEvent* event = gtk_get_current_event(); |
| 709 if (event && event->type == GDK_BUTTON_RELEASE) { | 710 if (event && event->type == GDK_BUTTON_RELEASE) { |
| 710 model->ActivatedAtWithDisposition( | 711 WindowOpenDisposition disposition = |
| 711 id, event_utils::DispositionFromEventFlags(event->button.state)); | 712 event_utils::DispositionFromGdkState(event->button.state); |
| 713 |
| 714 model->ActivatedAtWithDisposition(id, disposition); |
| 712 } else { | 715 } else { |
| 713 model->ActivatedAt(id); | 716 model->ActivatedAt(id); |
| 714 } | 717 } |
| 715 | 718 |
| 716 if (event) | 719 if (event) |
| 717 gdk_event_free(event); | 720 gdk_event_free(event); |
| 718 } | 721 } |
| 719 | 722 |
| 720 void MenuGtk::OnMenuShow(GtkWidget* widget) { | 723 void MenuGtk::OnMenuShow(GtkWidget* widget) { |
| 721 model_->MenuWillShow(); | 724 model_->MenuWillShow(); |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 824 gtk_widget_hide(widget); | 827 gtk_widget_hide(widget); |
| 825 } | 828 } |
| 826 | 829 |
| 827 GtkWidget* submenu = gtk_menu_item_get_submenu(GTK_MENU_ITEM(widget)); | 830 GtkWidget* submenu = gtk_menu_item_get_submenu(GTK_MENU_ITEM(widget)); |
| 828 if (submenu) { | 831 if (submenu) { |
| 829 gtk_container_foreach(GTK_CONTAINER(submenu), &SetMenuItemInfo, | 832 gtk_container_foreach(GTK_CONTAINER(submenu), &SetMenuItemInfo, |
| 830 userdata); | 833 userdata); |
| 831 } | 834 } |
| 832 } | 835 } |
| 833 } | 836 } |
| OLD | NEW |