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
|
// Copyright 2023 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/system/hotspot/hotspot_detailed_view.h"
#include "ash/ash_element_identifiers.h"
#include "ash/bubble/bubble_utils.h"
#include "ash/public/cpp/system_tray_client.h"
#include "ash/resources/vector_icons/vector_icons.h"
#include "ash/shell.h"
#include "ash/strings/grit/ash_strings.h"
#include "ash/style/rounded_container.h"
#include "ash/style/switch.h"
#include "ash/style/typography.h"
#include "ash/system/hotspot/hotspot_icon.h"
#include "ash/system/hotspot/hotspot_icon_animation.h"
#include "ash/system/model/system_tray_model.h"
#include "ash/system/tray/detailed_view_delegate.h"
#include "ash/system/tray/hover_highlight_view.h"
#include "ash/system/tray/tray_popup_utils.h"
#include "base/functional/bind.h"
#include "base/strings/string_number_conversions.h"
#include "chromeos/constants/chromeos_features.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/metadata/metadata_impl_macros.h"
#include "ui/chromeos/devicetype_utils.h"
#include "ui/chromeos/styles/cros_tokens_color_mappings.h"
#include "ui/gfx/geometry/insets.h"
#include "ui/gfx/paint_vector_icon.h"
#include "ui/views/accessibility/view_accessibility.h"
#include "ui/views/background.h"
#include "ui/views/controls/button/button.h"
#include "ui/views/controls/image_view.h"
#include "ui/views/controls/label.h"
#include "ui/views/view_class_properties.h"
namespace ash {
using hotspot_config::mojom::HotspotAllowStatus;
using hotspot_config::mojom::HotspotInfoPtr;
using hotspot_config::mojom::HotspotState;
namespace {
// Used for setting the insets of broader hotspot entry row.
constexpr auto kToggleRowTriViewInsets = gfx::Insets::VH(8, 24);
bool IsEnabledOrEnabling(HotspotState state) {
return state == HotspotState::kEnabled || state == HotspotState::kEnabling;
}
bool CanToggleHotspot(HotspotState state, HotspotAllowStatus allow_status) {
if (state == HotspotState::kDisabling) {
return false;
}
if (state == HotspotState::kEnabling || state == HotspotState::kEnabled) {
return true;
}
return allow_status == HotspotAllowStatus::kAllowed;
}
} // namespace
HotspotDetailedView::HotspotDetailedView(
DetailedViewDelegate* detailed_view_delegate,
Delegate* delegate)
: TrayDetailedView(detailed_view_delegate), delegate_(delegate) {
CreateTitleRow(IDS_ASH_STATUS_TRAY_HOTSPOT);
CreateScrollableList();
CreateContainer();
}
HotspotDetailedView::~HotspotDetailedView() {
Shell::Get()->hotspot_icon_animation()->RemoveObserver(this);
}
void HotspotDetailedView::UpdateViewForHotspot(HotspotInfoPtr hotspot_info) {
if (hotspot_info->state == HotspotState::kEnabling) {
Shell::Get()->hotspot_icon_animation()->AddObserver(this);
} else if (state_ == HotspotState::kEnabling) {
Shell::Get()->hotspot_icon_animation()->RemoveObserver(this);
}
if (state_ != hotspot_info->state) {
state_ = hotspot_info->state;
UpdateIcon();
}
UpdateSubText(hotspot_info);
allow_status_ = hotspot_info->allow_status;
UpdateToggleState(hotspot_info->state, hotspot_info->allow_status);
UpdateExtraIcon(hotspot_info->allow_status);
}
void HotspotDetailedView::HandleViewClicked(views::View* view) {
// Handle clicks on the on/off toggle row.
if (view == entry_row_ && CanToggleHotspot(state_, allow_status_)) {
// The toggle button has the old state, so switch to the opposite state.
ToggleHotspot(!toggle_->GetIsOn());
return;
}
}
void HotspotDetailedView::CreateExtraTitleRowButtons() {
tri_view()->SetContainerVisible(TriView::Container::END, /*visible=*/true);
CHECK(!settings_button_);
settings_button_ = CreateSettingsButton(
base::BindRepeating(&HotspotDetailedView::OnSettingsClicked,
weak_factory_.GetWeakPtr()),
IDS_ASH_HOTSPOT_DETAILED_VIEW_HOTSPOT_SETTINGS);
settings_button_->SetState(TrayPopupUtils::CanOpenWebUISettings()
? views::Button::STATE_NORMAL
: views::Button::STATE_DISABLED);
settings_button_->SetID(
static_cast<int>(HotspotDetailedViewChildId::kSettingsButton));
tri_view()->AddView(TriView::Container::END, settings_button_);
}
void HotspotDetailedView::CreateContainer() {
row_container_ =
scroll_content()->AddChildView(std::make_unique<RoundedContainer>(
RoundedContainer::Behavior::kAllRounded));
// Ensure the HoverHighlightView ink drop fills the whole container.
row_container_->SetBorderInsets(gfx::Insets());
entry_row_ = row_container_->AddChildView(
std::make_unique<HoverHighlightView>(/*listener=*/this));
entry_row_->SetID(static_cast<int>(HotspotDetailedViewChildId::kEntryRow));
// The icon image and label text depend on whether hotspot is enabled. They
// are set in UpdateViewForHotspot().
auto hotspot_icon = std::make_unique<views::ImageView>();
hotspot_icon->SetID(
static_cast<int>(HotspotDetailedViewChildId::kHotspotIcon));
hotspot_icon->SetImage(ui::ImageModel::FromVectorIcon(
kHotspotOffIcon, cros_tokens::kCrosSysOnSurface));
hotspot_icon_ = hotspot_icon.get();
entry_row_->AddViewAndLabel(std::move(hotspot_icon), u"");
const std::u16string text_label = l10n_util::GetStringFUTF16(
IDS_ASH_HOTSPOT_DETAILED_VIEW_TITLE, ui::GetChromeOSDeviceName());
entry_row_->text_label()->SetText(text_label);
entry_row_->text_label()->SetEnabledColor(cros_tokens::kCrosSysOnSurface);
TypographyProvider::Get()->StyleLabel(TypographyToken::kCrosButton1,
*entry_row_->text_label());
entry_row_->GetViewAccessibility().SetName(text_label);
auto toggle = std::make_unique<Switch>(base::BindRepeating(
&HotspotDetailedView::OnToggleClicked, weak_factory_.GetWeakPtr()));
toggle->GetViewAccessibility().SetName(l10n_util::GetStringUTF16(
IDS_ASH_HOTSPOT_DETAILED_VIEW_TOGGLE_A11Y_TEXT));
toggle->SetID(static_cast<int>(HotspotDetailedViewChildId::kToggle));
toggle->SetProperty(views::kElementIdentifierKey,
kHotspotDetailedViewToggleElementId);
toggle_ = toggle.get();
entry_row_->AddRightView(toggle.release());
auto extra_icon = std::make_unique<views::ImageView>();
extra_icon->SetVisible(false);
extra_icon->SetID(static_cast<int>(HotspotDetailedViewChildId::kExtraIcon));
extra_icon_ = extra_icon.get();
entry_row_->AddAdditionalRightView(extra_icon.release());
// Allow the row to be taller than a typical tray menu item.
entry_row_->SetExpandable(true);
entry_row_->tri_view()->SetInsets(kToggleRowTriViewInsets);
}
void HotspotDetailedView::OnSettingsClicked() {
CloseBubble(); // Delete `this`.
Shell::Get()->system_tray_model()->client()->ShowHotspotSubpage();
}
void HotspotDetailedView::OnToggleClicked() {
// The toggle button already has the new state after a click.
ToggleHotspot(toggle_->GetIsOn());
}
void HotspotDetailedView::ToggleHotspot(bool new_state) {
delegate_->OnToggleClicked(new_state);
}
void HotspotDetailedView::HotspotIconChanged() {
UpdateIcon();
}
void HotspotDetailedView::UpdateIcon() {
hotspot_icon_->SetImage(ui::ImageModel::FromVectorIcon(
hotspot_icon::GetIconForHotspot(state_), cros_tokens::kCrosSysOnSurface));
}
void HotspotDetailedView::UpdateToggleState(
const HotspotState& state,
const HotspotAllowStatus& allow_status) {
toggle_->SetEnabled(CanToggleHotspot(state, allow_status));
const bool is_enabled_or_enabling = IsEnabledOrEnabling(state);
toggle_->SetIsOn(is_enabled_or_enabling);
entry_row_->SetAccessibilityState(
is_enabled_or_enabling
? HoverHighlightView::AccessibilityState::CHECKED_CHECKBOX
: HoverHighlightView::AccessibilityState::UNCHECKED_CHECKBOX);
}
void HotspotDetailedView::UpdateSubText(const HotspotInfoPtr& hotspot_info) {
std::u16string sub_text;
switch (hotspot_info->state) {
case HotspotState::kEnabled: {
uint32_t client_count = hotspot_info->client_count;
if (client_count == 0) {
sub_text = l10n_util::GetStringUTF16(
IDS_ASH_HOTSPOT_DETAILED_VIEW_ON_NO_CONNECTED_DEVICES);
} else if (client_count == 1) {
sub_text = l10n_util::GetStringUTF16(
IDS_ASH_HOTSPOT_ON_MESSAGE_ONE_CONNECTED_DEVICE);
} else {
sub_text = l10n_util::GetStringFUTF16(
IDS_ASH_HOTSPOT_ON_MESSAGE_MULTIPLE_CONNECTED_DEVICES,
base::NumberToString16(client_count));
}
break;
}
case HotspotState::kDisabled: {
const HotspotAllowStatus allow_status = hotspot_info->allow_status;
if (allow_status == HotspotAllowStatus::kDisallowedNoMobileData) {
sub_text = l10n_util::GetStringUTF16(
IDS_ASH_HOTSPOT_DETAILED_VIEW_SUBLABEL_NO_MOBILE_DATA);
}
break;
}
case HotspotState::kEnabling:
sub_text = l10n_util::GetStringUTF16(
IDS_ASH_STATUS_TRAY_HOTSPOT_STATUS_ENABLING);
break;
case HotspotState::kDisabling:
sub_text = l10n_util::GetStringUTF16(
IDS_ASH_STATUS_TRAY_HOTSPOT_STATUS_DISABLING);
break;
}
if (!sub_text.empty()) {
entry_row_->SetSubText(sub_text);
entry_row_->sub_text_label()->SetVisible(true);
entry_row_->GetViewAccessibility().SetDescription(sub_text);
if (hotspot_info->state != HotspotState::kEnabled) {
// If hotspot is not enabled, no need to set primary color for the status
// sublabel text.
return;
}
// Set color for the subtext that shows hotspot is connected.
entry_row_->sub_text_label()->SetEnabledColor(
cros_tokens::kCrosSysPositive);
TypographyProvider::Get()->StyleLabel(TypographyToken::kCrosAnnotation1,
*entry_row_->sub_text_label());
return;
}
// If no subtext is set, previous subtext should be hidden.
if (entry_row_->sub_text_label()) {
entry_row_->sub_text_label()->SetVisible(false);
entry_row_->GetViewAccessibility().SetDescription(
std::u16string(),
ax::mojom::DescriptionFrom::kAttributeExplicitlyEmpty);
}
}
void HotspotDetailedView::UpdateExtraIcon(
const HotspotAllowStatus& allow_status) {
if (allow_status == HotspotAllowStatus::kAllowed ||
allow_status == HotspotAllowStatus::kDisallowedNoMobileData) {
extra_icon_->SetVisible(false);
return;
}
extra_icon_->SetVisible(true);
bool use_managed_icon =
allow_status == HotspotAllowStatus::kDisallowedByPolicy;
extra_icon_->SetImage(ui::ImageModel::FromVectorIcon(
use_managed_icon ? kSystemTrayManagedIcon : kUnifiedMenuInfoIcon,
kColorAshIconColorPrimary));
const std::u16string tooltip = l10n_util::GetStringUTF16(
use_managed_icon
? IDS_ASH_HOTSPOT_DETAILED_VIEW_INFO_TOOLTIP_PROHIBITED_BY_POLICY
: IDS_ASH_HOTSPOT_DETAILED_VIEW_INFO_TOOLTIP_MOBILE_DATA_NOT_SUPPORTED);
extra_icon_->SetFocusBehavior(FocusBehavior::ALWAYS);
extra_icon_->SetTooltipText(tooltip);
extra_icon_->GetViewAccessibility().SetName(tooltip);
}
BEGIN_METADATA(HotspotDetailedView)
END_METADATA
} // namespace ash
|