From fd2da982b625109efe50a0c9351bf6dd5abc8aae Mon Sep 17 00:00:00 2001 From: Manolo Gouy Date: Sat, 27 Aug 2016 15:54:51 +0000 Subject: Fix Fl_Copy_Surface under Windows 10 when the desktop scaling factor value is > 100 % git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11899 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/drivers/WinAPI/Fl_WinAPI_Window_Driver.cxx | 28 ++------------------------ 1 file changed, 2 insertions(+), 26 deletions(-) (limited to 'src/drivers/WinAPI/Fl_WinAPI_Window_Driver.cxx') diff --git a/src/drivers/WinAPI/Fl_WinAPI_Window_Driver.cxx b/src/drivers/WinAPI/Fl_WinAPI_Window_Driver.cxx index be0bb5cf6..88afaecbf 100644 --- a/src/drivers/WinAPI/Fl_WinAPI_Window_Driver.cxx +++ b/src/drivers/WinAPI/Fl_WinAPI_Window_Driver.cxx @@ -27,6 +27,7 @@ #include #include #include "Fl_WinAPI_Window_Driver.H" +#include "Fl_WinAPI_Screen_Driver.H" #include #if USE_COLORMAP @@ -82,32 +83,7 @@ RECT // frame of the decorated window in screen coordinates const DWORD DWMWA_EXTENDED_FRAME_BOUNDS = 9; if ( DwmGetWindowAttribute(fl_xid(win), DWMWA_EXTENDED_FRAME_BOUNDS, &r, sizeof(RECT)) == S_OK ) { need_r = 0; - // Compute the global display scaling factor: 1, 1.25, 1.5, 1.75, etc... - // This factor can be set in Windows 10 by - // "Change the size of text, apps and other items" in display settings. - HDC hdc = GetDC(NULL); - //int hs = GetDeviceCaps(hdc, HORZSIZE); - int hr = GetDeviceCaps(hdc, HORZRES); // pixels visible to the app - //int px = GetDeviceCaps(hdc, LOGPIXELSX); -#ifndef DESKTOPHORZRES -#define DESKTOPHORZRES 118 - /* As of 27 august 2016, the DESKTOPHORZRES flag for GetDeviceCaps() - has disappeared from Microsoft online doc, but is quoted in numerous coding examples - e.g., https://social.msdn.microsoft.com/Forums/en-US/6acc3b21-23a4-4a00-90b4-968a43e1ccc8/capture-screen-with-high-dpi?forum=vbgeneral - It is necessary for the computation of the scaling factor at runtime as done here. - */ -#endif - int dhr = GetDeviceCaps(hdc, DESKTOPHORZRES); // true number of pixels on display - //int vs = GetDeviceCaps(hdc, VERTSIZE); - //int vr = GetDeviceCaps(hdc, VERTRES); - //int py = GetDeviceCaps(hdc, LOGPIXELSY); - //int dvr = GetDeviceCaps(hdc, DESKTOPVERTRES); - ReleaseDC(NULL, hdc); - scaling = dhr/float(hr); - scaling = int(scaling * 100 + 0.5)/100.; // round to 2 digits after decimal point - //fprintf(LOG, - // "HORZSIZE=%d %d, HORZRES=%d %d, LOGPIXELSX=%d %d, DESKTOPHORZRES=%d %d scaling=%f bx=%d bt=%d ", - // hs,vs,hr,vr,px,py,dhr,dvr,scaling);fflush(LOG); + scaling = Fl_WinAPI_Screen_Driver::desktop_scaling_factor(); } } if (need_r) { -- cgit v1.2.3