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
ash / accelerators / keyboard_code_util.cc [blame]
// 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/accelerators/keyboard_code_util.h"
#include "ash/public/cpp/accelerators_util.h"
#include "ash/public/cpp/assistant/assistant_state.h"
#include "ash/public/cpp/assistant/assistant_state_base.h"
#include "ash/resources/vector_icons/vector_icons.h"
#include "ash/shell.h"
#include "ash/strings/grit/ash_strings.h"
#include "base/logging.h"
#include "build/branding_buildflags.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/events/ash/keyboard_capability.h"
#include "ui/events/keycodes/keyboard_codes_posix.h"
namespace ash {
namespace {
// Provides I18n string for key codes which have no mapping to a meaningful
// description or they require a special one we explicitly specify. For example,
// ui::VKEY_COMMAND could return a string "Meta", but we want to display it as
// "Search" or "Launcher".
std::optional<std::u16string> GetSpecialStringForKeyboardCode(
ui::KeyboardCode key_code) {
int msg_id = 0;
switch (key_code) {
case ui::VKEY_CONTROL:
msg_id = IDS_KSV_MODIFIER_CONTROL;
break;
case ui::VKEY_LMENU:
msg_id = IDS_KSV_MODIFIER_ALT;
break;
case ui::VKEY_SHIFT:
msg_id = IDS_KSV_MODIFIER_SHIFT;
break;
case ui::VKEY_COMMAND:
msg_id =
Shell::Get()->keyboard_capability()->HasLauncherButtonOnAnyKeyboard()
? IDS_KSV_MODIFIER_LAUNCHER
: IDS_KSV_MODIFIER_SEARCH;
break;
case ui::VKEY_ESCAPE:
msg_id = IDS_KSV_KEY_ESCAPE;
break;
case ui::VKEY_SPACE:
msg_id = IDS_KSV_KEY_SPACE;
break;
case ui::VKEY_MEDIA_LAUNCH_APP1:
msg_id = IDS_KSV_KEY_OVERVIEW;
break;
case ui::VKEY_ZOOM:
msg_id = IDS_KSV_KEY_FULLSCREEN;
break;
case ui::VKEY_SNAPSHOT:
msg_id = IDS_KSV_KEY_SNAPSHOT;
break;
case ui::VKEY_UNKNOWN:
// TODO(wutao): make this reliable.
// If this is VKEY_UNKNOWN, it indicates to insert a "+" separator. Use
// one plus and one space to replace the string resourece's placeholder so
// that the separator will not conflict with the replacement string for
// "VKEY_OEM_PLUS", which is "+" and "VKEY_SPACE", which is "Space".
return u"+ ";
default:
return std::nullopt;
}
return l10n_util::GetStringUTF16(msg_id);
}
bool IsAssistantAvailable() {
AssistantStateBase* state = AssistantState::Get();
return state->allowed_state() == assistant::AssistantAllowedState::ALLOWED &&
state->settings_enabled().value_or(false);
}
} // namespace
std::u16string GetStringForKeyboardCode(ui::KeyboardCode key_code,
bool remap_positional_key) {
const std::optional<std::u16string> key_label =
GetSpecialStringForKeyboardCode(key_code);
if (key_label)
return key_label.value();
return ash::GetKeyDisplay(key_code, remap_positional_key);
}
const gfx::VectorIcon* GetVectorIconForKeyboardCode(ui::KeyboardCode key_code) {
switch (key_code) {
case ui::VKEY_APPS:
return &ash::kKsContextMenuIcon;
case ui::VKEY_BROWSER_BACK:
return &ash::kKsvBrowserBackIcon;
case ui::VKEY_BROWSER_FORWARD:
return &ash::kKsvBrowserForwardIcon;
case ui::VKEY_BROWSER_REFRESH:
return &ash::kKsvReloadIcon;
case ui::VKEY_BROWSER_HOME:
return &ash::kKsvBrowserHomeIcon;
case ui::VKEY_ZOOM:
return &ash::kKsvFullscreenIcon;
case ui::VKEY_MEDIA_LAUNCH_APP1:
return Shell::Get()->keyboard_capability()->UseRefreshedIcons()
? &ash::kOverviewRefreshIcon
: &ash::kKsvOverviewIcon;
case ui::VKEY_MEDIA_LAUNCH_MAIL:
return &ash::kKsMediaLaunchMailIcon;
case ui::VKEY_BRIGHTNESS_DOWN:
return &ash::kKsvBrightnessDownIcon;
case ui::VKEY_BRIGHTNESS_UP:
return Shell::Get()->keyboard_capability()->UseRefreshedIcons()
? &ash::kBrightnessUpRefreshIcon
: &ash::kKsvBrightnessUpIcon;
case ui::VKEY_KBD_BACKLIGHT_TOGGLE:
return &ash::kKsKeyboardBrightnessToggleIcon;
case ui::VKEY_KBD_BRIGHTNESS_DOWN:
return &ash::kKsKeyboardBrightnessDownIcon;
case ui::VKEY_KBD_BRIGHTNESS_UP:
return &ash::kKsKeyboardBrightnessUpIcon;
case ui::VKEY_VOLUME_MUTE:
return &ash::kKsvMuteIcon;
case ui::VKEY_VOLUME_DOWN:
return &ash::kKsvVolumeDownIcon;
case ui::VKEY_VOLUME_UP:
return &ash::kKsvVolumeUpIcon;
case ui::VKEY_UP:
return &ash::kKsvArrowUpIcon;
case ui::VKEY_DOWN:
return &ash::kKsvArrowDownIcon;
case ui::VKEY_LEFT:
return &ash::kKsvArrowLeftIcon;
case ui::VKEY_RIGHT:
return &ash::kKsvArrowRightIcon;
case ui::VKEY_ACCESSIBILITY:
return &ash::kKsAccessibilityIcon;
case ui::VKEY_PRIVACY_SCREEN_TOGGLE:
return &ash::kKsvPrivacyScreenToggleIcon;
case ui::VKEY_SNAPSHOT:
return &ash::kKsvSnapshotIcon;
case ui::VKEY_QUICK_INSERT:
return &ash::kQuickInsertIcon;
case ui::VKEY_DO_NOT_DISTURB:
return &ash::kKsDoNotDisturbIcon;
default:
return nullptr;
}
}
const gfx::VectorIcon* GetSearchOrLauncherVectorIcon() {
switch (Shell::Get()->keyboard_capability()->GetMetaKeyToDisplay()) {
case ui::mojom::MetaKey::kSearch:
return &kCaptureModeDemoToolsSearchIcon;
case ui::mojom::MetaKey::kLauncher:
return IsAssistantAvailable()
? &kCaptureModeDemoToolsLauncherAssistantOnIcon
: &kCaptureModeDemoToolsLauncherAssistantOffIcon;
case ui::mojom::MetaKey::kLauncherRefresh:
return &kCampbellHeroIcon;
case ui::mojom::MetaKey::kExternalMeta:
case ui::mojom::MetaKey::kCommand:
NOTREACHED();
}
}
} // namespace ash