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
|
// 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.
#include "ui/views/accessible_pane_view.h"
#include <memory>
#include "base/i18n/rtl.h"
#include "base/memory/raw_ptr.h"
#include "ui/accessibility/ax_enums.mojom.h"
#include "ui/accessibility/ax_node_data.h"
#include "ui/base/metadata/metadata_impl_macros.h"
#include "ui/views/accessibility/view_accessibility.h"
#include "ui/views/focus/focus_search.h"
#include "ui/views/view_tracker.h"
#include "ui/views/widget/widget.h"
namespace views {
// Create tiny subclass of FocusSearch that overrides GetParent and Contains,
// delegating these to methods in AccessiblePaneView. This is needed so that
// subclasses of AccessiblePaneView can customize the focus search logic and
// include views that aren't part of the AccessiblePaneView's view
// hierarchy in the focus order.
class AccessiblePaneViewFocusSearch : public FocusSearch {
public:
explicit AccessiblePaneViewFocusSearch(AccessiblePaneView* pane_view)
: FocusSearch(pane_view, true, true), accessible_pane_view_(pane_view) {}
AccessiblePaneViewFocusSearch(const AccessiblePaneViewFocusSearch&) = delete;
AccessiblePaneViewFocusSearch& operator=(
const AccessiblePaneViewFocusSearch&) = delete;
protected:
View* GetParent(View* v) override {
return accessible_pane_view_->ContainsForFocusSearch(root(), v)
? accessible_pane_view_->GetParentForFocusSearch(v)
: nullptr;
}
// Returns true if |v| is contained within the hierarchy rooted at |root|.
// Subclasses can override this if they need custom focus search behavior.
bool Contains(View* root, const View* v) override {
return accessible_pane_view_->ContainsForFocusSearch(root, v);
}
private:
raw_ptr<AccessiblePaneView> accessible_pane_view_;
};
AccessiblePaneView::AccessiblePaneView()
: last_focused_view_tracker_(std::make_unique<ViewTracker>()) {
focus_search_ = std::make_unique<AccessiblePaneViewFocusSearch>(this);
GetViewAccessibility().SetRole(ax::mojom::Role::kPane);
}
AccessiblePaneView::~AccessiblePaneView() {
if (pane_has_focus_) {
RemovePaneFocus();
}
}
bool AccessiblePaneView::SetPaneFocus(views::View* initial_focus) {
if (!GetVisible()) {
return false;
}
if (!focus_manager_) {
focus_manager_ = GetFocusManager();
}
View* focused_view = focus_manager_->GetFocusedView();
if (focused_view && !ContainsForFocusSearch(this, focused_view)) {
last_focused_view_tracker_->SetView(focused_view);
}
// Use the provided initial focus if it's visible and enabled, otherwise
// use the first focusable child.
if (!initial_focus || !ContainsForFocusSearch(this, initial_focus) ||
!initial_focus->GetVisible() || !initial_focus->GetEnabled()) {
initial_focus = GetFirstFocusableChild();
}
// Return false if there are no focusable children.
if (!initial_focus) {
return false;
}
focus_manager_->SetFocusedView(initial_focus);
// TODO(pbos): Move this behavior into FocusManager. Focusing an unfocusable
// view should do something smart (move focus to its children or clear focus).
// DownloadItemView is an example (isn't focusable, has focusable children).
// See https://crbug.com/1000998.
// The initially-focused view may not be focusable (but one of its children
// might). We may need to advance focus here to make sure focus is on
// something focusable.
focus_manager_->AdvanceFocusIfNecessary();
// If we already have pane focus, we're done.
if (pane_has_focus_) {
return true;
}
// Otherwise, set accelerators and start listening for focus change events.
pane_has_focus_ = true;
ui::AcceleratorManager::HandlerPriority normal =
ui::AcceleratorManager::kNormalPriority;
focus_manager_->RegisterAccelerator(home_key_, normal, this);
focus_manager_->RegisterAccelerator(end_key_, normal, this);
focus_manager_->RegisterAccelerator(escape_key_, normal, this);
focus_manager_->RegisterAccelerator(left_key_, normal, this);
focus_manager_->RegisterAccelerator(right_key_, normal, this);
focus_manager_->AddFocusChangeListener(this);
return true;
}
bool AccessiblePaneView::SetPaneFocusAndFocusDefault() {
return SetPaneFocus(GetDefaultFocusableChild());
}
views::View* AccessiblePaneView::GetDefaultFocusableChild() {
return nullptr;
}
View* AccessiblePaneView::GetParentForFocusSearch(View* v) {
return v->parent();
}
bool AccessiblePaneView::ContainsForFocusSearch(View* root, const View* v) {
return root->Contains(v);
}
void AccessiblePaneView::RemovePaneFocus() {
focus_manager_->RemoveFocusChangeListener(this);
pane_has_focus_ = false;
focus_manager_->UnregisterAccelerator(home_key_, this);
focus_manager_->UnregisterAccelerator(end_key_, this);
focus_manager_->UnregisterAccelerator(escape_key_, this);
focus_manager_->UnregisterAccelerator(left_key_, this);
focus_manager_->UnregisterAccelerator(right_key_, this);
}
views::View* AccessiblePaneView::GetFirstFocusableChild() {
FocusTraversable* dummy_focus_traversable;
views::View* dummy_focus_traversable_view;
return focus_search_->FindNextFocusableView(
nullptr, FocusSearch::SearchDirection::kForwards,
FocusSearch::TraversalDirection::kDown,
FocusSearch::StartingViewPolicy::kSkipStartingView,
FocusSearch::AnchoredDialogPolicy::kCanGoIntoAnchoredDialog,
&dummy_focus_traversable, &dummy_focus_traversable_view);
}
views::View* AccessiblePaneView::GetLastFocusableChild() {
FocusTraversable* dummy_focus_traversable;
views::View* dummy_focus_traversable_view;
return focus_search_->FindNextFocusableView(
this, FocusSearch::SearchDirection::kBackwards,
FocusSearch::TraversalDirection::kDown,
FocusSearch::StartingViewPolicy::kSkipStartingView,
FocusSearch::AnchoredDialogPolicy::kCanGoIntoAnchoredDialog,
&dummy_focus_traversable, &dummy_focus_traversable_view);
}
////////////////////////////////////////////////////////////////////////////////
// View overrides:
views::FocusTraversable* AccessiblePaneView::GetPaneFocusTraversable() {
if (pane_has_focus_) {
return this;
} else {
return nullptr;
}
}
bool AccessiblePaneView::AcceleratorPressed(
const ui::Accelerator& accelerator) {
views::View* focused_view = focus_manager_->GetFocusedView();
if (!ContainsForFocusSearch(this, focused_view)) {
return false;
}
// "Previous" and "Next" directions depend on UI direction.
bool rtl = base::i18n::IsRTL();
using FocusChangeReason = views::FocusManager::FocusChangeReason;
switch (accelerator.key_code()) {
case ui::VKEY_ESCAPE: {
RemovePaneFocus();
View* last_focused_view = last_focused_view_tracker_->view();
// Ignore |last_focused_view| if it's no longer in the same widget.
if (last_focused_view && GetWidget() != last_focused_view->GetWidget()) {
last_focused_view = nullptr;
}
if (last_focused_view) {
focus_manager_->SetFocusedViewWithReason(
last_focused_view, FocusChangeReason::kFocusRestore);
} else if (allow_deactivate_on_esc_) {
focused_view->GetWidget()->Deactivate();
}
return true;
}
case ui::VKEY_LEFT:
focus_manager_->AdvanceFocus(!rtl);
return true;
case ui::VKEY_RIGHT:
focus_manager_->AdvanceFocus(rtl);
return true;
case ui::VKEY_HOME:
focus_manager_->SetFocusedViewWithReason(
GetFirstFocusableChild(), FocusChangeReason::kFocusTraversal);
return true;
case ui::VKEY_END:
focus_manager_->SetFocusedViewWithReason(
GetLastFocusableChild(), FocusChangeReason::kFocusTraversal);
return true;
default:
return false;
}
}
void AccessiblePaneView::SetVisible(bool flag) {
if (GetVisible() && !flag && pane_has_focus_) {
RemovePaneFocus();
focus_manager_->RestoreFocusedView();
}
View::SetVisible(flag);
}
void AccessiblePaneView::RequestFocus() {
SetPaneFocusAndFocusDefault();
}
////////////////////////////////////////////////////////////////////////////////
// FocusChangeListener overrides:
void AccessiblePaneView::OnWillChangeFocus(views::View* focused_before,
views::View* focused_now) {
// Act when focus has changed.
}
void AccessiblePaneView::OnDidChangeFocus(views::View* focused_before,
views::View* focused_now) {
if (!focused_now) {
return;
}
views::FocusManager::FocusChangeReason reason =
focus_manager_->focus_change_reason();
if (!ContainsForFocusSearch(this, focused_now) ||
reason == views::FocusManager::FocusChangeReason::kDirectFocusChange) {
// We should remove pane focus (i.e. make most of the controls
// not focusable again) because the focus has left the pane,
// or because the focus changed within the pane due to the user
// directly focusing to a specific view (e.g., clicking on it).
RemovePaneFocus();
}
}
////////////////////////////////////////////////////////////////////////////////
// FocusTraversable overrides:
views::FocusSearch* AccessiblePaneView::GetFocusSearch() {
DCHECK(pane_has_focus_);
return focus_search_.get();
}
views::FocusTraversable* AccessiblePaneView::GetFocusTraversableParent() {
DCHECK(pane_has_focus_);
return nullptr;
}
views::View* AccessiblePaneView::GetFocusTraversableParentView() {
DCHECK(pane_has_focus_);
return nullptr;
}
BEGIN_METADATA(AccessiblePaneView)
END_METADATA
} // namespace views
|