Chromium Code Reviews

Side by Side Diff: chrome/browser/views/bookmark_bar_view.cc

Issue 2825018: Canvas refactoring part 3.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
OLDNEW
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 #include "chrome/browser/views/bookmark_bar_view.h" 5 #include "chrome/browser/views/bookmark_bar_view.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <limits> 8 #include <limits>
9 #include <set> 9 #include <set>
10 #include <vector> 10 #include <vector>
(...skipping 19 matching lines...)
30 #include "chrome/browser/tab_contents/page_navigator.h" 30 #include "chrome/browser/tab_contents/page_navigator.h"
31 #include "chrome/browser/tab_contents/tab_contents.h" 31 #include "chrome/browser/tab_contents/tab_contents.h"
32 #include "chrome/browser/view_ids.h" 32 #include "chrome/browser/view_ids.h"
33 #include "chrome/browser/views/bookmark_context_menu.h" 33 #include "chrome/browser/views/bookmark_context_menu.h"
34 #include "chrome/browser/views/event_utils.h" 34 #include "chrome/browser/views/event_utils.h"
35 #include "chrome/browser/views/frame/browser_view.h" 35 #include "chrome/browser/views/frame/browser_view.h"
36 #include "chrome/browser/views/location_bar/location_bar_view.h" 36 #include "chrome/browser/views/location_bar/location_bar_view.h"
37 #include "chrome/common/notification_service.h" 37 #include "chrome/common/notification_service.h"
38 #include "chrome/common/page_transition_types.h" 38 #include "chrome/common/page_transition_types.h"
39 #include "chrome/common/pref_names.h" 39 #include "chrome/common/pref_names.h"
40 #include "gfx/canvas.h"
41 #include "gfx/canvas_skia.h" 40 #include "gfx/canvas_skia.h"
42 #include "grit/app_resources.h" 41 #include "grit/app_resources.h"
43 #include "grit/generated_resources.h" 42 #include "grit/generated_resources.h"
44 #include "grit/theme_resources.h" 43 #include "grit/theme_resources.h"
45 #include "views/controls/button/menu_button.h" 44 #include "views/controls/button/menu_button.h"
46 #include "views/controls/label.h" 45 #include "views/controls/label.h"
47 #include "views/controls/menu/menu_item_view.h" 46 #include "views/controls/menu/menu_item_view.h"
48 #include "views/drag_utils.h" 47 #include "views/drag_utils.h"
49 #include "views/view_constants.h" 48 #include "views/view_constants.h"
50 #include "views/widget/tooltip_manager.h" 49 #include "views/widget/tooltip_manager.h"
(...skipping 185 matching lines...)
236 // the context menu. They should not trigger the opening of underlying urls. 235 // the context menu. They should not trigger the opening of underlying urls.
237 if (e.GetFlags() == views::MouseEvent::EF_LEFT_BUTTON_DOWN || 236 if (e.GetFlags() == views::MouseEvent::EF_LEFT_BUTTON_DOWN ||
238 e.GetFlags() == views::MouseEvent::EF_RIGHT_BUTTON_DOWN) 237 e.GetFlags() == views::MouseEvent::EF_RIGHT_BUTTON_DOWN)
239 return false; 238 return false;
240 239
241 WindowOpenDisposition disposition( 240 WindowOpenDisposition disposition(
242 event_utils::DispositionFromEventFlags(e.GetFlags())); 241 event_utils::DispositionFromEventFlags(e.GetFlags()));
243 return disposition != CURRENT_TAB; 242 return disposition != CURRENT_TAB;
244 } 243 }
245 244
246 virtual void Paint(gfx::Canvas *canvas) { 245 virtual void Paint(gfx::Canvas* canvas) {
247 views::MenuButton::Paint(canvas, false); 246 views::MenuButton::Paint(canvas, false);
248 } 247 }
249 248
250 private: 249 private:
251 scoped_ptr<SlideAnimation> show_animation_; 250 scoped_ptr<SlideAnimation> show_animation_;
252 251
253 DISALLOW_COPY_AND_ASSIGN(BookmarkFolderButton); 252 DISALLOW_COPY_AND_ASSIGN(BookmarkFolderButton);
254 }; 253 };
255 254
256 // OverFlowButton (chevron) -------------------------------------------------- 255 // OverFlowButton (chevron) --------------------------------------------------
(...skipping 847 matching lines...)
1104 1103
1105 void BookmarkBarView::WriteDragData(View* sender, 1104 void BookmarkBarView::WriteDragData(View* sender,
1106 const gfx::Point& press_pt, 1105 const gfx::Point& press_pt,
1107 OSExchangeData* data) { 1106 OSExchangeData* data) {
1108 UserMetrics::RecordAction(UserMetricsAction("BookmarkBar_DragButton"), 1107 UserMetrics::RecordAction(UserMetricsAction("BookmarkBar_DragButton"),
1109 profile_); 1108 profile_);
1110 1109
1111 for (int i = 0; i < GetBookmarkButtonCount(); ++i) { 1110 for (int i = 0; i < GetBookmarkButtonCount(); ++i) {
1112 if (sender == GetBookmarkButton(i)) { 1111 if (sender == GetBookmarkButton(i)) {
1113 views::TextButton* button = GetBookmarkButton(i); 1112 views::TextButton* button = GetBookmarkButton(i);
1114 // TODO(beng): convert to CanvasSkia 1113 gfx::CanvasSkia canvas(button->width(), button->height(), false);
1115 gfx::Canvas canvas(button->width(), button->height(), false);
1116 button->Paint(&canvas, true); 1114 button->Paint(&canvas, true);
1117 drag_utils::SetDragImageOnDataObject(canvas, button->size(), 1115 drag_utils::SetDragImageOnDataObject(canvas, button->size(),
1118 press_pt, data); 1116 press_pt, data);
1119 WriteDragData(model_->GetBookmarkBarNode()->GetChild(i), data); 1117 WriteDragData(model_->GetBookmarkBarNode()->GetChild(i), data);
1120 return; 1118 return;
1121 } 1119 }
1122 } 1120 }
1123 NOTREACHED(); 1121 NOTREACHED();
1124 } 1122 }
1125 1123
(...skipping 619 matching lines...)
1745 1743
1746 void BookmarkBarView::CheckIntegrity() { 1744 void BookmarkBarView::CheckIntegrity() {
1747 // We better be on the ui thread. 1745 // We better be on the ui thread.
1748 CHECK(ChromeThread::CurrentlyOn(ChromeThread::UI)); 1746 CHECK(ChromeThread::CurrentlyOn(ChromeThread::UI));
1749 1747
1750 // And the number of views on the bookmark bar better match that of the model. 1748 // And the number of views on the bookmark bar better match that of the model.
1751 volatile int model_count = model_->GetBookmarkBarNode()->GetChildCount(); 1749 volatile int model_count = model_->GetBookmarkBarNode()->GetChildCount();
1752 volatile int view_count = GetBookmarkButtonCount(); 1750 volatile int view_count = GetBookmarkButtonCount();
1753 CHECK_EQ(model_count, view_count); 1751 CHECK_EQ(model_count, view_count);
1754 } 1752 }
OLDNEW

Powered by Google App Engine