| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ash/common/focus_cycler.h" | 5 #include "ash/common/focus_cycler.h" |
| 6 | 6 |
| 7 #include "ash/common/wm/mru_window_tracker.h" | 7 #include "ash/common/wm/mru_window_tracker.h" |
| 8 #include "ash/common/wm/window_state.h" | 8 #include "ash/common/wm/window_state.h" |
| 9 #include "ash/common/wm_shell.h" | 9 #include "ash/common/wm_shell.h" |
| 10 #include "ash/common/wm_window.h" | 10 #include "ash/common/wm_window.h" |
| 11 #include "ash/shell.h" |
| 11 #include "ui/views/accessible_pane_view.h" | 12 #include "ui/views/accessible_pane_view.h" |
| 12 #include "ui/views/focus/focus_search.h" | 13 #include "ui/views/focus/focus_search.h" |
| 13 #include "ui/views/widget/widget.h" | 14 #include "ui/views/widget/widget.h" |
| 14 #include "ui/wm/public/activation_client.h" | 15 #include "ui/wm/public/activation_client.h" |
| 15 | 16 |
| 16 namespace ash { | 17 namespace ash { |
| 17 | 18 |
| 18 namespace { | 19 namespace { |
| 19 | 20 |
| 20 bool HasFocusableWindow() { | 21 bool HasFocusableWindow() { |
| 21 return !WmShell::Get()->mru_window_tracker()->BuildMruWindowList().empty(); | 22 return !Shell::Get()->mru_window_tracker()->BuildMruWindowList().empty(); |
| 22 } | 23 } |
| 23 | 24 |
| 24 } // namespace | 25 } // namespace |
| 25 | 26 |
| 26 FocusCycler::FocusCycler() : widget_activating_(nullptr) {} | 27 FocusCycler::FocusCycler() : widget_activating_(nullptr) {} |
| 27 | 28 |
| 28 FocusCycler::~FocusCycler() {} | 29 FocusCycler::~FocusCycler() {} |
| 29 | 30 |
| 30 void FocusCycler::AddWidget(views::Widget* widget) { | 31 void FocusCycler::AddWidget(views::Widget* widget) { |
| 31 widgets_.push_back(widget); | 32 widgets_.push_back(widget); |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 else | 74 else |
| 74 index = ((index - 1) + count) % count; | 75 index = ((index - 1) + count) % count; |
| 75 | 76 |
| 76 // Ensure that we don't loop more than once. | 77 // Ensure that we don't loop more than once. |
| 77 if (index == start_index) | 78 if (index == start_index) |
| 78 break; | 79 break; |
| 79 | 80 |
| 80 if (index == browser_index) { | 81 if (index == browser_index) { |
| 81 // Activate the most recently active browser window. | 82 // Activate the most recently active browser window. |
| 82 MruWindowTracker::WindowList mru_windows( | 83 MruWindowTracker::WindowList mru_windows( |
| 83 WmShell::Get()->mru_window_tracker()->BuildMruWindowList()); | 84 Shell::Get()->mru_window_tracker()->BuildMruWindowList()); |
| 84 if (mru_windows.empty()) | 85 if (mru_windows.empty()) |
| 85 break; | 86 break; |
| 86 WmWindow* window = mru_windows.front(); | 87 WmWindow* window = mru_windows.front(); |
| 87 window->GetWindowState()->Activate(); | 88 window->GetWindowState()->Activate(); |
| 88 views::Widget* widget = window->GetInternalWidget(); | 89 views::Widget* widget = window->GetInternalWidget(); |
| 89 if (!widget) | 90 if (!widget) |
| 90 break; | 91 break; |
| 91 views::FocusManager* focus_manager = widget->GetFocusManager(); | 92 views::FocusManager* focus_manager = widget->GetFocusManager(); |
| 92 focus_manager->ClearFocus(); | 93 focus_manager->ClearFocus(); |
| 93 focus_manager->RotatePaneFocus(direction == BACKWARD | 94 focus_manager->RotatePaneFocus(direction == BACKWARD |
| (...skipping 11 matching lines...) Expand all Loading... |
| 105 bool FocusCycler::FocusWidget(views::Widget* widget) { | 106 bool FocusCycler::FocusWidget(views::Widget* widget) { |
| 106 // Note: It is not necessary to set the focus directly to the pane since that | 107 // Note: It is not necessary to set the focus directly to the pane since that |
| 107 // will be taken care of by the widget activation. | 108 // will be taken care of by the widget activation. |
| 108 widget_activating_ = widget; | 109 widget_activating_ = widget; |
| 109 widget->Activate(); | 110 widget->Activate(); |
| 110 widget_activating_ = NULL; | 111 widget_activating_ = NULL; |
| 111 return widget->IsActive(); | 112 return widget->IsActive(); |
| 112 } | 113 } |
| 113 | 114 |
| 114 } // namespace ash | 115 } // namespace ash |
| OLD | NEW |