| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ash/shelf/shelf_widget.h" | 5 #include "ash/shelf/shelf_widget.h" |
| 6 | 6 |
| 7 #include "ash/aura/wm_shelf_aura.h" | 7 #include "ash/aura/wm_shelf_aura.h" |
| 8 #include "ash/aura/wm_window_aura.h" | |
| 9 #include "ash/common/focus_cycler.h" | 8 #include "ash/common/focus_cycler.h" |
| 10 #include "ash/common/material_design/material_design_controller.h" | 9 #include "ash/common/material_design/material_design_controller.h" |
| 11 #include "ash/common/session/session_state_delegate.h" | 10 #include "ash/common/session/session_state_delegate.h" |
| 12 #include "ash/common/shelf/shelf_background_animator_observer.h" | 11 #include "ash/common/shelf/shelf_background_animator_observer.h" |
| 13 #include "ash/common/shelf/shelf_constants.h" | 12 #include "ash/common/shelf/shelf_constants.h" |
| 14 #include "ash/common/shelf/shelf_delegate.h" | 13 #include "ash/common/shelf/shelf_delegate.h" |
| 15 #include "ash/common/shelf/wm_shelf.h" | 14 #include "ash/common/shelf/wm_shelf.h" |
| 16 #include "ash/common/shelf/wm_shelf_util.h" | 15 #include "ash/common/shelf/wm_shelf_util.h" |
| 17 #include "ash/common/system/status_area_widget.h" | 16 #include "ash/common/system/status_area_widget.h" |
| 18 #include "ash/common/system/tray/system_tray_delegate.h" | 17 #include "ash/common/system/tray/system_tray_delegate.h" |
| 19 #include "ash/common/wm_root_window_controller.h" | 18 #include "ash/common/wm_root_window_controller.h" |
| 20 #include "ash/common/wm_shell.h" | 19 #include "ash/common/wm_shell.h" |
| 20 #include "ash/common/wm_window.h" |
| 21 #include "ash/shelf/dimmer_view.h" | 21 #include "ash/shelf/dimmer_view.h" |
| 22 #include "ash/shelf/shelf.h" | 22 #include "ash/shelf/shelf.h" |
| 23 #include "ash/shelf/shelf_layout_manager.h" | 23 #include "ash/shelf/shelf_layout_manager.h" |
| 24 #include "ash/shelf/shelf_window_targeter.h" | |
| 25 #include "ash/shell.h" | 24 #include "ash/shell.h" |
| 26 #include "ash/wm/status_area_layout_manager.h" | 25 #include "ash/wm/status_area_layout_manager.h" |
| 27 #include "ash/wm/workspace_controller.h" | 26 #include "ash/wm/workspace_controller.h" |
| 28 #include "base/memory/ptr_util.h" | 27 #include "base/memory/ptr_util.h" |
| 29 #include "grit/ash_resources.h" | 28 #include "grit/ash_resources.h" |
| 30 #include "ui/aura/window.h" | |
| 31 #include "ui/base/resource/resource_bundle.h" | 29 #include "ui/base/resource/resource_bundle.h" |
| 32 #include "ui/compositor/layer.h" | 30 #include "ui/compositor/layer.h" |
| 33 #include "ui/compositor/scoped_layer_animation_settings.h" | 31 #include "ui/compositor/scoped_layer_animation_settings.h" |
| 34 #include "ui/gfx/canvas.h" | 32 #include "ui/gfx/canvas.h" |
| 35 #include "ui/gfx/image/image.h" | 33 #include "ui/gfx/image/image.h" |
| 36 #include "ui/gfx/image/image_skia_operations.h" | 34 #include "ui/gfx/image/image_skia_operations.h" |
| 37 #include "ui/gfx/skbitmap_operations.h" | 35 #include "ui/gfx/skbitmap_operations.h" |
| 38 #include "ui/views/accessible_pane_view.h" | 36 #include "ui/views/accessible_pane_view.h" |
| 39 #include "ui/views/layout/fill_layout.h" | 37 #include "ui/views/layout/fill_layout.h" |
| 40 #include "ui/views/widget/widget.h" | 38 #include "ui/views/widget/widget.h" |
| (...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 // TODO(jamescook): Move ownership to RootWindowController. | 316 // TODO(jamescook): Move ownership to RootWindowController. |
| 319 status_area_widget_ = new StatusAreaWidget(status_container, wm_shelf_aura_); | 317 status_area_widget_ = new StatusAreaWidget(status_container, wm_shelf_aura_); |
| 320 status_area_widget_->CreateTrayViews(); | 318 status_area_widget_->CreateTrayViews(); |
| 321 if (WmShell::Get()->GetSessionStateDelegate()->IsActiveUserSessionStarted()) | 319 if (WmShell::Get()->GetSessionStateDelegate()->IsActiveUserSessionStarted()) |
| 322 status_area_widget_->Show(); | 320 status_area_widget_->Show(); |
| 323 WmShell::Get()->focus_cycler()->AddWidget(status_area_widget_); | 321 WmShell::Get()->focus_cycler()->AddWidget(status_area_widget_); |
| 324 background_animator_.AddObserver(status_area_widget_); | 322 background_animator_.AddObserver(status_area_widget_); |
| 325 status_container->SetLayoutManager( | 323 status_container->SetLayoutManager( |
| 326 base::MakeUnique<StatusAreaLayoutManager>(this)); | 324 base::MakeUnique<StatusAreaLayoutManager>(this)); |
| 327 | 325 |
| 328 WmWindowAura::GetAuraWindow(shelf_container)->SetEventTargeter( | |
| 329 base::MakeUnique<ShelfWindowTargeter>(shelf_container, wm_shelf_aura_)); | |
| 330 WmWindowAura::GetAuraWindow(status_container)->SetEventTargeter( | |
| 331 base::MakeUnique<ShelfWindowTargeter>(status_container, wm_shelf_aura_)); | |
| 332 | |
| 333 views::Widget::AddObserver(this); | 326 views::Widget::AddObserver(this); |
| 334 } | 327 } |
| 335 | 328 |
| 336 ShelfWidget::~ShelfWidget() { | 329 ShelfWidget::~ShelfWidget() { |
| 337 // Must call Shutdown() before destruction. | 330 // Must call Shutdown() before destruction. |
| 338 DCHECK(!status_area_widget_); | 331 DCHECK(!status_area_widget_); |
| 339 WmShell::Get()->focus_cycler()->RemoveWidget(this); | 332 WmShell::Get()->focus_cycler()->RemoveWidget(this); |
| 340 SetFocusCycler(nullptr); | 333 SetFocusCycler(nullptr); |
| 341 RemoveObserver(this); | 334 RemoveObserver(this); |
| 342 background_animator_.RemoveObserver(delegate_view_); | 335 background_animator_.RemoveObserver(delegate_view_); |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 532 shelf_layout_manager_->UpdateAutoHideForMouseEvent(event); | 525 shelf_layout_manager_->UpdateAutoHideForMouseEvent(event); |
| 533 } | 526 } |
| 534 | 527 |
| 535 void ShelfWidget::OnGestureEvent(ui::GestureEvent* event) { | 528 void ShelfWidget::OnGestureEvent(ui::GestureEvent* event) { |
| 536 Widget::OnGestureEvent(event); | 529 Widget::OnGestureEvent(event); |
| 537 if (Shell::GetInstance()->in_mus() && shelf_layout_manager_) | 530 if (Shell::GetInstance()->in_mus() && shelf_layout_manager_) |
| 538 shelf_layout_manager_->UpdateAutoHideForGestureEvent(event); | 531 shelf_layout_manager_->UpdateAutoHideForGestureEvent(event); |
| 539 } | 532 } |
| 540 | 533 |
| 541 } // namespace ash | 534 } // namespace ash |
| OLD | NEW |