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
ash / wm / desks / templates / saved_desk_dialog_controller.cc [blame]
// Copyright 2021 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/wm/desks/templates/saved_desk_dialog_controller.h"
#include "ash/accessibility/accessibility_controller.h"
#include "ash/shell.h"
#include "ash/strings/grit/ash_strings.h"
#include "ash/style/system_dialog_delegate_view.h"
#include "ash/style/typography.h"
#include "ash/wm/desks/templates/saved_desk_grid_view.h"
#include "ash/wm/desks/templates/saved_desk_icon_container.h"
#include "ash/wm/desks/templates/saved_desk_item_view.h"
#include "ash/wm/desks/templates/saved_desk_library_view.h"
#include "ash/wm/desks/templates/saved_desk_metrics_util.h"
#include "ash/wm/overview/overview_controller.h"
#include "ash/wm/overview/overview_grid.h"
#include "ash/wm/window_properties.h"
#include "base/memory/raw_ptr.h"
#include "ui/aura/env.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/mojom/ui_base_types.mojom-shared.h"
#include "ui/chromeos/styles/cros_tokens_color_mappings.h"
#include "ui/views/controls/label.h"
#include "ui/views/layout/box_layout.h"
namespace ash {
namespace {
constexpr int kUnsupportedAppsViewSpacing = 8;
std::u16string GetStringWithQuotes(const std::u16string& str) {
return u"\"" + str + u"\"";
}
} // namespace
//-----------------------------------------------------------------------------
// SavedDeskDialogController:
SavedDeskDialogController::SavedDeskDialogController() = default;
SavedDeskDialogController::~SavedDeskDialogController() {
if (dialog_widget_ && !dialog_widget_->IsClosed()) {
dialog_widget_->CloseNow();
}
}
void SavedDeskDialogController::ShowUnsupportedAppsDialog(
aura::Window* root_window,
const std::vector<raw_ptr<aura::Window, VectorExperimental>>&
unsupported_apps,
size_t incognito_window_count,
DesksController::GetDeskTemplateCallback callback,
std::unique_ptr<DeskTemplate> desk_template) {
// We can only bind `callback` once but the user has three possible paths
// (accept, cancel, or close) so store `callback` and `desk_template` for
// future usage once we know the user's decision.
unsupported_apps_callback_ = std::move(callback);
unsupported_apps_template_ = std::move(desk_template);
// Note that this assumed unsupported apps which are not incognito browsers
// are linux apps.
std::u16string app_description;
int app_description_id;
if (incognito_window_count == 0) {
app_description_id =
IDS_ASH_DESKS_TEMPLATES_UNSUPPORTED_LINUX_APPS_DIALOG_DESCRIPTION;
} else if (incognito_window_count != unsupported_apps.size()) {
app_description_id =
IDS_ASH_DESKS_TEMPLATES_UNSUPPORTED_LINUX_APPS_AND_INCOGNITO_DIALOG_DESCRIPTION;
} else {
app_description_id =
IDS_ASH_DESKS_TEMPLATES_UNSUPPORTED_INCOGNITO_DIALOG_DESCRIPTION;
}
auto unsupported_apps_view = std::make_unique<views::BoxLayoutView>();
unsupported_apps_view->SetOrientation(
views::BoxLayout::Orientation::kVertical);
unsupported_apps_view->SetBetweenChildSpacing(kUnsupportedAppsViewSpacing);
auto label_view = std::make_unique<views::Label>();
label_view->SetHorizontalAlignment(gfx::ALIGN_LEFT);
TypographyProvider::Get()->StyleLabel(TypographyToken::kCrosButton2,
*label_view);
label_view->SetEnabledColorId(cros_tokens::kCrosSysOnSurface);
label_view->SetText(l10n_util::GetStringUTF16(
IDS_ASH_DESKS_TEMPLATES_UNSUPPORTED_APPS_DIALOG_HEADER));
unsupported_apps_view->AddChildView(std::move(label_view));
auto icon_container_view = std::make_unique<SavedDeskIconContainer>();
icon_container_view->PopulateIconContainerFromWindows(unsupported_apps);
unsupported_apps_view->AddChildView(std::move(icon_container_view));
auto dialog =
views::Builder<SystemDialogDelegateView>()
.SetTitleText(l10n_util::GetStringUTF16(
unsupported_apps_template_->type() == DeskTemplateType::kTemplate
? IDS_ASH_DESKS_TEMPLATES_UNSUPPORTED_APPS_IN_TEMPLATE_DIALOG_TITLE
: IDS_ASH_DESKS_TEMPLATES_UNSUPPORTED_APPS_IN_DESK_DIALOG_TITLE))
.SetAcceptButtonText(l10n_util::GetStringUTF16(
IDS_ASH_DESKS_TEMPLATES_UNSUPPORTED_APPS_DIALOG_CONFIRM_BUTTON))
.SetDescription(l10n_util::GetStringUTF16(app_description_id))
.SetCancelCallback(base::BindOnce(
&SavedDeskDialogController::OnUserCanceledUnsupportedAppsDialog,
weak_ptr_factory_.GetWeakPtr()))
.SetCloseCallback(base::BindOnce(
&SavedDeskDialogController::OnUserCanceledUnsupportedAppsDialog,
weak_ptr_factory_.GetWeakPtr()))
.SetAcceptCallback(base::BindOnce(
&SavedDeskDialogController::OnUserAcceptedUnsupportedAppsDialog,
weak_ptr_factory_.GetWeakPtr()))
.Build();
dialog->SetMiddleContentView(std::move(unsupported_apps_view));
dialog->SetMiddleContentAlignment(views::LayoutAlignment::kStart);
CreateDialogWidget(std::move(dialog), root_window);
RecordUnsupportedAppDialogShowHistogram(unsupported_apps_template_->type());
}
void SavedDeskDialogController::ShowReplaceDialog(
aura::Window* root_window,
const std::u16string& template_name,
DeskTemplateType template_type,
base::OnceClosure on_accept_callback,
base::OnceClosure on_cancel_callback) {
if (!CanShowDialog()) {
return;
}
auto dialog =
views::Builder<SystemDialogDelegateView>()
.SetTitleText(l10n_util::GetStringUTF16(
template_type == DeskTemplateType::kTemplate
? IDS_ASH_DESKS_TEMPLATES_REPLACE_TEMPLATE_DIALOG_TITLE
: IDS_ASH_DESKS_TEMPLATES_REPLACE_DESK_DIALOG_TITLE))
.SetAcceptButtonText(l10n_util::GetStringUTF16(
IDS_ASH_DESKS_TEMPLATES_REPLACE_DIALOG_CONFIRM_BUTTON))
.SetDescription(l10n_util::GetStringFUTF16(
template_type == DeskTemplateType::kTemplate
? IDS_ASH_DESKS_TEMPLATES_REPLACE_TEMPLATE_DIALOG_DESCRIPTION
: IDS_ASH_DESKS_TEMPLATES_REPLACE_DESK_DIALOG_DESCRIPTION,
GetStringWithQuotes(template_name)))
.SetDescriptionAccessibleName(l10n_util::GetStringFUTF16(
template_type == DeskTemplateType::kTemplate
? IDS_ASH_DESKS_TEMPLATES_REPLACE_TEMPLATE_DIALOG_DESCRIPTION
: IDS_ASH_DESKS_TEMPLATES_REPLACE_DESK_DIALOG_DESCRIPTION,
template_name))
.SetAcceptCallback(std::move(on_accept_callback))
.SetCancelCallback(std::move(on_cancel_callback))
.Build();
CreateDialogWidget(std::move(dialog), root_window);
}
void SavedDeskDialogController::ShowDeleteDialog(
aura::Window* root_window,
const std::u16string& template_name,
DeskTemplateType template_type,
base::OnceClosure on_accept_callback) {
if (!CanShowDialog()) {
return;
}
auto dialog =
views::Builder<SystemDialogDelegateView>()
.SetTitleText(l10n_util::GetStringUTF16(
template_type == DeskTemplateType::kTemplate
? IDS_ASH_DESKS_TEMPLATES_DELETE_TEMPLATE_DIALOG_TITLE
: IDS_ASH_DESKS_TEMPLATES_DELETE_DESK_DIALOG_TITLE))
.SetDescription(l10n_util::GetStringFUTF16(
IDS_ASH_DESKS_TEMPLATES_DELETE_DIALOG_DESCRIPTION,
GetStringWithQuotes(template_name)))
.SetAcceptButtonText(l10n_util::GetStringUTF16(
IDS_ASH_DESKS_TEMPLATES_DELETE_DIALOG_CONFIRM_BUTTON))
.SetDescriptionAccessibleName(l10n_util::GetStringFUTF16(
IDS_ASH_DESKS_TEMPLATES_DELETE_DIALOG_DESCRIPTION, template_name))
.SetAcceptCallback(std::move(on_accept_callback))
.Build();
CreateDialogWidget(std::move(dialog), root_window);
}
void SavedDeskDialogController::OnWidgetDestroying(views::Widget* widget) {
DCHECK_EQ(dialog_widget_, widget);
for (auto& overview_grid :
Shell::Get()->overview_controller()->overview_session()->grid_list()) {
if (auto* library_view = overview_grid->GetSavedDeskLibraryView()) {
for (ash::SavedDeskGridView* templates_grid_view :
library_view->grid_views()) {
for (SavedDeskItemView* saved_desk_item :
templates_grid_view->grid_items()) {
// Update the button visibility when a dialog is closed.
saved_desk_item->UpdateHoverButtonsVisibility(
aura::Env::GetInstance()->last_mouse_location(),
/*is_touch=*/false);
}
}
}
}
dialog_widget_observation_.Reset();
dialog_widget_ = nullptr;
}
void SavedDeskDialogController::CreateDialogWidget(
std::unique_ptr<views::WidgetDelegate> dialog,
aura::Window* root_window) {
// We should not get here with an active dialog.
DCHECK_EQ(dialog_widget_, nullptr);
// The dialog will show on the display associated with `root_window`, and will
// block all input since it is system modal.
DCHECK(root_window->IsRootWindow());
dialog->SetModalType(ui::mojom::ModalType::kSystem);
dialog->SetShowCloseButton(false);
views::Widget::InitParams params(
views::Widget::InitParams::NATIVE_WIDGET_OWNS_WIDGET,
views::Widget::InitParams::Type::TYPE_WINDOW_FRAMELESS);
params.context = root_window;
params.init_properties_container.SetProperty(kOverviewUiKey, true);
params.delegate = dialog.release();
dialog_widget_ = new views::Widget();
dialog_widget_->Init(std::move(params));
dialog_widget_->GetNativeWindow()->SetName("TemplateDialogForTesting");
dialog_widget_->Show();
dialog_widget_observation_.Observe(dialog_widget_.get());
// Ensure that if ChromeVox is enabled, it focuses on the dialog.
AccessibilityController* accessibility_controller =
Shell::Get()->accessibility_controller();
if (accessibility_controller->spoken_feedback().enabled()) {
accessibility_controller->SetA11yOverrideWindow(
dialog_widget_->GetNativeWindow());
}
}
const SystemDialogDelegateView*
SavedDeskDialogController::GetSystemDialogViewForTesting() const {
CHECK(dialog_widget_);
return static_cast<SystemDialogDelegateView*>(
dialog_widget_->GetContentsView());
}
bool SavedDeskDialogController::CanShowDialog() const {
// Cannot show a dialog while another is active.
return dialog_widget_ == nullptr;
}
void SavedDeskDialogController::OnUserAcceptedUnsupportedAppsDialog() {
DCHECK(!unsupported_apps_callback_.is_null());
DCHECK(unsupported_apps_template_);
std::move(unsupported_apps_callback_)
.Run(std::move(unsupported_apps_template_));
}
void SavedDeskDialogController::OnUserCanceledUnsupportedAppsDialog() {
DCHECK(!unsupported_apps_callback_.is_null());
// Make sure the saved desk buttons are enabled since the user should be able
// to click them again after cancelling the unsupported apps dialog.
for (auto& overview_grid :
Shell::Get()->overview_controller()->overview_session()->grid_list()) {
overview_grid->EnableSaveDeskButtonContainer();
}
std::move(unsupported_apps_callback_).Run(nullptr);
unsupported_apps_template_.reset();
}
} // namespace ash