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.
5 #include "ash/root_window_controller.h"
10 #include "ash/ash_constants.h"
11 #include "ash/ash_switches.h"
12 #include "ash/desktop_background/desktop_background_controller.h"
13 #include "ash/desktop_background/desktop_background_widget_controller.h"
14 #include "ash/desktop_background/user_wallpaper_delegate.h"
15 #include "ash/display/display_manager.h"
16 #include "ash/focus_cycler.h"
17 #include "ash/high_contrast/high_contrast_controller.h"
18 #include "ash/host/ash_window_tree_host.h"
19 #include "ash/root_window_settings.h"
20 #include "ash/session/session_state_delegate.h"
21 #include "ash/shelf/shelf_layout_manager.h"
22 #include "ash/shelf/shelf_types.h"
23 #include "ash/shelf/shelf_widget.h"
24 #include "ash/shell.h"
25 #include "ash/shell_delegate.h"
26 #include "ash/shell_factory.h"
27 #include "ash/shell_window_ids.h"
28 #include "ash/switchable_windows.h"
29 #include "ash/system/status_area_widget.h"
30 #include "ash/system/tray/system_tray_delegate.h"
31 #include "ash/system/tray/system_tray_notifier.h"
32 #include "ash/touch/touch_hud_debug.h"
33 #include "ash/touch/touch_hud_projection.h"
34 #include "ash/touch/touch_observer_hud.h"
35 #include "ash/wm/always_on_top_controller.h"
36 #include "ash/wm/dock/docked_window_layout_manager.h"
37 #include "ash/wm/lock_layout_manager.h"
38 #include "ash/wm/panels/attached_panel_window_targeter.h"
39 #include "ash/wm/panels/panel_layout_manager.h"
40 #include "ash/wm/panels/panel_window_event_handler.h"
41 #include "ash/wm/root_window_layout_manager.h"
42 #include "ash/wm/screen_dimmer.h"
43 #include "ash/wm/stacking_controller.h"
44 #include "ash/wm/status_area_layout_manager.h"
45 #include "ash/wm/system_background_controller.h"
46 #include "ash/wm/system_modal_container_layout_manager.h"
47 #include "ash/wm/window_properties.h"
48 #include "ash/wm/window_state.h"
49 #include "ash/wm/window_util.h"
50 #include "ash/wm/workspace/workspace_layout_manager.h"
51 #include "ash/wm/workspace_controller.h"
52 #include "base/command_line.h"
53 #include "base/time/time.h"
54 #include "ui/aura/client/aura_constants.h"
55 #include "ui/aura/client/screen_position_client.h"
56 #include "ui/aura/window.h"
57 #include "ui/aura/window_delegate.h"
58 #include "ui/aura/window_event_dispatcher.h"
59 #include "ui/aura/window_observer.h"
60 #include "ui/aura/window_tracker.h"
61 #include "ui/base/hit_test.h"
62 #include "ui/base/models/menu_model.h"
63 #include "ui/gfx/display.h"
64 #include "ui/gfx/screen.h"
65 #include "ui/keyboard/keyboard_controller.h"
66 #include "ui/keyboard/keyboard_util.h"
67 #include "ui/views/controls/menu/menu_runner.h"
68 #include "ui/views/view_model.h"
69 #include "ui/views/view_model_utils.h"
70 #include "ui/wm/core/capture_controller.h"
71 #include "ui/wm/core/easy_resize_window_targeter.h"
72 #include "ui/wm/core/visibility_controller.h"
73 #include "ui/wm/core/window_util.h"
74 #include "ui/wm/public/drag_drop_client.h"
75 #include "ui/wm/public/tooltip_client.h"
76 #include "ui/wm/public/window_types.h"
78 #if defined(OS_CHROMEOS)
79 #include "ash/ash_touch_exploration_manager_chromeos.h"
80 #include "ash/wm/boot_splash_screen_chromeos.h"
81 #include "ui/chromeos/touch_exploration_controller.h"
87 #if defined(OS_CHROMEOS)
88 // Duration for the animation that hides the boot splash screen, in
89 // milliseconds. This should be short enough in relation to
90 // wm/window_animation.cc's brightness/grayscale fade animation that the login
91 // background image animation isn't hidden by the splash screen animation.
92 const int kBootSplashScreenHideDurationMs
= 500;
95 // Creates a new window for use as a container.
96 aura::Window
* CreateContainer(int window_id
,
98 aura::Window
* parent
) {
99 aura::Window
* container
= new aura::Window(NULL
);
100 container
->set_id(window_id
);
101 container
->SetName(name
);
102 container
->Init(aura::WINDOW_LAYER_NOT_DRAWN
);
103 parent
->AddChild(container
);
104 if (window_id
!= kShellWindowId_UnparentedControlContainer
)
109 float ToRelativeValue(int value
, int src
, int dst
) {
110 return static_cast<float>(value
) / static_cast<float>(src
) * dst
;
113 void MoveOriginRelativeToSize(const gfx::Size
& src_size
,
114 const gfx::Size
& dst_size
,
115 gfx::Rect
* bounds_in_out
) {
116 gfx::Point origin
= bounds_in_out
->origin();
117 bounds_in_out
->set_origin(gfx::Point(
118 ToRelativeValue(origin
.x(), src_size
.width(), dst_size
.width()),
119 ToRelativeValue(origin
.y(), src_size
.height(), dst_size
.height())));
122 // Reparents |window| to |new_parent|.
123 void ReparentWindow(aura::Window
* window
, aura::Window
* new_parent
) {
124 const gfx::Size src_size
= window
->parent()->bounds().size();
125 const gfx::Size dst_size
= new_parent
->bounds().size();
126 // Update the restore bounds to make it relative to the display.
127 wm::WindowState
* state
= wm::GetWindowState(window
);
128 gfx::Rect restore_bounds
;
129 bool has_restore_bounds
= state
->HasRestoreBounds();
131 bool update_bounds
= (state
->IsNormalOrSnapped() || state
->IsMinimized()) &&
132 new_parent
->id() != kShellWindowId_DockedContainer
;
133 gfx::Rect local_bounds
;
135 local_bounds
= state
->window()->bounds();
136 MoveOriginRelativeToSize(src_size
, dst_size
, &local_bounds
);
139 if (has_restore_bounds
) {
140 restore_bounds
= state
->GetRestoreBoundsInParent();
141 MoveOriginRelativeToSize(src_size
, dst_size
, &restore_bounds
);
144 new_parent
->AddChild(window
);
146 // Docked windows have bounds handled by the layout manager in AddChild().
148 window
->SetBounds(local_bounds
);
150 if (has_restore_bounds
)
151 state
->SetRestoreBoundsInParent(restore_bounds
);
154 // Reparents the appropriate set of windows from |src| to |dst|.
155 void ReparentAllWindows(aura::Window
* src
, aura::Window
* dst
) {
156 // Set of windows to move.
157 const int kContainerIdsToMove
[] = {
158 kShellWindowId_DefaultContainer
,
159 kShellWindowId_DockedContainer
,
160 kShellWindowId_PanelContainer
,
161 kShellWindowId_AlwaysOnTopContainer
,
162 kShellWindowId_SystemModalContainer
,
163 kShellWindowId_LockSystemModalContainer
,
164 kShellWindowId_UnparentedControlContainer
, };
165 for (size_t i
= 0; i
< arraysize(kContainerIdsToMove
); i
++) {
166 int id
= kContainerIdsToMove
[i
];
167 aura::Window
* src_container
= Shell::GetContainer(src
, id
);
168 aura::Window
* dst_container
= Shell::GetContainer(dst
, id
);
169 while (!src_container
->children().empty()) {
170 // Restart iteration from the source container windows each time as they
171 // may change as a result of moving other windows.
172 aura::Window::Windows::const_iterator iter
=
173 src_container
->children().begin();
174 while (iter
!= src_container
->children().end() &&
175 SystemModalContainerLayoutManager::IsModalBackground(*iter
)) {
178 // If the entire window list is modal background windows then stop.
179 if (iter
== src_container
->children().end())
181 ReparentWindow(*iter
, dst_container
);
186 // Mark the container window so that a widget added to this container will
187 // use the virtual screeen coordinates instead of parent.
188 void SetUsesScreenCoordinates(aura::Window
* container
) {
189 container
->SetProperty(kUsesScreenCoordinatesKey
, true);
192 // Mark the container window so that a widget added to this container will
193 // say in the same root window regardless of the bounds specified.
194 void DescendantShouldStayInSameRootWindow(aura::Window
* container
) {
195 container
->SetProperty(kStayInSameRootWindowKey
, true);
198 void SetUsesEasyResizeTargeter(aura::Window
* container
) {
199 gfx::Insets
mouse_extend(-kResizeOutsideBoundsSize
,
200 -kResizeOutsideBoundsSize
,
201 -kResizeOutsideBoundsSize
,
202 -kResizeOutsideBoundsSize
);
203 gfx::Insets touch_extend
= mouse_extend
.Scale(
204 kResizeOutsideBoundsScaleForTouch
);
205 container
->SetEventTargeter(scoped_ptr
<ui::EventTargeter
>(
206 new ::wm::EasyResizeWindowTargeter(container
, mouse_extend
,
210 // A window delegate which does nothing. Used to create a window that
211 // is a event target, but do nothing.
212 class EmptyWindowDelegate
: public aura::WindowDelegate
{
214 EmptyWindowDelegate() {}
215 virtual ~EmptyWindowDelegate() {}
217 // aura::WindowDelegate overrides:
218 virtual gfx::Size
GetMinimumSize() const OVERRIDE
{
221 virtual gfx::Size
GetMaximumSize() const OVERRIDE
{
224 virtual void OnBoundsChanged(const gfx::Rect
& old_bounds
,
225 const gfx::Rect
& new_bounds
) OVERRIDE
{
227 virtual gfx::NativeCursor
GetCursor(const gfx::Point
& point
) OVERRIDE
{
228 return gfx::kNullCursor
;
230 virtual int GetNonClientComponent(
231 const gfx::Point
& point
) const OVERRIDE
{
234 virtual bool ShouldDescendIntoChildForEventHandling(
236 const gfx::Point
& location
) OVERRIDE
{
239 virtual bool CanFocus() OVERRIDE
{
242 virtual void OnCaptureLost() OVERRIDE
{
244 virtual void OnPaint(gfx::Canvas
* canvas
) OVERRIDE
{
246 virtual void OnDeviceScaleFactorChanged(
247 float device_scale_factor
) OVERRIDE
{
249 virtual void OnWindowDestroying(aura::Window
* window
) OVERRIDE
{}
250 virtual void OnWindowDestroyed(aura::Window
* window
) OVERRIDE
{
253 virtual void OnWindowTargetVisibilityChanged(bool visible
) OVERRIDE
{
255 virtual bool HasHitTestMask() const OVERRIDE
{
258 virtual void GetHitTestMask(gfx::Path
* mask
) const OVERRIDE
{}
261 DISALLOW_COPY_AND_ASSIGN(EmptyWindowDelegate
);
266 void RootWindowController::CreateForPrimaryDisplay(AshWindowTreeHost
* host
) {
267 RootWindowController
* controller
= new RootWindowController(host
);
268 controller
->Init(RootWindowController::PRIMARY
,
269 Shell::GetInstance()->delegate()->IsFirstRunAfterBoot());
272 void RootWindowController::CreateForSecondaryDisplay(AshWindowTreeHost
* host
) {
273 RootWindowController
* controller
= new RootWindowController(host
);
274 controller
->Init(RootWindowController::SECONDARY
, false /* first run */);
277 void RootWindowController::CreateForVirtualKeyboardDisplay(
278 AshWindowTreeHost
* host
) {
279 RootWindowController
* controller
= new RootWindowController(host
);
280 controller
->Init(RootWindowController::VIRTUAL_KEYBOARD
,
281 false /* first run */);
285 RootWindowController
* RootWindowController::ForShelf(
286 const aura::Window
* window
) {
287 CHECK(Shell::HasInstance());
288 return GetRootWindowController(window
->GetRootWindow());
292 RootWindowController
* RootWindowController::ForWindow(
293 const aura::Window
* window
) {
294 CHECK(Shell::HasInstance());
295 return GetRootWindowController(window
->GetRootWindow());
299 RootWindowController
* RootWindowController::ForTargetRootWindow() {
300 CHECK(Shell::HasInstance());
301 return GetRootWindowController(Shell::GetTargetRootWindow());
305 aura::Window
* RootWindowController::GetContainerForWindow(
306 aura::Window
* window
) {
307 aura::Window
* container
= window
->parent();
308 while (container
&& container
->type() != ui::wm::WINDOW_TYPE_UNKNOWN
)
309 container
= container
->parent();
313 RootWindowController::~RootWindowController() {
316 // The CaptureClient needs to be around for as long as the RootWindow is
318 capture_client_
.reset();
321 aura::WindowTreeHost
* RootWindowController::GetHost() {
322 return ash_host_
->AsWindowTreeHost();
325 const aura::WindowTreeHost
* RootWindowController::GetHost() const {
326 return ash_host_
->AsWindowTreeHost();
329 aura::Window
* RootWindowController::GetRootWindow() {
330 return GetHost()->window();
333 const aura::Window
* RootWindowController::GetRootWindow() const {
334 return GetHost()->window();
337 void RootWindowController::SetWallpaperController(
338 DesktopBackgroundWidgetController
* controller
) {
339 wallpaper_controller_
.reset(controller
);
342 void RootWindowController::SetAnimatingWallpaperController(
343 AnimatingDesktopController
* controller
) {
344 if (animating_wallpaper_controller_
.get())
345 animating_wallpaper_controller_
->StopAnimating();
346 animating_wallpaper_controller_
.reset(controller
);
349 void RootWindowController::Shutdown() {
350 Shell
* shell
= Shell::GetInstance();
351 shell
->RemoveShellObserver(this);
353 #if defined(OS_CHROMEOS)
354 if (touch_exploration_manager_
) {
355 touch_exploration_manager_
.reset();
359 if (animating_wallpaper_controller_
.get())
360 animating_wallpaper_controller_
->StopAnimating();
361 wallpaper_controller_
.reset();
362 animating_wallpaper_controller_
.reset();
363 aura::Window
* root_window
= GetRootWindow();
364 // Change the target root window before closing child windows. If any child
365 // being removed triggers a relayout of the shelf it will try to build a
366 // window list adding windows from the target root window's containers which
367 // may have already gone away.
368 if (Shell::GetTargetRootWindow() == root_window
) {
369 shell
->set_target_root_window(
370 Shell::GetPrimaryRootWindow() == root_window
372 : Shell::GetPrimaryRootWindow());
376 GetRootWindowSettings(root_window
)->controller
= NULL
;
377 screen_dimmer_
.reset();
378 workspace_controller_
.reset();
379 // Forget with the display ID so that display lookup
380 // ends up with invalid display.
381 GetRootWindowSettings(root_window
)->display_id
=
382 gfx::Display::kInvalidDisplayID
;
383 ash_host_
->PrepareForShutdown();
385 system_background_
.reset();
386 aura::client::SetScreenPositionClient(root_window
, NULL
);
389 SystemModalContainerLayoutManager
*
390 RootWindowController::GetSystemModalLayoutManager(aura::Window
* window
) {
391 aura::Window
* modal_container
= NULL
;
393 aura::Window
* window_container
= GetContainerForWindow(window
);
394 if (window_container
&&
395 window_container
->id() >= kShellWindowId_LockScreenContainer
) {
396 modal_container
= GetContainer(kShellWindowId_LockSystemModalContainer
);
398 modal_container
= GetContainer(kShellWindowId_SystemModalContainer
);
401 int modal_window_id
= Shell::GetInstance()->session_state_delegate()
402 ->IsUserSessionBlocked() ? kShellWindowId_LockSystemModalContainer
:
403 kShellWindowId_SystemModalContainer
;
404 modal_container
= GetContainer(modal_window_id
);
406 return modal_container
? static_cast<SystemModalContainerLayoutManager
*>(
407 modal_container
->layout_manager()) : NULL
;
410 aura::Window
* RootWindowController::GetContainer(int container_id
) {
411 return GetRootWindow()->GetChildById(container_id
);
414 const aura::Window
* RootWindowController::GetContainer(int container_id
) const {
415 return ash_host_
->AsWindowTreeHost()->window()->GetChildById(container_id
);
418 void RootWindowController::ShowShelf() {
419 if (!shelf_
->shelf())
421 shelf_
->shelf()->SetVisible(true);
422 shelf_
->status_area_widget()->Show();
425 void RootWindowController::OnShelfCreated() {
426 if (panel_layout_manager_
)
427 panel_layout_manager_
->SetShelf(shelf_
->shelf());
428 if (docked_layout_manager_
) {
429 docked_layout_manager_
->SetShelf(shelf_
->shelf());
430 if (shelf_
->shelf_layout_manager())
431 docked_layout_manager_
->AddObserver(shelf_
->shelf_layout_manager());
434 // Notify shell observers that the shelf has been created.
435 Shell::GetInstance()->OnShelfCreatedForRootWindow(GetRootWindow());
438 void RootWindowController::UpdateAfterLoginStatusChange(
439 user::LoginStatus status
) {
440 if (status
!= user::LOGGED_IN_NONE
)
441 mouse_event_target_
.reset();
442 if (shelf_
->status_area_widget())
443 shelf_
->status_area_widget()->UpdateAfterLoginStatusChange(status
);
446 void RootWindowController::HandleInitialDesktopBackgroundAnimationStarted() {
447 #if defined(OS_CHROMEOS)
448 if (CommandLine::ForCurrentProcess()->HasSwitch(
449 switches::kAshAnimateFromBootSplashScreen
) &&
450 boot_splash_screen_
.get()) {
451 // Make the splash screen fade out so it doesn't obscure the desktop
452 // wallpaper's brightness/grayscale animation.
453 boot_splash_screen_
->StartHideAnimation(
454 base::TimeDelta::FromMilliseconds(kBootSplashScreenHideDurationMs
));
459 void RootWindowController::OnWallpaperAnimationFinished(views::Widget
* widget
) {
460 // Make sure the wallpaper is visible.
461 system_background_
->SetColor(SK_ColorBLACK
);
462 #if defined(OS_CHROMEOS)
463 boot_splash_screen_
.reset();
466 Shell::GetInstance()->user_wallpaper_delegate()->
467 OnWallpaperAnimationFinished();
468 // Only removes old component when wallpaper animation finished. If we
469 // remove the old one before the new wallpaper is done fading in there will
470 // be a white flash during the animation.
471 if (animating_wallpaper_controller()) {
472 DesktopBackgroundWidgetController
* controller
=
473 animating_wallpaper_controller()->GetController(true);
474 // |desktop_widget_| should be the same animating widget we try to move
475 // to |kDesktopController|. Otherwise, we may close |desktop_widget_|
476 // before move it to |kDesktopController|.
477 DCHECK_EQ(controller
->widget(), widget
);
478 // Release the old controller and close its background widget.
479 SetWallpaperController(controller
);
483 void RootWindowController::CloseChildWindows() {
484 mouse_event_target_
.reset();
486 // Remove observer as deactivating keyboard causes |docked_layout_manager_|
487 // to fire notifications.
488 if (docked_layout_manager_
&& shelf_
&& shelf_
->shelf_layout_manager())
489 docked_layout_manager_
->RemoveObserver(shelf_
->shelf_layout_manager());
491 // Deactivate keyboard container before closing child windows and shutting
492 // down associated layout managers.
493 DeactivateKeyboard(keyboard::KeyboardController::GetInstance());
495 // panel_layout_manager_ needs to be shut down before windows are destroyed.
496 if (panel_layout_manager_
) {
497 panel_layout_manager_
->Shutdown();
498 panel_layout_manager_
= NULL
;
500 // docked_layout_manager_ needs to be shut down before windows are destroyed.
501 if (docked_layout_manager_
) {
502 docked_layout_manager_
->Shutdown();
503 docked_layout_manager_
= NULL
;
505 aura::Window
* root_window
= GetRootWindow();
506 aura::client::SetDragDropClient(root_window
, NULL
);
508 // TODO(harrym): Remove when Status Area Widget is a child view.
510 shelf_
->ShutdownStatusAreaWidget();
512 if (shelf_
->shelf_layout_manager())
513 shelf_
->shelf_layout_manager()->PrepareForShutdown();
516 // Close background widget first as it depends on tooltip.
517 wallpaper_controller_
.reset();
518 animating_wallpaper_controller_
.reset();
520 workspace_controller_
.reset();
521 aura::client::SetTooltipClient(root_window
, NULL
);
523 // Explicitly destroy top level windows. We do this as during part of
524 // destruction such windows may query the RootWindow for state.
525 std::queue
<aura::Window
*> non_toplevel_windows
;
526 non_toplevel_windows
.push(root_window
);
527 while (!non_toplevel_windows
.empty()) {
528 aura::Window
* non_toplevel_window
= non_toplevel_windows
.front();
529 non_toplevel_windows
.pop();
530 aura::WindowTracker toplevel_windows
;
531 for (size_t i
= 0; i
< non_toplevel_window
->children().size(); ++i
) {
532 aura::Window
* child
= non_toplevel_window
->children()[i
];
533 if (!child
->owned_by_parent())
535 if (child
->delegate())
536 toplevel_windows
.Add(child
);
538 non_toplevel_windows
.push(child
);
540 while (!toplevel_windows
.windows().empty())
541 delete *toplevel_windows
.windows().begin();
543 // And then remove the containers.
544 while (!root_window
->children().empty()) {
545 aura::Window
* window
= root_window
->children()[0];
546 if (window
->owned_by_parent()) {
549 root_window
->RemoveChild(window
);
556 void RootWindowController::MoveWindowsTo(aura::Window
* dst
) {
557 // Forget the shelf early so that shelf don't update itself using wrong
559 workspace_controller_
->SetShelf(NULL
);
560 ReparentAllWindows(GetRootWindow(), dst
);
563 ShelfLayoutManager
* RootWindowController::GetShelfLayoutManager() {
564 return shelf_
->shelf_layout_manager();
567 SystemTray
* RootWindowController::GetSystemTray() {
568 // We assume in throughout the code that this will not return NULL. If code
569 // triggers this for valid reasons, it should test status_area_widget first.
570 CHECK(shelf_
->status_area_widget());
571 return shelf_
->status_area_widget()->system_tray();
574 void RootWindowController::ShowContextMenu(const gfx::Point
& location_in_screen
,
575 ui::MenuSourceType source_type
) {
576 DCHECK(Shell::GetInstance()->delegate());
577 scoped_ptr
<ui::MenuModel
> menu_model(
578 Shell::GetInstance()->delegate()->CreateContextMenu(
579 GetRootWindow(), NULL
, NULL
));
583 // Background controller may not be set yet if user clicked on status are
584 // before initial animation completion. See crbug.com/222218
585 if (!wallpaper_controller_
.get())
588 views::MenuRunner
menu_runner(menu_model
.get(),
589 views::MenuRunner::CONTEXT_MENU
);
590 if (menu_runner
.RunMenuAt(wallpaper_controller_
->widget(),
592 gfx::Rect(location_in_screen
, gfx::Size()),
593 views::MENU_ANCHOR_TOPLEFT
,
594 source_type
) == views::MenuRunner::MENU_DELETED
) {
598 Shell::GetInstance()->UpdateShelfVisibility();
601 void RootWindowController::UpdateShelfVisibility() {
602 shelf_
->shelf_layout_manager()->UpdateVisibilityState();
605 const aura::Window
* RootWindowController::GetWindowForFullscreenMode() const {
606 const aura::Window
* topmost_window
= NULL
;
607 const aura::Window
* active_window
= wm::GetActiveWindow();
608 if (active_window
&& active_window
->GetRootWindow() == GetRootWindow() &&
609 IsSwitchableContainer(active_window
->parent())) {
610 // Use the active window when it is on the current root window to determine
611 // the fullscreen state to allow temporarily using a panel or docked window
612 // (which are always above the default container) while a fullscreen
613 // window is open. We only use the active window when in a switchable
614 // container as the launcher should not exit fullscreen mode.
615 topmost_window
= active_window
;
617 // Otherwise, use the topmost window on the root window's default container
618 // when there is no active window on this root window.
619 const aura::Window::Windows
& windows
=
620 GetContainer(kShellWindowId_DefaultContainer
)->children();
621 for (aura::Window::Windows::const_reverse_iterator iter
= windows
.rbegin();
622 iter
!= windows
.rend(); ++iter
) {
623 if (((*iter
)->type() == ui::wm::WINDOW_TYPE_NORMAL
||
624 (*iter
)->type() == ui::wm::WINDOW_TYPE_PANEL
) &&
625 (*iter
)->layer()->GetTargetVisibility()) {
626 topmost_window
= *iter
;
631 while (topmost_window
) {
632 if (wm::GetWindowState(topmost_window
)->IsFullscreen())
633 return topmost_window
;
634 topmost_window
= ::wm::GetTransientParent(topmost_window
);
639 void RootWindowController::ActivateKeyboard(
640 keyboard::KeyboardController
* keyboard_controller
) {
641 if (!keyboard::IsKeyboardEnabled() ||
642 GetContainer(kShellWindowId_VirtualKeyboardContainer
)) {
645 DCHECK(keyboard_controller
);
646 keyboard_controller
->AddObserver(shelf()->shelf_layout_manager());
647 keyboard_controller
->AddObserver(panel_layout_manager_
);
648 keyboard_controller
->AddObserver(docked_layout_manager_
);
649 keyboard_controller
->AddObserver(workspace_controller_
->layout_manager());
650 Shell::GetInstance()->delegate()->VirtualKeyboardActivated(true);
651 aura::Window
* parent
= GetContainer(
652 kShellWindowId_VirtualKeyboardParentContainer
);
654 aura::Window
* keyboard_container
=
655 keyboard_controller
->GetContainerWindow();
656 keyboard_container
->set_id(kShellWindowId_VirtualKeyboardContainer
);
657 parent
->AddChild(keyboard_container
);
658 // TODO(oshima): Bounds of keyboard container should be handled by
659 // RootWindowLayoutManager. Remove this after fixed RootWindowLayoutManager.
660 keyboard_container
->SetBounds(parent
->bounds());
663 void RootWindowController::DeactivateKeyboard(
664 keyboard::KeyboardController
* keyboard_controller
) {
665 if (!keyboard_controller
||
666 !keyboard_controller
->keyboard_container_initialized()) {
669 aura::Window
* keyboard_container
=
670 keyboard_controller
->GetContainerWindow();
671 if (keyboard_container
->GetRootWindow() == GetRootWindow()) {
672 aura::Window
* parent
= GetContainer(
673 kShellWindowId_VirtualKeyboardParentContainer
);
675 parent
->RemoveChild(keyboard_container
);
676 // Virtual keyboard may be deactivated while still showing, notify all
677 // observers that keyboard bounds changed to 0 before remove them.
678 keyboard_controller
->NotifyKeyboardBoundsChanging(gfx::Rect());
679 keyboard_controller
->RemoveObserver(shelf()->shelf_layout_manager());
680 keyboard_controller
->RemoveObserver(panel_layout_manager_
);
681 keyboard_controller
->RemoveObserver(docked_layout_manager_
);
682 keyboard_controller
->RemoveObserver(
683 workspace_controller_
->layout_manager());
684 Shell::GetInstance()->delegate()->VirtualKeyboardActivated(false);
688 bool RootWindowController::IsVirtualKeyboardWindow(aura::Window
* window
) {
689 aura::Window
* parent
= GetContainer(
690 kShellWindowId_VirtualKeyboardParentContainer
);
691 return parent
? parent
->Contains(window
) : false;
694 ////////////////////////////////////////////////////////////////////////////////
695 // RootWindowController, private:
697 RootWindowController::RootWindowController(AshWindowTreeHost
* ash_host
)
698 : ash_host_(ash_host
),
699 root_window_layout_(NULL
),
700 docked_layout_manager_(NULL
),
701 panel_layout_manager_(NULL
),
702 touch_hud_debug_(NULL
),
703 touch_hud_projection_(NULL
) {
704 aura::Window
* root_window
= GetRootWindow();
705 GetRootWindowSettings(root_window
)->controller
= this;
706 screen_dimmer_
.reset(new ScreenDimmer(root_window
));
708 stacking_controller_
.reset(new StackingController
);
709 aura::client::SetWindowTreeClient(root_window
, stacking_controller_
.get());
710 capture_client_
.reset(new ::wm::ScopedCaptureClient(root_window
));
713 void RootWindowController::Init(RootWindowType root_window_type
,
714 bool first_run_after_boot
) {
715 aura::Window
* root_window
= GetRootWindow();
716 Shell
* shell
= Shell::GetInstance();
717 shell
->InitRootWindow(root_window
);
719 ash_host_
->AsWindowTreeHost()->SetCursor(ui::kCursorPointer
);
720 CreateContainersInRootWindow(root_window
);
722 if (root_window_type
== VIRTUAL_KEYBOARD
) {
723 aura::Window
* virtual_keyboard_parent_container
= GetContainer(
724 kShellWindowId_VirtualKeyboardParentContainer
);
725 virtual_keyboard_parent_container
->SetBounds(root_window
->bounds());
726 shell
->InitKeyboard();
730 CreateSystemBackground(first_run_after_boot
);
732 InitLayoutManagers();
735 if (Shell::GetPrimaryRootWindowController()->
736 GetSystemModalLayoutManager(NULL
)->has_modal_background()) {
737 GetSystemModalLayoutManager(NULL
)->CreateModalBackground();
740 shell
->AddShellObserver(this);
742 if (root_window_type
== PRIMARY
) {
743 root_window_layout()->OnWindowResized();
744 shell
->InitKeyboard();
746 root_window_layout()->OnWindowResized();
747 ash_host_
->AsWindowTreeHost()->Show();
749 // Create a shelf if a user is already logged in.
750 if (shell
->session_state_delegate()->NumberOfLoggedInUsers())
751 shelf()->CreateShelf();
753 // Notify shell observers about new root window.
754 shell
->OnRootWindowAdded(root_window
);
757 #if defined(OS_CHROMEOS)
758 if (!CommandLine::ForCurrentProcess()->HasSwitch(
759 switches::kAshDisableTouchExplorationMode
)) {
760 touch_exploration_manager_
.reset(new AshTouchExplorationManager(this));
765 void RootWindowController::InitLayoutManagers() {
766 aura::Window
* root_window
= GetRootWindow();
767 root_window_layout_
= new RootWindowLayoutManager(root_window
);
768 root_window
->SetLayoutManager(root_window_layout_
);
770 aura::Window
* default_container
=
771 GetContainer(kShellWindowId_DefaultContainer
);
772 // Workspace manager has its own layout managers.
773 workspace_controller_
.reset(
774 new WorkspaceController(default_container
));
776 aura::Window
* always_on_top_container
=
777 GetContainer(kShellWindowId_AlwaysOnTopContainer
);
778 always_on_top_container
->SetLayoutManager(
779 new WorkspaceLayoutManager(always_on_top_container
));
780 always_on_top_controller_
.reset(new AlwaysOnTopController
);
781 always_on_top_controller_
->SetAlwaysOnTopContainer(always_on_top_container
);
783 DCHECK(!shelf_
.get());
784 aura::Window
* shelf_container
= GetContainer(kShellWindowId_ShelfContainer
);
785 // TODO(harrym): Remove when status area is view.
786 aura::Window
* status_container
= GetContainer(kShellWindowId_StatusContainer
);
787 shelf_
.reset(new ShelfWidget(
788 shelf_container
, status_container
, workspace_controller()));
790 if (!Shell::GetInstance()->session_state_delegate()->
791 IsActiveUserSessionStarted()) {
792 // This window exists only to be a event target on login screen.
793 // It does not have to handle events, nor be visible.
794 mouse_event_target_
.reset(new aura::Window(new EmptyWindowDelegate
));
795 mouse_event_target_
->Init(aura::WINDOW_LAYER_NOT_DRAWN
);
797 aura::Window
* lock_background_container
=
798 GetContainer(kShellWindowId_LockScreenBackgroundContainer
);
799 lock_background_container
->AddChild(mouse_event_target_
.get());
800 mouse_event_target_
->Show();
803 // Create Docked windows layout manager
804 aura::Window
* docked_container
= GetContainer(kShellWindowId_DockedContainer
);
805 docked_layout_manager_
=
806 new DockedWindowLayoutManager(docked_container
, workspace_controller());
807 docked_container
->SetLayoutManager(docked_layout_manager_
);
809 // Installs SnapLayoutManager to containers who set the
810 // |kSnapsChildrenToPhysicalPixelBoundary| property.
811 wm::InstallSnapLayoutManagerToContainers(root_window
);
813 // Create Panel layout manager
814 aura::Window
* panel_container
= GetContainer(kShellWindowId_PanelContainer
);
815 panel_layout_manager_
= new PanelLayoutManager(panel_container
);
816 panel_container
->SetLayoutManager(panel_layout_manager_
);
817 panel_container_handler_
.reset(new PanelWindowEventHandler
);
818 panel_container
->AddPreTargetHandler(panel_container_handler_
.get());
820 // Install an AttachedPanelWindowTargeter on the panel container to make it
821 // easier to correctly target shelf buttons with touch.
822 gfx::Insets
mouse_extend(-kResizeOutsideBoundsSize
,
823 -kResizeOutsideBoundsSize
,
824 -kResizeOutsideBoundsSize
,
825 -kResizeOutsideBoundsSize
);
826 gfx::Insets touch_extend
= mouse_extend
.Scale(
827 kResizeOutsideBoundsScaleForTouch
);
828 panel_container
->SetEventTargeter(scoped_ptr
<ui::EventTargeter
>(
829 new AttachedPanelWindowTargeter(panel_container
,
832 panel_layout_manager_
)));
835 void RootWindowController::InitTouchHuds() {
836 CommandLine
* command_line
= CommandLine::ForCurrentProcess();
837 if (command_line
->HasSwitch(switches::kAshTouchHud
))
838 set_touch_hud_debug(new TouchHudDebug(GetRootWindow()));
839 if (Shell::GetInstance()->is_touch_hud_projection_enabled())
840 EnableTouchHudProjection();
843 void RootWindowController::CreateSystemBackground(
844 bool is_first_run_after_boot
) {
845 SkColor color
= SK_ColorBLACK
;
846 #if defined(OS_CHROMEOS)
847 if (is_first_run_after_boot
)
848 color
= kChromeOsBootColor
;
850 system_background_
.reset(
851 new SystemBackgroundController(GetRootWindow(), color
));
853 #if defined(OS_CHROMEOS)
854 // Make a copy of the system's boot splash screen so we can composite it
855 // onscreen until the desktop background is ready.
856 if (is_first_run_after_boot
&&
857 (CommandLine::ForCurrentProcess()->HasSwitch(
858 switches::kAshCopyHostBackgroundAtBoot
) ||
859 CommandLine::ForCurrentProcess()->HasSwitch(
860 switches::kAshAnimateFromBootSplashScreen
)))
861 boot_splash_screen_
.reset(new BootSplashScreen(GetHost()));
865 void RootWindowController::CreateContainersInRootWindow(
866 aura::Window
* root_window
) {
867 // These containers are just used by PowerButtonController to animate groups
868 // of containers simultaneously without messing up the current transformations
869 // on those containers. These are direct children of the root window; all of
870 // the other containers are their children.
872 // The desktop background container is not part of the lock animation, so it
873 // is not included in those animate groups.
874 // When screen is locked desktop background is moved to lock screen background
875 // container (moved back on unlock). We want to make sure that there's an
876 // opaque layer occluding the non-lock-screen layers.
877 aura::Window
* desktop_background_container
= CreateContainer(
878 kShellWindowId_DesktopBackgroundContainer
,
879 "DesktopBackgroundContainer",
881 ::wm::SetChildWindowVisibilityChangesAnimated(desktop_background_container
);
883 aura::Window
* non_lock_screen_containers
= CreateContainer(
884 kShellWindowId_NonLockScreenContainersContainer
,
885 "NonLockScreenContainersContainer",
888 aura::Window
* lock_background_containers
= CreateContainer(
889 kShellWindowId_LockScreenBackgroundContainer
,
890 "LockScreenBackgroundContainer",
892 ::wm::SetChildWindowVisibilityChangesAnimated(lock_background_containers
);
894 aura::Window
* lock_screen_containers
= CreateContainer(
895 kShellWindowId_LockScreenContainersContainer
,
896 "LockScreenContainersContainer",
898 aura::Window
* lock_screen_related_containers
= CreateContainer(
899 kShellWindowId_LockScreenRelatedContainersContainer
,
900 "LockScreenRelatedContainersContainer",
903 CreateContainer(kShellWindowId_UnparentedControlContainer
,
904 "UnparentedControlContainer",
905 non_lock_screen_containers
);
907 aura::Window
* default_container
= CreateContainer(
908 kShellWindowId_DefaultContainer
,
910 non_lock_screen_containers
);
911 ::wm::SetChildWindowVisibilityChangesAnimated(default_container
);
912 wm::SetSnapsChildrenToPhysicalPixelBoundary(default_container
);
913 SetUsesScreenCoordinates(default_container
);
914 SetUsesEasyResizeTargeter(default_container
);
916 aura::Window
* always_on_top_container
= CreateContainer(
917 kShellWindowId_AlwaysOnTopContainer
,
918 "AlwaysOnTopContainer",
919 non_lock_screen_containers
);
920 ::wm::SetChildWindowVisibilityChangesAnimated(always_on_top_container
);
921 wm::SetSnapsChildrenToPhysicalPixelBoundary(always_on_top_container
);
922 SetUsesScreenCoordinates(always_on_top_container
);
924 aura::Window
* docked_container
= CreateContainer(
925 kShellWindowId_DockedContainer
,
927 non_lock_screen_containers
);
928 ::wm::SetChildWindowVisibilityChangesAnimated(docked_container
);
929 wm::SetSnapsChildrenToPhysicalPixelBoundary(docked_container
);
930 SetUsesScreenCoordinates(docked_container
);
931 SetUsesEasyResizeTargeter(docked_container
);
933 aura::Window
* shelf_container
=
934 CreateContainer(kShellWindowId_ShelfContainer
,
936 non_lock_screen_containers
);
937 wm::SetSnapsChildrenToPhysicalPixelBoundary(shelf_container
);
938 SetUsesScreenCoordinates(shelf_container
);
939 DescendantShouldStayInSameRootWindow(shelf_container
);
941 aura::Window
* panel_container
= CreateContainer(
942 kShellWindowId_PanelContainer
,
944 non_lock_screen_containers
);
945 wm::SetSnapsChildrenToPhysicalPixelBoundary(panel_container
);
946 SetUsesScreenCoordinates(panel_container
);
948 aura::Window
* shelf_bubble_container
=
949 CreateContainer(kShellWindowId_ShelfBubbleContainer
,
950 "ShelfBubbleContainer",
951 non_lock_screen_containers
);
952 wm::SetSnapsChildrenToPhysicalPixelBoundary(shelf_bubble_container
);
953 SetUsesScreenCoordinates(shelf_bubble_container
);
954 DescendantShouldStayInSameRootWindow(shelf_bubble_container
);
956 aura::Window
* app_list_container
=
957 CreateContainer(kShellWindowId_AppListContainer
,
959 non_lock_screen_containers
);
960 wm::SetSnapsChildrenToPhysicalPixelBoundary(app_list_container
);
961 SetUsesScreenCoordinates(app_list_container
);
963 aura::Window
* modal_container
= CreateContainer(
964 kShellWindowId_SystemModalContainer
,
965 "SystemModalContainer",
966 non_lock_screen_containers
);
967 wm::SetSnapsChildrenToPhysicalPixelBoundary(modal_container
);
968 modal_container
->SetLayoutManager(
969 new SystemModalContainerLayoutManager(modal_container
));
970 ::wm::SetChildWindowVisibilityChangesAnimated(modal_container
);
971 SetUsesScreenCoordinates(modal_container
);
972 SetUsesEasyResizeTargeter(modal_container
);
974 // TODO(beng): Figure out if we can make this use
975 // SystemModalContainerEventFilter instead of stops_event_propagation.
976 aura::Window
* lock_container
= CreateContainer(
977 kShellWindowId_LockScreenContainer
,
978 "LockScreenContainer",
979 lock_screen_containers
);
980 wm::SetSnapsChildrenToPhysicalPixelBoundary(lock_container
);
981 if (CommandLine::ForCurrentProcess()->HasSwitch(
982 switches::kAshDisableLockLayoutManager
)) {
983 lock_container
->SetLayoutManager(
984 new WorkspaceLayoutManager(lock_container
));
986 lock_container
->SetLayoutManager(new LockLayoutManager(lock_container
));
988 SetUsesScreenCoordinates(lock_container
);
989 // TODO(beng): stopsevents
991 aura::Window
* lock_modal_container
= CreateContainer(
992 kShellWindowId_LockSystemModalContainer
,
993 "LockSystemModalContainer",
994 lock_screen_containers
);
995 wm::SetSnapsChildrenToPhysicalPixelBoundary(lock_modal_container
);
996 lock_modal_container
->SetLayoutManager(
997 new SystemModalContainerLayoutManager(lock_modal_container
));
998 ::wm::SetChildWindowVisibilityChangesAnimated(lock_modal_container
);
999 SetUsesScreenCoordinates(lock_modal_container
);
1000 SetUsesEasyResizeTargeter(lock_modal_container
);
1002 aura::Window
* status_container
=
1003 CreateContainer(kShellWindowId_StatusContainer
,
1005 lock_screen_related_containers
);
1006 wm::SetSnapsChildrenToPhysicalPixelBoundary(status_container
);
1007 SetUsesScreenCoordinates(status_container
);
1008 DescendantShouldStayInSameRootWindow(status_container
);
1010 aura::Window
* settings_bubble_container
= CreateContainer(
1011 kShellWindowId_SettingBubbleContainer
,
1012 "SettingBubbleContainer",
1013 lock_screen_related_containers
);
1014 ::wm::SetChildWindowVisibilityChangesAnimated(settings_bubble_container
);
1015 wm::SetSnapsChildrenToPhysicalPixelBoundary(settings_bubble_container
);
1016 SetUsesScreenCoordinates(settings_bubble_container
);
1017 DescendantShouldStayInSameRootWindow(settings_bubble_container
);
1019 aura::Window
* virtual_keyboard_parent_container
=
1020 CreateContainer(kShellWindowId_VirtualKeyboardParentContainer
,
1021 "VirtualKeyboardParentContainer",
1022 lock_screen_related_containers
);
1023 wm::SetSnapsChildrenToPhysicalPixelBoundary(
1024 virtual_keyboard_parent_container
);
1025 SetUsesScreenCoordinates(virtual_keyboard_parent_container
);
1027 aura::Window
* menu_container
= CreateContainer(
1028 kShellWindowId_MenuContainer
,
1030 lock_screen_related_containers
);
1031 ::wm::SetChildWindowVisibilityChangesAnimated(menu_container
);
1032 wm::SetSnapsChildrenToPhysicalPixelBoundary(menu_container
);
1033 SetUsesScreenCoordinates(menu_container
);
1035 aura::Window
* drag_drop_container
= CreateContainer(
1036 kShellWindowId_DragImageAndTooltipContainer
,
1037 "DragImageAndTooltipContainer",
1038 lock_screen_related_containers
);
1039 ::wm::SetChildWindowVisibilityChangesAnimated(drag_drop_container
);
1040 wm::SetSnapsChildrenToPhysicalPixelBoundary(drag_drop_container
);
1041 SetUsesScreenCoordinates(drag_drop_container
);
1043 aura::Window
* overlay_container
= CreateContainer(
1044 kShellWindowId_OverlayContainer
,
1046 lock_screen_related_containers
);
1047 wm::SetSnapsChildrenToPhysicalPixelBoundary(overlay_container
);
1048 SetUsesScreenCoordinates(overlay_container
);
1050 #if defined(OS_CHROMEOS)
1051 aura::Window
* mouse_cursor_container
= CreateContainer(
1052 kShellWindowId_MouseCursorContainer
,
1053 "MouseCursorContainer",
1055 SetUsesScreenCoordinates(mouse_cursor_container
);
1058 CreateContainer(kShellWindowId_PowerButtonAnimationContainer
,
1059 "PowerButtonAnimationContainer", root_window
);
1062 void RootWindowController::EnableTouchHudProjection() {
1063 if (touch_hud_projection_
)
1065 set_touch_hud_projection(new TouchHudProjection(GetRootWindow()));
1068 void RootWindowController::DisableTouchHudProjection() {
1069 if (!touch_hud_projection_
)
1071 touch_hud_projection_
->Remove();
1074 void RootWindowController::OnLoginStateChanged(user::LoginStatus status
) {
1075 shelf_
->shelf_layout_manager()->UpdateVisibilityState();
1078 void RootWindowController::OnTouchHudProjectionToggled(bool enabled
) {
1080 EnableTouchHudProjection();
1082 DisableTouchHudProjection();
1085 RootWindowController
* GetRootWindowController(
1086 const aura::Window
* root_window
) {
1087 return root_window
? GetRootWindowSettings(root_window
)->controller
: NULL
;