forked from Pissandshittium/pissandshittium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshelf_config.cc
515 lines (420 loc) · 17.3 KB
/
shelf_config.cc
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
// Copyright (c) 2019 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.
#include "ash/public/cpp/shelf_config.h"
#include "ash/accessibility/accessibility_controller_impl.h"
#include "ash/accessibility/accessibility_observer.h"
#include "ash/app_list/app_list_controller_impl.h"
#include "ash/constants/ash_features.h"
#include "ash/session/session_controller_impl.h"
#include "ash/shell.h"
#include "ash/style/ash_color_provider.h"
#include "ash/system/model/system_tray_model.h"
#include "ash/wallpaper/wallpaper_controller_impl.h"
#include "ash/wm/overview/overview_controller.h"
#include "ash/wm/tablet_mode/tablet_mode_controller.h"
#include "base/bind.h"
#include "base/metrics/histogram_functions.h"
#include "base/scoped_observation.h"
#include "ui/gfx/color_analysis.h"
#include "ui/gfx/color_palette.h"
#include "ui/gfx/color_utils.h"
namespace ash {
namespace {
// Used in as a value in histogram to record the reason shelf navigation buttons
// are shown in tablet mode.
// The values assigned to enum items should not be changed/reassigned.
constexpr int kControlButtonsShownForShelfNavigationButtonsSetting = 1;
constexpr int kControlButtonsShownForSpokenFeedback = 1 << 1;
constexpr int kControlButtonsShownForSwitchAccess = 1 << 2;
constexpr int kControlButtonsShownForAutoclick = 1 << 3;
constexpr int kControlButtonsShownReasonCount = 1 << 4;
// When any edge of the primary display is less than or equal to this threshold,
// dense shelf will be active.
constexpr int kDenseShelfScreenSizeThreshold = 600;
// Drags on the shelf that are greater than this number times the shelf size
// will trigger shelf visibility changes.
constexpr float kDragHideRatioThreshold = 0.4f;
// Records the histogram value tracking the reason shelf control buttons are
// shown in tablet mode.
void RecordReasonForShowingShelfControls() {
AccessibilityControllerImpl* accessibility_controller =
Shell::Get()->accessibility_controller();
int buttons_shown_reason_mask = 0;
if (accessibility_controller
->tablet_mode_shelf_navigation_buttons_enabled()) {
buttons_shown_reason_mask |=
kControlButtonsShownForShelfNavigationButtonsSetting;
}
if (accessibility_controller->spoken_feedback().enabled())
buttons_shown_reason_mask |= kControlButtonsShownForSpokenFeedback;
if (accessibility_controller->switch_access().enabled())
buttons_shown_reason_mask |= kControlButtonsShownForSwitchAccess;
if (accessibility_controller->autoclick().enabled())
buttons_shown_reason_mask |= kControlButtonsShownForAutoclick;
base::UmaHistogramExactLinear(
"Ash.Shelf.NavigationButtonsInTabletMode.ReasonShown",
buttons_shown_reason_mask, kControlButtonsShownReasonCount);
}
} // namespace
class ShelfConfig::ShelfAccessibilityObserver : public AccessibilityObserver {
public:
ShelfAccessibilityObserver(
const base::RepeatingClosure& accessibility_state_changed_callback)
: accessibility_state_changed_callback_(
accessibility_state_changed_callback) {
observation_.Observe(Shell::Get()->accessibility_controller());
}
ShelfAccessibilityObserver(const ShelfAccessibilityObserver& other) = delete;
ShelfAccessibilityObserver& operator=(
const ShelfAccessibilityObserver& other) = delete;
~ShelfAccessibilityObserver() override = default;
// AccessibilityObserver:
void OnAccessibilityStatusChanged() override {
accessibility_state_changed_callback_.Run();
}
void OnAccessibilityControllerShutdown() override { observation_.Reset(); }
private:
base::RepeatingClosure accessibility_state_changed_callback_;
base::ScopedObservation<AccessibilityControllerImpl, AccessibilityObserver>
observation_{this};
};
ShelfConfig::ShelfConfig()
: use_in_app_shelf_in_overview_(false),
overview_mode_(false),
in_tablet_mode_(false),
is_dense_(false),
is_in_app_(true),
shelf_controls_shown_(true),
is_virtual_keyboard_shown_(false),
is_app_list_visible_(false),
shelf_button_icon_size_(44),
shelf_button_icon_size_median_(40),
shelf_button_icon_size_dense_(36),
shelf_button_size_(56),
shelf_button_size_median_(52),
shelf_button_size_dense_(48),
shelf_button_spacing_(8),
shelf_status_area_hit_region_padding_(4),
shelf_status_area_hit_region_padding_dense_(2),
app_icon_group_margin_tablet_(16),
app_icon_group_margin_clamshell_(12),
shelf_focus_border_color_(gfx::kGoogleBlue300),
workspace_area_visible_inset_(2),
workspace_area_auto_hide_inset_(5),
hidden_shelf_in_screen_portion_(3),
status_indicator_offset_from_shelf_edge_(1),
scrollable_shelf_ripple_padding_(2),
shelf_tooltip_preview_height_(128),
shelf_tooltip_preview_max_width_(192),
shelf_tooltip_preview_max_ratio_(1.5), // = 3/2
shelf_tooltip_preview_min_ratio_(0.666), // = 2/3
shelf_blur_radius_(30),
mousewheel_scroll_offset_threshold_(20),
in_app_control_button_height_inset_(4),
app_icon_end_padding_(4) {
accessibility_observer_ = std::make_unique<ShelfAccessibilityObserver>(
base::BindRepeating(&ShelfConfig::UpdateConfigForAccessibilityState,
base::Unretained(this)));
}
ShelfConfig::~ShelfConfig() = default;
// static
ShelfConfig* ShelfConfig::Get() {
return Shell::HasInstance() ? Shell::Get()->shelf_config() : nullptr;
}
void ShelfConfig::AddObserver(Observer* observer) {
observers_.AddObserver(observer);
}
void ShelfConfig::RemoveObserver(Observer* observer) {
observers_.RemoveObserver(observer);
}
void ShelfConfig::Init() {
Shell* const shell = Shell::Get();
shell->app_list_controller()->AddObserver(this);
display_observer_.emplace(this);
shell->system_tray_model()->virtual_keyboard()->AddObserver(this);
shell->overview_controller()->AddObserver(this);
shell->session_controller()->AddObserver(this);
shell->tablet_mode_controller()->AddObserver(this);
in_tablet_mode_ = shell->IsInTabletMode();
UpdateConfig(is_app_list_visible_, /*tablet_mode_changed=*/false);
}
void ShelfConfig::Shutdown() {
Shell* const shell = Shell::Get();
shell->tablet_mode_controller()->RemoveObserver(this);
shell->session_controller()->RemoveObserver(this);
shell->overview_controller()->RemoveObserver(this);
shell->system_tray_model()->virtual_keyboard()->RemoveObserver(this);
display_observer_.reset();
shell->app_list_controller()->RemoveObserver(this);
}
void ShelfConfig::OnOverviewModeWillStart() {
DCHECK(!overview_mode_);
use_in_app_shelf_in_overview_ = is_in_app();
overview_mode_ = true;
}
void ShelfConfig::OnOverviewModeEnding(OverviewSession* overview_session) {
overview_mode_ = false;
use_in_app_shelf_in_overview_ = false;
UpdateConfig(is_app_list_visible_, /*tablet_mode_changed=*/false);
}
void ShelfConfig::OnTabletModeStarting() {
// Update the shelf config at the "starting" stage of the tablet mode
// transition, so that the shelf bounds are set and remains stable during the
// transition animation. Otherwise, updating the shelf bounds during the
// animation will lead to work-area bounds changes which lead to many
// re-layouts, hurting the animation's smoothness. https://crbug.com/1044316.
DCHECK(!in_tablet_mode_);
in_tablet_mode_ = true;
UpdateConfig(is_app_list_visible_, /*tablet_mode_changed=*/true);
}
void ShelfConfig::OnSessionStateChanged(session_manager::SessionState state) {
UpdateConfig(is_app_list_visible_, /*tablet_mode_changed=*/false);
}
void ShelfConfig::OnTabletModeEnding() {
// Many events can lead to UpdateConfig being called as a result of
// OnTabletModeEnded(), therefore we need to listen to the "ending" stage
// rather than the "ended", so |in_tablet_mode_| gets updated correctly, and
// the shelf bounds are stabilized early so as not to have multiple
// unnecessary work-area bounds changes.
in_tablet_mode_ = false;
UpdateConfig(is_app_list_visible_, /*tablet_mode_changed=*/true);
}
void ShelfConfig::OnDisplayMetricsChanged(const display::Display& display,
uint32_t changed_metrics) {
UpdateConfig(is_app_list_visible_, /*tablet_mode_changed=*/false);
}
void ShelfConfig::OnVirtualKeyboardVisibilityChanged() {
UpdateConfig(is_app_list_visible_, /*tablet_mode_changed=*/false);
}
void ShelfConfig::OnAppListVisibilityWillChange(bool shown,
int64_t display_id) {
// Let's check that the app visibility mechanism isn't mis-firing, which
// would lead to a lot of extraneous relayout work.
DCHECK_NE(is_app_list_visible_, shown);
UpdateConfig(/*new_is_app_list_visible=*/shown,
/*tablet_mode_changed=*/false);
}
bool ShelfConfig::ShelfControlsForcedShownForAccessibility() const {
auto* accessibility_controller = Shell::Get()->accessibility_controller();
return accessibility_controller->spoken_feedback().enabled() ||
accessibility_controller->autoclick().enabled() ||
accessibility_controller->switch_access().enabled() ||
accessibility_controller
->tablet_mode_shelf_navigation_buttons_enabled();
}
int ShelfConfig::GetShelfButtonSize(HotseatDensity density) const {
if (is_dense_)
return shelf_button_size_dense_;
switch (density) {
case HotseatDensity::kNormal:
return shelf_button_size_;
case HotseatDensity::kSemiDense:
return shelf_button_size_median_;
case HotseatDensity::kDense:
return shelf_button_size_dense_;
}
}
int ShelfConfig::GetShelfButtonIconSize(HotseatDensity density) const {
if (is_dense_)
return shelf_button_icon_size_dense_;
switch (density) {
case HotseatDensity::kNormal:
return shelf_button_icon_size_;
case HotseatDensity::kSemiDense:
return shelf_button_icon_size_median_;
case HotseatDensity::kDense:
return shelf_button_icon_size_dense_;
}
}
int ShelfConfig::GetHotseatSize(HotseatDensity density) const {
if (!in_tablet_mode_)
return shelf_size();
return GetShelfButtonSize(density);
}
int ShelfConfig::shelf_size() const {
return GetShelfSize(false /*ignore_in_app_state*/);
}
int ShelfConfig::in_app_shelf_size() const {
return is_dense_ ? 36 : 40;
}
int ShelfConfig::system_shelf_size() const {
return GetShelfSize(true /*ignore_in_app_state*/);
}
int ShelfConfig::shelf_drag_handle_centering_size() const {
const session_manager::SessionState session_state =
Shell::Get()->session_controller()->GetSessionState();
return session_state == session_manager::SessionState::ACTIVE
? in_app_shelf_size()
: 28;
}
int ShelfConfig::hotseat_bottom_padding() const {
return 8;
}
int ShelfConfig::button_spacing() const {
return shelf_button_spacing_;
}
int ShelfConfig::control_size() const {
if (!in_tablet_mode_)
return 36;
return is_dense_ ? 36 : 40;
}
int ShelfConfig::control_border_radius() const {
return (is_in_app() && in_tablet_mode_)
? control_size() / 2 - in_app_control_button_height_inset_
: control_size() / 2;
}
int ShelfConfig::control_button_edge_spacing(bool is_primary_axis_edge) const {
if (is_primary_axis_edge)
return in_tablet_mode_ ? 8 : 6;
return (shelf_size() - control_size()) / 2;
}
base::TimeDelta ShelfConfig::hotseat_background_animation_duration() const {
// This matches the duration of the maximize/minimize animation.
return base::Milliseconds(300);
}
base::TimeDelta ShelfConfig::shelf_animation_duration() const {
return hotseat_background_animation_duration();
}
int ShelfConfig::status_area_hit_region_padding() const {
return is_dense_ ? shelf_status_area_hit_region_padding_dense_
: shelf_status_area_hit_region_padding_;
}
float ShelfConfig::drag_hide_ratio_threshold() const {
return kDragHideRatioThreshold;
}
void ShelfConfig::UpdateConfig(bool new_is_app_list_visible,
bool tablet_mode_changed) {
const gfx::Rect screen_size =
display::Screen::GetScreen()->GetPrimaryDisplay().bounds();
const bool new_is_dense =
!in_tablet_mode_ ||
(screen_size.width() <= kDenseShelfScreenSizeThreshold ||
screen_size.height() <= kDenseShelfScreenSizeThreshold);
const bool can_hide_shelf_controls =
in_tablet_mode_ && features::IsHideShelfControlsInTabletModeEnabled();
const bool new_shelf_controls_shown =
!can_hide_shelf_controls || ShelfControlsForcedShownForAccessibility();
// Record reason to show shelf control buttons only if tablet mode changes, or
// if the buttons visibility state changes
if (can_hide_shelf_controls && new_shelf_controls_shown &&
(tablet_mode_changed || !shelf_controls_shown_)) {
RecordReasonForShowingShelfControls();
}
// TODO(https://crbug.com/1058205): Test this behavior.
// If the virtual keyboard is shown, the back button and in-app shelf should
// be shown so users can exit the keyboard. SystemTrayModel may be null in
// tests.
const bool new_is_virtual_keyboard_shown =
Shell::Get()->system_tray_model()
? Shell::Get()->system_tray_model()->virtual_keyboard()->visible()
: false;
const bool new_is_in_app =
CalculateIsInApp(new_is_app_list_visible, new_is_virtual_keyboard_shown);
const bool changed =
tablet_mode_changed || is_dense_ != new_is_dense ||
is_in_app_ != new_is_in_app ||
shelf_controls_shown_ != new_shelf_controls_shown ||
is_virtual_keyboard_shown_ != new_is_virtual_keyboard_shown ||
is_app_list_visible_ != new_is_app_list_visible;
if (!changed)
return;
is_dense_ = new_is_dense;
shelf_controls_shown_ = new_shelf_controls_shown;
is_virtual_keyboard_shown_ = new_is_virtual_keyboard_shown;
is_app_list_visible_ = new_is_app_list_visible;
is_in_app_ = new_is_in_app;
OnShelfConfigUpdated();
}
int ShelfConfig::GetShelfSize(bool ignore_in_app_state) const {
// In clamshell mode, the shelf always has the same size.
if (!in_tablet_mode_)
return 48;
if (!ignore_in_app_state && is_in_app())
return in_app_shelf_size();
return is_dense_ ? 48 : 56;
}
SkColor ShelfConfig::GetShelfControlButtonColor() const {
const session_manager::SessionState session_state =
Shell::Get()->session_controller()->GetSessionState();
if (in_tablet_mode_ &&
session_state == session_manager::SessionState::ACTIVE) {
return is_in_app() ? SK_ColorTRANSPARENT : GetDefaultShelfColor();
} else if (session_state == session_manager::SessionState::OOBE) {
return SkColorSetA(SK_ColorBLACK, 16); // 6% opacity
}
return AshColorProvider::Get()->GetControlsLayerColor(
AshColorProvider::ControlsLayerType::kControlBackgroundColorInactive);
}
SkColor ShelfConfig::GetShelfWithAppListColor() const {
return SkColorSetA(SK_ColorBLACK, 20); // 8% opacity
}
SkColor ShelfConfig::GetMaximizedShelfColor() const {
return SkColorSetA(GetDefaultShelfColor(), 0xFF); // 100% opacity
}
AshColorProvider::BaseLayerType ShelfConfig::GetShelfBaseLayerType() const {
if (!in_tablet_mode_)
return AshColorProvider::BaseLayerType::kTransparent80;
if (!is_in_app())
return AshColorProvider::BaseLayerType::kTransparent60;
return AshColorProvider::Get()->IsDarkModeEnabled()
? AshColorProvider::BaseLayerType::kTransparent90
: AshColorProvider::BaseLayerType::kOpaque;
}
SkColor ShelfConfig::GetDefaultShelfColor() const {
if (!features::IsBackgroundBlurEnabled()) {
return AshColorProvider::Get()->GetBaseLayerColor(
AshColorProvider::BaseLayerType::kTransparent90);
}
AshColorProvider::BaseLayerType layer_type = GetShelfBaseLayerType();
return AshColorProvider::Get()->GetBaseLayerColor(layer_type);
}
int ShelfConfig::GetShelfControlButtonBlurRadius() const {
if (features::IsBackgroundBlurEnabled() && in_tablet_mode_ && !is_in_app())
return shelf_blur_radius_;
return 0;
}
int ShelfConfig::GetAppIconEndPadding() const {
return app_icon_end_padding_;
}
int ShelfConfig::GetAppIconGroupMargin() const {
return in_tablet_mode_ ? app_icon_group_margin_tablet_
: app_icon_group_margin_clamshell_;
}
base::TimeDelta ShelfConfig::DimAnimationDuration() const {
return base::Milliseconds(1000);
}
gfx::Tween::Type ShelfConfig::DimAnimationTween() const {
return gfx::Tween::LINEAR;
}
gfx::Size ShelfConfig::DragHandleSize() const {
const session_manager::SessionState session_state =
Shell::Get()->session_controller()->GetSessionState();
return session_state == session_manager::SessionState::ACTIVE
? gfx::Size(80, 4)
: gfx::Size(120, 4);
}
void ShelfConfig::UpdateConfigForAccessibilityState() {
UpdateConfig(is_app_list_visible_, /*tablet_mode_changed=*/false);
}
bool ShelfConfig::CalculateIsInApp(bool app_list_visible,
bool virtual_keyboard_shown) const {
Shell* shell = Shell::Get();
const auto* session = shell->session_controller();
if (!session ||
session->GetSessionState() != session_manager::SessionState::ACTIVE) {
return false;
}
if (virtual_keyboard_shown)
return true;
if (app_list_visible)
return false;
if (overview_mode_)
return use_in_app_shelf_in_overview_;
return true;
}
void ShelfConfig::OnShelfConfigUpdated() {
for (auto& observer : observers_)
observer.OnShelfConfigUpdated();
}
} // namespace ash