| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "components/exo/shell_surface.h" | 5 #include "components/exo/shell_surface.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 | 8 |
| 9 #include "ash/frame/custom_frame_view_ash.h" | 9 #include "ash/frame/custom_frame_view_ash.h" |
| 10 #include "ash/public/cpp/shell_window_ids.h" | 10 #include "ash/public/cpp/shell_window_ids.h" |
| 11 #include "ash/public/cpp/window_properties.h" | 11 #include "ash/public/cpp/window_properties.h" |
| 12 #include "ash/public/interfaces/window_pin_type.mojom.h" | 12 #include "ash/public/interfaces/window_pin_type.mojom.h" |
| 13 #include "ash/shelf/wm_shelf.h" | 13 #include "ash/shelf/wm_shelf.h" |
| 14 #include "ash/shell_port.h" |
| 14 #include "ash/wm/drag_window_resizer.h" | 15 #include "ash/wm/drag_window_resizer.h" |
| 15 #include "ash/wm/window_resizer.h" | 16 #include "ash/wm/window_resizer.h" |
| 16 #include "ash/wm/window_state.h" | 17 #include "ash/wm/window_state.h" |
| 17 #include "ash/wm/window_state_aura.h" | 18 #include "ash/wm/window_state_aura.h" |
| 18 #include "ash/wm/window_util.h" | 19 #include "ash/wm/window_util.h" |
| 19 #include "ash/wm_shell.h" | |
| 20 #include "ash/wm_window.h" | 20 #include "ash/wm_window.h" |
| 21 #include "base/logging.h" | 21 #include "base/logging.h" |
| 22 #include "base/macros.h" | 22 #include "base/macros.h" |
| 23 #include "base/memory/ptr_util.h" | 23 #include "base/memory/ptr_util.h" |
| 24 #include "base/strings/utf_string_conversions.h" | 24 #include "base/strings/utf_string_conversions.h" |
| 25 #include "base/trace_event/trace_event.h" | 25 #include "base/trace_event/trace_event.h" |
| 26 #include "base/trace_event/trace_event_argument.h" | 26 #include "base/trace_event/trace_event_argument.h" |
| 27 #include "components/exo/surface.h" | 27 #include "components/exo/surface.h" |
| 28 #include "ui/aura/client/aura_constants.h" | 28 #include "ui/aura/client/aura_constants.h" |
| 29 #include "ui/aura/client/cursor_client.h" | 29 #include "ui/aura/client/cursor_client.h" |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 views::Widget* const widget_; | 147 views::Widget* const widget_; |
| 148 | 148 |
| 149 DISALLOW_COPY_AND_ASSIGN(CustomWindowTargeter); | 149 DISALLOW_COPY_AND_ASSIGN(CustomWindowTargeter); |
| 150 }; | 150 }; |
| 151 | 151 |
| 152 // Minimal WindowResizer that unlike DefaultWindowResizer does not handle | 152 // Minimal WindowResizer that unlike DefaultWindowResizer does not handle |
| 153 // dragging and resizing windows. | 153 // dragging and resizing windows. |
| 154 class CustomWindowResizer : public ash::WindowResizer { | 154 class CustomWindowResizer : public ash::WindowResizer { |
| 155 public: | 155 public: |
| 156 explicit CustomWindowResizer(ash::wm::WindowState* window_state) | 156 explicit CustomWindowResizer(ash::wm::WindowState* window_state) |
| 157 : WindowResizer(window_state), shell_(GetTarget()->GetShell()) { | 157 : WindowResizer(window_state) { |
| 158 shell_->LockCursor(); | 158 ash::ShellPort::Get()->LockCursor(); |
| 159 } | 159 } |
| 160 ~CustomWindowResizer() override { shell_->UnlockCursor(); } | 160 ~CustomWindowResizer() override { ash::ShellPort::Get()->UnlockCursor(); } |
| 161 | 161 |
| 162 // Overridden from ash::WindowResizer: | 162 // Overridden from ash::WindowResizer: |
| 163 void Drag(const gfx::Point& location, int event_flags) override {} | 163 void Drag(const gfx::Point& location, int event_flags) override {} |
| 164 void CompleteDrag() override {} | 164 void CompleteDrag() override {} |
| 165 void RevertDrag() override {} | 165 void RevertDrag() override {} |
| 166 | 166 |
| 167 private: | 167 private: |
| 168 ash::WmShell* const shell_; | |
| 169 | |
| 170 DISALLOW_COPY_AND_ASSIGN(CustomWindowResizer); | 168 DISALLOW_COPY_AND_ASSIGN(CustomWindowResizer); |
| 171 }; | 169 }; |
| 172 | 170 |
| 173 class ShellSurfaceWidget : public views::Widget { | 171 class ShellSurfaceWidget : public views::Widget { |
| 174 public: | 172 public: |
| 175 explicit ShellSurfaceWidget(ShellSurface* shell_surface) | 173 explicit ShellSurfaceWidget(ShellSurface* shell_surface) |
| 176 : shell_surface_(shell_surface) {} | 174 : shell_surface_(shell_surface) {} |
| 177 | 175 |
| 178 // Overridden from views::Widget | 176 // Overridden from views::Widget |
| 179 void Close() override { shell_surface_->Close(); } | 177 void Close() override { shell_surface_->Close(); } |
| (...skipping 1518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1698 gfx::Point ShellSurface::GetMouseLocation() const { | 1696 gfx::Point ShellSurface::GetMouseLocation() const { |
| 1699 aura::Window* const root_window = widget_->GetNativeWindow()->GetRootWindow(); | 1697 aura::Window* const root_window = widget_->GetNativeWindow()->GetRootWindow(); |
| 1700 gfx::Point location = | 1698 gfx::Point location = |
| 1701 root_window->GetHost()->dispatcher()->GetLastMouseLocationInRoot(); | 1699 root_window->GetHost()->dispatcher()->GetLastMouseLocationInRoot(); |
| 1702 aura::Window::ConvertPointToTarget( | 1700 aura::Window::ConvertPointToTarget( |
| 1703 root_window, widget_->GetNativeWindow()->parent(), &location); | 1701 root_window, widget_->GetNativeWindow()->parent(), &location); |
| 1704 return location; | 1702 return location; |
| 1705 } | 1703 } |
| 1706 | 1704 |
| 1707 } // namespace exo | 1705 } // namespace exo |
| OLD | NEW |