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/bookmarks/bookmark_menu_controller_gtk.h" | 5 #include "chrome/browser/ui/gtk/bookmarks/bookmark_menu_controller_gtk.h" |
6 | 6 |
7 #include <gtk/gtk.h> | 7 #include <gtk/gtk.h> |
8 | 8 |
9 #include "base/string_util.h" | 9 #include "base/string_util.h" |
10 #include "base/utf_string_conversions.h" | 10 #include "base/utf_string_conversions.h" |
11 #include "chrome/browser/bookmarks/bookmark_model.h" | 11 #include "chrome/browser/bookmarks/bookmark_model.h" |
12 #include "chrome/browser/bookmarks/bookmark_utils.h" | 12 #include "chrome/browser/bookmarks/bookmark_utils.h" |
13 #include "chrome/browser/profiles/profile.h" | 13 #include "chrome/browser/profiles/profile.h" |
14 #include "chrome/browser/ui/gtk/bookmarks/bookmark_utils_gtk.h" | 14 #include "chrome/browser/ui/gtk/bookmarks/bookmark_utils_gtk.h" |
15 #include "chrome/browser/ui/gtk/gtk_chrome_button.h" | 15 #include "chrome/browser/ui/gtk/gtk_chrome_button.h" |
16 #include "chrome/browser/ui/gtk/gtk_theme_service.h" | 16 #include "chrome/browser/ui/gtk/gtk_theme_service.h" |
17 #include "chrome/browser/ui/gtk/gtk_util.h" | 17 #include "chrome/browser/ui/gtk/gtk_util.h" |
18 #include "chrome/browser/ui/gtk/menu_gtk.h" | 18 #include "chrome/browser/ui/gtk/menu_gtk.h" |
19 #include "content/browser/tab_contents/page_navigator.h" | 19 #include "content/browser/tab_contents/page_navigator.h" |
20 #include "grit/generated_resources.h" | 20 #include "grit/generated_resources.h" |
21 #include "grit/theme_resources.h" | 21 #include "grit/theme_resources.h" |
22 #include "grit/ui_resources.h" | 22 #include "grit/ui_resources.h" |
23 #include "ui/base/dragdrop/gtk_dnd_util.h" | 23 #include "ui/base/dragdrop/gtk_dnd_util.h" |
24 #include "ui/base/l10n/l10n_util.h" | 24 #include "ui/base/l10n/l10n_util.h" |
25 #include "ui/gfx/gtk_util.h" | 25 #include "ui/gfx/gtk_util.h" |
26 #include "webkit/glue/window_open_disposition.h" | 26 #include "webkit/glue/window_open_disposition.h" |
27 | 27 |
28 namespace { | 28 namespace { |
29 | 29 |
30 // TODO(estade): It might be a good idea to vary this by locale. | |
31 const int kMaxChars = 50; | |
32 | |
33 void SetImageMenuItem(GtkWidget* menu_item, | 30 void SetImageMenuItem(GtkWidget* menu_item, |
34 const BookmarkNode* node, | 31 const BookmarkNode* node, |
35 BookmarkModel* model) { | 32 BookmarkModel* model) { |
36 GdkPixbuf* pixbuf = bookmark_utils::GetPixbufForNode(node, model, true); | 33 GdkPixbuf* pixbuf = bookmark_utils::GetPixbufForNode(node, model, true); |
37 gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(menu_item), | 34 gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(menu_item), |
38 gtk_image_new_from_pixbuf(pixbuf)); | 35 gtk_image_new_from_pixbuf(pixbuf)); |
39 g_object_unref(pixbuf); | 36 g_object_unref(pixbuf); |
40 } | 37 } |
41 | 38 |
42 const BookmarkNode* GetNodeFromMenuItem(GtkWidget* menu_item) { | 39 const BookmarkNode* GetNodeFromMenuItem(GtkWidget* menu_item) { |
(...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
364 } | 361 } |
365 | 362 |
366 void BookmarkMenuController::OnMenuItemDragGet( | 363 void BookmarkMenuController::OnMenuItemDragGet( |
367 GtkWidget* widget, GdkDragContext* context, | 364 GtkWidget* widget, GdkDragContext* context, |
368 GtkSelectionData* selection_data, | 365 GtkSelectionData* selection_data, |
369 guint target_type, guint time) { | 366 guint target_type, guint time) { |
370 const BookmarkNode* node = bookmark_utils::BookmarkNodeForWidget(widget); | 367 const BookmarkNode* node = bookmark_utils::BookmarkNodeForWidget(widget); |
371 bookmark_utils::WriteBookmarkToSelection(node, selection_data, target_type, | 368 bookmark_utils::WriteBookmarkToSelection(node, selection_data, target_type, |
372 profile_); | 369 profile_); |
373 } | 370 } |
OLD | NEW |