Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(287)

Unified Diff: ui/views/widget/desktop_aura/desktop_root_window_host_win.cc

Issue 12512014: Fix window positioning in high-DPI on Windows. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix another merge conflict. Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | ui/views/widget/desktop_aura/desktop_screen_position_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/widget/desktop_aura/desktop_root_window_host_win.cc
diff --git a/ui/views/widget/desktop_aura/desktop_root_window_host_win.cc b/ui/views/widget/desktop_aura/desktop_root_window_host_win.cc
index 5d316946631a08a18d8f5eb33b4dc29c900b8a68..ff895379cea7dbb25e3a44d7187597405e0cf56c 100644
--- a/ui/views/widget/desktop_aura/desktop_root_window_host_win.cc
+++ b/ui/views/widget/desktop_aura/desktop_root_window_host_win.cc
@@ -12,6 +12,7 @@
#include "ui/aura/window_property.h"
#include "ui/base/cursor/cursor_loader_win.h"
#include "ui/base/ime/input_method_win.h"
+#include "ui/base/win/dpi.h"
#include "ui/base/win/shell.h"
#include "ui/gfx/insets.h"
#include "ui/gfx/native_widget_types.h"
@@ -112,7 +113,9 @@ aura::RootWindow* DesktopRootWindowHostWin::Init(
message_handler_->set_remove_standard_frame(params.remove_standard_frame);
has_non_client_view_ = Widget::RequiresNonClientView(params.type);
- message_handler_->Init(parent_hwnd, params.bounds);
+
+ gfx::Rect pixel_bounds = ui::win::DIPToScreenRect(params.bounds);
+ message_handler_->Init(parent_hwnd, pixel_bounds);
aura::RootWindow::CreateParams rw_params(params.bounds);
rw_params.host = this;
@@ -210,7 +213,8 @@ void DesktopRootWindowHostWin::ShowWindowWithState(
void DesktopRootWindowHostWin::ShowMaximizedWithBounds(
const gfx::Rect& restored_bounds) {
- message_handler_->ShowMaximizedWithBounds(restored_bounds);
+ gfx::Rect pixel_bounds = ui::win::DIPToScreenRect(restored_bounds);
+ message_handler_->ShowMaximizedWithBounds(pixel_bounds);
}
bool DesktopRootWindowHostWin::IsVisible() const {
@@ -218,29 +222,35 @@ bool DesktopRootWindowHostWin::IsVisible() const {
}
void DesktopRootWindowHostWin::SetSize(const gfx::Size& size) {
- message_handler_->SetSize(size);
+ gfx::Size size_in_pixels = ui::win::DIPToScreenSize(size);
+ message_handler_->SetSize(size_in_pixels);
}
void DesktopRootWindowHostWin::CenterWindow(const gfx::Size& size) {
- message_handler_->CenterWindow(size);
+ gfx::Size size_in_pixels = ui::win::DIPToScreenSize(size);
+ message_handler_->CenterWindow(size_in_pixels);
}
void DesktopRootWindowHostWin::GetWindowPlacement(
gfx::Rect* bounds,
ui::WindowShowState* show_state) const {
message_handler_->GetWindowPlacement(bounds, show_state);
+ *bounds = ui::win::ScreenToDIPRect(*bounds);
}
gfx::Rect DesktopRootWindowHostWin::GetWindowBoundsInScreen() const {
- return message_handler_->GetWindowBoundsInScreen();
+ gfx::Rect pixel_bounds = message_handler_->GetWindowBoundsInScreen();
+ return ui::win::ScreenToDIPRect(pixel_bounds);
}
gfx::Rect DesktopRootWindowHostWin::GetClientAreaBoundsInScreen() const {
- return message_handler_->GetClientAreaBoundsInScreen();
+ gfx::Rect pixel_bounds = message_handler_->GetClientAreaBoundsInScreen();
+ return ui::win::ScreenToDIPRect(pixel_bounds);
}
gfx::Rect DesktopRootWindowHostWin::GetRestoredBounds() const {
- return message_handler_->GetRestoredBounds();
+ gfx::Rect pixel_bounds = message_handler_->GetRestoredBounds();
+ return ui::win::ScreenToDIPRect(pixel_bounds);
}
gfx::Rect DesktopRootWindowHostWin::GetWorkAreaBoundsInScreen() const {
@@ -249,7 +259,8 @@ gfx::Rect DesktopRootWindowHostWin::GetWorkAreaBoundsInScreen() const {
GetMonitorInfo(MonitorFromWindow(message_handler_->hwnd(),
MONITOR_DEFAULTTONEAREST),
&monitor_info);
- return gfx::Rect(monitor_info.rcWork);
+ gfx::Rect pixel_bounds = gfx::Rect(monitor_info.rcWork);
+ return ui::win::ScreenToDIPRect(pixel_bounds);
}
void DesktopRootWindowHostWin::SetShape(gfx::NativeRegion native_region) {
@@ -397,10 +408,14 @@ void DesktopRootWindowHostWin::Hide() {
void DesktopRootWindowHostWin::ToggleFullScreen() {
}
+// GetBounds and SetBounds work in pixel coordinates, whereas other get/set
+// methods work in DIP.
+
gfx::Rect DesktopRootWindowHostWin::GetBounds() const {
// Match the logic in HWNDMessageHandler::ClientAreaSizeChanged().
- gfx::Rect bounds(WidgetSizeIsClientSize() ? GetClientAreaBoundsInScreen()
- : GetWindowBoundsInScreen());
+ gfx::Rect bounds(WidgetSizeIsClientSize() ?
+ message_handler_->GetClientAreaBoundsInScreen() :
+ message_handler_->GetWindowBoundsInScreen());
gfx::Rect without_expansion(bounds.x() - window_expansion_.x(),
bounds.y() - window_expansion_.y(),
bounds.width() - window_expansion_.width(),
@@ -710,8 +725,9 @@ void DesktopRootWindowHostWin::HandleClientSizeChanged(
if (root_window_host_delegate_)
root_window_host_delegate_->OnHostResized(new_size);
// TODO(beng): replace with a layout manager??
- content_window_->SetBounds(gfx::Rect(without_expansion));
- native_widget_delegate_->OnNativeWidgetSizeChanged(new_size);
+ gfx::Size dip_size = ui::win::ScreenToDIPSize(without_expansion);
+ content_window_->SetBounds(gfx::Rect(dip_size));
+ native_widget_delegate_->OnNativeWidgetSizeChanged(dip_size);
}
void DesktopRootWindowHostWin::HandleFrameChanged() {
« no previous file with comments | « no previous file | ui/views/widget/desktop_aura/desktop_screen_position_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698