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 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/app_list/views/search_result_view.h"
#include <algorithm>
#include <memory>
#include <utility>
#include "ash/app_list/app_list_metrics.h"
#include "ash/app_list/app_list_util.h"
#include "ash/app_list/app_list_view_delegate.h"
#include "ash/app_list/views/app_list_main_view.h"
#include "ash/app_list/views/contents_view.h"
#include "ash/app_list/views/remove_query_confirmation_dialog.h"
#include "ash/app_list/views/search_box_view.h"
#include "ash/app_list/views/search_result_actions_view.h"
#include "ash/app_list/views/search_result_inline_icon_view.h"
#include "ash/app_list/views/search_result_list_view.h"
#include "ash/app_list/views/search_result_page_view.h"
#include "ash/constants/ash_features.h"
#include "ash/public/cpp/app_list/app_list_config.h"
#include "ash/public/cpp/app_list/app_list_features.h"
#include "ash/public/cpp/app_list/app_list_types.h"
#include "ash/public/cpp/app_list/vector_icons/vector_icons.h"
#include "ash/public/cpp/ash_typography.h"
#include "ash/strings/grit/ash_strings.h"
#include "ash/style/ash_color_id.h"
#include "ash/style/typography.h"
#include "base/functional/bind.h"
#include "base/i18n/number_formatting.h"
#include "base/trace_event/trace_event.h"
#include "chromeos/constants/chromeos_features.h"
#include "ui/accessibility/ax_node_data.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/metadata/metadata_impl_macros.h"
#include "ui/chromeos/styles/cros_tokens_color_mappings.h"
#include "ui/color/color_id.h"
#include "ui/color/color_provider.h"
#include "ui/compositor/layer.h"
#include "ui/gfx/canvas.h"
#include "ui/gfx/color_palette.h"
#include "ui/gfx/font.h"
#include "ui/gfx/geometry/skia_conversions.h"
#include "ui/gfx/image/image_skia_operations.h"
#include "ui/gfx/paint_vector_icon.h"
#include "ui/gfx/text_constants.h"
#include "ui/views/accessibility/view_accessibility.h"
#include "ui/views/controls/button/image_button.h"
#include "ui/views/controls/image_view.h"
#include "ui/views/controls/label.h"
#include "ui/views/layout/flex_layout.h"
#include "ui/views/layout/flex_layout_view.h"
#include "ui/views/style/typography.h"
namespace ash {
namespace {
constexpr int kBadgeIconShadowWidth = 1;
constexpr int kPreferredWidth = 640;
constexpr int kMultilineLabelWidth = 544;
constexpr int kDefaultViewHeight = 40;
constexpr int kKeyboardShortcutViewHeight = 64;
constexpr int kPreferredIconViewWidth = 56;
constexpr int kTextTrailPadding = 16;
// Extra margin at the right of the rightmost action icon.
constexpr int kDefaultActionButtonRightMargin = 12;
// Text line height in the search result.
constexpr int kPrimaryTextHeight = 20;
constexpr int kAnswerCardDetailsLineHeight = 18;
// Corner radius for downloaded image icons.
constexpr int kImageIconCornerRadius = 4;
// The maximum number of lines that can be shown in the details text.
constexpr int kMultiLineLimit = 3;
// For the progress bar.
constexpr int kProgressBarWidth = 536;
constexpr int kProgressBarHeight = 8;
constexpr int kBarChartAnswerCardVerticalUpperOffset = 8;
constexpr int kBarChartAnswerCardVerticalLowerOffset = 4;
// Flex layout orders detailing how container views are prioritized.
constexpr int kSeparatorOrder = 1;
constexpr int kRatingOrder = 1;
constexpr int TitleDetailContainerOrder = 1;
constexpr int kTitleDetailsLabelOrderNoElide = 1;
constexpr int kTitleDetailsLabelOrderElide = 2;
// Non-elidable labels are of order 1 to prioritize them.
constexpr int kNonElideLabelOrder = 1;
// Elidable labels are assigned monotonically increasing orders to prioritize
// items that appear close to the front of the TextVector.
constexpr int kElidableLabelOrderStart = 2;
constexpr int kSearchRatingStarPadding = 4;
constexpr int kSearchRatingStarSize = 16;
constexpr int kKeyboardShortcutTopMargin = 6;
constexpr int kAnswerCardBorderMargin = 16;
constexpr gfx::Insets kAnswerCardBorder(kAnswerCardBorderMargin);
constexpr int kDefaultAnswerCardViewHeight = 56 + 2 * kAnswerCardBorderMargin;
constexpr int kAnswerCardCardBackgroundCornerRadius = 12;
constexpr int kAnswerCardFocusBarHorizontalOffset = kAnswerCardBorderMargin;
constexpr int kAnswerCardFocusBarVerticalOffset =
kAnswerCardCardBackgroundCornerRadius + kAnswerCardBorderMargin;
// The superscript container has a 3px top margin to shift the text up so the
// it lines up with the text in `big_title_main_text_container_`.
constexpr auto kBigTitleSuperscriptBorder =
gfx::Insets::TLBR(3, 4, 0, kAnswerCardBorderMargin);
// The fraction of total text space allocated to the details label when both the
// title and the details label need to be elided.
constexpr float kDetailsElideRatio = 0.25f;
bool IsTitleLabel(SearchResultView::LabelType label_type) {
switch (label_type) {
case SearchResultView::LabelType::kDetails:
case SearchResultView::LabelType::kKeyboardShortcut:
return false;
case SearchResultView::LabelType::kTitle:
case SearchResultView::LabelType::kBigTitle:
case SearchResultView::LabelType::kBigTitleSuperscript:
return true;
}
}
ui::ColorId GetLabelColorId(SearchResultView::LabelType label_type,
const SearchResult::Tags& tags) {
auto color_tag = SearchResult::Tag::NONE;
for (const auto& tag : tags) {
// Each label only supports one type of color tag. `color_tag` should only
// be set once.
if (tag.styles & SearchResult::Tag::URL) {
DCHECK(color_tag == SearchResult::Tag::NONE ||
color_tag == SearchResult::Tag::URL);
color_tag = SearchResult::Tag::URL;
}
if (tag.styles & SearchResult::Tag::GREEN) {
DCHECK(color_tag == SearchResult::Tag::NONE ||
color_tag == SearchResult::Tag::GREEN);
color_tag = SearchResult::Tag::GREEN;
}
if (tag.styles & SearchResult::Tag::RED) {
DCHECK(color_tag == SearchResult::Tag::NONE ||
color_tag == SearchResult::Tag::RED);
color_tag = SearchResult::Tag::RED;
}
}
const bool is_jelly_enabled = chromeos::features::IsJellyEnabled();
switch (color_tag) {
case SearchResult::Tag::NONE:
ABSL_FALLTHROUGH_INTENDED;
case SearchResult::Tag::DIM:
ABSL_FALLTHROUGH_INTENDED;
case SearchResult::Tag::MATCH:
if (is_jelly_enabled) {
switch (label_type) {
case SearchResultView::LabelType::kBigTitle:
case SearchResultView::LabelType::kBigTitleSuperscript:
case SearchResultView::LabelType::kTitle:
return cros_tokens::kCrosSysOnSurface;
case SearchResultView::LabelType::kDetails:
return cros_tokens::kCrosSysOnSurfaceVariant;
case SearchResultView::LabelType::kKeyboardShortcut:
return cros_tokens::kCrosSysPrimary;
}
}
return IsTitleLabel(label_type) ? kColorAshTextColorPrimary
: kColorAshTextColorSecondary;
case SearchResult::Tag::URL:
return is_jelly_enabled
? static_cast<ui::ColorId>(cros_tokens::kCrosSysPrimary)
: kColorAshTextColorURL;
case SearchResult::Tag::GREEN:
return is_jelly_enabled
? static_cast<ui::ColorId>(cros_tokens::kCrosSysPositive)
: kColorAshTextColorPositive;
case SearchResult::Tag::RED:
return is_jelly_enabled
? static_cast<ui::ColorId>(cros_tokens::kCrosSysError)
: kColorAshTextColorAlert;
}
}
absl::optional<TypographyToken> GetTypographyToken(
SearchResultView::LabelType label_type,
bool is_match,
bool is_inline_detail) {
if (!chromeos::features::IsJellyEnabled()) {
return absl::nullopt;
}
if (is_match) {
return IsTitleLabel(label_type) ? TypographyToken::kCrosButton1
: TypographyToken::kCrosBody1;
}
switch (label_type) {
case SearchResultView::LabelType::kBigTitle:
return TypographyToken::kCrosDisplay2;
case SearchResultView::LabelType::kBigTitleSuperscript:
return TypographyToken::kCrosDisplay7;
case SearchResultView::LabelType::kTitle:
return TypographyToken::kCrosBody1;
case SearchResultView::LabelType::kDetails:
// has_keyboard_shortcut_contents forces inline title and details text
// for answer cards so title and details text should use the same
// context.
if (is_inline_detail) {
return TypographyToken::kCrosBody1;
}
ABSL_FALLTHROUGH_INTENDED;
case SearchResultView::LabelType::kKeyboardShortcut:
return TypographyToken::kCrosAnnotation1;
}
return absl::nullopt;
}
views::ImageView* SetupChildImageView(views::FlexLayoutView* parent) {
views::ImageView* image_view =
parent->AddChildView(std::make_unique<views::ImageView>());
image_view->GetViewAccessibility().OverrideIsIgnored(true);
image_view->SetCanProcessEventsWithinSubtree(false);
image_view->SetVerticalAlignment(views::ImageView::Alignment::kCenter);
image_view->SetVisible(false);
return image_view;
}
views::Label* SetupChildLabelView(
views::FlexLayoutView* parent,
SearchResultView::SearchResultViewType view_type,
SearchResultView::LabelType label_type,
ui::ColorId color_id,
absl::optional<TypographyToken> typography_token,
int flex_order,
bool has_keyboard_shortcut_contents,
bool is_multi_line,
SearchResultTextItem::OverflowBehavior overflow_behavior) {
// Create and setup label.
views::Label* label = parent->AddChildView(std::make_unique<views::Label>());
// Ignore labels for accessibility - the result accessible name is defined on
// the whole result view.
label->SetHorizontalAlignment(gfx::ALIGN_LEFT);
label->GetViewAccessibility().OverrideIsIgnored(true);
label->SetBackgroundColor(SK_ColorTRANSPARENT);
label->SetAutoColorReadabilityEnabled(false);
label->SetEnabledColorId(color_id);
label->SetVisible(false);
label->SetElideBehavior(overflow_behavior ==
SearchResultTextItem::OverflowBehavior::kElide
? gfx::ELIDE_TAIL
: gfx::NO_ELIDE);
label->SetMultiLine(is_multi_line);
if (is_multi_line) {
label->SetMaxLines(kMultiLineLimit);
}
label->SetProperty(
views::kFlexBehaviorKey,
views::FlexSpecification(
overflow_behavior == SearchResultTextItem::OverflowBehavior::kHide
? views::MinimumFlexSizeRule::kPreferredSnapToZero
: views::MinimumFlexSizeRule::kScaleToMinimum,
views::MaximumFlexSizeRule::kPreferred)
.WithOrder(flex_order));
if (label_type == SearchResultView::LabelType::kBigTitleSuperscript) {
// kBigTitleSuperscript labels are top-aligned to support superscripting.
label->SetVerticalAlignment(gfx::ALIGN_TOP);
}
// Apply label text styling.
if (typography_token.has_value()) {
TypographyProvider::Get()->StyleLabel(typography_token.value(), *label);
} else {
ash::AshTextContext text_context;
switch (label_type) {
case SearchResultView::LabelType::kBigTitle:
text_context = CONTEXT_SEARCH_RESULT_BIG_TITLE;
break;
case SearchResultView::LabelType::kBigTitleSuperscript:
text_context = CONTEXT_SEARCH_RESULT_BIG_TITLE_SUPERSCRIPT;
break;
case SearchResultView::LabelType::kTitle:
text_context = CONTEXT_SEARCH_RESULT_VIEW;
break;
case SearchResultView::LabelType::kDetails:
// has_keyboard_shortcut_contents forces inline title and details text
// for answer cards so title and details text should use the same
// context.
if (view_type == SearchResultView::SearchResultViewType::kAnswerCard &&
!has_keyboard_shortcut_contents) {
text_context = CONTEXT_SEARCH_RESULT_VIEW_INLINE_ANSWER_DETAILS;
} else {
text_context = CONTEXT_SEARCH_RESULT_VIEW;
}
break;
case SearchResultView::LabelType::kKeyboardShortcut:
text_context = CONTEXT_SEARCH_RESULT_VIEW;
break;
}
label->SetTextContext(text_context);
label->SetTextStyle(STYLE_LAUNCHER);
}
return label;
}
views::ProgressBar* SetupChildProgressBarView(
views::FlexLayoutView* parent,
double value,
absl::optional<double> upper_warning_limit,
absl::optional<double> lower_warning_limit) {
views::ProgressBar* progress_bar_view =
parent->AddChildView(std::make_unique<views::ProgressBar>());
progress_bar_view->GetViewAccessibility().OverrideIsIgnored(true);
progress_bar_view->SetCanProcessEventsWithinSubtree(false);
progress_bar_view->SetPreferredSize(
gfx::Size(kProgressBarWidth, kProgressBarHeight));
progress_bar_view->SizeToPreferredSize();
progress_bar_view->SetValue(value);
progress_bar_view->SetProperty(
views::kFlexBehaviorKey,
views::FlexSpecification(views::MinimumFlexSizeRule::kScaleToMinimum,
views::MaximumFlexSizeRule::kUnbounded,
/*adjust_height_for_width=*/false));
auto foreground_color =
((upper_warning_limit.has_value() &&
value * 100 >= upper_warning_limit.value()) ||
(lower_warning_limit.has_value() &&
value * 100 <= lower_warning_limit.value()))
? kColorAshSystemInfoBarChartWarningColorForeground
: kColorAshSystemInfoBarChartColorForeground;
progress_bar_view->SetForegroundColorId(foreground_color);
progress_bar_view->SetBackgroundColorId(
kColorAshSystemInfoBarChartColorBackground);
return progress_bar_view;
}
SearchResultInlineIconView* SetupChildInlineIconView(
views::FlexLayoutView* parent,
bool alterante_icon_and_text_styling) {
SearchResultInlineIconView* inline_icon_view =
parent->AddChildView(std::make_unique<SearchResultInlineIconView>(
alterante_icon_and_text_styling));
inline_icon_view->SetCanProcessEventsWithinSubtree(false);
inline_icon_view->GetViewAccessibility().OverrideIsIgnored(true);
inline_icon_view->SetVisible(false);
inline_icon_view->SetProperty(
views::kFlexBehaviorKey,
views::FlexSpecification(views::MinimumFlexSizeRule::kScaleToMinimum,
views::MaximumFlexSizeRule::kPreferred));
return inline_icon_view;
}
} // namespace
// An ImageView that optionally masks the image into a circle or rectangle with
// rounded corners.
class MaskedImageView : public views::ImageView {
public:
MaskedImageView() = default;
MaskedImageView(const MaskedImageView&) = delete;
MaskedImageView& operator=(const MaskedImageView&) = delete;
void set_shape(SearchResult::IconShape shape) {
if (shape_ == shape) {
return;
}
shape_ = shape;
SchedulePaint();
}
protected:
// views::ImageView:
void OnPaint(gfx::Canvas* canvas) override {
SkPath mask;
const gfx::Rect& bounds = GetImageBounds();
switch (shape_) {
case SearchResult::IconShape::kDefault:
case SearchResult::IconShape::kRectangle:
// Noop.
break;
case SearchResult::IconShape::kRoundedRectangle:
mask.addRoundRect(gfx::RectToSkRect(bounds), kImageIconCornerRadius,
kImageIconCornerRadius);
canvas->ClipPath(mask, true);
break;
case SearchResult::IconShape::kCircle:
// Calculate the radius of the circle based on the minimum of width and
// height in case the icon isn't square.
mask.addCircle(bounds.x() + bounds.width() / 2,
bounds.y() + bounds.height() / 2,
std::min(bounds.width(), bounds.height()) / 2);
canvas->ClipPath(mask, true);
break;
}
ImageView::OnPaint(canvas);
}
private:
SearchResult::IconShape shape_;
};
SearchResultView::LabelAndTag::LabelAndTag(views::Label* label,
SearchResult::Tags tags)
: label_(label), tags_(tags) {}
SearchResultView::LabelAndTag::LabelAndTag(
const SearchResultView::LabelAndTag& other) = default;
SearchResultView::LabelAndTag& SearchResultView::LabelAndTag::operator=(
const SearchResultView::LabelAndTag& other) = default;
SearchResultView::LabelAndTag::~LabelAndTag() = default;
SearchResultView::SearchResultView(
SearchResultListView* list_view,
AppListViewDelegate* view_delegate,
SearchResultPageDialogController* dialog_controller,
SearchResultViewType view_type)
: list_view_(list_view),
view_delegate_(view_delegate),
dialog_controller_(dialog_controller),
view_type_(view_type) {
SetCallback(base::BindRepeating(&SearchResultView::OnButtonPressed,
base::Unretained(this)));
icon_ = AddChildView(std::make_unique<MaskedImageView>());
badge_icon_ = AddChildView(std::make_unique<views::ImageView>());
auto* actions_view =
AddChildView(std::make_unique<SearchResultActionsView>(this));
set_actions_view(actions_view);
icon_->SetCanProcessEventsWithinSubtree(false);
icon_->GetViewAccessibility().OverrideIsIgnored(true);
badge_icon_->SetCanProcessEventsWithinSubtree(false);
badge_icon_->GetViewAccessibility().OverrideIsIgnored(true);
SetNotifyEnterExitOnChild(true);
text_container_ = AddChildView(std::make_unique<views::FlexLayoutView>());
text_container_->SetCrossAxisAlignment(views::LayoutAlignment::kStretch);
text_container_->SetOrientation(views::LayoutOrientation::kHorizontal);
text_container_->SetProperty(
views::kFlexBehaviorKey,
views::FlexSpecification(views::MinimumFlexSizeRule::kScaleToMinimum,
views::MaximumFlexSizeRule::kPreferred));
big_title_container_ =
text_container_->AddChildView(std::make_unique<views::FlexLayoutView>());
big_title_container_->SetCrossAxisAlignment(views::LayoutAlignment::kStretch);
big_title_container_->SetOrientation(views::LayoutOrientation::kHorizontal);
big_title_main_text_container_ = big_title_container_->AddChildView(
std::make_unique<views::FlexLayoutView>());
big_title_main_text_container_->SetCrossAxisAlignment(
views::LayoutAlignment::kStretch);
big_title_main_text_container_->SetOrientation(
views::LayoutOrientation::kHorizontal);
big_title_superscript_container_ = big_title_container_->AddChildView(
std::make_unique<views::FlexLayoutView>());
big_title_superscript_container_->SetCrossAxisAlignment(
views::LayoutAlignment::kStretch);
big_title_superscript_container_->SetOrientation(
views::LayoutOrientation::kHorizontal);
body_text_container_ =
text_container_->AddChildView(std::make_unique<views::FlexLayoutView>());
body_text_container_->SetCrossAxisAlignment(views::LayoutAlignment::kStretch);
body_text_container_->SetOrientation(views::LayoutOrientation::kVertical);
body_text_container_->SetProperty(
views::kFlexBehaviorKey,
views::FlexSpecification(views::MinimumFlexSizeRule::kScaleToMinimum,
views::MaximumFlexSizeRule::kPreferred));
title_and_details_container_ = body_text_container_->AddChildView(
std::make_unique<views::FlexLayoutView>());
title_and_details_container_->SetCrossAxisAlignment(
views::LayoutAlignment::kStretch);
title_and_details_container_->SetProperty(
views::kFlexBehaviorKey,
views::FlexSpecification(views::MinimumFlexSizeRule::kScaleToMinimum,
views::MaximumFlexSizeRule::kUnbounded,
/*adjust_height_for_width=*/true));
SetSearchResultViewType(view_type_);
title_container_ = title_and_details_container_->AddChildView(
std::make_unique<views::FlexLayoutView>());
title_container_->SetCrossAxisAlignment(views::LayoutAlignment::kStretch);
title_container_->SetOrientation(views::LayoutOrientation::kHorizontal);
title_container_->SetProperty(
views::kFlexBehaviorKey,
views::FlexSpecification(views::MinimumFlexSizeRule::kScaleToMinimum,
views::MaximumFlexSizeRule::kPreferred)
.WithOrder(TitleDetailContainerOrder)
.WithWeight(1));
title_container_->SetFlexAllocationOrder(
views::FlexAllocationOrder::kReverse);
progress_bar_container_ = title_and_details_container_->AddChildView(
std::make_unique<views::FlexLayoutView>());
progress_bar_container_->SetCrossAxisAlignment(
views::LayoutAlignment::kStretch);
progress_bar_container_->SetOrientation(
views::LayoutOrientation::kHorizontal);
progress_bar_container_->SetBorder(views::CreateEmptyBorder(
gfx::Insets::TLBR(kBarChartAnswerCardVerticalUpperOffset, 0,
kBarChartAnswerCardVerticalLowerOffset, 0)));
system_details_container_ = title_and_details_container_->AddChildView(
std::make_unique<views::FlexLayoutView>());
system_details_container_->SetCrossAxisAlignment(
views::LayoutAlignment::kStretch);
system_details_container_->SetOrientation(
views::LayoutOrientation::kHorizontal);
system_details_container_->SetProperty(
views::kFlexBehaviorKey,
views::FlexSpecification(views::MinimumFlexSizeRule::kPreferred,
views::MaximumFlexSizeRule::kScaleToMaximum));
left_details_container_ = system_details_container_->AddChildView(
std::make_unique<views::FlexLayoutView>());
left_details_container_->SetCrossAxisAlignment(
views::LayoutAlignment::kStretch);
left_details_container_->SetOrientation(
views::LayoutOrientation::kHorizontal);
left_details_container_->SetProperty(
views::kFlexBehaviorKey,
views::FlexSpecification(views::MinimumFlexSizeRule::kPreferred,
views::MaximumFlexSizeRule::kUnbounded)
.WithOrder(TitleDetailContainerOrder)
.WithWeight(1));
left_details_container_->SetMainAxisAlignment(views::LayoutAlignment::kStart);
right_details_container_ = system_details_container_->AddChildView(
std::make_unique<views::FlexLayoutView>());
right_details_container_->SetCrossAxisAlignment(
views::LayoutAlignment::kStretch);
right_details_container_->SetMainAxisAlignment(views::LayoutAlignment::kEnd);
right_details_container_->SetOrientation(
views::LayoutOrientation::kHorizontal);
right_details_container_->SetProperty(
views::kFlexBehaviorKey,
views::FlexSpecification(views::MinimumFlexSizeRule::kPreferred,
views::MaximumFlexSizeRule::kUnbounded)
.WithOrder(TitleDetailContainerOrder)
.WithWeight(1));
result_text_separator_label_ = SetupChildLabelView(
title_and_details_container_, view_type_, LabelType::kDetails,
kColorAshTextColorSecondary,
GetTypographyToken(LabelType::kDetails, /*is_match=*/false,
IsInlineSearchResult()),
kSeparatorOrder, has_keyboard_shortcut_contents_,
/*is_multi_line=*/false,
SearchResultTextItem::OverflowBehavior::kNoElide);
result_text_separator_label_->SetText(
l10n_util::GetStringUTF16(IDS_ASH_SEARCH_RESULT_SEPARATOR));
result_text_separator_label_->GetViewAccessibility().OverrideIsIgnored(true);
details_container_ = title_and_details_container_->AddChildView(
std::make_unique<views::FlexLayoutView>());
details_container_->SetCrossAxisAlignment(views::LayoutAlignment::kStretch);
details_container_->SetOrientation(views::LayoutOrientation::kHorizontal);
details_container_->SetProperty(
views::kFlexBehaviorKey,
views::FlexSpecification(views::MinimumFlexSizeRule::kScaleToMinimum,
views::MaximumFlexSizeRule::kUnbounded,
/*adjust_height_for_width=*/true)
.WithOrder(TitleDetailContainerOrder)
.WithWeight(1));
rating_separator_label_ = SetupChildLabelView(
title_and_details_container_, view_type_, LabelType::kDetails,
kColorAshTextColorSecondary,
GetTypographyToken(LabelType::kDetails, /*is_match=*/false,
IsInlineSearchResult()),
kSeparatorOrder, has_keyboard_shortcut_contents_,
/*is_multi_line=*/false,
SearchResultTextItem::OverflowBehavior::kNoElide);
rating_separator_label_->SetText(
l10n_util::GetStringUTF16(IDS_ASH_SEARCH_RESULT_SEPARATOR));
rating_separator_label_->GetViewAccessibility().OverrideIsIgnored(true);
rating_ = SetupChildLabelView(
title_and_details_container_, view_type_, LabelType::kDetails,
kColorAshTextColorSecondary,
GetTypographyToken(LabelType::kDetails, /*is_match=*/false,
IsInlineSearchResult()),
kRatingOrder, has_keyboard_shortcut_contents_,
/*is_multi_line=*/false,
SearchResultTextItem::OverflowBehavior::kNoElide);
rating_star_ = SetupChildImageView(title_and_details_container_);
rating_star_->SetBorder(views::CreateEmptyBorder(
gfx::Insets::TLBR(0, kSearchRatingStarPadding, 0, 0)));
keyboard_shortcut_container_ = body_text_container_->AddChildView(
std::make_unique<views::FlexLayoutView>());
keyboard_shortcut_container_->SetCrossAxisAlignment(
views::LayoutAlignment::kStretch);
keyboard_shortcut_container_->SetBorder(views::CreateEmptyBorder(
gfx::Insets::TLBR(kKeyboardShortcutTopMargin, 0, 0, 0)));
}
SearchResultView::~SearchResultView() = default;
bool SearchResultView::IsInlineSearchResult() {
// has_keyboard_shortcut_contents_ forces inline title and details text for
// answer cards.
return view_type_ != SearchResultView::SearchResultViewType::kAnswerCard ||
has_keyboard_shortcut_contents_;
}
void SearchResultView::OnResultChanged() {
OnMetadataChanged();
SchedulePaint();
}
void SearchResultView::SetSearchResultViewType(SearchResultViewType type) {
view_type_ = type;
switch (view_type_) {
case SearchResultViewType::kDefault:
title_and_details_container_->SetOrientation(
views::LayoutOrientation::kHorizontal);
ClearBigTitleContainer();
break;
case SearchResultViewType::kAnswerCard:
title_and_details_container_->SetOrientation(
views::LayoutOrientation::kVertical);
SetBorder(views::CreateEmptyBorder(kAnswerCardBorder));
break;
}
}
void SearchResultView::ClearBigTitleContainer() {
SetBorder(views::CreateEmptyBorder(0));
big_title_main_text_container_->RemoveAllChildViews();
big_title_label_tags_.clear();
big_title_main_text_container_->SetVisible(false);
big_title_superscript_container_->RemoveAllChildViews();
big_title_superscript_label_tags_.clear();
big_title_superscript_container_->SetVisible(false);
big_title_superscript_container_->SetBorder(views::CreateEmptyBorder(0));
}
views::LayoutOrientation SearchResultView::TitleAndDetailsOrientationForTest() {
return title_and_details_container_->GetOrientation();
}
int SearchResultView::PreferredHeight() const {
switch (view_type_) {
case SearchResultViewType::kDefault:
if (has_keyboard_shortcut_contents_) {
return kKeyboardShortcutViewHeight;
}
return kDefaultViewHeight;
case SearchResultViewType::kAnswerCard:
int height = kDefaultAnswerCardViewHeight;
if (multi_line_details_height_ > 0) {
// kDefaultAnswerCardViewHeight is adjusted to accommodate multi-line
// result's height. The assumed kAnswerCardDetailsLineHeight is replaced
// with the multi-line label's height.
height =
height + multi_line_details_height_ - kAnswerCardDetailsLineHeight;
}
if (multi_line_title_height_ > 0) {
// kDefaultAnswerCardViewHeight is adjusted to accommodate multi-line
// title's height. The assumed kPrimaryTextHeight is replaced
// with the multi-line label's height.
height = height + multi_line_title_height_ - kPrimaryTextHeight;
}
return height;
}
}
int SearchResultView::PrimaryTextHeight() const {
if (multi_line_title_height_ > 0) {
return multi_line_title_height_;
}
switch (view_type_) {
case SearchResultViewType::kDefault:
case SearchResultViewType::kAnswerCard:
return kPrimaryTextHeight;
}
}
int SearchResultView::SecondaryTextHeight() const {
if (has_keyboard_shortcut_contents_) {
return kPrimaryTextHeight;
}
if (multi_line_details_height_ > 0) {
return multi_line_details_height_;
}
switch (view_type_) {
case SearchResultViewType::kAnswerCard:
return kAnswerCardDetailsLineHeight;
case SearchResultViewType::kDefault:
return kPrimaryTextHeight;
}
}
int SearchResultView::ActionButtonRightMargin() const {
return kDefaultActionButtonRightMargin;
}
// static
int SearchResultView::GetTargetTitleWidth(int total_width,
int separator_width,
int target_details_width) {
// Allocate all remaining space to the title container.
const int target_title_width =
total_width - separator_width - target_details_width;
DCHECK_GT(target_title_width, 0);
return target_title_width;
}
// static
int SearchResultView::GetMinimumDetailsWidth(int total_width,
int details_width,
int details_no_elide_width) {
// Calculate the minimum width for the title and details containers
// assuming both will need eliding.
// We must allocate enough space to show the no_elide text. Otherwise
// show the entire details text up to total_width*kDetailsElideRatio.
const int target_details_width =
std::max(details_no_elide_width,
std::min(static_cast<int>(total_width * kDetailsElideRatio),
details_width));
DCHECK_GT(target_details_width, 0);
return target_details_width;
}
// static
void SearchResultView::SetFlexBehaviorForTextContents(
int total_width,
int separator_width,
int non_elided_details_width,
views::FlexLayoutView* title_container,
views::FlexLayoutView* details_container) {
const int title_width = title_container->GetPreferredSize().width();
const int details_width = details_container->GetPreferredSize().width();
// If the result view has enough space to accommodate text contents at their
// preferred size, we don't need to elide either view. Set their weights to 1
// and order to `kTitleDetailsLabelOrderNoElide`.
if (title_width + details_width + separator_width <= total_width) {
title_container->SetProperty(
views::kFlexBehaviorKey,
views::FlexSpecification(views::MinimumFlexSizeRule::kScaleToMinimum,
views::MaximumFlexSizeRule::kPreferred)
.WithOrder(kTitleDetailsLabelOrderNoElide)
.WithWeight(1));
details_container->SetProperty(
views::kFlexBehaviorKey,
views::FlexSpecification(views::MinimumFlexSizeRule::kScaleToMinimum,
views::MaximumFlexSizeRule::kPreferred)
.WithOrder(kTitleDetailsLabelOrderNoElide)
.WithWeight(1));
return;
}
const int min_details_width = GetMinimumDetailsWidth(
total_width, details_width, non_elided_details_width);
// If the result view has enough space to layout details to it's minimum size
// after laying out the title, we should only take away space from the details
// view. We do this by setting the details view to a lower order
// `kTitleDetailsLabelOrderElide`.
if (total_width - separator_width - title_width >= min_details_width) {
title_container->SetProperty(
views::kFlexBehaviorKey,
views::FlexSpecification(views::MinimumFlexSizeRule::kScaleToMinimum,
views::MaximumFlexSizeRule::kPreferred)
.WithOrder(kTitleDetailsLabelOrderNoElide)
.WithWeight(1));
details_container->SetProperty(
views::kFlexBehaviorKey,
views::FlexSpecification(views::MinimumFlexSizeRule::kScaleToMinimum,
views::MaximumFlexSizeRule::kPreferred)
.WithOrder(kTitleDetailsLabelOrderElide)
.WithWeight(1));
return;
}
// If excess space needs to be taken from both the title and details view
// to accommodate the minimum details view width, set flex weights to properly
// take away space from the title and details view.
const int target_title_width =
GetTargetTitleWidth(total_width, separator_width, min_details_width);
// Flex weights are set based on the amount of space that needs to be removed
// from an associated view because flex layout *takes space away* based on
// weight when it is unable to accommodate the view's preferred size.
// calculate the number of px we need to take away from the title/details
// text.
const int detail_extra_space = details_width - min_details_width;
const int title_extra_space = title_width - target_title_width;
title_container->SetProperty(
views::kFlexBehaviorKey,
views::FlexSpecification(views::MinimumFlexSizeRule::kScaleToMinimum,
views::MaximumFlexSizeRule::kPreferred)
.WithOrder(kTitleDetailsLabelOrderElide)
.WithWeight(std::max(title_extra_space, 0)));
details_container->SetProperty(
views::kFlexBehaviorKey,
views::FlexSpecification(views::MinimumFlexSizeRule::kScaleToMinimum,
views::MaximumFlexSizeRule::kPreferred)
.WithOrder(kTitleDetailsLabelOrderElide)
.WithWeight(std::max(detail_extra_space, 0)));
}
std::vector<SearchResultView::LabelAndTag>
SearchResultView::SetupContainerViewForTextVector(
views::FlexLayoutView* parent,
const std::vector<SearchResult::TextItem>& text_vector,
LabelType label_type,
bool has_keyboard_shortcut_contents,
bool is_multi_line) {
std::vector<LabelAndTag> label_tags;
int label_count = 0;
for (auto& span : text_vector) {
switch (span.GetType()) {
case SearchResultTextItemType::kString: {
bool elidable = span.GetOverflowBehavior() !=
SearchResultTextItem::OverflowBehavior::kNoElide;
views::Label* label = SetupChildLabelView(
parent, view_type_, label_type,
GetLabelColorId(label_type, span.GetTextTags()),
GetTypographyToken(label_type, /*is_match=*/false,
IsInlineSearchResult()),
!elidable ? kNonElideLabelOrder
: kElidableLabelOrderStart + label_count,
has_keyboard_shortcut_contents,
/*is_multi_line=*/is_multi_line, span.GetOverflowBehavior());
// Elidable label orders are monotonically increasing. Adjust the order
// of the label by the number of labels in this container.
if (elidable) {
++label_count;
}
if (label_type == LabelType::kDetails) {
// We should only show a separator label when the details container
// has valid contents.
should_show_result_text_separator_label_ =
should_show_result_text_separator_label_ ||
(!span.GetText().empty());
}
// Text labels for keyboard shortcuts have additional left/right
// padding.
if (label_type == LabelType::kKeyboardShortcut) {
label->SetProperty(views::kMarginsKey, gfx::Insets::TLBR(0, 6, 0, 6));
}
label->SetText(span.GetText());
label->SetVisible(true);
if (!elidable) {
// Each search result can have up to one non-elided label in its
// details text.
DCHECK_EQ(label_type, LabelType::kDetails);
non_elided_details_label_width_ = label->GetPreferredSize().width();
}
if (is_multi_line) {
switch (label_type) {
case LabelType::kDetails:
multi_line_details_height_ =
label->GetHeightForWidth(kMultilineLabelWidth);
break;
case LabelType::kTitle:
multi_line_title_height_ =
label->GetHeightForWidth(kMultilineLabelWidth);
break;
case LabelType::kBigTitle:
case LabelType::kBigTitleSuperscript:
case LabelType::kKeyboardShortcut:
// Multiline behavior is not supported for these label types.
break;
}
}
label_tags.emplace_back(label, span.GetTextTags());
} break;
case SearchResultTextItemType::kIconifiedText: {
SearchResultInlineIconView* iconified_text_view =
SetupChildInlineIconView(parent,
span.GetAlternateIconAndTextStyling());
iconified_text_view->SetText(span.GetText());
iconified_text_view->SetVisible(true);
} break;
case SearchResultTextItemType::kIconCode: {
SearchResultInlineIconView* icon_view = SetupChildInlineIconView(
parent, span.GetAlternateIconAndTextStyling());
icon_view->SetIcon(*span.GetIconFromCode());
icon_view->SetVisible(true);
} break;
case SearchResultTextItemType::kCustomImage:
break;
}
}
return label_tags;
}
void SearchResultView::UpdateBadgeIcon() {
if (!result() || result()->badge_icon().IsEmpty()) {
badge_icon_->SetVisible(false);
return;
}
const auto* color_provider = GetColorProvider();
gfx::ImageSkia badge_icon_skia =
result()->badge_icon().Rasterize(color_provider);
if (result()->use_badge_icon_background()) {
badge_icon_skia =
CreateIconWithCircleBackground(badge_icon_skia, color_provider);
}
gfx::ImageSkia resized_badge_icon(
gfx::ImageSkiaOperations::CreateResizedImage(
badge_icon_skia, skia::ImageOperations::RESIZE_BEST,
SharedAppListConfig::instance().search_list_badge_icon_size()));
gfx::ShadowValues shadow_values;
shadow_values.push_back(
gfx::ShadowValue(gfx::Vector2d(0, kBadgeIconShadowWidth), 0,
SkColorSetARGB(0x33, 0, 0, 0)));
shadow_values.push_back(
gfx::ShadowValue(gfx::Vector2d(0, kBadgeIconShadowWidth), 2,
SkColorSetARGB(0x33, 0, 0, 0)));
badge_icon_->SetImage(gfx::ImageSkiaOperations::CreateImageWithDropShadow(
resized_badge_icon, shadow_values));
badge_icon_->SetVisible(true);
}
void SearchResultView::UpdateBigTitleContainer() {
DCHECK_EQ(view_type_, SearchResultViewType::kAnswerCard);
// Big title is only shown for answer card views.
big_title_main_text_container_->RemoveAllChildViews();
big_title_label_tags_.clear();
if (!result() || result()->big_title_text_vector().empty()) {
big_title_main_text_container_->SetVisible(false);
} else {
// Create big title labels from text vector metadata.
big_title_label_tags_ = SetupContainerViewForTextVector(
big_title_main_text_container_, result()->big_title_text_vector(),
LabelType::kBigTitle, has_keyboard_shortcut_contents_,
/*is_multi_line=*/false);
StyleBigTitleContainer();
big_title_main_text_container_->SetVisible(true);
}
}
void SearchResultView::UpdateBigTitleSuperscriptContainer() {
DCHECK_EQ(view_type_, SearchResultViewType::kAnswerCard);
// Big title superscript is only shown for answer card views.
big_title_superscript_container_->RemoveAllChildViews();
big_title_superscript_label_tags_.clear();
if (!result() || result()->big_title_superscript_text_vector().empty()) {
big_title_superscript_container_->SetVisible(false);
} else {
// Create big title superscript labels from text vector metadata.
big_title_superscript_label_tags_ = SetupContainerViewForTextVector(
big_title_superscript_container_,
result()->big_title_superscript_text_vector(),
LabelType::kBigTitleSuperscript, has_keyboard_shortcut_contents_,
/*is_multi_line=*/false);
StyleBigTitleSuperscriptContainer();
big_title_superscript_container_->SetVisible(true);
big_title_superscript_container_->SetBorder(
views::CreateEmptyBorder(kBigTitleSuperscriptBorder));
}
}
void SearchResultView::UpdateTitleContainer() {
// Updating the title label should reset `multi_line_details_height_`.
multi_line_title_height_ = 0;
title_container_->RemoveAllChildViews();
title_label_tags_.clear();
if (!result() || result()->title_text_vector().empty()) {
// The entire text container should be hidden when there is no title.
text_container_->SetVisible(false);
title_and_details_container_->SetVisible(false);
title_container_->SetVisible(false);
} else {
// Create title labels from text vector metadata.
title_label_tags_ = SetupContainerViewForTextVector(
title_container_, result()->title_text_vector(), LabelType::kTitle,
has_keyboard_shortcut_contents_,
/*is_multi_line=*/result()->multiline_title());
StyleTitleContainer();
text_container_->SetVisible(true);
title_and_details_container_->SetVisible(true);
title_container_->SetVisible(true);
}
}
void SearchResultView::UpdateDetailsContainer() {
should_show_result_text_separator_label_ = false;
// Updating the details label should reset `multi_line_details_height_` and
// `non_elided_details_label_width_`.
multi_line_details_height_ = 0;
non_elided_details_label_width_ = 0;
details_container_->RemoveAllChildViews();
details_label_tags_.clear();
right_details_container_->RemoveAllChildViews();
left_details_container_->RemoveAllChildViews();
right_details_label_tags_.clear();
// Hide details container for answer cards with multiline titles.
bool hide_details_container_for_answer_card =
view_type_ == SearchResultViewType::kAnswerCard &&
multi_line_title_height_ > kPrimaryTextHeight;
if (!result() || result()->details_text_vector().empty() ||
hide_details_container_for_answer_card) {
details_container_->SetVisible(false);
result_text_separator_label_->SetVisible(false);
} else if (result() && result()->has_extra_system_data_details()) {
details_container_->SetVisible(false);
details_label_tags_ = SetupContainerViewForTextVector(
left_details_container_, result()->details_text_vector(),
LabelType::kDetails, has_keyboard_shortcut_contents_,
/*is_multi_line=*/result()->multiline_details());
absl::optional<std::u16string> right_details =
result()->system_info_extra_details();
ash::SearchResultTextItem text_item(SearchResultTextItemType::kString);
text_item.SetText(right_details.value());
text_item.SetTextTags({});
right_details_label_tags_ = SetupContainerViewForTextVector(
right_details_container_, {text_item}, LabelType::kDetails,
has_keyboard_shortcut_contents_,
/*is_multi_line=*/result()->multiline_details());
StyleDetailsContainer();
left_details_container_->SetVisible(true);
system_details_container_->SetVisible(true);
right_details_container_->SetVisible(true);
} else {
// Create details labels from text vector metadata.
details_label_tags_ = SetupContainerViewForTextVector(
details_container_, result()->details_text_vector(),
LabelType::kDetails, has_keyboard_shortcut_contents_,
/*is_multi_line=*/result()->multiline_details());
StyleDetailsContainer();
details_container_->SetVisible(true);
switch (view_type_) {
case SearchResultViewType::kDefault:
// Show `separator_label_` when SetupContainerViewForTextVector gets
// valid contents in `result()->details_text_vector()`.
result_text_separator_label_->SetVisible(
should_show_result_text_separator_label_);
break;
case SearchResultViewType::kAnswerCard:
// Show `separator_label_` when SetupContainerViewForTextVector gets
// valid contents in `result()->details_text_vector()` and
// `has_keyboard_shortcut_contents_` is set.
result_text_separator_label_->SetVisible(
should_show_result_text_separator_label_ &&
has_keyboard_shortcut_contents_);
}
}
}
void SearchResultView::UpdateKeyboardShortcutContainer() {
keyboard_shortcut_container_->RemoveAllChildViews();
keyboard_shortcut_container_tags_.clear();
if (!result() || result()->keyboard_shortcut_text_vector().empty()) {
keyboard_shortcut_container_->SetVisible(false);
has_keyboard_shortcut_contents_ = false;
// Reset `title_and_details_container_` orientation.
switch (view_type_) {
case SearchResultViewType::kDefault:
title_and_details_container_->SetOrientation(
views::LayoutOrientation::kHorizontal);
break;
case SearchResultViewType::kAnswerCard:
title_and_details_container_->SetOrientation(
views::LayoutOrientation::kVertical);
break;
}
} else {
has_keyboard_shortcut_contents_ = true;
keyboard_shortcut_container_tags_ = SetupContainerViewForTextVector(
keyboard_shortcut_container_, result()->keyboard_shortcut_text_vector(),
LabelType::kKeyboardShortcut, has_keyboard_shortcut_contents_,
/*is_multi_line=*/false);
StyleKeyboardShortcutContainer();
keyboard_shortcut_container_->SetVisible(true);
// Override `title_and_details_container_` orientation if the keyboard
// shortcut text vector has valid contents.
title_and_details_container_->SetOrientation(
views::LayoutOrientation::kHorizontal);
}
}
void SearchResultView::UpdateProgressBarContainer() {
progress_bar_container_->RemoveAllChildViews();
if (result() && result()->is_system_info_card_bar_chart()) {
is_progress_bar_answer_card_ = true;
progress_bar_ = SetupChildProgressBarView(
progress_bar_container_, result()->bar_chart_value().value() / 100.0,
result()->upper_limit_for_bar_chart(),
result()->lower_limit_for_bar_chart());
text_container_->SetVisible(true);
title_container_->SetVisible(false);
title_and_details_container_->SetVisible(true);
progress_bar_container_->SetVisible(true);
} else {
is_progress_bar_answer_card_ = false;
progress_bar_container_->SetVisible(false);
}
}
void SearchResultView::UpdateRating() {
if (!result() || !result()->rating() || result()->rating() < 0) {
rating_separator_label_->SetVisible(false);
rating_->SetText(std::u16string());
rating_->SetVisible(false);
rating_star_->SetVisible(false);
return;
}
rating_separator_label_->SetVisible(true);
rating_->SetText(base::FormatDouble(result()->rating(), 1));
rating_->SetVisible(true);
rating_star_->SetVisible(true);
}
void SearchResultView::StyleLabel(views::Label* label,
const SearchResult::Tags& tags) {
if (!chromeos::features::IsJellyEnabled()) {
// Reset font weight styling for label.
label->ApplyBaselineTextStyle();
}
for (const auto& tag : tags) {
bool has_match_tag = (tag.styles & SearchResult::Tag::MATCH);
if (has_match_tag)
label->SetTextStyleRange(AshTextStyle::STYLE_HIGHLIGHT, tag.range);
}
}
void SearchResultView::StyleBigTitleContainer() {
for (auto& span : big_title_label_tags_) {
StyleLabel(span.GetLabel(), span.GetTags());
}
}
void SearchResultView::StyleBigTitleSuperscriptContainer() {
for (auto& span : big_title_superscript_label_tags_) {
StyleLabel(span.GetLabel(), span.GetTags());
}
}
void SearchResultView::StyleTitleContainer() {
for (auto& span : title_label_tags_) {
StyleLabel(span.GetLabel(), span.GetTags());
}
}
void SearchResultView::StyleDetailsContainer() {
for (auto& span : details_label_tags_) {
StyleLabel(span.GetLabel(), span.GetTags());
}
if (result() && result()->has_extra_system_data_details()) {
for (auto& span : right_details_label_tags_) {
StyleLabel(span.GetLabel(), span.GetTags());
}
}
}
void SearchResultView::StyleKeyboardShortcutContainer() {
for (auto& span : keyboard_shortcut_container_tags_) {
StyleLabel(span.GetLabel(), span.GetTags());
}
}
void SearchResultView::OnQueryRemovalAccepted(bool accepted) {
if (accepted) {
list_view_->SearchResultActionActivated(this,
SearchResultActionType::kRemove);
}
if (confirm_remove_by_long_press_) {
confirm_remove_by_long_press_ = false;
SetSelected(false, absl::nullopt);
}
RecordSearchResultRemovalDialogDecision(
accepted ? SearchResultRemovalConfirmation::kRemovalConfirmed
: SearchResultRemovalConfirmation::kRemovalCanceled);
}
void SearchResultView::OnSelectedResultChanged() {
if (!selected()) {
actions_view()->HideActions();
}
}
gfx::Size SearchResultView::CalculatePreferredSize() const {
return gfx::Size(kPreferredWidth, PreferredHeight());
}
void SearchResultView::Layout() {
// TODO(crbug/1311101) add test coverage for search result view layout.
gfx::Rect rect(GetContentsBounds());
if (rect.IsEmpty()) {
return;
}
gfx::Rect icon_bounds(rect);
int left_right_padding =
(kPreferredIconViewWidth - icon_->GetImage().width()) / 2;
int top_bottom_padding = (rect.height() - icon_->GetImage().height()) / 2;
icon_bounds.set_width(kPreferredIconViewWidth);
icon_bounds.Inset(gfx::Insets::VH(top_bottom_padding, left_right_padding));
icon_bounds.Intersect(rect);
icon_->SetBoundsRect(icon_bounds);
gfx::Rect badge_icon_bounds;
const int badge_icon_dimension =
SharedAppListConfig::instance().search_list_badge_icon_dimension();
badge_icon_bounds = gfx::Rect(icon_bounds.right() - badge_icon_dimension,
icon_bounds.bottom() - badge_icon_dimension,
badge_icon_dimension, badge_icon_dimension);
badge_icon_bounds.Inset(-kBadgeIconShadowWidth);
badge_icon_bounds.Intersect(rect);
badge_icon_->SetBoundsRect(badge_icon_bounds);
const int max_actions_width =
(rect.right() - ActionButtonRightMargin() - icon_bounds.right()) / 2;
int actions_width =
std::min(max_actions_width, actions_view()->GetPreferredSize().width());
gfx::Rect actions_bounds(rect);
actions_bounds.set_x(rect.right() - ActionButtonRightMargin() -
actions_width);
actions_bounds.set_width(actions_width);
actions_view()->SetBoundsRect(actions_bounds);
gfx::Rect text_bounds(rect);
// Text bounds need to be shifted over by kAnswerCardBorderMargin for answer
// card views to make room for the kAnswerCardBorder.
text_bounds.set_x(kPreferredIconViewWidth +
(view_type_ == SearchResultViewType::kAnswerCard
? kAnswerCardBorderMargin
: 0));
if (actions_view()->GetVisible()) {
text_bounds.set_width(
rect.width() - kPreferredIconViewWidth - kTextTrailPadding -
actions_view()->bounds().width() -
(actions_view()->children().empty() ? 0 : ActionButtonRightMargin()));
} else {
text_bounds.set_width(rect.width() - kPreferredIconViewWidth -
kTextTrailPadding - ActionButtonRightMargin());
}
if (!title_label_tags_.empty() && !details_label_tags_.empty()) {
switch (view_type_) {
case SearchResultViewType::kDefault: {
// SearchResultView needs additional space when
// `has_keyboard_shortcut_contents_` is set to accommodate the
// `keyboard_shortcut_container_`.
gfx::Size label_size(
text_bounds.width(),
PrimaryTextHeight() +
(has_keyboard_shortcut_contents_
? kKeyboardShortcutTopMargin + SecondaryTextHeight()
: 0));
gfx::Rect centered_text_bounds(text_bounds);
centered_text_bounds.ClampToCenteredSize(label_size);
text_container_->SetBoundsRect(centered_text_bounds);
SetFlexBehaviorForTextContents(
centered_text_bounds.width(),
result_text_separator_label_->GetPreferredSize().width(),
non_elided_details_label_width_, title_container_,
details_container_);
break;
}
case SearchResultViewType::kAnswerCard: {
gfx::Size label_size(
text_bounds.width(),
PrimaryTextHeight() + SecondaryTextHeight() +
(has_keyboard_shortcut_contents_ ? kKeyboardShortcutTopMargin
: 0));
gfx::Rect centered_text_bounds(text_bounds);
centered_text_bounds.ClampToCenteredSize(label_size);
text_container_->SetBoundsRect(centered_text_bounds);
}
}
} else if (!title_label_tags_.empty()) {
gfx::Size text_size(text_bounds.width(), PrimaryTextHeight());
if (view_type_ == SearchResultViewType::kAnswerCard &&
has_keyboard_shortcut_contents_) {
// Increase height for answer cards with keyboard shortcut contents.
text_size.Enlarge(
/*grow_width=*/0,
/*grow_height=*/SecondaryTextHeight() + kKeyboardShortcutTopMargin);
}
gfx::Rect centered_text_bounds(text_bounds);
centered_text_bounds.ClampToCenteredSize(text_size);
text_container_->SetBoundsRect(centered_text_bounds);
} else if (!details_label_tags_.empty() && is_progress_bar_answer_card_ &&
result() && result()->is_system_info_card_bar_chart()) {
gfx::Size label_size(text_bounds.width(),
PrimaryTextHeight() + SecondaryTextHeight());
gfx::Rect centered_text_bounds(text_bounds);
centered_text_bounds.ClampToCenteredSize(label_size);
text_container_->SetBoundsRect(centered_text_bounds);
}
}
bool SearchResultView::OnKeyPressed(const ui::KeyEvent& event) {
// result() could be null when result list is changing.
if (!result()) {
return false;
}
switch (event.key_code()) {
case ui::VKEY_RETURN:
if (actions_view()->HasSelectedAction()) {
OnSearchResultActionActivated(static_cast<SearchResultActionType>(
actions_view()->GetSelectedAction()));
} else {
list_view_->SearchResultActivated(this, event.flags(),
false /* by_button_press */);
}
return true;
case ui::VKEY_DELETE:
case ui::VKEY_BROWSER_BACK:
// Allows alt+(back or delete) to trigger the 'remove result' dialog.
OnSearchResultActionActivated(SearchResultActionType::kRemove);
return true;
default:
return false;
}
}
void SearchResultView::PaintButtonContents(gfx::Canvas* canvas) {
gfx::Rect rect(GetContentsBounds());
if (rect.IsEmpty()) {
return;
}
gfx::Rect content_rect(rect);
bool is_jelly_enabled = chromeos::features::IsJellyEnabled();
const SkColor focus_bar_color = GetColorProvider()->GetColor(
is_jelly_enabled
? static_cast<ui::ColorId>(cros_tokens::kCrosSysFocusRing)
: ui::kColorAshFocusRing);
const SkColor highlight_color = GetColorProvider()->GetColor(
is_jelly_enabled
? static_cast<ui::ColorId>(cros_tokens::kCrosSysHoverOnSubtle)
: kColorAshHighlightColorHover);
switch (view_type_) {
case SearchResultViewType::kDefault:
if (selected() && !actions_view()->HasSelectedAction()) {
canvas->FillRect(content_rect, highlight_color);
PaintFocusBar(canvas, GetContentsBounds().origin(),
/*height=*/GetContentsBounds().height(), focus_bar_color);
}
break;
case SearchResultViewType::kAnswerCard: {
cc::PaintFlags flags;
flags.setAntiAlias(true);
flags.setColor(highlight_color);
canvas->DrawRoundRect(content_rect, kAnswerCardCardBackgroundCornerRadius,
flags);
if (selected()) {
// Dynamically calculate the height of the answer card focus bar to
// accommodate different heights for multi-line results.
PaintFocusBar(canvas,
gfx::Point(kAnswerCardFocusBarHorizontalOffset,
kAnswerCardFocusBarVerticalOffset),
PreferredHeight() -
kAnswerCardCardBackgroundCornerRadius * 2 -
kAnswerCardFocusBarVerticalOffset,
focus_bar_color);
}
} break;
}
}
void SearchResultView::OnMouseEntered(const ui::MouseEvent& event) {
actions_view()->UpdateButtonsOnStateChanged();
}
void SearchResultView::OnMouseExited(const ui::MouseEvent& event) {
actions_view()->UpdateButtonsOnStateChanged();
}
void SearchResultView::VisibilityChanged(View* starting_from, bool is_visible) {
NotifyAccessibilityEvent(ax::mojom::Event::kLayoutComplete, true);
}
void SearchResultView::OnThemeChanged() {
views::View::OnThemeChanged();
rating_star_->SetImage(gfx::CreateVectorIcon(
kBadgeRatingIcon, kSearchRatingStarSize,
GetColorProvider()->GetColor(kColorAshTextColorSecondary)));
SchedulePaint();
}
void SearchResultView::OnGestureEvent(ui::GestureEvent* event) {
switch (event->type()) {
case ui::ET_GESTURE_LONG_PRESS:
if (actions_view()->IsValidActionIndex(SearchResultActionType::kRemove)) {
ScrollRectToVisible(GetLocalBounds());
SetSelected(true, absl::nullopt);
confirm_remove_by_long_press_ = true;
event->SetHandled();
}
break;
default:
break;
}
if (!event->handled()) {
Button::OnGestureEvent(event);
}
}
void SearchResultView::OnMetadataChanged() {
TRACE_EVENT0("ui", "SearchResultView::OnMetadataChanged");
if (view_type_ == SearchResultViewType::kAnswerCard) {
UpdateBigTitleContainer();
UpdateBigTitleSuperscriptContainer();
}
UpdateKeyboardShortcutContainer();
UpdateTitleContainer();
UpdateProgressBarContainer();
UpdateDetailsContainer();
UpdateAccessibleName();
UpdateBadgeIcon();
UpdateRating();
// Updates |icon_|.
// Note: this might leave the view with an old icon. But it is needed to avoid
// flash when a SearchResult's icon is loaded asynchronously. In this case, it
// looks nicer to keep the stale icon for a little while on screen instead of
// clearing it out. It should work correctly as long as the SearchResult does
// not forget to SetIcon when it's ready.
if (result() && !result()->icon().icon.IsEmpty()) {
const SearchResult::IconInfo& icon_info = result()->icon();
const gfx::ImageSkia& image = icon_info.icon.Rasterize(GetColorProvider());
// Calculate the image dimensions. Images could be rectangular, and we
// should preserve the aspect ratio.
const size_t dimension = result()->icon().dimension;
const int max = std::max(image.width(), image.height());
const bool is_square = image.width() == image.height();
const int width = is_square ? dimension : dimension * image.width() / max;
const int height = is_square ? dimension : dimension * image.height() / max;
SetIconImage(image, icon_, gfx::Size(width, height));
icon_->set_shape(icon_info.shape);
}
// Updates |actions_view()|.
actions_view()->SetActions(result() ? result()->actions()
: SearchResult::Actions());
}
void SearchResultView::OnButtonPressed(const ui::Event& event) {
list_view_->SearchResultActivated(this, event.flags(),
true /* by_button_press */);
}
void SearchResultView::SetIconImage(const gfx::ImageSkia& source,
views::ImageView* const icon,
const gfx::Size& size) {
TRACE_EVENT0("ui", "SearchResultView::SetIconImage");
gfx::ImageSkia image(source);
image = gfx::ImageSkiaOperations::CreateResizedImage(
source, skia::ImageOperations::RESIZE_BEST, size);
icon->SetImage(image);
icon->SetImageSize(size);
}
void SearchResultView::OnSearchResultActionActivated(size_t index) {
// |result()| could be nullptr when result list is changing.
if (!result()) {
return;
}
DCHECK_LT(index, result()->actions().size());
SearchResultActionType button_action = result()->actions()[index].type;
switch (button_action) {
case SearchResultActionType::kRemove: {
std::unique_ptr<views::WidgetDelegate> dialog =
std::make_unique<RemoveQueryConfirmationDialog>(
base::BindOnce(&SearchResultView::OnQueryRemovalAccepted,
weak_ptr_factory_.GetWeakPtr()),
result()->title());
dialog_controller_->Show(std::move(dialog));
break;
}
}
}
bool SearchResultView::IsSearchResultHoveredOrSelected() {
return IsMouseHovered() || selected();
}
BEGIN_METADATA(SearchResultView, SearchResultBaseView)
END_METADATA
} // namespace ash
|