1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// For WinDDK ATL compatibility, these ATL headers must come first.
#include "build/build_config.h"
#if defined(OS_WIN)
#include <atlbase.h> // NOLINT
#include <atlwin.h> // NOLINT
#endif
#include "chrome/browser/ui/views/omnibox/omnibox_result_view.h"
#include <algorithm> // NOLINT
#include "base/i18n/bidi_line_iterator.h"
#include "base/memory/scoped_vector.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_util.h"
#include "chrome/browser/ui/omnibox/omnibox_popup_model.h"
#include "chrome/browser/ui/views/location_bar/location_bar_view.h"
#include "chrome/browser/ui/views/omnibox/omnibox_popup_contents_view.h"
#include "chrome/grit/generated_resources.h"
#include "grit/components_scaled_resources.h"
#include "grit/theme_resources.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/theme_provider.h"
#include "ui/gfx/canvas.h"
#include "ui/gfx/color_utils.h"
#include "ui/gfx/image/image.h"
#include "ui/gfx/range/range.h"
#include "ui/gfx/render_text.h"
#include "ui/gfx/text_utils.h"
#include "ui/native_theme/native_theme.h"
using ui::NativeTheme;
namespace {
// The minimum distance between the top and bottom of the {icon|text} and the
// top or bottom of the row.
const int kMinimumIconVerticalPadding = 2;
const int kMinimumTextVerticalPadding = 3;
// A mapping from OmniboxResultView's ResultViewState/ColorKind types to
// NativeTheme colors.
struct TranslationTable {
ui::NativeTheme::ColorId id;
OmniboxResultView::ResultViewState state;
OmniboxResultView::ColorKind kind;
} static const kTranslationTable[] = {
{ NativeTheme::kColorId_ResultsTableNormalBackground,
OmniboxResultView::NORMAL, OmniboxResultView::BACKGROUND },
{ NativeTheme::kColorId_ResultsTableHoveredBackground,
OmniboxResultView::HOVERED, OmniboxResultView::BACKGROUND },
{ NativeTheme::kColorId_ResultsTableSelectedBackground,
OmniboxResultView::SELECTED, OmniboxResultView::BACKGROUND },
{ NativeTheme::kColorId_ResultsTableNormalText,
OmniboxResultView::NORMAL, OmniboxResultView::TEXT },
{ NativeTheme::kColorId_ResultsTableHoveredText,
OmniboxResultView::HOVERED, OmniboxResultView::TEXT },
{ NativeTheme::kColorId_ResultsTableSelectedText,
OmniboxResultView::SELECTED, OmniboxResultView::TEXT },
{ NativeTheme::kColorId_ResultsTableNormalDimmedText,
OmniboxResultView::NORMAL, OmniboxResultView::DIMMED_TEXT },
{ NativeTheme::kColorId_ResultsTableHoveredDimmedText,
OmniboxResultView::HOVERED, OmniboxResultView::DIMMED_TEXT },
{ NativeTheme::kColorId_ResultsTableSelectedDimmedText,
OmniboxResultView::SELECTED, OmniboxResultView::DIMMED_TEXT },
{ NativeTheme::kColorId_ResultsTableNormalUrl,
OmniboxResultView::NORMAL, OmniboxResultView::URL },
{ NativeTheme::kColorId_ResultsTableHoveredUrl,
OmniboxResultView::HOVERED, OmniboxResultView::URL },
{ NativeTheme::kColorId_ResultsTableSelectedUrl,
OmniboxResultView::SELECTED, OmniboxResultView::URL },
{ NativeTheme::kColorId_ResultsTableNormalDivider,
OmniboxResultView::NORMAL, OmniboxResultView::DIVIDER },
{ NativeTheme::kColorId_ResultsTableHoveredDivider,
OmniboxResultView::HOVERED, OmniboxResultView::DIVIDER },
{ NativeTheme::kColorId_ResultsTableSelectedDivider,
OmniboxResultView::SELECTED, OmniboxResultView::DIVIDER },
};
} // namespace
////////////////////////////////////////////////////////////////////////////////
// OmniboxResultView, public:
// This class is a utility class for calculations affected by whether the result
// view is horizontally mirrored. The drawing functions can be written as if
// all drawing occurs left-to-right, and then use this class to get the actual
// coordinates to begin drawing onscreen.
class OmniboxResultView::MirroringContext {
public:
MirroringContext() : center_(0), right_(0) {}
// Tells the mirroring context to use the provided range as the physical
// bounds of the drawing region. When coordinate mirroring is needed, the
// mirror point will be the center of this range.
void Initialize(int x, int width) {
center_ = x + width / 2;
right_ = x + width;
}
// Given a logical range within the drawing region, returns the coordinate of
// the possibly-mirrored "left" side. (This functions exactly like
// View::MirroredLeftPointForRect().)
int mirrored_left_coord(int left, int right) const {
return base::i18n::IsRTL() ? (center_ + (center_ - right)) : left;
}
// Given a logical coordinate within the drawing region, returns the remaining
// width available.
int remaining_width(int x) const {
return right_ - x;
}
private:
int center_;
int right_;
DISALLOW_COPY_AND_ASSIGN(MirroringContext);
};
OmniboxResultView::OmniboxResultView(OmniboxPopupContentsView* model,
int model_index,
LocationBarView* location_bar_view,
const gfx::FontList& font_list)
: edge_item_padding_(LocationBarView::kItemPadding),
item_padding_(LocationBarView::kItemPadding),
minimum_text_vertical_padding_(kMinimumTextVerticalPadding),
model_(model),
model_index_(model_index),
location_bar_view_(location_bar_view),
font_list_(font_list),
font_height_(
std::max(font_list.GetHeight(),
font_list.DeriveWithStyle(gfx::Font::BOLD).GetHeight())),
mirroring_context_(new MirroringContext()),
keyword_icon_(new views::ImageView()),
animation_(new gfx::SlideAnimation(this)) {
CHECK_GE(model_index, 0);
if (default_icon_size_ == 0) {
default_icon_size_ =
location_bar_view_->GetThemeProvider()->GetImageSkiaNamed(
AutocompleteMatch::TypeToIcon(
AutocompleteMatchType::URL_WHAT_YOU_TYPED))->width();
}
keyword_icon_->set_owned_by_client();
keyword_icon_->EnableCanvasFlippingForRTLUI(true);
keyword_icon_->SetImage(GetKeywordIcon());
keyword_icon_->SizeToPreferredSize();
}
OmniboxResultView::~OmniboxResultView() {
}
SkColor OmniboxResultView::GetColor(
ResultViewState state,
ColorKind kind) const {
for (size_t i = 0; i < arraysize(kTranslationTable); ++i) {
if (kTranslationTable[i].state == state &&
kTranslationTable[i].kind == kind) {
return GetNativeTheme()->GetSystemColor(kTranslationTable[i].id);
}
}
NOTREACHED();
return SK_ColorRED;
}
void OmniboxResultView::SetMatch(const AutocompleteMatch& match) {
match_ = match;
ResetRenderTexts();
animation_->Reset();
AutocompleteMatch* associated_keyword_match = match_.associated_keyword.get();
if (associated_keyword_match) {
keyword_icon_->SetImage(GetKeywordIcon());
if (!keyword_icon_->parent())
AddChildView(keyword_icon_.get());
} else if (keyword_icon_->parent()) {
RemoveChildView(keyword_icon_.get());
}
Layout();
}
void OmniboxResultView::ShowKeyword(bool show_keyword) {
if (show_keyword)
animation_->Show();
else
animation_->Hide();
}
void OmniboxResultView::Invalidate() {
keyword_icon_->SetImage(GetKeywordIcon());
// While the text in the RenderTexts may not have changed, the styling
// (color/bold) may need to change. So we reset them to cause them to be
// recomputed in OnPaint().
ResetRenderTexts();
SchedulePaint();
}
gfx::Size OmniboxResultView::GetPreferredSize() const {
return gfx::Size(0, std::max(
default_icon_size_ + (kMinimumIconVerticalPadding * 2),
GetTextHeight() + (minimum_text_vertical_padding_ * 2)));
}
////////////////////////////////////////////////////////////////////////////////
// OmniboxResultView, protected:
OmniboxResultView::ResultViewState OmniboxResultView::GetState() const {
if (model_->IsSelectedIndex(model_index_))
return SELECTED;
return model_->IsHoveredIndex(model_index_) ? HOVERED : NORMAL;
}
int OmniboxResultView::GetTextHeight() const {
return font_height_;
}
void OmniboxResultView::PaintMatch(
const AutocompleteMatch& match,
gfx::RenderText* contents,
gfx::RenderText* description,
gfx::Canvas* canvas,
int x) const {
int y = text_bounds_.y();
if (!separator_rendertext_) {
const base::string16& separator =
l10n_util::GetStringUTF16(IDS_AUTOCOMPLETE_MATCH_DESCRIPTION_SEPARATOR);
separator_rendertext_.reset(CreateRenderText(separator).release());
separator_rendertext_->SetColor(GetColor(GetState(), DIMMED_TEXT));
separator_width_ = separator_rendertext_->GetContentWidth();
}
int contents_max_width, description_max_width;
OmniboxPopupModel::ComputeMatchMaxWidths(
contents->GetContentWidth(),
separator_width_,
description ? description->GetContentWidth() : 0,
mirroring_context_->remaining_width(x),
!AutocompleteMatch::IsSearchType(match.type),
&contents_max_width,
&description_max_width);
x = DrawRenderText(match, contents, true, canvas, x, y, contents_max_width);
if (description_max_width != 0) {
x = DrawRenderText(match, separator_rendertext_.get(), false, canvas, x, y,
separator_width_);
DrawRenderText(match, description, false, canvas, x, y,
description_max_width);
}
}
int OmniboxResultView::DrawRenderText(
const AutocompleteMatch& match,
gfx::RenderText* render_text,
bool contents,
gfx::Canvas* canvas,
int x,
int y,
int max_width) const {
DCHECK(!render_text->text().empty());
const int remaining_width = mirroring_context_->remaining_width(x);
int right_x = x + max_width;
// Infinite suggestions should appear with the leading ellipses vertically
// stacked.
if (contents &&
(match.type == AutocompleteMatchType::SEARCH_SUGGEST_INFINITE)) {
// When the directionality of suggestion doesn't match the UI, we try to
// vertically stack the ellipsis by restricting the end edge (right_x).
const bool is_ui_rtl = base::i18n::IsRTL();
const bool is_match_contents_rtl =
(render_text->GetTextDirection() == base::i18n::RIGHT_TO_LEFT);
const int offset =
GetDisplayOffset(match, is_ui_rtl, is_match_contents_rtl);
scoped_ptr<gfx::RenderText> prefix_render_text(
CreateRenderText(base::UTF8ToUTF16(
match.GetAdditionalInfo(kACMatchPropertyContentsPrefix))));
const int prefix_width = prefix_render_text->GetContentWidth();
int prefix_x = x;
const int max_match_contents_width = model_->max_match_contents_width();
if (is_ui_rtl != is_match_contents_rtl) {
// RTL infinite suggestions appear near the left edge in LTR UI, while LTR
// infinite suggestions appear near the right edge in RTL UI. This is
// against the natural horizontal alignment of the text. We reduce the
// width of the box for suggestion display, so that the suggestions appear
// in correct confines. This reduced width allows us to modify the text
// alignment (see below).
right_x = x + std::min(remaining_width - prefix_width,
std::max(offset, max_match_contents_width));
prefix_x = right_x;
// We explicitly set the horizontal alignment so that when LTR suggestions
// show in RTL UI (or vice versa), their ellipses appear stacked in a
// single column.
render_text->SetHorizontalAlignment(
is_match_contents_rtl ? gfx::ALIGN_RIGHT : gfx::ALIGN_LEFT);
} else {
// If the dropdown is wide enough, place the ellipsis at the position
// where the omitted text would have ended. Otherwise reduce the offset of
// the ellipsis such that the widest suggestion reaches the end of the
// dropdown.
const int start_offset = std::max(prefix_width,
std::min(remaining_width - max_match_contents_width, offset));
right_x = x + std::min(remaining_width, start_offset + max_width);
x += start_offset;
prefix_x = x - prefix_width;
}
prefix_render_text->SetDirectionalityMode(is_match_contents_rtl ?
gfx::DIRECTIONALITY_FORCE_RTL : gfx::DIRECTIONALITY_FORCE_LTR);
prefix_render_text->SetHorizontalAlignment(
is_match_contents_rtl ? gfx::ALIGN_RIGHT : gfx::ALIGN_LEFT);
prefix_render_text->SetDisplayRect(gfx::Rect(
mirroring_context_->mirrored_left_coord(
prefix_x, prefix_x + prefix_width), y,
prefix_width, height()));
prefix_render_text->Draw(canvas);
}
// Set the display rect to trigger eliding.
render_text->SetDisplayRect(gfx::Rect(
mirroring_context_->mirrored_left_coord(x, right_x), y,
right_x - x, height()));
render_text->Draw(canvas);
return right_x;
}
scoped_ptr<gfx::RenderText> OmniboxResultView::CreateRenderText(
const base::string16& text) const {
scoped_ptr<gfx::RenderText> render_text(gfx::RenderText::CreateInstance());
render_text->SetDisplayRect(gfx::Rect(gfx::Size(INT_MAX, 0)));
render_text->SetCursorEnabled(false);
render_text->SetElideBehavior(gfx::ELIDE_TAIL);
render_text->SetFontList(font_list_);
render_text->SetText(text);
return render_text.Pass();
}
scoped_ptr<gfx::RenderText> OmniboxResultView::CreateClassifiedRenderText(
const base::string16& text,
const ACMatchClassifications& classifications,
bool force_dim) const {
scoped_ptr<gfx::RenderText> render_text(CreateRenderText(text));
const size_t text_length = render_text->text().length();
for (size_t i = 0; i < classifications.size(); ++i) {
const size_t text_start = classifications[i].offset;
if (text_start >= text_length)
break;
const size_t text_end = (i < (classifications.size() - 1)) ?
std::min(classifications[i + 1].offset, text_length) :
text_length;
const gfx::Range current_range(text_start, text_end);
// Calculate style-related data.
if (classifications[i].style & ACMatchClassification::MATCH)
render_text->ApplyStyle(gfx::BOLD, true, current_range);
ColorKind color_kind = TEXT;
if (classifications[i].style & ACMatchClassification::URL) {
color_kind = URL;
// Consider logical string for domain "ABC.com×™/hello" where ABC are
// Hebrew (RTL) characters. This string should ideally show as
// "CBA.com/hello". If we do not force LTR on URL, it will appear as
// "com/hello.CBA".
// With IDN and RTL TLDs, it might be okay to allow RTL rendering of URLs,
// but it still has some pitfalls like :
// ABC.COM/abc-pqr/xyz/FGH will appear as HGF/abc-pqr/xyz/MOC.CBA which
// really confuses the path hierarchy of the URL.
// Also, if the URL supports https, the appearance will change into LTR
// directionality.
// In conclusion, LTR rendering of URL is probably the safest bet.
render_text->SetDirectionalityMode(gfx::DIRECTIONALITY_FORCE_LTR);
} else if (force_dim ||
(classifications[i].style & ACMatchClassification::DIM)) {
color_kind = DIMMED_TEXT;
}
render_text->ApplyColor(GetColor(GetState(), color_kind), current_range);
}
return render_text.Pass();
}
int OmniboxResultView::GetMatchContentsWidth() const {
InitContentsRenderTextIfNecessary();
return contents_rendertext_ ? contents_rendertext_->GetContentWidth() : 0;
}
// TODO(skanuj): This is probably identical across all OmniboxResultView rows in
// the omnibox dropdown. Consider sharing the result.
int OmniboxResultView::GetDisplayOffset(
const AutocompleteMatch& match,
bool is_ui_rtl,
bool is_match_contents_rtl) const {
if (match.type != AutocompleteMatchType::SEARCH_SUGGEST_INFINITE)
return 0;
const base::string16& input_text =
base::UTF8ToUTF16(match.GetAdditionalInfo(kACMatchPropertyInputText));
int contents_start_index = 0;
base::StringToInt(match.GetAdditionalInfo(kACMatchPropertyContentsStartIndex),
&contents_start_index);
scoped_ptr<gfx::RenderText> input_render_text(CreateRenderText(input_text));
const gfx::Range& glyph_bounds =
input_render_text->GetGlyphBounds(contents_start_index);
const int start_padding = is_match_contents_rtl ?
std::max(glyph_bounds.start(), glyph_bounds.end()) :
std::min(glyph_bounds.start(), glyph_bounds.end());
return is_ui_rtl ?
(input_render_text->GetContentWidth() - start_padding) : start_padding;
}
// static
int OmniboxResultView::default_icon_size_ = 0;
gfx::ImageSkia OmniboxResultView::GetIcon() const {
const gfx::Image image = model_->GetIconIfExtensionMatch(model_index_);
if (!image.IsEmpty())
return image.AsImageSkia();
int icon = model_->IsStarredMatch(match_) ?
IDR_OMNIBOX_STAR : AutocompleteMatch::TypeToIcon(match_.type);
if (GetState() == SELECTED) {
switch (icon) {
case IDR_OMNIBOX_EXTENSION_APP:
icon = IDR_OMNIBOX_EXTENSION_APP_SELECTED;
break;
case IDR_OMNIBOX_HTTP:
icon = IDR_OMNIBOX_HTTP_SELECTED;
break;
case IDR_OMNIBOX_SEARCH:
icon = IDR_OMNIBOX_SEARCH_SELECTED;
break;
case IDR_OMNIBOX_STAR:
icon = IDR_OMNIBOX_STAR_SELECTED;
break;
default:
NOTREACHED();
break;
}
}
return *(location_bar_view_->GetThemeProvider()->GetImageSkiaNamed(icon));
}
const gfx::ImageSkia* OmniboxResultView::GetKeywordIcon() const {
// NOTE: If we ever begin returning icons of varying size, then callers need
// to ensure that |keyword_icon_| is resized each time its image is reset.
return location_bar_view_->GetThemeProvider()->GetImageSkiaNamed(
(GetState() == SELECTED) ? IDR_OMNIBOX_TTS_SELECTED : IDR_OMNIBOX_TTS);
}
bool OmniboxResultView::ShowOnlyKeywordMatch() const {
return match_.associated_keyword &&
(keyword_icon_->x() <= icon_bounds_.right());
}
void OmniboxResultView::ResetRenderTexts() const {
contents_rendertext_.reset();
description_rendertext_.reset();
separator_rendertext_.reset();
keyword_contents_rendertext_.reset();
keyword_description_rendertext_.reset();
}
void OmniboxResultView::InitContentsRenderTextIfNecessary() const {
if (!contents_rendertext_) {
contents_rendertext_.reset(
CreateClassifiedRenderText(
match_.contents, match_.contents_class, false).release());
}
}
void OmniboxResultView::Layout() {
const gfx::ImageSkia icon = GetIcon();
icon_bounds_.SetRect(edge_item_padding_ +
((icon.width() == default_icon_size_) ?
0 : LocationBarView::kIconInternalPadding),
(height() - icon.height()) / 2, icon.width(), icon.height());
int text_x = edge_item_padding_ + default_icon_size_ + item_padding_;
int text_width = width() - text_x - edge_item_padding_;
if (match_.associated_keyword.get()) {
const int kw_collapsed_size =
keyword_icon_->width() + edge_item_padding_;
const int max_kw_x = width() - kw_collapsed_size;
const int kw_x =
animation_->CurrentValueBetween(max_kw_x, edge_item_padding_);
const int kw_text_x = kw_x + keyword_icon_->width() + item_padding_;
text_width = kw_x - text_x - item_padding_;
keyword_text_bounds_.SetRect(
kw_text_x, 0,
std::max(width() - kw_text_x - edge_item_padding_, 0), height());
keyword_icon_->SetPosition(
gfx::Point(kw_x, (height() - keyword_icon_->height()) / 2));
}
text_bounds_.SetRect(text_x, 0, std::max(text_width, 0), height());
}
void OmniboxResultView::OnBoundsChanged(const gfx::Rect& previous_bounds) {
animation_->SetSlideDuration(width() / 4);
}
void OmniboxResultView::OnPaint(gfx::Canvas* canvas) {
const ResultViewState state = GetState();
if (state != NORMAL)
canvas->DrawColor(GetColor(state, BACKGROUND));
// NOTE: While animating the keyword match, both matches may be visible.
if (!ShowOnlyKeywordMatch()) {
canvas->DrawImageInt(GetIcon(), GetMirroredXForRect(icon_bounds_),
icon_bounds_.y());
int x = GetMirroredXForRect(text_bounds_);
mirroring_context_->Initialize(x, text_bounds_.width());
InitContentsRenderTextIfNecessary();
if (!description_rendertext_ && !match_.description.empty()) {
description_rendertext_.reset(
CreateClassifiedRenderText(
match_.description, match_.description_class, true).release());
}
PaintMatch(match_, contents_rendertext_.get(),
description_rendertext_.get(), canvas, x);
}
AutocompleteMatch* keyword_match = match_.associated_keyword.get();
if (keyword_match) {
int x = GetMirroredXForRect(keyword_text_bounds_);
mirroring_context_->Initialize(x, keyword_text_bounds_.width());
if (!keyword_contents_rendertext_) {
keyword_contents_rendertext_.reset(
CreateClassifiedRenderText(keyword_match->contents,
keyword_match->contents_class,
false).release());
}
if (!keyword_description_rendertext_ &&
!keyword_match->description.empty()) {
keyword_description_rendertext_.reset(
CreateClassifiedRenderText(keyword_match->description,
keyword_match->description_class,
true).release());
}
PaintMatch(*keyword_match, keyword_contents_rendertext_.get(),
keyword_description_rendertext_.get(), canvas, x);
}
}
void OmniboxResultView::AnimationProgressed(const gfx::Animation* animation) {
Layout();
SchedulePaint();
}
|