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
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_ACCELERATORS_ACCELERATOR_CONTROLLER_IMPL_H_
#define ASH_ACCELERATORS_ACCELERATOR_CONTROLLER_IMPL_H_
#include <stddef.h>
#include <map>
#include <memory>
#include <set>
#include <vector>
#include "ash/accelerators/accelerator_capslock_state_machine.h"
#include "ash/accelerators/accelerator_history_impl.h"
#include "ash/accelerators/accelerator_launcher_state_machine.h"
#include "ash/accelerators/accelerator_prefs.h"
#include "ash/accelerators/accelerator_shift_disable_capslock_state_machine.h"
#include "ash/accelerators/accelerator_table.h"
#include "ash/accelerators/ash_accelerator_configuration.h"
#include "ash/accelerators/exit_warning_handler.h"
#include "ash/accelerators/tablet_volume_controller.h"
#include "ash/accessibility/accessibility_controller_impl.h"
#include "ash/accessibility/ui/accessibility_confirmation_dialog.h"
#include "ash/ash_export.h"
#include "ash/public/cpp/accelerators.h"
#include "base/files/file_path.h"
#include "base/gtest_prod_util.h"
#include "base/memory/raw_ptr.h"
#include "base/timer/timer.h"
#include "ui/base/accelerators/accelerator.h"
#include "ui/base/accelerators/accelerator_map.h"
#include "ui/base/ime/ash/input_method_manager.h"
namespace ui {
class AcceleratorManager;
}
namespace ash {
struct AcceleratorData;
class ExitWarningHandler;
// AcceleratorControllerImpl provides functions for registering or unregistering
// global keyboard accelerators, which are handled earlier than any windows. It
// also implements several handlers as an accelerator target.
class ASH_EXPORT AcceleratorControllerImpl
: public ui::AcceleratorTarget,
public AcceleratorController,
public input_method::InputMethodManager::Observer,
public AshAcceleratorConfiguration::Observer,
public AcceleratorPrefs::Observer {
public:
// TestApi is used for tests to get internal implementation details.
class TestApi {
public:
explicit TestApi(AcceleratorControllerImpl* controller);
TestApi(const TestApi&) = delete;
TestApi& operator=(const TestApi&) = delete;
~TestApi() = default;
// If |controller_->tablet_mode_volume_adjust_timer_| is running, stops it,
// runs its task, and returns true. Otherwise returns false.
[[nodiscard]] bool TriggerTabletModeVolumeAdjustTimer();
// Registers the specified accelerators.
void RegisterAccelerators(base::span<const AcceleratorData> accelerators);
// Start observing changes made to the ash accelerator list.
void ObserveAcceleratorUpdates();
// Returns whether the action for this accelerator is enabled.
bool IsActionForAcceleratorEnabled(const ui::Accelerator& accelerator);
// Returns the corresponding accelerator data if |action| maps to a
// deprecated accelerator, otherwise return nullptr.
const DeprecatedAcceleratorData* GetDeprecatedAcceleratorData(
AcceleratorAction action);
// Accessor to accelerator confirmation dialog.
AccessibilityConfirmationDialog* GetConfirmationDialog();
// Provides access to the ExitWarningHandler.
ExitWarningHandler* GetExitWarningHandler();
const TabletVolumeController::SideVolumeButtonLocation&
GetSideVolumeButtonLocation();
void SetSideVolumeButtonFilePath(base::FilePath path);
void SetSideVolumeButtonLocation(const std::string& region,
const std::string& side);
private:
raw_ptr<AcceleratorControllerImpl, DanglingUntriaged | ExperimentalAsh>
controller_; // Not owned.
};
explicit AcceleratorControllerImpl(AshAcceleratorConfiguration* config);
AcceleratorControllerImpl(const AcceleratorControllerImpl&) = delete;
AcceleratorControllerImpl& operator=(const AcceleratorControllerImpl&) =
delete;
~AcceleratorControllerImpl() override;
// A list of possible ways in which an accelerator should be restricted before
// processing. Any target registered with this controller should respect
// restrictions by calling GetAcceleratorProcessingRestriction() during
// processing.
enum AcceleratorProcessingRestriction {
// Process the accelerator normally.
RESTRICTION_NONE,
// Don't process the accelerator.
RESTRICTION_PREVENT_PROCESSING,
// Don't process the accelerator and prevent propagation to other targets.
RESTRICTION_PREVENT_PROCESSING_AND_PROPAGATION
};
// input_method::InputMethodManager::Observer overrides:
void InputMethodChanged(input_method::InputMethodManager* manager,
Profile* profile,
bool show_message) override;
// AshAcceleratorConfiguration::Observer overrides:
void OnAcceleratorsUpdated() override;
// AcceleratorPrefs::Observer overrides:
void OnShortcutPolicyUpdated() override;
// Registers global keyboard accelerators for the specified target. If
// multiple targets are registered for any given accelerator, a target
// registered later has higher priority.
void Register(const std::vector<ui::Accelerator>& accelerators,
ui::AcceleratorTarget* target);
// Unregisters the specified keyboard accelerator for the specified target.
void Unregister(const ui::Accelerator& accelerator,
ui::AcceleratorTarget* target);
// Unregisters all keyboard accelerators for the specified target.
void UnregisterAll(ui::AcceleratorTarget* target);
// AcceleratorControllerImpl:
bool Process(const ui::Accelerator& accelerator) override;
bool IsDeprecated(const ui::Accelerator& accelerator) const override;
bool PerformActionIfEnabled(AcceleratorAction action,
const ui::Accelerator& accelerator) override;
bool OnMenuAccelerator(const ui::Accelerator& accelerator) override;
bool IsRegistered(const ui::Accelerator& accelerator) const override;
AcceleratorHistoryImpl* GetAcceleratorHistory() override;
bool DoesAcceleratorMatchAction(const ui::Accelerator& accelerator,
AcceleratorAction action) override;
// Returns true if the |accelerator| is preferred. A preferred accelerator
// is handled before being passed to an window/web contents, unless
// the window is in fullscreen state.
bool IsPreferred(const ui::Accelerator& accelerator) const;
// Returns true if the |accelerator| is reserved. A reserved accelerator
// is always handled and will never be passed to an window/web contents.
bool IsReserved(const ui::Accelerator& accelerator) const;
// Provides access to the ExitWarningHandler for testing.
ExitWarningHandler* GetExitWarningHandlerForTest() {
return &exit_warning_handler_;
}
// Overridden from ui::AcceleratorTarget:
bool AcceleratorPressed(const ui::Accelerator& accelerator) override;
bool CanHandleAccelerators() const override;
// If set to true, all accelerators will not be processed.
void SetPreventProcessingAccelerators(bool prevent_processing_accelerators);
bool ShouldPreventProcessingAccelerators() const;
AshAcceleratorConfiguration* accelerator_configuration() {
return accelerator_configuration_;
}
private:
// A map for looking up actions from accelerators.
using AcceleratorActionMap = ui::AcceleratorMap<AcceleratorAction>;
// Initializes the accelerators this class handles as a target.
void Init();
// Registers the specified accelerators.
void RegisterAccelerators(base::span<const AcceleratorData> accelerators);
// Registers the specified accelerators from a list of accelerators.
void RegisterAccelerators(std::vector<ui::Accelerator> accelerators);
// Returns true if there is an action for |accelerator| and it is enabled.
bool IsActionForAcceleratorEnabled(const ui::Accelerator& accelerator) const;
// Returns whether |action| can be performed. The |accelerator| may provide
// additional data the action needs.
bool CanPerformAction(AcceleratorAction action,
const ui::Accelerator& accelerator) const;
// Performs the specified action. The |accelerator| may provide additional
// data the action needs.
void PerformAction(AcceleratorAction action,
const ui::Accelerator& accelerator);
// Returns whether performing |action| should consume the key event.
bool ShouldActionConsumeKeyEvent(AcceleratorAction action);
// Get the accelerator restriction for the given action. Supply an |action|
// of -1 to get restrictions that apply for the current context.
AcceleratorProcessingRestriction GetAcceleratorProcessingRestriction(
int action) const;
// If |accelerator| is a deprecated accelerator, it performs the appropriate
// deprecated accelerator pre-handling.
// Returns PROCEED if the accelerator's action should be performed (i.e. if
// |accelerator| is not a deprecated accelerator, or it's an enabled
// deprecated accelerator), and STOP otherwise (if the accelerator is a
// disabled deprecated accelerator).
enum class AcceleratorProcessingStatus { PROCEED, STOP };
AcceleratorProcessingStatus MaybeDeprecatedAcceleratorPressed(
AcceleratorAction action,
const ui::Accelerator& accelerator) const;
// Records when the user changes the output volume via keyboard to metrics.
void RecordVolumeSource();
std::unique_ptr<ui::AcceleratorManager> accelerator_manager_;
// A tracker for the current and previous accelerators.
std::unique_ptr<AcceleratorHistoryImpl> accelerator_history_;
std::unique_ptr<AcceleratorLauncherStateMachine> launcher_state_machine_;
std::unique_ptr<AcceleratorCapslockStateMachine> capslock_state_machine_;
std::unique_ptr<AcceleratorShiftDisableCapslockStateMachine>
shift_disable_state_machine_;
// Manages all accelerator mappings.
raw_ptr<AshAcceleratorConfiguration, ExperimentalAsh>
accelerator_configuration_;
// Handles the exit accelerator which requires a double press to exit and
// shows a popup with an explanation.
ExitWarningHandler exit_warning_handler_;
// Handle the orientation of volume buttons in tablet mode.
TabletVolumeController tablet_volume_controller_;
// Actions allowed when the user is not signed in.
std::set<int> actions_allowed_at_login_screen_;
// Actions allowed when the screen is locked.
std::set<int> actions_allowed_at_lock_screen_;
// Actions allowed when the power menu is opened.
std::set<int> actions_allowed_at_power_menu_;
// Actions allowed when a modal window is up.
std::set<int> actions_allowed_at_modal_window_;
// Preferred actions. See accelerator_table.h for details.
std::set<int> preferred_actions_;
// Reserved actions. See accelerator_table.h for details.
std::set<int> reserved_actions_;
// Actions which will be repeated while holding the accelerator key.
std::set<int> repeatable_actions_;
// Actions allowed in app mode.
std::set<int> actions_allowed_in_app_mode_;
// Actions allowed in pinned mode.
std::set<int> actions_allowed_in_pinned_mode_;
// Actions disallowed if there are no windows.
std::set<int> actions_needing_window_;
// Actions that can be performed without closing the menu (if one is present).
std::set<int> actions_keeping_menu_open_;
// Prevents the processing of all KB shortcuts in the controller.
bool prevent_processing_accelerators_ = false;
// Timer used to prevent the input gain from recording each time the user
// presses a volume key while setting the desired volume.
base::DelayTimer output_volume_metric_delay_timer_;
};
} // namespace ash
#endif // ASH_ACCELERATORS_ACCELERATOR_CONTROLLER_IMPL_H_
|