| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 "ui/views/widget/desktop_aura/desktop_screen_position_client.h" | 5 #include "ui/views/widget/desktop_aura/desktop_screen_position_client.h" |
| 6 | 6 |
| 7 #include "ui/aura/window_tree_host.h" | 7 #include "ui/aura/window_tree_host.h" |
| 8 #include "ui/gfx/display.h" | 8 #include "ui/gfx/display.h" |
| 9 #include "ui/gfx/point_conversions.h" | 9 #include "ui/gfx/point_conversions.h" |
| 10 #include "ui/gfx/screen.h" | 10 #include "ui/gfx/screen.h" |
| 11 #include "ui/views/widget/desktop_aura/desktop_native_widget_aura.h" | 11 #include "ui/views/widget/desktop_aura/desktop_native_widget_aura.h" |
| 12 | 12 |
| 13 namespace views { | 13 namespace views { |
| 14 | 14 |
| 15 namespace { | 15 namespace { |
| 16 | 16 |
| 17 gfx::Point GetOrigin(const aura::Window* root_window) { | 17 gfx::Point GetOrigin(const aura::Window* root_window) { |
| 18 gfx::Point origin_in_pixels = | 18 gfx::Point origin_in_pixels = |
| 19 root_window->GetHost()->GetBounds().origin(); | 19 root_window->GetHost()->GetBounds().origin(); |
| 20 aura::Window* window = const_cast<aura::Window*>(root_window); | 20 aura::Window* window = const_cast<aura::Window*>(root_window); |
| 21 float scale = gfx::Screen::GetScreenFor(window)-> | 21 float scale = gfx::Screen::GetScreenFor(window)-> |
| 22 GetDisplayNearestWindow(window).device_scale_factor(); | 22 GetDisplayNearestWindow(window).device_scale_factor(); |
| 23 return gfx::ToFlooredPoint( | 23 return gfx::ToFlooredPoint( |
| 24 gfx::ScalePoint(origin_in_pixels, 1 / scale)); | 24 gfx::ScalePoint(origin_in_pixels, 1 / scale)); |
| 25 } | 25 } |
| 26 | 26 |
| 27 // Returns true if bounds passed to window are treated as though they are in | 27 // Returns true if bounds passed to window are treated as though they are in |
| 28 // screen coordinates. | 28 // screen coordinates. |
| 29 bool PositionWindowInScreenCoordinates(aura::Window* window) { | 29 bool PositionWindowInScreenCoordinates(aura::Window* window) { |
| 30 if (window->type() == ui::wm::WINDOW_TYPE_POPUP || | 30 if (window->type() == ui::wm::WINDOW_TYPE_POPUP) |
| 31 window->type() == ui::wm::WINDOW_TYPE_TOOLTIP) | |
| 32 return true; | 31 return true; |
| 33 | 32 |
| 34 Widget* widget = Widget::GetWidgetForNativeView(window); | 33 Widget* widget = Widget::GetWidgetForNativeView(window); |
| 35 return widget && widget->is_top_level(); | 34 return widget && widget->is_top_level(); |
| 36 } | 35 } |
| 37 | 36 |
| 38 } // namespace | 37 } // namespace |
| 39 | 38 |
| 40 DesktopScreenPositionClient::DesktopScreenPositionClient( | 39 DesktopScreenPositionClient::DesktopScreenPositionClient( |
| 41 aura::Window* root_window) : root_window_(root_window) { | 40 aura::Window* root_window) : root_window_(root_window) { |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 desktop_native_widget->GetNativeView() == window) { | 94 desktop_native_widget->GetNativeView() == window) { |
| 96 // |window| is the content_window. | 95 // |window| is the content_window. |
| 97 // Setting bounds of root resizes |window|. | 96 // Setting bounds of root resizes |window|. |
| 98 root->GetHost()->SetBounds(bounds); | 97 root->GetHost()->SetBounds(bounds); |
| 99 } else { | 98 } else { |
| 100 window->SetBounds(bounds); | 99 window->SetBounds(bounds); |
| 101 } | 100 } |
| 102 } | 101 } |
| 103 | 102 |
| 104 } // namespace views | 103 } // namespace views |
| OLD | NEW |