Chromium Code Reviews| Index: ash/root_window_controller.cc |
| diff --git a/ash/root_window_controller.cc b/ash/root_window_controller.cc |
| index 891cbe7c0d259837f90e2d2f7a534614df4f6d52..a5fe19377630254634818ca36397fcbb7ac06b0a 100644 |
| --- a/ash/root_window_controller.cc |
| +++ b/ash/root_window_controller.cc |
| @@ -29,6 +29,7 @@ |
| #include "ash/common/wm/container_finder.h" |
| #include "ash/common/wm/dock/docked_window_layout_manager.h" |
| #include "ash/common/wm/fullscreen_window_finder.h" |
| +#include "ash/common/wm/lock_layout_manager.h" |
| #include "ash/common/wm/panels/panel_layout_manager.h" |
| #include "ash/common/wm/root_window_layout_manager.h" |
| #include "ash/common/wm/switchable_windows.h" |
| @@ -36,7 +37,6 @@ |
| #include "ash/common/wm/window_state.h" |
| #include "ash/common/wm/workspace/workspace_layout_manager.h" |
| #include "ash/common/wm/workspace_controller.h" |
| -#include "ash/common/wm_root_window_controller.h" |
| #include "ash/common/wm_shell.h" |
| #include "ash/common/wm_window.h" |
| #include "ash/high_contrast/high_contrast_controller.h" |
| @@ -65,17 +65,24 @@ |
| #include "ui/aura/client/aura_constants.h" |
| #include "ui/aura/client/drag_drop_client.h" |
| #include "ui/aura/client/screen_position_client.h" |
| +#include "ui/aura/mus/window_mus.h" |
| +#include "ui/aura/mus/window_tree_client.h" |
| #include "ui/aura/window.h" |
| #include "ui/aura/window_event_dispatcher.h" |
| #include "ui/aura/window_observer.h" |
| #include "ui/aura/window_tracker.h" |
| +#include "ui/base/models/menu_model.h" |
| #include "ui/chromeos/touch_exploration_controller.h" |
| #include "ui/display/types/display_constants.h" |
| +#include "ui/events/event_utils.h" |
| #include "ui/keyboard/keyboard_controller.h" |
| #include "ui/keyboard/keyboard_util.h" |
| +#include "ui/views/controls/menu/menu_model_adapter.h" |
| +#include "ui/views/controls/menu/menu_runner.h" |
| #include "ui/views/view_model.h" |
| #include "ui/views/view_model_utils.h" |
| #include "ui/wm/core/capture_controller.h" |
| +#include "ui/wm/core/coordinate_conversion.h" |
| #include "ui/wm/core/visibility_controller.h" |
| #include "ui/wm/core/window_util.h" |
| #include "ui/wm/public/tooltip_client.h" |
| @@ -137,6 +144,132 @@ bool IsWindowAboveContainer(aura::Window* window, |
| return true; |
| } |
| +// Creates a new window for use as a container. |
| +// TODO(sky): This should create an aura::Window. http://crbug.com/671246. |
| +WmWindow* CreateContainer(int window_id, const char* name, WmWindow* parent) { |
| + WmWindow* window = WmShell::Get()->NewWindow(ui::wm::WINDOW_TYPE_UNKNOWN, |
| + ui::LAYER_NOT_DRAWN); |
| + window->SetShellWindowId(window_id); |
| + window->SetName(name); |
| + parent->AddChild(window); |
| + if (window_id != kShellWindowId_UnparentedControlContainer) |
| + window->Show(); |
| + return window; |
| +} |
| + |
| +// Scales |value| that is originally between 0 and |src_max| to be between |
| +// 0 and |dst_max|. |
| +float ToRelativeValue(int value, int src_max, int dst_max) { |
| + return static_cast<float>(value) / static_cast<float>(src_max) * dst_max; |
| +} |
| + |
| +// Uses ToRelativeValue() to scale the origin of |bounds_in_out|. The |
| +// width/height are not changed. |
| +void MoveOriginRelativeToSize(const gfx::Size& src_size, |
| + const gfx::Size& dst_size, |
| + gfx::Rect* bounds_in_out) { |
| + gfx::Point origin = bounds_in_out->origin(); |
| + bounds_in_out->set_origin(gfx::Point( |
| + ToRelativeValue(origin.x(), src_size.width(), dst_size.width()), |
| + ToRelativeValue(origin.y(), src_size.height(), dst_size.height()))); |
| +} |
| + |
| +// Reparents |window| to |new_parent|. |
| +// TODO(sky): This should take an aura::Window. http://crbug.com/671246. |
| +void ReparentWindow(WmWindow* window, WmWindow* new_parent) { |
| + const gfx::Size src_size = window->GetParent()->GetBounds().size(); |
| + const gfx::Size dst_size = new_parent->GetBounds().size(); |
| + // Update the restore bounds to make it relative to the display. |
| + wm::WindowState* state = window->GetWindowState(); |
| + gfx::Rect restore_bounds; |
| + bool has_restore_bounds = state->HasRestoreBounds(); |
| + |
| + bool update_bounds = |
| + (state->IsNormalOrSnapped() || state->IsMinimized()) && |
| + new_parent->GetShellWindowId() != kShellWindowId_DockedContainer; |
| + gfx::Rect local_bounds; |
| + if (update_bounds) { |
| + local_bounds = state->window()->GetBounds(); |
| + MoveOriginRelativeToSize(src_size, dst_size, &local_bounds); |
| + } |
| + |
| + if (has_restore_bounds) { |
| + restore_bounds = state->GetRestoreBoundsInParent(); |
| + MoveOriginRelativeToSize(src_size, dst_size, &restore_bounds); |
| + } |
| + |
| + new_parent->AddChild(window); |
| + |
| + // Docked windows have bounds handled by the layout manager in AddChild(). |
| + if (update_bounds) |
| + window->SetBounds(local_bounds); |
| + |
| + if (has_restore_bounds) |
| + state->SetRestoreBoundsInParent(restore_bounds); |
| +} |
| + |
| +// Reparents the appropriate set of windows from |src| to |dst|. |
| +// TODO(sky): This should take an aura::Window. http://crbug.com/671246. |
| +void ReparentAllWindows(WmWindow* src, WmWindow* dst) { |
| + // Set of windows to move. |
| + const int kContainerIdsToMove[] = { |
| + kShellWindowId_DefaultContainer, |
| + kShellWindowId_DockedContainer, |
| + kShellWindowId_PanelContainer, |
| + kShellWindowId_AlwaysOnTopContainer, |
| + kShellWindowId_SystemModalContainer, |
| + kShellWindowId_LockSystemModalContainer, |
| + kShellWindowId_UnparentedControlContainer, |
| + kShellWindowId_OverlayContainer, |
| + }; |
| + const int kExtraContainerIdsToMoveInUnifiedMode[] = { |
| + kShellWindowId_LockScreenContainer, |
| + kShellWindowId_LockScreenWallpaperContainer, |
| + }; |
| + std::vector<int> container_ids( |
| + kContainerIdsToMove, |
| + kContainerIdsToMove + arraysize(kContainerIdsToMove)); |
| + // Check the display mode as this is also necessary when trasitioning between |
| + // mirror and unified mode. |
| + if (WmShell::Get()->IsInUnifiedModeIgnoreMirroring()) { |
| + for (int id : kExtraContainerIdsToMoveInUnifiedMode) |
| + container_ids.push_back(id); |
| + } |
| + |
| + for (int id : container_ids) { |
| + WmWindow* src_container = src->GetChildByShellWindowId(id); |
| + WmWindow* dst_container = dst->GetChildByShellWindowId(id); |
| + while (!src_container->GetChildren().empty()) { |
| + // Restart iteration from the source container windows each time as they |
| + // may change as a result of moving other windows. |
| + WmWindow::Windows src_container_children = src_container->GetChildren(); |
| + WmWindow::Windows::const_iterator iter = src_container_children.begin(); |
| + while (iter != src_container_children.end() && |
| + SystemModalContainerLayoutManager::IsModalBackground(*iter)) { |
| + ++iter; |
| + } |
| + // If the entire window list is modal background windows then stop. |
| + if (iter == src_container_children.end()) |
| + break; |
| + ReparentWindow(*iter, dst_container); |
| + } |
| + } |
| +} |
| + |
| +// TODO(sky): This should take an aura::Window. http://crbug.com/671246. |
| +bool ShouldDestroyWindowInCloseChildWindows(WmWindow* window) { |
| + if (!WmWindowAura::GetAuraWindow(window)->owned_by_parent()) |
| + return false; |
| + |
| + if (!WmShell::Get()->IsRunningInMash()) |
| + return true; |
| + |
| + aura::WindowMus* window_mus = |
| + aura::WindowMus::Get(WmWindowAura::GetAuraWindow(window)); |
| + return Shell::window_tree_client()->WasCreatedByThisClient(window_mus) || |
| + Shell::window_tree_client()->IsRoot(window_mus); |
| +} |
| + |
| } // namespace |
| RootWindowController::~RootWindowController() { |
| @@ -146,6 +279,8 @@ RootWindowController::~RootWindowController() { |
| // The CaptureClient needs to be around for as long as the RootWindow is |
| // valid. |
| capture_client_.reset(); |
| + if (animating_wallpaper_widget_controller_.get()) |
| + animating_wallpaper_widget_controller_->StopAnimating(); |
| } |
| void RootWindowController::CreateForPrimaryDisplay(AshWindowTreeHost* host) { |
| @@ -172,6 +307,13 @@ RootWindowController* RootWindowController::ForTargetRootWindow() { |
| return GetRootWindowController(Shell::GetTargetRootWindow()); |
| } |
| +void RootWindowController::ConfigureWidgetInitParamsForContainer( |
| + views::Widget* widget, |
| + int shell_container_id, |
| + views::Widget::InitParams* init_params) { |
| + init_params->parent = GetContainer(shell_container_id); |
| +} |
| + |
| aura::WindowTreeHost* RootWindowController::GetHost() { |
| return window_tree_host_; |
| } |
| @@ -188,8 +330,52 @@ const aura::Window* RootWindowController::GetRootWindow() const { |
| return GetHost()->window(); |
| } |
| -WorkspaceController* RootWindowController::workspace_controller() { |
| - return wm_root_window_controller_->workspace_controller(); |
| +const WmWindow* RootWindowController::GetWindow() const { |
| + return WmWindowAura::Get(GetRootWindow()); |
| +} |
| + |
| +wm::WorkspaceWindowState RootWindowController::GetWorkspaceWindowState() { |
| + return workspace_controller_ ? workspace_controller()->GetWindowState() |
| + : wm::WORKSPACE_WINDOW_STATE_DEFAULT; |
| +} |
| + |
| +bool RootWindowController::HasShelf() { |
| + return wm_shelf_->shelf_widget() != nullptr; |
| +} |
| + |
| +WmShelf* RootWindowController::GetShelf() { |
| + return wm_shelf_.get(); |
| +} |
| + |
| +void RootWindowController::CreateShelf() { |
| + if (wm_shelf_->IsShelfInitialized()) |
| + return; |
| + wm_shelf_->InitializeShelf(); |
| + |
| + if (panel_layout_manager_) |
| + panel_layout_manager_->SetShelf(wm_shelf_.get()); |
| + if (docked_window_layout_manager_) { |
| + docked_window_layout_manager_->SetShelf(wm_shelf_.get()); |
| + if (wm_shelf_->shelf_layout_manager()) |
| + docked_window_layout_manager_->AddObserver( |
| + wm_shelf_->shelf_layout_manager()); |
| + } |
| + |
| + // Notify shell observers that the shelf has been created. |
| + // TODO(jamescook): Move this into WmShelf::InitializeShelf(). This will |
| + // require changing AttachedPanelWidgetTargeter's access to WmShelf. |
| + WmShell::Get()->NotifyShelfCreatedForRootWindow( |
| + WmWindowAura::Get(GetRootWindow())); |
| + |
| + wm_shelf_->shelf_widget()->PostCreateShelf(); |
| +} |
| + |
| +void RootWindowController::ShowShelf() { |
| + if (!wm_shelf_->IsShelfInitialized()) |
| + return; |
| + // TODO(jamescook): Move this into WmShelf. |
| + wm_shelf_->shelf_widget()->SetShelfVisibility(true); |
| + wm_shelf_->shelf_widget()->status_area_widget()->Show(); |
| } |
| void RootWindowController::Shutdown() { |
| @@ -197,7 +383,7 @@ void RootWindowController::Shutdown() { |
| touch_exploration_manager_.reset(); |
| - wm_root_window_controller_->ResetRootForNewWindowsIfNecessary(); |
| + ResetRootForNewWindowsIfNecessary(); |
| CloseChildWindows(); |
| aura::Window* root_window = GetRootWindow(); |
| @@ -257,6 +443,24 @@ bool RootWindowController::CanWindowReceiveEvents(aura::Window* window) { |
| return true; |
| } |
| +WmWindow* RootWindowController::FindEventTarget( |
| + const gfx::Point& location_in_screen) { |
| + gfx::Point location_in_root(location_in_screen); |
| + ::wm::ConvertPointFromScreen(GetRootWindow(), &location_in_root); |
| + ui::MouseEvent test_event(ui::ET_MOUSE_MOVED, location_in_root, |
| + location_in_root, ui::EventTimeForNow(), |
| + ui::EF_NONE, ui::EF_NONE); |
| + ui::EventTarget* event_handler = |
| + static_cast<ui::EventTarget*>(GetRootWindow()) |
| + ->GetEventTargeter() |
| + ->FindTargetForEvent(GetRootWindow(), &test_event); |
| + return WmWindowAura::Get(static_cast<aura::Window*>(event_handler)); |
| +} |
| + |
| +gfx::Point RootWindowController::GetLastMouseLocationInRoot() { |
| + return window_tree_host_->dispatcher()->GetLastMouseLocationInRoot(); |
| +} |
| + |
| aura::Window* RootWindowController::GetContainer(int container_id) { |
| return GetRootWindow()->GetChildById(container_id); |
| } |
| @@ -265,6 +469,23 @@ const aura::Window* RootWindowController::GetContainer(int container_id) const { |
| return window_tree_host_->window()->GetChildById(container_id); |
| } |
| +const WmWindow* RootWindowController::GetWmContainer(int container_id) const { |
| + const aura::Window* window = GetContainer(container_id); |
| + return WmWindowAura::Get(window); |
| +} |
| + |
| +void RootWindowController::SetWallpaperWidgetController( |
| + WallpaperWidgetController* controller) { |
| + wallpaper_widget_controller_.reset(controller); |
| +} |
| + |
| +void RootWindowController::SetAnimatingWallpaperWidgetController( |
| + AnimatingWallpaperWidgetController* controller) { |
| + if (animating_wallpaper_widget_controller_.get()) |
| + animating_wallpaper_widget_controller_->StopAnimating(); |
| + animating_wallpaper_widget_controller_.reset(controller); |
| +} |
| + |
| void RootWindowController::OnInitialWallpaperAnimationStarted() { |
| if (base::CommandLine::ForCurrentProcess()->HasSwitch( |
| switches::kAshAnimateFromBootSplashScreen) && |
| @@ -280,6 +501,17 @@ void RootWindowController::OnWallpaperAnimationFinished(views::Widget* widget) { |
| // Make sure the wallpaper is visible. |
| system_wallpaper_->SetColor(SK_ColorBLACK); |
| boot_splash_screen_.reset(); |
| + WmShell::Get()->wallpaper_delegate()->OnWallpaperAnimationFinished(); |
| + // Only removes old component when wallpaper animation finished. If we |
| + // remove the old one before the new wallpaper is done fading in there will |
| + // be a white flash during the animation. |
| + if (animating_wallpaper_widget_controller()) { |
| + WallpaperWidgetController* controller = |
| + animating_wallpaper_widget_controller()->GetController(true); |
| + DCHECK_EQ(controller->widget(), widget); |
| + // Release the old controller and close its wallpaper widget. |
| + SetWallpaperWidgetController(controller); |
| + } |
| } |
| void RootWindowController::CloseChildWindows() { |
| @@ -294,20 +526,99 @@ void RootWindowController::CloseChildWindows() { |
| // down associated layout managers. |
| DeactivateKeyboard(keyboard::KeyboardController::GetInstance()); |
| - wm_root_window_controller_->CloseChildWindows(); |
| + // NOTE: this may be called multiple times. |
| + |
| + // |panel_layout_manager_| needs to be shut down before windows are destroyed. |
| + if (panel_layout_manager_) { |
| + panel_layout_manager_->Shutdown(); |
| + panel_layout_manager_ = nullptr; |
| + } |
| + |
| + // |docked_window_layout_manager_| needs to be shut down before windows are |
| + // destroyed. |
| + if (docked_window_layout_manager_) { |
| + docked_window_layout_manager_->Shutdown(); |
| + docked_window_layout_manager_ = nullptr; |
| + } |
| + |
| + WmShelf* shelf = GetShelf(); |
| + shelf->ShutdownShelfWidget(); |
| + |
| + workspace_controller_.reset(); |
| + |
| + // Explicitly destroy top level windows. We do this because such windows may |
| + // query the RootWindow for state. |
| + WmWindowTracker non_toplevel_windows; |
| + WmWindow* root = GetWindow(); |
| + non_toplevel_windows.Add(root); |
| + while (!non_toplevel_windows.windows().empty()) { |
| + WmWindow* non_toplevel_window = non_toplevel_windows.Pop(); |
| + WmWindowTracker toplevel_windows; |
| + for (WmWindow* child : non_toplevel_window->GetChildren()) { |
| + if (!ShouldDestroyWindowInCloseChildWindows(child)) |
| + continue; |
| + if (child->HasNonClientArea()) |
| + toplevel_windows.Add(child); |
| + else |
| + non_toplevel_windows.Add(child); |
| + } |
| + while (!toplevel_windows.windows().empty()) |
| + toplevel_windows.Pop()->Destroy(); |
| + } |
| + // And then remove the containers. |
| + while (!root->GetChildren().empty()) { |
| + WmWindow* child = root->GetChildren()[0]; |
| + if (ShouldDestroyWindowInCloseChildWindows(child)) |
| + child->Destroy(); |
| + else |
| + root->RemoveChild(child); |
| + } |
| + |
| + shelf->DestroyShelfWidget(); |
| + |
| + // CloseChildWindows() may be called twice during the shutdown of ash |
| + // unittests. Avoid notifying WmShelf that the shelf has been destroyed twice. |
| + if (shelf->IsShelfInitialized()) |
| + shelf->ShutdownShelf(); |
| aura::client::SetDragDropClient(GetRootWindow(), nullptr); |
| aura::client::SetTooltipClient(GetRootWindow(), nullptr); |
| } |
| void RootWindowController::MoveWindowsTo(aura::Window* dst) { |
| - wm_root_window_controller_->MoveWindowsTo(WmWindowAura::Get(dst)); |
| + // Clear the workspace controller, so it doesn't incorrectly update the shelf. |
| + workspace_controller_.reset(); |
| + ReparentAllWindows(GetWindow(), WmWindowAura::Get(dst)); |
| } |
| ShelfLayoutManager* RootWindowController::GetShelfLayoutManager() { |
| return wm_shelf_->shelf_layout_manager(); |
| } |
| +SystemModalContainerLayoutManager* |
| +RootWindowController::GetSystemModalLayoutManager(WmWindow* window) { |
| + aura::Window* modal_container = nullptr; |
| + if (window) { |
| + WmWindow* window_container = wm::GetContainerForWindow(window); |
| + const int container_id = (window_container && |
| + window_container->GetShellWindowId() >= |
| + kShellWindowId_LockScreenContainer) |
| + ? kShellWindowId_LockSystemModalContainer |
| + : kShellWindowId_SystemModalContainer; |
| + modal_container = GetContainer(container_id); |
| + } else { |
| + int modal_window_id = |
| + WmShell::Get()->GetSessionStateDelegate()->IsUserSessionBlocked() |
| + ? kShellWindowId_LockSystemModalContainer |
| + : kShellWindowId_SystemModalContainer; |
| + modal_container = GetContainer(modal_window_id); |
| + } |
| + return modal_container |
| + ? static_cast<SystemModalContainerLayoutManager*>( |
| + WmWindowAura::Get(modal_container)->GetLayoutManager()) |
| + : nullptr; |
| +} |
| + |
| StatusAreaWidget* RootWindowController::GetStatusAreaWidget() { |
| ShelfWidget* shelf_widget = wm_shelf_->shelf_widget(); |
| return shelf_widget ? shelf_widget->status_area_widget() : nullptr; |
| @@ -317,6 +628,10 @@ SystemTray* RootWindowController::GetSystemTray() { |
| // We assume in throughout the code that this will not return NULL. If code |
| // triggers this for valid reasons, it should test status_area_widget first. |
| CHECK(wm_shelf_->shelf_widget()->status_area_widget()); |
| + // XXX verify this. WmRootWindowController had this: |
| + // ShelfWidget* shelf_widget = GetShelf()->shelf_widget(); |
|
sky
2017/01/10 22:45:22
One question here. The commented code is what mash
James Cook
2017/01/11 00:49:55
I would keep the CHECK. Feel free to ping me if yo
|
| + // if (!shelf_widget || !shelf_widget->status_area_widget()) |
| + // return nullptr; |
| return wm_shelf_->shelf_widget()->status_area_widget()->system_tray(); |
| } |
| @@ -341,8 +656,7 @@ void RootWindowController::ActivateKeyboard( |
| keyboard_controller->AddObserver(docked_window_layout_manager()); |
| keyboard_controller->AddObserver(workspace_controller()->layout_manager()); |
| keyboard_controller->AddObserver( |
| - wm_root_window_controller_->always_on_top_controller() |
| - ->GetLayoutManager()); |
| + always_on_top_controller_->GetLayoutManager()); |
| WmShell::Get()->NotifyVirtualKeyboardActivated(true); |
| aura::Window* parent = GetContainer(kShellWindowId_ImeWindowParentContainer); |
| DCHECK(parent); |
| @@ -372,8 +686,7 @@ void RootWindowController::DeactivateKeyboard( |
| keyboard_controller->RemoveObserver( |
| workspace_controller()->layout_manager()); |
| keyboard_controller->RemoveObserver( |
| - wm_root_window_controller_->always_on_top_controller() |
| - ->GetLayoutManager()); |
| + always_on_top_controller_->GetLayoutManager()); |
| WmShell::Get()->NotifyVirtualKeyboardActivated(false); |
| } |
| } |
| @@ -389,6 +702,39 @@ void RootWindowController::SetTouchAccessibilityAnchorPoint( |
| touch_exploration_manager_->SetTouchAccessibilityAnchorPoint(anchor_point); |
| } |
| +void RootWindowController::ShowContextMenu(const gfx::Point& location_in_screen, |
| + ui::MenuSourceType source_type) { |
| + ShellDelegate* delegate = WmShell::Get()->delegate(); |
| + DCHECK(delegate); |
| + menu_model_.reset(delegate->CreateContextMenu(wm_shelf_.get(), nullptr)); |
| + if (!menu_model_) |
| + return; |
| + |
| + menu_model_adapter_ = base::MakeUnique<views::MenuModelAdapter>( |
| + menu_model_.get(), |
| + base::Bind(&RootWindowController::OnMenuClosed, base::Unretained(this))); |
| + |
| + // The wallpaper controller may not be set yet if the user clicked on the |
| + // status area before the initial animation completion. See crbug.com/222218 |
| + if (!wallpaper_widget_controller()) |
| + return; |
| + |
| + menu_runner_ = base::MakeUnique<views::MenuRunner>( |
| + menu_model_adapter_->CreateMenu(), |
| + views::MenuRunner::CONTEXT_MENU | views::MenuRunner::ASYNC); |
| + ignore_result( |
| + menu_runner_->RunMenuAt(wallpaper_widget_controller()->widget(), nullptr, |
| + gfx::Rect(location_in_screen, gfx::Size()), |
| + views::MENU_ANCHOR_TOPLEFT, source_type)); |
| +} |
| + |
| +void RootWindowController::UpdateAfterLoginStatusChange(LoginStatus status) { |
| + StatusAreaWidget* status_area_widget = |
| + wm_shelf_->shelf_widget()->status_area_widget(); |
| + if (status_area_widget) |
| + status_area_widget->UpdateAfterLoginStatusChange(status); |
| +} |
| + |
| //////////////////////////////////////////////////////////////////////////////// |
| // RootWindowController, private: |
| @@ -406,10 +752,6 @@ RootWindowController::RootWindowController( |
| aura::Window* root_window = GetRootWindow(); |
| GetRootWindowSettings(root_window)->controller = this; |
| - // Has to happen after this is set as |controller| of RootWindowSettings. |
| - wm_root_window_controller_ = base::MakeUnique<WmRootWindowController>( |
| - this, WmWindowAura::Get(root_window)); |
| - |
| stacking_controller_.reset(new StackingController); |
| aura::client::SetWindowParentingClient(root_window, |
| stacking_controller_.get()); |
| @@ -425,7 +767,7 @@ void RootWindowController::Init(RootWindowType root_window_type) { |
| shell->InitRootWindow(root_window); |
| } |
| - wm_root_window_controller_->CreateContainers(); |
| + CreateContainers(); |
| CreateSystemWallpaper(root_window_type); |
| @@ -435,13 +777,12 @@ void RootWindowController::Init(RootWindowType root_window_type) { |
| if (wm_shell->GetPrimaryRootWindowController() |
| ->GetSystemModalLayoutManager(nullptr) |
| ->has_window_dimmer()) { |
| - wm_root_window_controller_->GetSystemModalLayoutManager(nullptr) |
| - ->CreateModalBackground(); |
| + GetSystemModalLayoutManager(nullptr)->CreateModalBackground(); |
| } |
| wm_shell->AddShellObserver(this); |
| - wm_root_window_controller_->root_window_layout_manager()->OnWindowResized(); |
| + root_window_layout_manager_->OnWindowResized(); |
| if (root_window_type == RootWindowType::PRIMARY) { |
| if (!wm_shell->IsRunningInMash()) |
| shell->InitKeyboard(); |
| @@ -450,7 +791,7 @@ void RootWindowController::Init(RootWindowType root_window_type) { |
| // Create a shelf if a user is already logged in. |
| if (wm_shell->GetSessionStateDelegate()->NumberOfLoggedInUsers()) |
| - wm_root_window_controller_->CreateShelf(); |
| + CreateShelf(); |
| // Notify shell observers about new root window. |
| if (!wm_shell->IsRunningInMash()) |
| @@ -474,7 +815,7 @@ void RootWindowController::InitLayoutManagers() { |
| WmWindow* wm_shelf_container = WmWindowAura::Get(shelf_container); |
| WmWindow* wm_status_container = WmWindowAura::Get(status_container); |
| - wm_root_window_controller_->CreateLayoutManagers(); |
| + CreateLayoutManagers(); |
| // Make it easier to resize windows that partially overlap the shelf. Must |
| // occur after the ShelfLayoutManager is constructed by ShelfWidget. |
| @@ -500,6 +841,233 @@ void RootWindowController::InitLayoutManagers() { |
| touch_extend, panel_layout_manager()))); |
| } |
| +void RootWindowController::CreateContainers() { |
| + WmWindow* root = GetWindow(); |
| + // These containers are just used by PowerButtonController to animate groups |
| + // of containers simultaneously without messing up the current transformations |
| + // on those containers. These are direct children of the root window; all of |
| + // the other containers are their children. |
| + |
| + // The wallpaper container is not part of the lock animation, so it is not |
| + // included in those animate groups. When the screen is locked, the wallpaper |
| + // is moved to the lock screen wallpaper container (and moved back on unlock). |
| + // Ensure that there's an opaque layer occluding the non-lock-screen layers. |
| + WmWindow* wallpaper_container = CreateContainer( |
| + kShellWindowId_WallpaperContainer, "WallpaperContainer", root); |
| + wallpaper_container->SetChildWindowVisibilityChangesAnimated(); |
| + |
| + WmWindow* non_lock_screen_containers = |
| + CreateContainer(kShellWindowId_NonLockScreenContainersContainer, |
| + "NonLockScreenContainersContainer", root); |
| + // Clip all windows inside this container, as half pixel of the window's |
| + // texture may become visible when the screen is scaled. crbug.com/368591. |
| + non_lock_screen_containers->SetMasksToBounds(true); |
| + |
| + WmWindow* lock_wallpaper_containers = |
| + CreateContainer(kShellWindowId_LockScreenWallpaperContainer, |
| + "LockScreenWallpaperContainer", root); |
| + lock_wallpaper_containers->SetChildWindowVisibilityChangesAnimated(); |
| + |
| + WmWindow* lock_screen_containers = |
| + CreateContainer(kShellWindowId_LockScreenContainersContainer, |
| + "LockScreenContainersContainer", root); |
| + WmWindow* lock_screen_related_containers = |
| + CreateContainer(kShellWindowId_LockScreenRelatedContainersContainer, |
| + "LockScreenRelatedContainersContainer", root); |
| + |
| + CreateContainer(kShellWindowId_UnparentedControlContainer, |
| + "UnparentedControlContainer", non_lock_screen_containers); |
| + |
| + WmWindow* default_container = |
| + CreateContainer(kShellWindowId_DefaultContainer, "DefaultContainer", |
| + non_lock_screen_containers); |
| + default_container->SetChildWindowVisibilityChangesAnimated(); |
| + default_container->SetSnapsChildrenToPhysicalPixelBoundary(); |
| + default_container->SetBoundsInScreenBehaviorForChildren( |
| + WmWindow::BoundsInScreenBehavior::USE_SCREEN_COORDINATES); |
| + default_container->SetChildrenUseExtendedHitRegion(); |
| + |
| + WmWindow* always_on_top_container = |
| + CreateContainer(kShellWindowId_AlwaysOnTopContainer, |
| + "AlwaysOnTopContainer", non_lock_screen_containers); |
| + always_on_top_container->SetChildWindowVisibilityChangesAnimated(); |
| + always_on_top_container->SetSnapsChildrenToPhysicalPixelBoundary(); |
| + always_on_top_container->SetBoundsInScreenBehaviorForChildren( |
| + WmWindow::BoundsInScreenBehavior::USE_SCREEN_COORDINATES); |
| + |
| + WmWindow* docked_container = |
| + CreateContainer(kShellWindowId_DockedContainer, "DockedContainer", |
| + non_lock_screen_containers); |
| + docked_container->SetChildWindowVisibilityChangesAnimated(); |
| + docked_container->SetSnapsChildrenToPhysicalPixelBoundary(); |
| + docked_container->SetBoundsInScreenBehaviorForChildren( |
| + WmWindow::BoundsInScreenBehavior::USE_SCREEN_COORDINATES); |
| + docked_container->SetChildrenUseExtendedHitRegion(); |
| + |
| + WmWindow* shelf_container = |
| + CreateContainer(kShellWindowId_ShelfContainer, "ShelfContainer", |
| + non_lock_screen_containers); |
| + shelf_container->SetSnapsChildrenToPhysicalPixelBoundary(); |
| + shelf_container->SetBoundsInScreenBehaviorForChildren( |
| + WmWindow::BoundsInScreenBehavior::USE_SCREEN_COORDINATES); |
| + shelf_container->SetLockedToRoot(true); |
| + |
| + WmWindow* panel_container = |
| + CreateContainer(kShellWindowId_PanelContainer, "PanelContainer", |
| + non_lock_screen_containers); |
| + panel_container->SetSnapsChildrenToPhysicalPixelBoundary(); |
| + panel_container->SetBoundsInScreenBehaviorForChildren( |
| + WmWindow::BoundsInScreenBehavior::USE_SCREEN_COORDINATES); |
| + |
| + WmWindow* shelf_bubble_container = |
| + CreateContainer(kShellWindowId_ShelfBubbleContainer, |
| + "ShelfBubbleContainer", non_lock_screen_containers); |
| + shelf_bubble_container->SetSnapsChildrenToPhysicalPixelBoundary(); |
| + shelf_bubble_container->SetBoundsInScreenBehaviorForChildren( |
| + WmWindow::BoundsInScreenBehavior::USE_SCREEN_COORDINATES); |
| + shelf_bubble_container->SetLockedToRoot(true); |
| + |
| + WmWindow* app_list_container = |
| + CreateContainer(kShellWindowId_AppListContainer, "AppListContainer", |
| + non_lock_screen_containers); |
| + app_list_container->SetSnapsChildrenToPhysicalPixelBoundary(); |
| + app_list_container->SetBoundsInScreenBehaviorForChildren( |
| + WmWindow::BoundsInScreenBehavior::USE_SCREEN_COORDINATES); |
| + |
| + WmWindow* modal_container = |
| + CreateContainer(kShellWindowId_SystemModalContainer, |
| + "SystemModalContainer", non_lock_screen_containers); |
| + modal_container->SetSnapsChildrenToPhysicalPixelBoundary(); |
| + modal_container->SetChildWindowVisibilityChangesAnimated(); |
| + modal_container->SetBoundsInScreenBehaviorForChildren( |
| + WmWindow::BoundsInScreenBehavior::USE_SCREEN_COORDINATES); |
| + modal_container->SetChildrenUseExtendedHitRegion(); |
| + |
| + // TODO(beng): Figure out if we can make this use |
| + // SystemModalContainerEventFilter instead of stops_event_propagation. |
| + WmWindow* lock_container = |
| + CreateContainer(kShellWindowId_LockScreenContainer, "LockScreenContainer", |
| + lock_screen_containers); |
| + lock_container->SetSnapsChildrenToPhysicalPixelBoundary(); |
| + lock_container->SetBoundsInScreenBehaviorForChildren( |
| + WmWindow::BoundsInScreenBehavior::USE_SCREEN_COORDINATES); |
| + // TODO(beng): stopsevents |
| + |
| + WmWindow* lock_modal_container = |
| + CreateContainer(kShellWindowId_LockSystemModalContainer, |
| + "LockSystemModalContainer", lock_screen_containers); |
| + lock_modal_container->SetSnapsChildrenToPhysicalPixelBoundary(); |
| + lock_modal_container->SetChildWindowVisibilityChangesAnimated(); |
| + lock_modal_container->SetBoundsInScreenBehaviorForChildren( |
| + WmWindow::BoundsInScreenBehavior::USE_SCREEN_COORDINATES); |
| + lock_modal_container->SetChildrenUseExtendedHitRegion(); |
| + |
| + WmWindow* status_container = |
| + CreateContainer(kShellWindowId_StatusContainer, "StatusContainer", |
| + lock_screen_related_containers); |
| + status_container->SetSnapsChildrenToPhysicalPixelBoundary(); |
| + status_container->SetBoundsInScreenBehaviorForChildren( |
| + WmWindow::BoundsInScreenBehavior::USE_SCREEN_COORDINATES); |
| + status_container->SetLockedToRoot(true); |
| + |
| + WmWindow* settings_bubble_container = |
| + CreateContainer(kShellWindowId_SettingBubbleContainer, |
| + "SettingBubbleContainer", lock_screen_related_containers); |
| + settings_bubble_container->SetChildWindowVisibilityChangesAnimated(); |
| + settings_bubble_container->SetSnapsChildrenToPhysicalPixelBoundary(); |
| + settings_bubble_container->SetBoundsInScreenBehaviorForChildren( |
| + WmWindow::BoundsInScreenBehavior::USE_SCREEN_COORDINATES); |
| + settings_bubble_container->SetLockedToRoot(true); |
| + |
| + WmWindow* virtual_keyboard_parent_container = CreateContainer( |
| + kShellWindowId_ImeWindowParentContainer, "VirtualKeyboardParentContainer", |
| + lock_screen_related_containers); |
| + virtual_keyboard_parent_container->SetSnapsChildrenToPhysicalPixelBoundary(); |
| + virtual_keyboard_parent_container->SetBoundsInScreenBehaviorForChildren( |
| + WmWindow::BoundsInScreenBehavior::USE_SCREEN_COORDINATES); |
| + |
| + WmWindow* menu_container = |
| + CreateContainer(kShellWindowId_MenuContainer, "MenuContainer", |
| + lock_screen_related_containers); |
| + menu_container->SetChildWindowVisibilityChangesAnimated(); |
| + menu_container->SetSnapsChildrenToPhysicalPixelBoundary(); |
| + menu_container->SetBoundsInScreenBehaviorForChildren( |
| + WmWindow::BoundsInScreenBehavior::USE_SCREEN_COORDINATES); |
| + |
| + WmWindow* drag_drop_container = CreateContainer( |
| + kShellWindowId_DragImageAndTooltipContainer, |
| + "DragImageAndTooltipContainer", lock_screen_related_containers); |
| + drag_drop_container->SetChildWindowVisibilityChangesAnimated(); |
| + drag_drop_container->SetSnapsChildrenToPhysicalPixelBoundary(); |
| + drag_drop_container->SetBoundsInScreenBehaviorForChildren( |
| + WmWindow::BoundsInScreenBehavior::USE_SCREEN_COORDINATES); |
| + |
| + WmWindow* overlay_container = |
| + CreateContainer(kShellWindowId_OverlayContainer, "OverlayContainer", |
| + lock_screen_related_containers); |
| + overlay_container->SetSnapsChildrenToPhysicalPixelBoundary(); |
| + overlay_container->SetBoundsInScreenBehaviorForChildren( |
| + WmWindow::BoundsInScreenBehavior::USE_SCREEN_COORDINATES); |
| + |
| + WmWindow* mouse_cursor_container = CreateContainer( |
| + kShellWindowId_MouseCursorContainer, "MouseCursorContainer", root); |
| + mouse_cursor_container->SetBoundsInScreenBehaviorForChildren( |
| + WmWindow::BoundsInScreenBehavior::USE_SCREEN_COORDINATES); |
| + |
| + CreateContainer(kShellWindowId_PowerButtonAnimationContainer, |
| + "PowerButtonAnimationContainer", root); |
| +} |
| + |
| +void RootWindowController::CreateLayoutManagers() { |
| + GetShelf()->CreateShelfWidget(GetWindow()); |
| + |
| + WmWindow* root = GetWindow(); |
| + root_window_layout_manager_ = new wm::RootWindowLayoutManager(root); |
| + root->SetLayoutManager(base::WrapUnique(root_window_layout_manager_)); |
| + |
| + WmWindow* default_container = GetWmContainer(kShellWindowId_DefaultContainer); |
| + // Installs WorkspaceLayoutManager on |default_container|. |
| + workspace_controller_.reset(new WorkspaceController(default_container)); |
| + |
| + WmWindow* modal_container = |
| + GetWmContainer(kShellWindowId_SystemModalContainer); |
| + DCHECK(modal_container); |
| + modal_container->SetLayoutManager( |
| + base::MakeUnique<SystemModalContainerLayoutManager>(modal_container)); |
| + |
| + WmWindow* lock_modal_container = |
| + GetWmContainer(kShellWindowId_LockSystemModalContainer); |
| + DCHECK(lock_modal_container); |
| + lock_modal_container->SetLayoutManager( |
| + base::MakeUnique<SystemModalContainerLayoutManager>( |
| + lock_modal_container)); |
| + |
| + WmWindow* lock_container = GetWmContainer(kShellWindowId_LockScreenContainer); |
| + DCHECK(lock_container); |
| + lock_container->SetLayoutManager( |
| + base::MakeUnique<LockLayoutManager>(lock_container)); |
| + |
| + WmWindow* always_on_top_container = |
| + GetWmContainer(kShellWindowId_AlwaysOnTopContainer); |
| + DCHECK(always_on_top_container); |
| + always_on_top_controller_ = |
| + base::MakeUnique<AlwaysOnTopController>(always_on_top_container); |
| + |
| + // Create Docked windows layout manager |
| + WmWindow* docked_container = GetWmContainer(kShellWindowId_DockedContainer); |
| + docked_window_layout_manager_ = |
| + new DockedWindowLayoutManager(docked_container); |
| + docked_container->SetLayoutManager( |
| + base::WrapUnique(docked_window_layout_manager_)); |
| + |
| + // Create Panel layout manager |
| + WmWindow* panel_container = GetWmContainer(kShellWindowId_PanelContainer); |
| + panel_layout_manager_ = new PanelLayoutManager(panel_container); |
| + panel_container->SetLayoutManager(base::WrapUnique(panel_layout_manager_)); |
| + |
| + wm::WmSnapToPixelLayoutManager::InstallOnContainers(root); |
| +} |
| + |
| void RootWindowController::InitTouchHuds() { |
| base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); |
| if (command_line->HasSwitch(switches::kAshTouchHud)) |
| @@ -547,13 +1115,27 @@ void RootWindowController::DisableTouchHudProjection() { |
| touch_hud_projection_->Remove(); |
| } |
| -DockedWindowLayoutManager* |
| -RootWindowController::docked_window_layout_manager() { |
| - return wm_root_window_controller_->docked_window_layout_manager(); |
| +void RootWindowController::ResetRootForNewWindowsIfNecessary() { |
| + WmShell* shell = WmShell::Get(); |
| + // Change the target root window before closing child windows. If any child |
| + // being removed triggers a relayout of the shelf it will try to build a |
| + // window list adding windows from the target root window's containers which |
| + // may have already gone away. |
| + WmWindow* root = GetWindow(); |
| + if (shell->GetRootWindowForNewWindows() == root) { |
| + // The root window for new windows is being destroyed. Switch to the primary |
| + // root window if possible. |
| + WmWindow* primary_root = shell->GetPrimaryRootWindow(); |
| + shell->set_root_window_for_new_windows(primary_root == root ? nullptr |
| + : primary_root); |
| + } |
| } |
| -PanelLayoutManager* RootWindowController::panel_layout_manager() { |
| - return wm_root_window_controller_->panel_layout_manager(); |
| +void RootWindowController::OnMenuClosed() { |
| + menu_runner_.reset(); |
| + menu_model_adapter_.reset(); |
| + menu_model_.reset(); |
| + wm_shelf_->UpdateVisibilityState(); |
| } |
| void RootWindowController::OnLoginStateChanged(LoginStatus status) { |