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
3 // found in the LICENSE file.
10 #include "ash/accelerators/accelerator_controller.h"
11 #include "ash/accelerators/accelerator_delegate.h"
12 #include "ash/accelerators/focus_manager_factory.h"
13 #include "ash/accelerators/nested_accelerator_delegate.h"
14 #include "ash/ash_switches.h"
15 #include "ash/autoclick/autoclick_controller.h"
16 #include "ash/desktop_background/desktop_background_controller.h"
17 #include "ash/desktop_background/desktop_background_view.h"
18 #include "ash/desktop_background/user_wallpaper_delegate.h"
19 #include "ash/display/cursor_window_controller.h"
20 #include "ash/display/display_manager.h"
21 #include "ash/display/event_transformation_handler.h"
22 #include "ash/display/mouse_cursor_event_filter.h"
23 #include "ash/display/screen_position_controller.h"
24 #include "ash/display/window_tree_host_manager.h"
25 #include "ash/drag_drop/drag_drop_controller.h"
26 #include "ash/first_run/first_run_helper_impl.h"
27 #include "ash/focus_cycler.h"
28 #include "ash/frame/custom_frame_view_ash.h"
29 #include "ash/gpu_support.h"
30 #include "ash/high_contrast/high_contrast_controller.h"
31 #include "ash/host/ash_window_tree_host_init_params.h"
32 #include "ash/ime/input_method_event_handler.h"
33 #include "ash/keyboard_uma_event_filter.h"
34 #include "ash/magnifier/magnification_controller.h"
35 #include "ash/magnifier/partial_magnification_controller.h"
36 #include "ash/media_delegate.h"
37 #include "ash/new_window_delegate.h"
38 #include "ash/root_window_controller.h"
39 #include "ash/session/session_state_delegate.h"
40 #include "ash/shelf/app_list_shelf_item_delegate.h"
41 #include "ash/shelf/shelf_delegate.h"
42 #include "ash/shelf/shelf_item_delegate.h"
43 #include "ash/shelf/shelf_item_delegate_manager.h"
44 #include "ash/shelf/shelf_layout_manager.h"
45 #include "ash/shelf/shelf_model.h"
46 #include "ash/shelf/shelf_widget.h"
47 #include "ash/shelf/shelf_window_watcher.h"
48 #include "ash/shell_delegate.h"
49 #include "ash/shell_factory.h"
50 #include "ash/shell_init_params.h"
51 #include "ash/shell_window_ids.h"
52 #include "ash/system/locale/locale_notification_controller.h"
53 #include "ash/system/status_area_widget.h"
54 #include "ash/system/tray/system_tray_delegate.h"
55 #include "ash/system/tray/system_tray_notifier.h"
56 #include "ash/utility/partial_screenshot_controller.h"
57 #include "ash/wm/app_list_controller.h"
58 #include "ash/wm/ash_focus_rules.h"
59 #include "ash/wm/ash_native_cursor_manager.h"
60 #include "ash/wm/coordinate_conversion.h"
61 #include "ash/wm/event_client_impl.h"
62 #include "ash/wm/lock_state_controller.h"
63 #include "ash/wm/maximize_mode/maximize_mode_controller.h"
64 #include "ash/wm/maximize_mode/maximize_mode_window_manager.h"
65 #include "ash/wm/mru_window_tracker.h"
66 #include "ash/wm/overlay_event_filter.h"
67 #include "ash/wm/overview/window_selector_controller.h"
68 #include "ash/wm/power_button_controller.h"
69 #include "ash/wm/resize_shadow_controller.h"
70 #include "ash/wm/root_window_layout_manager.h"
71 #include "ash/wm/screen_dimmer.h"
72 #include "ash/wm/system_gesture_event_filter.h"
73 #include "ash/wm/system_modal_container_event_filter.h"
74 #include "ash/wm/system_modal_container_layout_manager.h"
75 #include "ash/wm/toplevel_window_event_handler.h"
76 #include "ash/wm/video_detector.h"
77 #include "ash/wm/window_animations.h"
78 #include "ash/wm/window_cycle_controller.h"
79 #include "ash/wm/window_positioner.h"
80 #include "ash/wm/window_properties.h"
81 #include "ash/wm/window_util.h"
82 #include "ash/wm/workspace_controller.h"
83 #include "base/bind.h"
84 #include "base/trace_event/trace_event.h"
85 #include "ui/aura/client/aura_constants.h"
86 #include "ui/aura/env.h"
87 #include "ui/aura/layout_manager.h"
88 #include "ui/aura/window.h"
89 #include "ui/aura/window_event_dispatcher.h"
90 #include "ui/base/ui_base_switches.h"
91 #include "ui/base/user_activity/user_activity_detector.h"
92 #include "ui/compositor/layer.h"
93 #include "ui/compositor/layer_animator.h"
94 #include "ui/events/event_target_iterator.h"
95 #include "ui/gfx/display.h"
96 #include "ui/gfx/geometry/size.h"
97 #include "ui/gfx/image/image_skia.h"
98 #include "ui/gfx/screen.h"
99 #include "ui/keyboard/keyboard.h"
100 #include "ui/keyboard/keyboard_controller.h"
101 #include "ui/keyboard/keyboard_switches.h"
102 #include "ui/keyboard/keyboard_util.h"
103 #include "ui/message_center/message_center.h"
104 #include "ui/views/corewm/tooltip_aura.h"
105 #include "ui/views/corewm/tooltip_controller.h"
106 #include "ui/views/focus/focus_manager_factory.h"
107 #include "ui/views/widget/native_widget_aura.h"
108 #include "ui/views/widget/widget.h"
109 #include "ui/wm/core/accelerator_filter.h"
110 #include "ui/wm/core/compound_event_filter.h"
111 #include "ui/wm/core/focus_controller.h"
112 #include "ui/wm/core/nested_accelerator_controller.h"
113 #include "ui/wm/core/shadow_controller.h"
114 #include "ui/wm/core/visibility_controller.h"
115 #include "ui/wm/core/window_modality_controller.h"
117 #if defined(OS_CHROMEOS)
119 #include "ui/gfx/x/x11_types.h"
120 #endif // defined(USE_X11)
121 #include "ash/accelerators/magnifier_key_scroller.h"
122 #include "ash/accelerators/spoken_feedback_toggler.h"
123 #include "ash/ash_constants.h"
124 #include "ash/content/display/display_color_manager_chromeos.h"
125 #include "ash/content/display/screen_orientation_controller_chromeos.h"
126 #include "ash/display/display_change_observer_chromeos.h"
127 #include "ash/display/display_configurator_animation.h"
128 #include "ash/display/display_error_observer_chromeos.h"
129 #include "ash/display/projecting_observer_chromeos.h"
130 #include "ash/display/resolution_notification_controller.h"
131 #include "ash/sticky_keys/sticky_keys_controller.h"
132 #include "ash/system/chromeos/bluetooth/bluetooth_notification_controller.h"
133 #include "ash/system/chromeos/brightness/brightness_controller_chromeos.h"
134 #include "ash/system/chromeos/power/power_event_observer.h"
135 #include "ash/system/chromeos/power/power_status.h"
136 #include "ash/system/chromeos/power/video_activity_notifier.h"
137 #include "ash/system/chromeos/session/last_window_closed_logout_reminder.h"
138 #include "ash/system/chromeos/session/logout_confirmation_controller.h"
139 #include "ash/touch/touch_transformer_controller.h"
140 #include "ash/virtual_keyboard_controller.h"
141 #include "base/bind_helpers.h"
142 #include "base/sys_info.h"
143 #include "chromeos/dbus/dbus_thread_manager.h"
144 #include "ui/chromeos/user_activity_power_manager_notifier.h"
145 #include "ui/display/chromeos/display_configurator.h"
146 #endif // defined(OS_CHROMEOS)
155 // A Corewm VisibilityController subclass that calls the Ash animation routine
156 // so we can pick up our extended animations. See ash/wm/window_animations.h.
157 class AshVisibilityController
: public ::wm::VisibilityController
{
159 AshVisibilityController() {}
160 ~AshVisibilityController() override
{}
163 // Overridden from ::wm::VisibilityController:
164 bool CallAnimateOnChildWindowVisibilityChanged(aura::Window
* window
,
165 bool visible
) override
{
166 return AnimateOnChildWindowVisibilityChanged(window
, visible
);
169 DISALLOW_COPY_AND_ASSIGN(AshVisibilityController
);
172 AshWindowTreeHostInitParams
ShellInitParamsToAshWindowTreeHostInitParams(
173 const ShellInitParams
& shell_init_params
) {
174 AshWindowTreeHostInitParams ash_init_params
;
176 ash_init_params
.remote_hwnd
= shell_init_params
.remote_hwnd
;
178 return ash_init_params
;
184 Shell
* Shell::instance_
= NULL
;
186 bool Shell::initially_hide_cursor_
= false;
188 ////////////////////////////////////////////////////////////////////////////////
192 Shell
* Shell::CreateInstance(const ShellInitParams
& init_params
) {
194 instance_
= new Shell(init_params
.delegate
);
195 instance_
->Init(init_params
);
200 Shell
* Shell::GetInstance() {
206 bool Shell::HasInstance() {
211 void Shell::DeleteInstance() {
217 RootWindowController
* Shell::GetPrimaryRootWindowController() {
218 CHECK(HasInstance());
219 return GetRootWindowController(GetPrimaryRootWindow());
223 Shell::RootWindowControllerList
Shell::GetAllRootWindowControllers() {
224 CHECK(HasInstance());
225 return Shell::GetInstance()
226 ->window_tree_host_manager()
227 ->GetAllRootWindowControllers();
231 aura::Window
* Shell::GetPrimaryRootWindow() {
232 CHECK(HasInstance());
233 return GetInstance()->window_tree_host_manager()->GetPrimaryRootWindow();
237 aura::Window
* Shell::GetTargetRootWindow() {
238 CHECK(HasInstance());
239 Shell
* shell
= GetInstance();
240 if (shell
->scoped_target_root_window_
)
241 return shell
->scoped_target_root_window_
;
242 return shell
->target_root_window_
;
246 gfx::Screen
* Shell::GetScreen() {
247 return gfx::Screen::GetScreenByType(gfx::SCREEN_TYPE_ALTERNATE
);
251 aura::Window::Windows
Shell::GetAllRootWindows() {
252 CHECK(HasInstance());
253 return Shell::GetInstance()->window_tree_host_manager()->GetAllRootWindows();
257 aura::Window
* Shell::GetContainer(aura::Window
* root_window
,
259 return root_window
->GetChildById(container_id
);
263 const aura::Window
* Shell::GetContainer(const aura::Window
* root_window
,
265 return root_window
->GetChildById(container_id
);
269 std::vector
<aura::Window
*> Shell::GetContainersFromAllRootWindows(
271 aura::Window
* priority_root
) {
272 std::vector
<aura::Window
*> containers
;
273 aura::Window::Windows root_windows
= GetAllRootWindows();
274 for (aura::Window::Windows::const_iterator it
= root_windows
.begin();
275 it
!= root_windows
.end(); ++it
) {
276 aura::Window
* container
= (*it
)->GetChildById(container_id
);
278 if (priority_root
&& priority_root
->Contains(container
))
279 containers
.insert(containers
.begin(), container
);
281 containers
.push_back(container
);
287 void Shell::ShowContextMenu(const gfx::Point
& location_in_screen
,
288 ui::MenuSourceType source_type
) {
289 // No context menus if there is no session with an active user.
290 if (!session_state_delegate_
->NumberOfLoggedInUsers())
292 // No context menus when screen is locked.
293 if (session_state_delegate_
->IsScreenLocked())
297 wm::GetRootWindowMatching(gfx::Rect(location_in_screen
, gfx::Size()));
298 GetRootWindowController(root
)
299 ->ShowContextMenu(location_in_screen
, source_type
);
302 void Shell::ShowAppList(aura::Window
* window
) {
303 // If the context window is not given, show it on the target root window.
305 window
= GetTargetRootWindow();
306 if (!app_list_controller_
)
307 app_list_controller_
.reset(new AppListController
);
308 app_list_controller_
->Show(window
);
311 void Shell::DismissAppList() {
312 if (!app_list_controller_
)
314 app_list_controller_
->Dismiss();
317 void Shell::ToggleAppList(aura::Window
* window
) {
318 if (app_list_controller_
&& app_list_controller_
->IsVisible()) {
326 bool Shell::GetAppListTargetVisibility() const {
327 return app_list_controller_
.get() &&
328 app_list_controller_
->GetTargetVisibility();
331 aura::Window
* Shell::GetAppListWindow() {
332 return app_list_controller_
.get() ? app_list_controller_
->GetWindow() : NULL
;
335 app_list::AppListView
* Shell::GetAppListView() {
336 return app_list_controller_
.get() ? app_list_controller_
->GetView() : NULL
;
339 bool Shell::IsSystemModalWindowOpen() const {
340 if (simulate_modal_window_open_for_testing_
)
342 const std::vector
<aura::Window
*> containers
= GetContainersFromAllRootWindows(
343 kShellWindowId_SystemModalContainer
, NULL
);
344 for (std::vector
<aura::Window
*>::const_iterator cit
= containers
.begin();
345 cit
!= containers
.end(); ++cit
) {
346 for (aura::Window::Windows::const_iterator wit
= (*cit
)->children().begin();
347 wit
!= (*cit
)->children().end(); ++wit
) {
348 if ((*wit
)->GetProperty(aura::client::kModalKey
) ==
349 ui::MODAL_TYPE_SYSTEM
&& (*wit
)->TargetVisibility()) {
357 views::NonClientFrameView
* Shell::CreateDefaultNonClientFrameView(
358 views::Widget
* widget
) {
359 // Use translucent-style window frames for dialogs.
360 return new CustomFrameViewAsh(widget
);
363 void Shell::RotateFocus(Direction direction
) {
364 focus_cycler_
->RotateFocus(direction
== FORWARD
? FocusCycler::FORWARD
365 : FocusCycler::BACKWARD
);
368 void Shell::SetDisplayWorkAreaInsets(Window
* contains
,
369 const gfx::Insets
& insets
) {
370 if (!window_tree_host_manager_
->UpdateWorkAreaOfDisplayNearestWindow(
374 FOR_EACH_OBSERVER(ShellObserver
, observers_
,
375 OnDisplayWorkAreaInsetsChanged());
378 void Shell::OnLoginStateChanged(user::LoginStatus status
) {
379 FOR_EACH_OBSERVER(ShellObserver
, observers_
, OnLoginStateChanged(status
));
382 void Shell::OnLoginUserProfilePrepared() {
387 void Shell::UpdateAfterLoginStatusChange(user::LoginStatus status
) {
388 RootWindowControllerList controllers
= GetAllRootWindowControllers();
389 for (RootWindowControllerList::iterator iter
= controllers
.begin();
390 iter
!= controllers
.end(); ++iter
)
391 (*iter
)->UpdateAfterLoginStatusChange(status
);
394 void Shell::OnAppTerminating() {
395 FOR_EACH_OBSERVER(ShellObserver
, observers_
, OnAppTerminating());
398 void Shell::OnLockStateChanged(bool locked
) {
399 FOR_EACH_OBSERVER(ShellObserver
, observers_
, OnLockStateChanged(locked
));
401 // Make sure that there is no system modal in Lock layer when unlocked.
403 std::vector
<aura::Window
*> containers
= GetContainersFromAllRootWindows(
404 kShellWindowId_LockSystemModalContainer
, GetPrimaryRootWindow());
405 for (std::vector
<aura::Window
*>::const_iterator iter
= containers
.begin();
406 iter
!= containers
.end(); ++iter
) {
407 DCHECK_EQ(0u, (*iter
)->children().size());
413 void Shell::OnCastingSessionStartedOrStopped(bool started
) {
414 #if defined(OS_CHROMEOS)
415 FOR_EACH_OBSERVER(ShellObserver
, observers_
,
416 OnCastingSessionStartedOrStopped(started
));
420 void Shell::OnOverviewModeStarting() {
421 FOR_EACH_OBSERVER(ShellObserver
, observers_
, OnOverviewModeStarting());
424 void Shell::OnOverviewModeEnded() {
425 FOR_EACH_OBSERVER(ShellObserver
, observers_
, OnOverviewModeEnded());
428 void Shell::OnMaximizeModeStarted() {
429 FOR_EACH_OBSERVER(ShellObserver
, observers_
, OnMaximizeModeStarted());
432 void Shell::OnMaximizeModeEnded() {
433 FOR_EACH_OBSERVER(ShellObserver
, observers_
, OnMaximizeModeEnded());
436 void Shell::OnRootWindowAdded(aura::Window
* root_window
) {
437 FOR_EACH_OBSERVER(ShellObserver
, observers_
, OnRootWindowAdded(root_window
));
440 void Shell::CreateShelf() {
441 RootWindowControllerList controllers
= GetAllRootWindowControllers();
442 for (RootWindowControllerList::iterator iter
= controllers
.begin();
443 iter
!= controllers
.end(); ++iter
)
444 (*iter
)->shelf()->CreateShelf();
447 void Shell::OnShelfCreatedForRootWindow(aura::Window
* root_window
) {
448 FOR_EACH_OBSERVER(ShellObserver
,
450 OnShelfCreatedForRootWindow(root_window
));
453 void Shell::CreateKeyboard() {
454 // TODO(bshe): Primary root window controller may not be the controller to
455 // attach virtual keyboard. See http://crbug.com/303429
457 GetPrimaryRootWindowController()->
458 ActivateKeyboard(keyboard::KeyboardController::GetInstance());
461 void Shell::DeactivateKeyboard() {
462 if (keyboard::KeyboardController::GetInstance()) {
463 RootWindowControllerList controllers
= GetAllRootWindowControllers();
464 for (RootWindowControllerList::iterator iter
= controllers
.begin();
465 iter
!= controllers
.end(); ++iter
) {
466 (*iter
)->DeactivateKeyboard(keyboard::KeyboardController::GetInstance());
469 keyboard::KeyboardController::ResetInstance(NULL
);
472 void Shell::ShowShelf() {
473 RootWindowControllerList controllers
= GetAllRootWindowControllers();
474 for (RootWindowControllerList::iterator iter
= controllers
.begin();
475 iter
!= controllers
.end(); ++iter
)
476 (*iter
)->ShowShelf();
479 void Shell::AddShellObserver(ShellObserver
* observer
) {
480 observers_
.AddObserver(observer
);
483 void Shell::RemoveShellObserver(ShellObserver
* observer
) {
484 observers_
.RemoveObserver(observer
);
487 #if defined(OS_CHROMEOS)
488 bool Shell::ShouldSaveDisplaySettings() {
489 return !(screen_orientation_controller_
490 ->ignore_display_configuration_updates() ||
491 resolution_notification_controller_
->DoesNotificationTimeout());
495 void Shell::UpdateShelfVisibility() {
496 RootWindowControllerList controllers
= GetAllRootWindowControllers();
497 for (RootWindowControllerList::iterator iter
= controllers
.begin();
498 iter
!= controllers
.end(); ++iter
)
499 if ((*iter
)->shelf())
500 (*iter
)->UpdateShelfVisibility();
503 void Shell::SetShelfAutoHideBehavior(ShelfAutoHideBehavior behavior
,
504 aura::Window
* root_window
) {
505 ash::ShelfLayoutManager::ForShelf(root_window
)->SetAutoHideBehavior(behavior
);
508 ShelfAutoHideBehavior
Shell::GetShelfAutoHideBehavior(
509 aura::Window
* root_window
) const {
510 return ash::ShelfLayoutManager::ForShelf(root_window
)->auto_hide_behavior();
513 void Shell::SetShelfAlignment(ShelfAlignment alignment
,
514 aura::Window
* root_window
) {
515 if (ash::ShelfLayoutManager::ForShelf(root_window
)->SetAlignment(alignment
)) {
517 ShellObserver
, observers_
, OnShelfAlignmentChanged(root_window
));
521 ShelfAlignment
Shell::GetShelfAlignment(const aura::Window
* root_window
) {
522 return GetRootWindowController(root_window
)
523 ->GetShelfLayoutManager()
527 void Shell::SetDimming(bool should_dim
) {
528 RootWindowControllerList controllers
= GetAllRootWindowControllers();
529 for (RootWindowControllerList::iterator iter
= controllers
.begin();
530 iter
!= controllers
.end(); ++iter
)
531 (*iter
)->screen_dimmer()->SetDimming(should_dim
);
534 void Shell::NotifyFullscreenStateChange(bool is_fullscreen
,
535 aura::Window
* root_window
) {
536 FOR_EACH_OBSERVER(ShellObserver
, observers_
, OnFullscreenStateChanged(
537 is_fullscreen
, root_window
));
540 void Shell::CreateModalBackground(aura::Window
* window
) {
541 if (!modality_filter_
) {
542 modality_filter_
.reset(new SystemModalContainerEventFilter(this));
543 AddPreTargetHandler(modality_filter_
.get());
545 RootWindowControllerList controllers
= GetAllRootWindowControllers();
546 for (RootWindowControllerList::iterator iter
= controllers
.begin();
547 iter
!= controllers
.end(); ++iter
)
548 (*iter
)->GetSystemModalLayoutManager(window
)->CreateModalBackground();
551 void Shell::OnModalWindowRemoved(aura::Window
* removed
) {
552 RootWindowControllerList controllers
= GetAllRootWindowControllers();
553 bool activated
= false;
554 for (RootWindowControllerList::iterator iter
= controllers
.begin();
555 iter
!= controllers
.end() && !activated
; ++iter
) {
556 activated
= (*iter
)->GetSystemModalLayoutManager(removed
)->
557 ActivateNextModalWindow();
560 RemovePreTargetHandler(modality_filter_
.get());
561 modality_filter_
.reset();
562 for (RootWindowControllerList::iterator iter
= controllers
.begin();
563 iter
!= controllers
.end(); ++iter
)
564 (*iter
)->GetSystemModalLayoutManager(removed
)->DestroyModalBackground();
568 WebNotificationTray
* Shell::GetWebNotificationTray() {
569 return GetPrimaryRootWindowController()->shelf()->
570 status_area_widget()->web_notification_tray();
573 bool Shell::HasPrimaryStatusArea() {
574 ShelfWidget
* shelf
= GetPrimaryRootWindowController()->shelf();
575 return shelf
&& shelf
->status_area_widget();
578 SystemTray
* Shell::GetPrimarySystemTray() {
579 return GetPrimaryRootWindowController()->GetSystemTray();
582 ShelfDelegate
* Shell::GetShelfDelegate() {
583 if (!shelf_delegate_
) {
584 shelf_model_
.reset(new ShelfModel
);
585 // Creates ShelfItemDelegateManager before ShelfDelegate.
586 shelf_item_delegate_manager_
.reset(
587 new ShelfItemDelegateManager(shelf_model_
.get()));
589 shelf_delegate_
.reset(delegate_
->CreateShelfDelegate(shelf_model_
.get()));
590 scoped_ptr
<ShelfItemDelegate
> controller(new AppListShelfItemDelegate
);
592 // Finding the shelf model's location of the app list and setting its
593 // ShelfItemDelegate.
594 int app_list_index
= shelf_model_
->GetItemIndexForType(TYPE_APP_LIST
);
595 DCHECK_GE(app_list_index
, 0);
596 ShelfID app_list_id
= shelf_model_
->items()[app_list_index
].id
;
598 shelf_item_delegate_manager_
->SetShelfItemDelegate(app_list_id
,
600 shelf_window_watcher_
.reset(new ShelfWindowWatcher(
601 shelf_model_
.get(), shelf_item_delegate_manager_
.get()));
603 return shelf_delegate_
.get();
606 void Shell::SetTouchHudProjectionEnabled(bool enabled
) {
607 if (is_touch_hud_projection_enabled_
== enabled
)
610 is_touch_hud_projection_enabled_
= enabled
;
611 FOR_EACH_OBSERVER(ShellObserver
, observers_
,
612 OnTouchHudProjectionToggled(enabled
));
615 #if defined(OS_CHROMEOS)
616 ash::FirstRunHelper
* Shell::CreateFirstRunHelper() {
617 return new ash::FirstRunHelperImpl
;
620 void Shell::SetCursorCompositingEnabled(bool enabled
) {
621 window_tree_host_manager_
->cursor_window_controller()
622 ->SetCursorCompositingEnabled(enabled
);
623 native_cursor_manager_
->SetNativeCursorEnabled(!enabled
);
625 #endif // defined(OS_CHROMEOS)
627 void Shell::DoInitialWorkspaceAnimation() {
628 return GetPrimaryRootWindowController()->workspace_controller()->
629 DoInitialAnimation();
632 ////////////////////////////////////////////////////////////////////////////////
635 Shell::Shell(ShellDelegate
* delegate
)
636 : target_root_window_(NULL
),
637 scoped_target_root_window_(NULL
),
639 window_positioner_(new WindowPositioner
),
640 activation_client_(NULL
),
641 #if defined(OS_CHROMEOS)
642 display_configurator_(new ui::DisplayConfigurator()),
643 #endif // defined(OS_CHROMEOS)
644 native_cursor_manager_(new AshNativeCursorManager
),
646 scoped_ptr
<::wm::NativeCursorManager
>(native_cursor_manager_
)),
647 simulate_modal_window_open_for_testing_(false),
648 is_touch_hud_projection_enabled_(false) {
649 DCHECK(delegate_
.get());
650 DCHECK(aura::Env::GetInstanceDontCreate());
651 gpu_support_
.reset(delegate_
->CreateGPUSupport());
652 display_manager_
.reset(new DisplayManager
);
653 window_tree_host_manager_
.reset(new WindowTreeHostManager
);
654 user_metrics_recorder_
.reset(new UserMetricsRecorder
);
656 #if defined(OS_CHROMEOS)
657 PowerStatus::Initialize();
662 TRACE_EVENT0("shutdown", "ash::Shell::Destructor");
664 user_metrics_recorder_
->OnShellShuttingDown();
666 delegate_
->PreShutdown();
668 views::FocusManagerFactory::Install(NULL
);
670 // Remove the focus from any window. This will prevent overhead and side
671 // effects (e.g. crashes) from changing focus during shutdown.
672 // See bug crbug.com/134502.
673 aura::client::GetFocusClient(GetPrimaryRootWindow())->FocusWindow(NULL
);
675 // Please keep in same order as in Init() because it's easy to miss one.
676 if (window_modality_controller_
)
677 window_modality_controller_
.reset();
678 RemovePreTargetHandler(
679 window_tree_host_manager_
->input_method_event_handler());
680 #if defined(OS_CHROMEOS)
681 RemovePreTargetHandler(magnifier_key_scroll_handler_
.get());
682 magnifier_key_scroll_handler_
.reset();
684 RemovePreTargetHandler(speech_feedback_handler_
.get());
685 speech_feedback_handler_
.reset();
687 RemovePreTargetHandler(overlay_filter_
.get());
688 RemovePreTargetHandler(accelerator_filter_
.get());
689 RemovePreTargetHandler(event_transformation_handler_
.get());
690 RemovePreTargetHandler(toplevel_window_event_handler_
.get());
691 RemovePostTargetHandler(toplevel_window_event_handler_
.get());
692 RemovePreTargetHandler(system_gesture_filter_
.get());
693 RemovePreTargetHandler(keyboard_metrics_filter_
.get());
694 RemovePreTargetHandler(mouse_cursor_filter_
.get());
696 // TooltipController is deleted with the Shell so removing its references.
697 RemovePreTargetHandler(tooltip_controller_
.get());
699 #if defined(OS_CHROMEOS)
700 screen_orientation_controller_
.reset();
703 // Destroy the virtual keyboard controller before the maximize mode controller
704 // since the latters destructor triggers events that the former is listening
705 // to but no longer cares about.
706 #if defined(OS_CHROMEOS)
707 virtual_keyboard_controller_
.reset();
710 // Destroy maximize mode controller early on since it has some observers which
711 // need to be removed.
712 maximize_mode_controller_
.reset();
714 // AppList needs to be released before shelf layout manager, which is
715 // destroyed with shelf container in the loop below. However, app list
716 // container is now on top of shelf container and released after it.
717 // TODO(xiyuan): Move it back when app list container is no longer needed.
718 app_list_controller_
.reset();
720 #if defined(OS_CHROMEOS)
721 // Destroy the LastWindowClosedLogoutReminder before the
722 // LogoutConfirmationController.
723 last_window_closed_logout_reminder_
.reset();
725 // Destroy the LogoutConfirmationController before the SystemTrayDelegate.
726 logout_confirmation_controller_
.reset();
729 // Destroy SystemTrayDelegate before destroying the status area(s).
730 system_tray_delegate_
->Shutdown();
731 system_tray_delegate_
.reset();
733 locale_notification_controller_
.reset();
735 // Drag-and-drop must be canceled prior to close all windows.
736 drag_drop_controller_
.reset();
738 // Controllers who have WindowObserver added must be deleted
739 // before |window_tree_host_manager_| is deleted.
741 #if defined(OS_CHROMEOS)
742 // VideoActivityNotifier must be deleted before |video_detector_| is
743 // deleted because it's observing video activity through
744 // VideoDetectorObserver interface.
745 video_activity_notifier_
.reset();
746 #endif // defined(OS_CHROMEOS)
747 video_detector_
.reset();
748 high_contrast_controller_
.reset();
750 shadow_controller_
.reset();
751 resize_shadow_controller_
.reset();
753 window_cycle_controller_
.reset();
754 window_selector_controller_
.reset();
756 // |shelf_window_watcher_| has a weak pointer to |shelf_Model_|
757 // and has window observers.
758 shelf_window_watcher_
.reset();
760 // Destroy all child windows including widgets.
761 window_tree_host_manager_
->CloseChildWindows();
762 // MruWindowTracker must be destroyed after all windows have been deleted to
763 // avoid a possible crash when Shell is destroyed from a non-normal shutdown
764 // path. (crbug.com/485438).
765 mru_window_tracker_
.reset();
767 // Chrome implementation of shelf delegate depends on FocusClient,
768 // so must be deleted before |focus_client_|.
769 shelf_delegate_
.reset();
770 focus_client_
.reset();
772 // Destroy SystemTrayNotifier after destroying SystemTray as TrayItems
773 // needs to remove observers from it.
774 system_tray_notifier_
.reset();
776 // These need a valid Shell instance to clean up properly, so explicitly
777 // delete them before invalidating the instance.
778 // Alphabetical. TODO(oshima): sort.
779 magnification_controller_
.reset();
780 partial_magnification_controller_
.reset();
781 tooltip_controller_
.reset();
782 event_client_
.reset();
783 nested_accelerator_controller_
.reset();
784 toplevel_window_event_handler_
.reset();
785 visibility_controller_
.reset();
786 // |shelf_item_delegate_manager_| observes |shelf_model_|. It must be
787 // destroyed before |shelf_model_| is destroyed.
788 shelf_item_delegate_manager_
.reset();
789 shelf_model_
.reset();
791 power_button_controller_
.reset();
792 lock_state_controller_
.reset();
794 #if defined(OS_CHROMEOS)
795 resolution_notification_controller_
.reset();
797 desktop_background_controller_
.reset();
798 partial_screenshot_controller_
.reset();
799 mouse_cursor_filter_
.reset();
801 #if defined(OS_CHROMEOS)
802 touch_transformer_controller_
.reset();
803 #endif // defined(OS_CHROMEOS)
805 // This also deletes all RootWindows. Note that we invoke Shutdown() on
806 // WindowTreeHostManager before resetting |window_tree_host_manager_|, since
808 // of its owned RootWindowControllers relies on the value.
809 display_manager_
->CreateScreenForShutdown();
810 window_tree_host_manager_
->Shutdown();
811 window_tree_host_manager_
.reset();
812 screen_position_controller_
.reset();
813 accessibility_delegate_
.reset();
814 new_window_delegate_
.reset();
815 media_delegate_
.reset();
817 keyboard::KeyboardController::ResetInstance(nullptr);
819 #if defined(OS_CHROMEOS)
820 display_color_manager_
.reset();
821 if (display_change_observer_
)
822 display_configurator_
->RemoveObserver(display_change_observer_
.get());
823 if (display_configurator_animation_
)
824 display_configurator_
->RemoveObserver(
825 display_configurator_animation_
.get());
826 if (display_error_observer_
)
827 display_configurator_
->RemoveObserver(display_error_observer_
.get());
828 if (projecting_observer_
) {
829 display_configurator_
->RemoveObserver(projecting_observer_
.get());
830 RemoveShellObserver(projecting_observer_
.get());
832 display_change_observer_
.reset();
834 PowerStatus::Shutdown();
836 // Ensure that DBusThreadManager outlives this Shell.
837 DCHECK(chromeos::DBusThreadManager::IsInitialized());
840 DCHECK(instance_
== this);
844 void Shell::Init(const ShellInitParams
& init_params
) {
845 delegate_
->PreInit();
846 bool display_initialized
= display_manager_
->InitFromCommandLine();
847 #if defined(OS_CHROMEOS)
848 display_configurator_
->Init(!gpu_support_
->IsPanelFittingDisabled());
849 display_configurator_animation_
.reset(new DisplayConfiguratorAnimation());
850 display_configurator_
->AddObserver(display_configurator_animation_
.get());
852 // The DBusThreadManager must outlive this Shell. See the DCHECK in ~Shell.
853 chromeos::DBusThreadManager
* dbus_thread_manager
=
854 chromeos::DBusThreadManager::Get();
855 projecting_observer_
.reset(
856 new ProjectingObserver(dbus_thread_manager
->GetPowerManagerClient()));
857 display_configurator_
->AddObserver(projecting_observer_
.get());
858 AddShellObserver(projecting_observer_
.get());
860 if (!display_initialized
&& base::SysInfo::IsRunningOnChromeOS()) {
861 display_change_observer_
.reset(new DisplayChangeObserver
);
862 // Register |display_change_observer_| first so that the rest of
863 // observer gets invoked after the root windows are configured.
864 display_configurator_
->AddObserver(display_change_observer_
.get());
865 display_error_observer_
.reset(new DisplayErrorObserver());
866 display_configurator_
->AddObserver(display_error_observer_
.get());
867 display_configurator_
->set_state_controller(display_change_observer_
.get());
868 display_configurator_
->set_mirroring_controller(display_manager_
.get());
869 display_configurator_
->ForceInitialConfigure(
870 delegate_
->IsFirstRunAfterBoot() ? kChromeOsBootColor
: 0);
871 display_initialized
= true;
873 display_color_manager_
.reset(
874 new DisplayColorManager(display_configurator_
.get()));
875 #endif // defined(OS_CHROMEOS)
876 if (!display_initialized
)
877 display_manager_
->InitDefaultDisplay();
879 display_manager_
->RefreshFontParams();
881 // Install the custom factory first so that views::FocusManagers for Tray,
882 // Shelf, and WallPaper could be created by the factory.
883 views::FocusManagerFactory::Install(new AshFocusManagerFactory
);
885 aura::Env::GetInstance()->set_context_factory(init_params
.context_factory
);
887 // The WindowModalityController needs to be at the front of the input event
888 // pretarget handler list to ensure that it processes input events when modal
889 // windows are active.
890 window_modality_controller_
.reset(
891 new ::wm::WindowModalityController(this));
893 env_filter_
.reset(new ::wm::CompoundEventFilter
);
894 AddPreTargetHandler(env_filter_
.get());
896 wm::AshFocusRules
* focus_rules
= new wm::AshFocusRules();
898 ::wm::FocusController
* focus_controller
=
899 new ::wm::FocusController(focus_rules
);
900 focus_client_
.reset(focus_controller
);
901 activation_client_
= focus_controller
;
902 activation_client_
->AddObserver(this);
903 focus_cycler_
.reset(new FocusCycler());
905 screen_position_controller_
.reset(new ScreenPositionController
);
907 window_tree_host_manager_
->Start();
908 window_tree_host_manager_
->CreatePrimaryHost(
909 ShellInitParamsToAshWindowTreeHostInitParams(init_params
));
910 aura::Window
* root_window
= window_tree_host_manager_
->GetPrimaryRootWindow();
911 target_root_window_
= root_window
;
913 #if defined(OS_CHROMEOS)
914 resolution_notification_controller_
.reset(
915 new ResolutionNotificationController
);
918 cursor_manager_
.SetDisplay(GetScreen()->GetPrimaryDisplay());
920 nested_accelerator_controller_
.reset(
921 new ::wm::NestedAcceleratorController(new NestedAcceleratorDelegate
));
922 accelerator_controller_
.reset(new AcceleratorController
);
923 maximize_mode_controller_
.reset(new MaximizeModeController());
925 AddPreTargetHandler(window_tree_host_manager_
->input_method_event_handler());
927 #if defined(OS_CHROMEOS)
928 magnifier_key_scroll_handler_
= MagnifierKeyScroller::CreateHandler();
929 AddPreTargetHandler(magnifier_key_scroll_handler_
.get());
930 speech_feedback_handler_
= SpokenFeedbackToggler::CreateHandler();
931 AddPreTargetHandler(speech_feedback_handler_
.get());
934 // The order in which event filters are added is significant.
936 // ui::UserActivityDetector passes events to observers, so let them get
938 user_activity_detector_
.reset(new ui::UserActivityDetector
);
940 overlay_filter_
.reset(new OverlayEventFilter
);
941 AddPreTargetHandler(overlay_filter_
.get());
942 AddShellObserver(overlay_filter_
.get());
944 accelerator_filter_
.reset(new ::wm::AcceleratorFilter(
945 scoped_ptr
< ::wm::AcceleratorDelegate
>(new AcceleratorDelegate
).Pass(),
946 accelerator_controller_
->accelerator_history()));
947 AddPreTargetHandler(accelerator_filter_
.get());
949 event_transformation_handler_
.reset(new EventTransformationHandler
);
950 AddPreTargetHandler(event_transformation_handler_
.get());
952 toplevel_window_event_handler_
.reset(new ToplevelWindowEventHandler
);
954 system_gesture_filter_
.reset(new SystemGestureEventFilter
);
955 AddPreTargetHandler(system_gesture_filter_
.get());
957 keyboard_metrics_filter_
.reset(new KeyboardUMAEventFilter
);
958 AddPreTargetHandler(keyboard_metrics_filter_
.get());
960 // The keyboard system must be initialized before the RootWindowController is
962 #if defined(OS_CHROMEOS)
963 keyboard::InitializeKeyboard();
966 #if defined(OS_CHROMEOS)
967 sticky_keys_controller_
.reset(new StickyKeysController
);
970 lock_state_controller_
.reset(new LockStateController
);
971 power_button_controller_
.reset(new PowerButtonController(
972 lock_state_controller_
.get()));
973 #if defined(OS_CHROMEOS)
974 // Pass the initial display state to PowerButtonController.
975 power_button_controller_
->OnDisplayModeChanged(
976 display_configurator_
->cached_displays());
978 AddShellObserver(lock_state_controller_
.get());
980 drag_drop_controller_
.reset(new DragDropController
);
981 // |partial_screenshot_controller_| needs to be created (and prepended as a
982 // pre-target handler) at this point, because |mouse_cursor_filter_| needs to
983 // process mouse events prior to partial screenshot session.
984 // See http://crbug.com/459214
985 partial_screenshot_controller_
.reset(new PartialScreenshotController());
986 mouse_cursor_filter_
.reset(new MouseCursorEventFilter());
987 PrependPreTargetHandler(mouse_cursor_filter_
.get());
989 // Create Controllers that may need root window.
990 // TODO(oshima): Move as many controllers before creating
991 // RootWindowController as possible.
992 visibility_controller_
.reset(new AshVisibilityController
);
994 magnification_controller_
.reset(
995 MagnificationController::CreateInstance());
996 mru_window_tracker_
.reset(new MruWindowTracker(activation_client_
,
999 partial_magnification_controller_
.reset(
1000 new PartialMagnificationController());
1002 autoclick_controller_
.reset(AutoclickController::CreateInstance());
1004 high_contrast_controller_
.reset(new HighContrastController
);
1005 video_detector_
.reset(new VideoDetector
);
1006 window_selector_controller_
.reset(new WindowSelectorController());
1007 window_cycle_controller_
.reset(new WindowCycleController());
1009 tooltip_controller_
.reset(new views::corewm::TooltipController(
1010 scoped_ptr
<views::corewm::Tooltip
>(new views::corewm::TooltipAura
)));
1011 AddPreTargetHandler(tooltip_controller_
.get());
1013 event_client_
.reset(new EventClientImpl
);
1015 // This controller needs to be set before SetupManagedWindowMode.
1016 desktop_background_controller_
.reset(new DesktopBackgroundController());
1017 user_wallpaper_delegate_
.reset(delegate_
->CreateUserWallpaperDelegate());
1019 session_state_delegate_
.reset(delegate_
->CreateSessionStateDelegate());
1020 accessibility_delegate_
.reset(delegate_
->CreateAccessibilityDelegate());
1021 new_window_delegate_
.reset(delegate_
->CreateNewWindowDelegate());
1022 media_delegate_
.reset(delegate_
->CreateMediaDelegate());
1024 resize_shadow_controller_
.reset(new ResizeShadowController());
1025 shadow_controller_
.reset(
1026 new ::wm::ShadowController(activation_client_
));
1028 // Create system_tray_notifier_ before the delegate.
1029 system_tray_notifier_
.reset(new ash::SystemTrayNotifier());
1031 // Initialize system_tray_delegate_ before initializing StatusAreaWidget.
1032 system_tray_delegate_
.reset(delegate()->CreateSystemTrayDelegate());
1033 DCHECK(system_tray_delegate_
.get());
1035 locale_notification_controller_
.reset(new LocaleNotificationController
);
1037 // Initialize system_tray_delegate_ after StatusAreaWidget is created.
1038 system_tray_delegate_
->Initialize();
1040 #if defined(OS_CHROMEOS)
1041 // Create the LogoutConfirmationController after the SystemTrayDelegate.
1042 logout_confirmation_controller_
.reset(new LogoutConfirmationController(
1043 base::Bind(&SystemTrayDelegate::SignOut
,
1044 base::Unretained(system_tray_delegate_
.get()))));
1046 // Create TouchTransformerController before
1047 // WindowTreeHostManager::InitDisplays()
1048 // since TouchTransformerController listens on
1049 // WindowTreeHostManager::Observer::OnDisplaysInitialized().
1050 touch_transformer_controller_
.reset(new TouchTransformerController());
1051 #endif // defined(OS_CHROMEOS)
1053 window_tree_host_manager_
->InitHosts();
1055 #if defined(OS_CHROMEOS)
1056 // Needs to be created after InitDisplays() since it may cause the virtual
1057 // keyboard to be deployed.
1058 virtual_keyboard_controller_
.reset(new VirtualKeyboardController
);
1059 #endif // defined(OS_CHROMEOS)
1061 // It needs to be created after RootWindowController has been created
1062 // (which calls OnWindowResized has been called, otherwise the
1063 // widget will not paint when restoring after a browser crash. Also it needs
1064 // to be created after InitSecondaryDisplays() to initialize the wallpapers in
1065 // the correct size.
1066 user_wallpaper_delegate_
->InitializeWallpaper();
1068 if (initially_hide_cursor_
)
1069 cursor_manager_
.HideCursor();
1070 cursor_manager_
.SetCursor(ui::kCursorPointer
);
1072 #if defined(OS_CHROMEOS)
1073 // Set accelerator controller delegates.
1074 accelerator_controller_
->SetBrightnessControlDelegate(
1075 scoped_ptr
<ash::BrightnessControlDelegate
>(
1076 new ash::system::BrightnessControllerChromeos
).Pass());
1078 power_event_observer_
.reset(new PowerEventObserver());
1079 user_activity_notifier_
.reset(
1080 new ui::UserActivityPowerManagerNotifier(user_activity_detector_
.get()));
1081 video_activity_notifier_
.reset(
1082 new VideoActivityNotifier(video_detector_
.get()));
1083 bluetooth_notification_controller_
.reset(new BluetoothNotificationController
);
1084 last_window_closed_logout_reminder_
.reset(new LastWindowClosedLogoutReminder
);
1085 screen_orientation_controller_
.reset(new ScreenOrientationController());
1087 // The compositor thread and main message loop have to be running in
1088 // order to create mirror window. Run it after the main message loop
1090 display_manager_
->CreateMirrorWindowAsyncIfAny();
1092 user_metrics_recorder_
->OnShellInitialized();
1095 void Shell::InitKeyboard() {
1096 if (keyboard::IsKeyboardEnabled()) {
1097 if (keyboard::KeyboardController::GetInstance()) {
1098 RootWindowControllerList controllers
= GetAllRootWindowControllers();
1099 for (RootWindowControllerList::iterator iter
= controllers
.begin();
1100 iter
!= controllers
.end(); ++iter
) {
1101 (*iter
)->DeactivateKeyboard(
1102 keyboard::KeyboardController::GetInstance());
1105 keyboard::KeyboardControllerProxy
* proxy
=
1106 delegate_
->CreateKeyboardControllerProxy();
1107 keyboard::KeyboardController::ResetInstance(
1108 new keyboard::KeyboardController(proxy
));
1112 void Shell::InitRootWindow(aura::Window
* root_window
) {
1113 DCHECK(activation_client_
);
1114 DCHECK(visibility_controller_
.get());
1115 DCHECK(drag_drop_controller_
.get());
1117 aura::client::SetFocusClient(root_window
, focus_client_
.get());
1118 aura::client::SetActivationClient(root_window
, activation_client_
);
1119 ::wm::FocusController
* focus_controller
=
1120 static_cast< ::wm::FocusController
*>(activation_client_
);
1121 root_window
->AddPreTargetHandler(focus_controller
);
1122 aura::client::SetVisibilityClient(root_window
, visibility_controller_
.get());
1123 aura::client::SetDragDropClient(root_window
, drag_drop_controller_
.get());
1124 aura::client::SetScreenPositionClient(root_window
,
1125 screen_position_controller_
.get());
1126 aura::client::SetCursorClient(root_window
, &cursor_manager_
);
1127 aura::client::SetTooltipClient(root_window
, tooltip_controller_
.get());
1128 aura::client::SetEventClient(root_window
, event_client_
.get());
1130 aura::client::SetWindowMoveClient(root_window
,
1131 toplevel_window_event_handler_
.get());
1132 root_window
->AddPreTargetHandler(toplevel_window_event_handler_
.get());
1133 root_window
->AddPostTargetHandler(toplevel_window_event_handler_
.get());
1135 if (nested_accelerator_controller_
) {
1136 aura::client::SetDispatcherClient(root_window
,
1137 nested_accelerator_controller_
.get());
1141 bool Shell::CanWindowReceiveEvents(aura::Window
* window
) {
1142 RootWindowControllerList controllers
= GetAllRootWindowControllers();
1143 for (RootWindowControllerList::iterator iter
= controllers
.begin();
1144 iter
!= controllers
.end(); ++iter
) {
1145 SystemModalContainerLayoutManager
* layout_manager
=
1146 (*iter
)->GetSystemModalLayoutManager(window
);
1147 if (layout_manager
&& layout_manager
->CanWindowReceiveEvents(window
))
1149 // Allow events to fall through to the virtual keyboard even if displaying
1150 // a system modal dialog.
1151 if ((*iter
)->IsVirtualKeyboardWindow(window
))
1158 ////////////////////////////////////////////////////////////////////////////////
1159 // Shell, ui::EventTarget overrides:
1161 bool Shell::CanAcceptEvent(const ui::Event
& event
) {
1165 ui::EventTarget
* Shell::GetParentTarget() {
1166 return aura::Env::GetInstance();
1169 scoped_ptr
<ui::EventTargetIterator
> Shell::GetChildIterator() const {
1170 return scoped_ptr
<ui::EventTargetIterator
>();
1173 ui::EventTargeter
* Shell::GetEventTargeter() {
1178 void Shell::OnEvent(ui::Event
* event
) {
1181 ////////////////////////////////////////////////////////////////////////////////
1182 // Shell, aura::client::ActivationChangeObserver implementation:
1184 void Shell::OnWindowActivated(
1185 aura::client::ActivationChangeObserver::ActivationReason reason
,
1186 aura::Window
* gained_active
,
1187 aura::Window
* lost_active
) {
1189 target_root_window_
= gained_active
->GetRootWindow();