Chromium Code Reviews| 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" | 8 #include "ash/aura/wm_window_aura.h" |
| 9 #include "ash/common/focus_cycler.h" | 9 #include "ash/common/focus_cycler.h" |
| 10 #include "ash/common/material_design/material_design_controller.h" | 10 #include "ash/common/material_design/material_design_controller.h" |
| 11 #include "ash/common/session/session_state_delegate.h" | 11 #include "ash/common/session/session_state_delegate.h" |
| 12 #include "ash/common/shelf/shelf_background_animator_observer.h" | 12 #include "ash/common/shelf/shelf_background_animator_observer.h" |
| 13 #include "ash/common/shelf/shelf_constants.h" | 13 #include "ash/common/shelf/shelf_constants.h" |
| 14 #include "ash/common/shelf/shelf_delegate.h" | 14 #include "ash/common/shelf/shelf_delegate.h" |
| 15 #include "ash/common/shelf/wm_shelf.h" | 15 #include "ash/common/shelf/wm_shelf.h" |
| 16 #include "ash/common/shelf/wm_shelf_util.h" | 16 #include "ash/common/shelf/wm_shelf_util.h" |
| 17 #include "ash/common/system/status_area_widget.h" | 17 #include "ash/common/system/status_area_widget.h" |
| 18 #include "ash/common/system/tray/system_tray_delegate.h" | 18 #include "ash/common/system/tray/system_tray_delegate.h" |
| 19 #include "ash/common/wm_root_window_controller.h" | 19 #include "ash/common/wm_root_window_controller.h" |
| 20 #include "ash/common/wm_shell.h" | 20 #include "ash/common/wm_shell.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" | 24 #include "ash/shelf/shelf_window_targeter.h" |
| 25 #include "ash/shell.h" | |
|
James Cook
2016/08/09 19:47:58
Hooray!
msw
2016/08/09 19:52:58
Acknowledged.
| |
| 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" | 29 #include "ui/aura/window.h" |
| 31 #include "ui/base/resource/resource_bundle.h" | 30 #include "ui/base/resource/resource_bundle.h" |
| 32 #include "ui/compositor/layer.h" | 31 #include "ui/compositor/layer.h" |
| 33 #include "ui/compositor/scoped_layer_animation_settings.h" | 32 #include "ui/compositor/scoped_layer_animation_settings.h" |
| 34 #include "ui/gfx/canvas.h" | 33 #include "ui/gfx/canvas.h" |
| 35 #include "ui/gfx/image/image.h" | 34 #include "ui/gfx/image/image.h" |
| (...skipping 483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 519 void ShelfWidget::UpdateShelfItemBackground(int alpha) { | 518 void ShelfWidget::UpdateShelfItemBackground(int alpha) { |
| 520 if (shelf_) | 519 if (shelf_) |
| 521 shelf_->UpdateShelfItemBackground(alpha); | 520 shelf_->UpdateShelfItemBackground(alpha); |
| 522 } | 521 } |
| 523 | 522 |
| 524 void ShelfWidget::WillDeleteShelfLayoutManager() { | 523 void ShelfWidget::WillDeleteShelfLayoutManager() { |
| 525 shelf_layout_manager_->RemoveObserver(this); | 524 shelf_layout_manager_->RemoveObserver(this); |
| 526 shelf_layout_manager_ = nullptr; | 525 shelf_layout_manager_ = nullptr; |
| 527 } | 526 } |
| 528 | 527 |
| 529 void ShelfWidget::OnMouseEvent(ui::MouseEvent* event) { | |
| 530 Widget::OnMouseEvent(event); | |
| 531 if (Shell::GetInstance()->in_mus() && shelf_layout_manager_) | |
| 532 shelf_layout_manager_->UpdateAutoHideForMouseEvent(event); | |
| 533 } | |
| 534 | |
| 535 void ShelfWidget::OnGestureEvent(ui::GestureEvent* event) { | |
| 536 Widget::OnGestureEvent(event); | |
| 537 if (Shell::GetInstance()->in_mus() && shelf_layout_manager_) | |
| 538 shelf_layout_manager_->UpdateAutoHideForGestureEvent(event); | |
| 539 } | |
| 540 | |
| 541 } // namespace ash | 528 } // namespace ash |
| OLD | NEW |