| 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/shelf_types.h" | 10 #include "ash/public/cpp/shelf_types.h" |
| 11 #include "ash/public/cpp/shell_window_ids.h" | 11 #include "ash/public/cpp/shell_window_ids.h" |
| 12 #include "ash/public/cpp/window_properties.h" | 12 #include "ash/public/cpp/window_properties.h" |
| 13 #include "ash/public/interfaces/window_pin_type.mojom.h" | 13 #include "ash/public/interfaces/window_pin_type.mojom.h" |
| 14 #include "ash/shell_port.h" | |
| 15 #include "ash/wm/drag_window_resizer.h" | 14 #include "ash/wm/drag_window_resizer.h" |
| 16 #include "ash/wm/window_resizer.h" | 15 #include "ash/wm/window_resizer.h" |
| 17 #include "ash/wm/window_state.h" | 16 #include "ash/wm/window_state.h" |
| 18 #include "ash/wm/window_util.h" | 17 #include "ash/wm/window_util.h" |
| 19 #include "base/logging.h" | 18 #include "base/logging.h" |
| 20 #include "base/macros.h" | 19 #include "base/macros.h" |
| 21 #include "base/memory/ptr_util.h" | 20 #include "base/memory/ptr_util.h" |
| 22 #include "base/strings/utf_string_conversions.h" | 21 #include "base/strings/utf_string_conversions.h" |
| 23 #include "base/trace_event/trace_event.h" | 22 #include "base/trace_event/trace_event.h" |
| 24 #include "base/trace_event/trace_event_argument.h" | 23 #include "base/trace_event/trace_event_argument.h" |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 views::Widget* const widget_; | 140 views::Widget* const widget_; |
| 142 | 141 |
| 143 DISALLOW_COPY_AND_ASSIGN(CustomWindowTargeter); | 142 DISALLOW_COPY_AND_ASSIGN(CustomWindowTargeter); |
| 144 }; | 143 }; |
| 145 | 144 |
| 146 // Minimal WindowResizer that unlike DefaultWindowResizer does not handle | 145 // Minimal WindowResizer that unlike DefaultWindowResizer does not handle |
| 147 // dragging and resizing windows. | 146 // dragging and resizing windows. |
| 148 class CustomWindowResizer : public ash::WindowResizer { | 147 class CustomWindowResizer : public ash::WindowResizer { |
| 149 public: | 148 public: |
| 150 explicit CustomWindowResizer(ash::wm::WindowState* window_state) | 149 explicit CustomWindowResizer(ash::wm::WindowState* window_state) |
| 151 : WindowResizer(window_state) { | 150 : WindowResizer(window_state) {} |
| 152 ash::ShellPort::Get()->LockCursor(); | |
| 153 } | |
| 154 ~CustomWindowResizer() override { ash::ShellPort::Get()->UnlockCursor(); } | |
| 155 | 151 |
| 156 // Overridden from ash::WindowResizer: | 152 // Overridden from ash::WindowResizer: |
| 157 void Drag(const gfx::Point& location, int event_flags) override {} | 153 void Drag(const gfx::Point& location, int event_flags) override {} |
| 158 void CompleteDrag() override {} | 154 void CompleteDrag() override {} |
| 159 void RevertDrag() override {} | 155 void RevertDrag() override {} |
| 160 | 156 |
| 161 private: | 157 private: |
| 162 DISALLOW_COPY_AND_ASSIGN(CustomWindowResizer); | 158 DISALLOW_COPY_AND_ASSIGN(CustomWindowResizer); |
| 163 }; | 159 }; |
| 164 | 160 |
| (...skipping 1500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1665 gfx::Point ShellSurface::GetMouseLocation() const { | 1661 gfx::Point ShellSurface::GetMouseLocation() const { |
| 1666 aura::Window* const root_window = widget_->GetNativeWindow()->GetRootWindow(); | 1662 aura::Window* const root_window = widget_->GetNativeWindow()->GetRootWindow(); |
| 1667 gfx::Point location = | 1663 gfx::Point location = |
| 1668 root_window->GetHost()->dispatcher()->GetLastMouseLocationInRoot(); | 1664 root_window->GetHost()->dispatcher()->GetLastMouseLocationInRoot(); |
| 1669 aura::Window::ConvertPointToTarget( | 1665 aura::Window::ConvertPointToTarget( |
| 1670 root_window, widget_->GetNativeWindow()->parent(), &location); | 1666 root_window, widget_->GetNativeWindow()->parent(), &location); |
| 1671 return location; | 1667 return location; |
| 1672 } | 1668 } |
| 1673 | 1669 |
| 1674 } // namespace exo | 1670 } // namespace exo |
| OLD | NEW |