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 #include "chrome/browser/views/location_bar/location_bar_view.h" | 5 #include "chrome/browser/views/location_bar/location_bar_view.h" |
6 | 6 |
7 #if defined(OS_LINUX) | 7 #if defined(OS_LINUX) |
8 #include <gtk/gtk.h> | 8 #include <gtk/gtk.h> |
9 #endif | 9 #endif |
10 | 10 |
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
380 gfx::Rect screen_bounds(star_view_->GetImageBounds()); | 380 gfx::Rect screen_bounds(star_view_->GetImageBounds()); |
381 // Compensate for some built-in padding in the Star image. | 381 // Compensate for some built-in padding in the Star image. |
382 screen_bounds.Inset(1, 1, 1, 2); | 382 screen_bounds.Inset(1, 1, 1, 2); |
383 gfx::Point origin(screen_bounds.origin()); | 383 gfx::Point origin(screen_bounds.origin()); |
384 views::View::ConvertPointToScreen(star_view_, &origin); | 384 views::View::ConvertPointToScreen(star_view_, &origin); |
385 screen_bounds.set_origin(origin); | 385 screen_bounds.set_origin(origin); |
386 browser::ShowBookmarkBubbleView(GetWindow(), screen_bounds, star_view_, | 386 browser::ShowBookmarkBubbleView(GetWindow(), screen_bounds, star_view_, |
387 profile_, url, newly_bookmarked); | 387 profile_, url, newly_bookmarked); |
388 } | 388 } |
389 | 389 |
| 390 gfx::Point LocationBarView::GetLocationEntryOrigin() const { |
| 391 gfx::Point origin(location_entry_view_->bounds().origin()); |
| 392 // If the UI layout is RTL, the coordinate system is not transformed and |
| 393 // therefore we need to adjust the X coordinate so that bubble appears on the |
| 394 // right hand side of the location bar. |
| 395 if (base::i18n::IsRTL()) |
| 396 origin.set_x(width() - origin.x()); |
| 397 views::View::ConvertPointToScreen(this, &origin); |
| 398 return origin; |
| 399 } |
| 400 |
390 gfx::Size LocationBarView::GetPreferredSize() { | 401 gfx::Size LocationBarView::GetPreferredSize() { |
391 return gfx::Size(0, GetThemeProvider()->GetBitmapNamed(mode_ == POPUP ? | 402 return gfx::Size(0, GetThemeProvider()->GetBitmapNamed(mode_ == POPUP ? |
392 IDR_LOCATIONBG_POPUPMODE_CENTER : IDR_LOCATIONBG_C)->height()); | 403 IDR_LOCATIONBG_POPUPMODE_CENTER : IDR_LOCATIONBG_C)->height()); |
393 } | 404 } |
394 | 405 |
395 void LocationBarView::Layout() { | 406 void LocationBarView::Layout() { |
396 if (!location_entry_.get()) | 407 if (!location_entry_.get()) |
397 return; | 408 return; |
398 | 409 |
399 // TODO(sky): baseline layout. | 410 // TODO(sky): baseline layout. |
(...skipping 786 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1186 } | 1197 } |
1187 | 1198 |
1188 NOTREACHED(); | 1199 NOTREACHED(); |
1189 } | 1200 } |
1190 | 1201 |
1191 void LocationBarView::OnTemplateURLModelChanged() { | 1202 void LocationBarView::OnTemplateURLModelChanged() { |
1192 template_url_model_->RemoveObserver(this); | 1203 template_url_model_->RemoveObserver(this); |
1193 template_url_model_ = NULL; | 1204 template_url_model_ = NULL; |
1194 ShowFirstRunBubble(bubble_type_); | 1205 ShowFirstRunBubble(bubble_type_); |
1195 } | 1206 } |
OLD | NEW |