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
|
// Copyright 2022 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/shelf/shelf_shutdown_confirmation_bubble.h"
#include "ash/constants/ash_features.h"
#include "ash/strings/grit/ash_strings.h"
#include "ash/style/ash_color_provider.h"
#include "ash/style/pill_button.h"
#include "ash/style/typography.h"
#include "ash/system/tray/tray_popup_utils.h"
#include "ash/system/tray/tray_utils.h"
#include "base/functional/bind.h"
#include "base/functional/callback_forward.h"
#include "base/functional/callback_helpers.h"
#include "base/metrics/histogram_functions.h"
#include "chromeos/constants/chromeos_features.h"
#include "components/strings/grit/components_strings.h"
#include "components/vector_icons/vector_icons.h"
#include "ui/accessibility/ax_node_data.h"
#include "ui/aura/window.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/models/image_model.h"
#include "ui/gfx/geometry/size.h"
#include "ui/gfx/image/image_skia_operations.h"
#include "ui/gfx/paint_vector_icon.h"
#include "ui/gfx/vector_icon_types.h"
#include "ui/views/controls/label.h"
#include "ui/views/layout/box_layout.h"
#include "ui/views/layout/flex_layout.h"
#include "ui/views/layout/layout_provider.h"
namespace ash {
namespace {
// The insets of the shutdown confirmation bubble. The value of
// Insets-leading-side is taken from the system.
constexpr int kShutdownConfirmationBubbleInsetsBottom = 12;
constexpr int kShutdownConfirmationBubbleInsetsTop = 8;
gfx::Insets GetShutdownConfirmationBubbleInsets(aura::Window* window) {
gfx::Insets insets = GetTrayBubbleInsets(window);
insets.set_top(kShutdownConfirmationBubbleInsetsTop);
insets.set_bottom(kShutdownConfirmationBubbleInsetsBottom);
return insets;
}
// Histogram for tracking the number of actions on the shelf shutdown
// confirmation bubble.
constexpr char kActionHistogramName[] =
"Ash.Shelf.ShutdownConfirmationBubble.Action";
} // namespace
ShelfShutdownConfirmationBubble::ShelfShutdownConfirmationBubble(
views::View* anchor,
ShelfAlignment alignment,
base::OnceClosure on_confirm_callback,
base::OnceClosure on_cancel_callback)
: ShelfBubble(anchor,
alignment,
/*for_tooltip=*/false,
/*arrow_position=*/absl::nullopt) {
DCHECK(on_confirm_callback);
DCHECK(on_cancel_callback);
confirm_callback_ = std::move(on_confirm_callback);
cancel_callback_ = std::move(on_cancel_callback);
auto* layout_provider = views::LayoutProvider::Get();
const gfx::Insets kShutdownConfirmationBubbleInsets =
GetShutdownConfirmationBubbleInsets(
anchor_widget()->GetNativeWindow()->GetRootWindow());
const gfx::Insets dialog_insets =
layout_provider->GetInsetsMetric(views::INSETS_DIALOG);
set_margins(kShutdownConfirmationBubbleInsets + dialog_insets);
set_close_on_deactivate(true);
SetCloseCallback(base::BindOnce(&ShelfShutdownConfirmationBubble::OnClosed,
base::Unretained(this)));
views::FlexLayout* layout =
SetLayoutManager(std::make_unique<views::FlexLayout>());
layout->SetOrientation(views::LayoutOrientation::kVertical);
layout->SetMainAxisAlignment(views::LayoutAlignment::kStart);
layout->SetCrossAxisAlignment(views::LayoutAlignment::kStart);
// Set up the icon.
icon_ = AddChildView(std::make_unique<views::ImageView>());
icon_->SetProperty(
views::kMarginsKey,
gfx::Insets::TLBR(0, 0,
layout_provider->GetDistanceMetric(
views::DISTANCE_UNRELATED_CONTROL_VERTICAL),
0));
// Set up the title view.
title_ = AddChildView(std::make_unique<views::Label>());
title_->SetMultiLine(true);
title_->SetHorizontalAlignment(gfx::HorizontalAlignment::ALIGN_LEFT);
if (chromeos::features::IsJellyEnabled()) {
title_->SetAutoColorReadabilityEnabled(false);
TypographyProvider::Get()->StyleLabel(TypographyToken::kCrosHeadline1,
*title_);
} else {
TrayPopupUtils::SetLabelFontList(title_,
TrayPopupUtils::FontStyle::kSubHeader);
}
title_->SetText(
l10n_util::GetStringUTF16(IDS_ASH_SHUTDOWN_CONFIRMATION_TITLE));
title_->SetProperty(
views::kMarginsKey,
gfx::Insets::TLBR(0, 0,
layout_provider->GetDistanceMetric(
views::DISTANCE_DIALOG_CONTENT_MARGIN_BOTTOM_TEXT),
0));
// Set up layout row for the buttons of cancellation and confirmation.
views::View* button_container = AddChildView(std::make_unique<views::View>());
button_container->SetLayoutManager(std::make_unique<views::BoxLayout>(
views::BoxLayout::Orientation::kHorizontal, gfx::Insets(),
layout_provider->GetDistanceMetric(
views::DISTANCE_RELATED_BUTTON_HORIZONTAL)));
auto cancel_button = std::make_unique<PillButton>(
base::BindRepeating(&ShelfShutdownConfirmationBubble::OnCancelled,
base::Unretained(this)),
l10n_util::GetStringUTF16(IDS_CANCEL),
PillButton::Type::kDefaultWithoutIcon,
/*icon=*/nullptr);
cancel_button->SetID(static_cast<int>(ButtonId::kCancel));
cancel_ = button_container->AddChildView(std::move(cancel_button));
auto confirm_button = std::make_unique<PillButton>(
base::BindRepeating(&ShelfShutdownConfirmationBubble::OnConfirmed,
base::Unretained(this)),
l10n_util::GetStringUTF16(IDS_ASH_SHUTDOWN_CONFIRM_BUTTON),
PillButton::Type::kDefaultWithoutIcon, /*icon=*/nullptr);
confirm_button->SetID(static_cast<int>(ButtonId::kShutdown));
confirm_ = button_container->AddChildView(std::move(confirm_button));
CreateBubble();
auto bubble_border =
std::make_unique<views::BubbleBorder>(arrow(), GetShadow());
bubble_border->set_insets(kShutdownConfirmationBubbleInsets);
bubble_border->SetCornerRadius(
views::LayoutProvider::Get()->GetCornerRadiusMetric(
views::Emphasis::kHigh));
GetBubbleFrameView()->SetBubbleBorder(std::move(bubble_border));
GetBubbleFrameView()->SetBackgroundColor(GetBackgroundColor());
GetWidget()->Show();
base::UmaHistogramEnumeration(
kActionHistogramName,
ShelfShutdownConfirmationBubble::BubbleAction::kOpened);
}
ShelfShutdownConfirmationBubble::~ShelfShutdownConfirmationBubble() {
// In case shutdown confirmation bubble was dismissed, the pointer of the
// ShelfShutdownConfirmationBubble in LoginShelfView shall be cleaned up.
if (cancel_callback_) {
std::move(cancel_callback_).Run();
}
}
void ShelfShutdownConfirmationBubble::OnThemeChanged() {
views::View::OnThemeChanged();
auto* color_provider = AshColorProvider::Get();
SkColor icon_color = color_provider->GetContentLayerColor(
AshColorProvider::ContentLayerType::kButtonIconColor);
icon_->SetImage(
gfx::CreateVectorIcon(vector_icons::kWarningOutlineIcon, icon_color));
SkColor label_color = color_provider->GetContentLayerColor(
AshColorProvider::ContentLayerType::kTextColorPrimary);
title_->SetEnabledColor(label_color);
SkColor button_color = color_provider->GetContentLayerColor(
AshColorProvider::ContentLayerType::kButtonLabelColor);
cancel_->SetEnabledTextColors(button_color);
confirm_->SetEnabledTextColors(button_color);
}
void ShelfShutdownConfirmationBubble::GetAccessibleNodeData(
ui::AXNodeData* node_data) {
node_data->role = ax::mojom::Role::kDialog;
node_data->SetNameChecked(title_->GetText());
}
std::u16string ShelfShutdownConfirmationBubble::GetAccessibleWindowTitle()
const {
return title_->GetText();
}
void ShelfShutdownConfirmationBubble::OnCancelled() {
dialog_result_ = DialogResult::kCancelled;
GetWidget()->Close();
}
void ShelfShutdownConfirmationBubble::OnConfirmed() {
dialog_result_ = DialogResult::kConfirmed;
GetWidget()->Close();
}
void ShelfShutdownConfirmationBubble::OnClosed() {
switch (dialog_result_) {
case DialogResult::kCancelled:
ReportBubbleAction(
ShelfShutdownConfirmationBubble::BubbleAction::kCancelled);
std::move(cancel_callback_).Run();
break;
case DialogResult::kConfirmed:
ReportBubbleAction(
ShelfShutdownConfirmationBubble::BubbleAction::kConfirmed);
std::move(confirm_callback_).Run();
break;
case DialogResult::kNone:
ReportBubbleAction(
ShelfShutdownConfirmationBubble::BubbleAction::kDismissed);
break;
}
}
bool ShelfShutdownConfirmationBubble::ShouldCloseOnPressDown() {
return true;
}
bool ShelfShutdownConfirmationBubble::ShouldCloseOnMouseExit() {
return false;
}
void ShelfShutdownConfirmationBubble::ReportBubbleAction(
ShelfShutdownConfirmationBubble::BubbleAction action) {
base::UmaHistogramEnumeration(kActionHistogramName, action);
}
} // namespace ash
|