Changes multihead reorganizing code for win32 support, mostly from a patch
Wed Jun 5 18:34:47 2002 Owen Taylor <otaylor@redhat.com>
Changes multihead reorganizing code for win32 support,
mostly from a patch by Hans Breuer.
* gdk/gdkcolor.c gdk/x11/gdkcolor-x11.c gdk/gdkcursor.c
gdk/x11/gdkcursor-x11.c gdk/gdkevents.c gdk/x11/gdkevents-x11.c
gdk/gdkfont.c gdk/x11/gdkfont-x11.c gdk/gdkkeys.c
gdk/x11/gdkkeys-x11.c gdk/gdkimage.c gdk/x11/gdkimage-x11.c
gdk/gdkscreen.c gdk/x11/gdkmain-x11.c
gdk/gdkdisplay.c gdk/gdkevents-x11.c gdk/gdkpango.c
gdk/x11/gdkpango-x11.c gdk/gdkselection.c
gdk/x11/gdkselection-x11.c gdk/gdkwindow.c
gdk/x11/gdkwindow-x11.c gdk/gdkvisual.c gdk/x11/gdkvisual-x11.c:
Move port-independent singlehead wrapper functions into
port-independent part of GDK. (#80009)
* gdk/win32/gdkcolor-win32.c gdk/win32/gdkcursor-win32.c
gdk/win32/gdkevents-win32.c gdk/win32/gdkfont-win32.c
gdk/win32/gdkimage-win32.c gdk/win32/gdkkeys-win32.c
gdk/win32/gdkmain-win32.c gdk/win32/gdkproperty-win32.c
gdk/win32/gdkselection-win32.c gdk/win32/gkwindow-win32.c:
Turn singlehead functions into "multihead" functions that ignore
their GdkDisplay or GdkScreen arguments.
* gdk/win32/gdkdrawable-win32.c gdk/win32/gdkevents-win32.c
gdk/win32/gdkinput-win32.c gdk/win32/gdkprivate-win32.h:
Misc multihead-compatibility changes.
* gtk/gtk.def gdk/gdk.def: Update for multihead functions.
* gdk/gdkcolormap.h gdk/gdkvisual.h gdk/x11/gdkcolormap-x11.c
gdk/x11/gdkvisual-x11.c: Remove the screen fields
from the public parts of the colormap/visual structures, add accessors
instead.
* gdk/gdkpixbuf-render.c gdk/gdkpixmap.c gdk/gdkrgb.c
gdk/x11/gdkcolormap-x11.c gdk/x11/gdkimage-x11.c
gdk/x11/gdkimage-x11.c gdk/x11/gdkprivate-x11.h gtk/gtkgc.c
gtk/gtkstyle.c gtk/gtkwidget.c: Use accessors to get the screen
for colormaps, visuals; move the fields into the private
structures for the x11 backend.
* gdk/gdkdisplay.[ch] gdk/x11/gdkdisplay-x11.[ch]
gdk/gdkscreen.[ch] gdk/x11/gdkscreen-x11.c:
Remove virtualization of screen and display functions.
(#79990, patch from Erwann Chenede)
* gdk/win32/gdkdisplay-x11.c gdk/win32/gdkscreen-win32.c
gdk/win32/{Makefile.am, makefile.msc, makefile.mingw}:
New files containing stub implementations of Display,
Screen functions.
* gdk/x11/gdkscreen-x11.[ch] gdk/x11/gdkdisplay-x11.[ch]
gdk/x11/gdkx.h: Clean up function exports and what
headers they are in. (#79954)
* gdk/x11/gdkx.h: Fix macro that was referring to a non-existant
screen->screen_num. (In the patch for #79972, Erwann Chenede)
* gdk/gdkscreen.c gdk/gdkwindow.c gdk/x11/gdkinternals.h
gdk/x11/gdkscreen-x11.c: Fix gdk_screen_get_window_at_pointer()
to use window hooks. (#79972, patch partly from Erwann Chenede)
* gdk/x11/gdkdisplay-x11.c gdk/x11/gdkevents-x11.c: Fix
some warnings.
2002-06-06 00:26:42 +00:00
|
|
|
/* GDK - The GIMP Drawing Kit
|
2005-04-03 21:03:08 +00:00
|
|
|
* Copyright (C) 2002,2005 Hans Breuer
|
gdk/win32/gdkinput-win32.h Drop the GdkEvent* parameter, it wasn't used.
2003-08-07 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkinput-win32.h
* gdk/win32/gdkinput-win32.c (_gdk_input_configure_event,
_gdk_input_enter_event): Drop the GdkEvent* parameter, it wasn't
used.
* gdk/win32/gdkevents-win32.c (gdk_event_translate): Adapt caller
accordingly, in fact an uninitialised variable was dereferenced.
[Win32] Add support for multiple monitors.
* gdk/win32/gdkprivate-win32.h
* gdk/win32/gdkglobals-win32.c: New global variables for
multiple-monitor info: _gdk_num_monitors, _gdk_monitors, and
_gdk_offset_x and _gdk_offset_y.
* gdk/win32/gdkdisplay-win32.c (count_monitor, enum_monitor): New
functions, enumeration functions passed to EnumDisplayMonitors().
(gdk_display_open): If the EnumDisplayMonitors() and
GetMonitorInfo() API is present (on Win98, Win2000 and newer), use
if to find out monitor info.
Calculate the offset between Win32 coordinates (relative to the
primary monitor's origin (and thus negative on monitors to the
left of or above it), and GDK's (visible coordinates should be
non-negative).
* gdk/win32/gdkscreen-win32 (gdk_screen_get_n_monitors,
gdk_screen_get_monitor_geometry): Use information collected above.
(gdk_window_move, gdk_window_move_resize_window_get_geometry):
Subtract _gdk_offset_{x,y} from GDK root window coordinates.
(gdk_window_get_geometry, gdk_window_get_origin,
gdk_window_get_frame_extents): For top-level windows, add
_gdk_offset_{x,y} to GDK root window coordinates
Still need to handle multiple monitors in
gdk_window_fullscreen(). Probably should make the window
fullscreen on the monitor where the cursor is?
* gdk/win32/gdkevents-win32.c: Add _gdk_offset_{x,y} to all GDK
root window coordinates in GdkEvents.
[Win32] Fix geometry hint handling. Add support for resize
increment and base size, and aspect ratio geometry hints. The
"gridded geometry" test in testgtk now works beautifully.
* gdk/win32/gdkwindow-win32.c (gdk_window_set_geometry_hints):
Turns out this function shouldn't actually ever modify the
window's size, just store the hints. (Old code kept for a while
inside #if 0.)
(gdk_window_set_hints): Remove presumably broken code that handles
the position hints, this function is obsolete anyway.
* gdk/win32/gdkevents-win32.c: Drop the current_{x,y}_root
variables, not used.
(adjust_drag): New function, used to implement resize increment
hints.
(gdk_event_translate): Handle WM_SIZING, implement resize
increment and base size, and aspect ratio geometry hints here. The
WM_GETMINMAXINFO handler takes care of the minimum and maximum
size hints as before. Fix the WM_GETMINMAXINFO handler to take
into account window decorations. No need to modify the
ptMaxPosition and ptMaxSize fields in the MINMAXINFO struct,
the defaults are fine.
* gdk/win32/gdkprivate-win32.h
* gdk/win32/gdkwindow-win32.c (_gdk_win32_adjust_client_rect,
_gdk_win32_get_adjusted_client_rect): New helper functions.
2003-08-07 22:17:18 +00:00
|
|
|
* Copyright (C) 2003 Tor Lillqvist
|
Changes multihead reorganizing code for win32 support, mostly from a patch
Wed Jun 5 18:34:47 2002 Owen Taylor <otaylor@redhat.com>
Changes multihead reorganizing code for win32 support,
mostly from a patch by Hans Breuer.
* gdk/gdkcolor.c gdk/x11/gdkcolor-x11.c gdk/gdkcursor.c
gdk/x11/gdkcursor-x11.c gdk/gdkevents.c gdk/x11/gdkevents-x11.c
gdk/gdkfont.c gdk/x11/gdkfont-x11.c gdk/gdkkeys.c
gdk/x11/gdkkeys-x11.c gdk/gdkimage.c gdk/x11/gdkimage-x11.c
gdk/gdkscreen.c gdk/x11/gdkmain-x11.c
gdk/gdkdisplay.c gdk/gdkevents-x11.c gdk/gdkpango.c
gdk/x11/gdkpango-x11.c gdk/gdkselection.c
gdk/x11/gdkselection-x11.c gdk/gdkwindow.c
gdk/x11/gdkwindow-x11.c gdk/gdkvisual.c gdk/x11/gdkvisual-x11.c:
Move port-independent singlehead wrapper functions into
port-independent part of GDK. (#80009)
* gdk/win32/gdkcolor-win32.c gdk/win32/gdkcursor-win32.c
gdk/win32/gdkevents-win32.c gdk/win32/gdkfont-win32.c
gdk/win32/gdkimage-win32.c gdk/win32/gdkkeys-win32.c
gdk/win32/gdkmain-win32.c gdk/win32/gdkproperty-win32.c
gdk/win32/gdkselection-win32.c gdk/win32/gkwindow-win32.c:
Turn singlehead functions into "multihead" functions that ignore
their GdkDisplay or GdkScreen arguments.
* gdk/win32/gdkdrawable-win32.c gdk/win32/gdkevents-win32.c
gdk/win32/gdkinput-win32.c gdk/win32/gdkprivate-win32.h:
Misc multihead-compatibility changes.
* gtk/gtk.def gdk/gdk.def: Update for multihead functions.
* gdk/gdkcolormap.h gdk/gdkvisual.h gdk/x11/gdkcolormap-x11.c
gdk/x11/gdkvisual-x11.c: Remove the screen fields
from the public parts of the colormap/visual structures, add accessors
instead.
* gdk/gdkpixbuf-render.c gdk/gdkpixmap.c gdk/gdkrgb.c
gdk/x11/gdkcolormap-x11.c gdk/x11/gdkimage-x11.c
gdk/x11/gdkimage-x11.c gdk/x11/gdkprivate-x11.h gtk/gtkgc.c
gtk/gtkstyle.c gtk/gtkwidget.c: Use accessors to get the screen
for colormaps, visuals; move the fields into the private
structures for the x11 backend.
* gdk/gdkdisplay.[ch] gdk/x11/gdkdisplay-x11.[ch]
gdk/gdkscreen.[ch] gdk/x11/gdkscreen-x11.c:
Remove virtualization of screen and display functions.
(#79990, patch from Erwann Chenede)
* gdk/win32/gdkdisplay-x11.c gdk/win32/gdkscreen-win32.c
gdk/win32/{Makefile.am, makefile.msc, makefile.mingw}:
New files containing stub implementations of Display,
Screen functions.
* gdk/x11/gdkscreen-x11.[ch] gdk/x11/gdkdisplay-x11.[ch]
gdk/x11/gdkx.h: Clean up function exports and what
headers they are in. (#79954)
* gdk/x11/gdkx.h: Fix macro that was referring to a non-existant
screen->screen_num. (In the patch for #79972, Erwann Chenede)
* gdk/gdkscreen.c gdk/gdkwindow.c gdk/x11/gdkinternals.h
gdk/x11/gdkscreen-x11.c: Fix gdk_screen_get_window_at_pointer()
to use window hooks. (#79972, patch partly from Erwann Chenede)
* gdk/x11/gdkdisplay-x11.c gdk/x11/gdkevents-x11.c: Fix
some warnings.
2002-06-06 00:26:42 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-02-27 13:01:10 +00:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
Changes multihead reorganizing code for win32 support, mostly from a patch
Wed Jun 5 18:34:47 2002 Owen Taylor <otaylor@redhat.com>
Changes multihead reorganizing code for win32 support,
mostly from a patch by Hans Breuer.
* gdk/gdkcolor.c gdk/x11/gdkcolor-x11.c gdk/gdkcursor.c
gdk/x11/gdkcursor-x11.c gdk/gdkevents.c gdk/x11/gdkevents-x11.c
gdk/gdkfont.c gdk/x11/gdkfont-x11.c gdk/gdkkeys.c
gdk/x11/gdkkeys-x11.c gdk/gdkimage.c gdk/x11/gdkimage-x11.c
gdk/gdkscreen.c gdk/x11/gdkmain-x11.c
gdk/gdkdisplay.c gdk/gdkevents-x11.c gdk/gdkpango.c
gdk/x11/gdkpango-x11.c gdk/gdkselection.c
gdk/x11/gdkselection-x11.c gdk/gdkwindow.c
gdk/x11/gdkwindow-x11.c gdk/gdkvisual.c gdk/x11/gdkvisual-x11.c:
Move port-independent singlehead wrapper functions into
port-independent part of GDK. (#80009)
* gdk/win32/gdkcolor-win32.c gdk/win32/gdkcursor-win32.c
gdk/win32/gdkevents-win32.c gdk/win32/gdkfont-win32.c
gdk/win32/gdkimage-win32.c gdk/win32/gdkkeys-win32.c
gdk/win32/gdkmain-win32.c gdk/win32/gdkproperty-win32.c
gdk/win32/gdkselection-win32.c gdk/win32/gkwindow-win32.c:
Turn singlehead functions into "multihead" functions that ignore
their GdkDisplay or GdkScreen arguments.
* gdk/win32/gdkdrawable-win32.c gdk/win32/gdkevents-win32.c
gdk/win32/gdkinput-win32.c gdk/win32/gdkprivate-win32.h:
Misc multihead-compatibility changes.
* gtk/gtk.def gdk/gdk.def: Update for multihead functions.
* gdk/gdkcolormap.h gdk/gdkvisual.h gdk/x11/gdkcolormap-x11.c
gdk/x11/gdkvisual-x11.c: Remove the screen fields
from the public parts of the colormap/visual structures, add accessors
instead.
* gdk/gdkpixbuf-render.c gdk/gdkpixmap.c gdk/gdkrgb.c
gdk/x11/gdkcolormap-x11.c gdk/x11/gdkimage-x11.c
gdk/x11/gdkimage-x11.c gdk/x11/gdkprivate-x11.h gtk/gtkgc.c
gtk/gtkstyle.c gtk/gtkwidget.c: Use accessors to get the screen
for colormaps, visuals; move the fields into the private
structures for the x11 backend.
* gdk/gdkdisplay.[ch] gdk/x11/gdkdisplay-x11.[ch]
gdk/gdkscreen.[ch] gdk/x11/gdkscreen-x11.c:
Remove virtualization of screen and display functions.
(#79990, patch from Erwann Chenede)
* gdk/win32/gdkdisplay-x11.c gdk/win32/gdkscreen-win32.c
gdk/win32/{Makefile.am, makefile.msc, makefile.mingw}:
New files containing stub implementations of Display,
Screen functions.
* gdk/x11/gdkscreen-x11.[ch] gdk/x11/gdkdisplay-x11.[ch]
gdk/x11/gdkx.h: Clean up function exports and what
headers they are in. (#79954)
* gdk/x11/gdkx.h: Fix macro that was referring to a non-existant
screen->screen_num. (In the patch for #79972, Erwann Chenede)
* gdk/gdkscreen.c gdk/gdkwindow.c gdk/x11/gdkinternals.h
gdk/x11/gdkscreen-x11.c: Fix gdk_screen_get_window_at_pointer()
to use window hooks. (#79972, patch partly from Erwann Chenede)
* gdk/x11/gdkdisplay-x11.c gdk/x11/gdkevents-x11.c: Fix
some warnings.
2002-06-06 00:26:42 +00:00
|
|
|
*/
|
|
|
|
|
2008-06-22 14:28:52 +00:00
|
|
|
#include "config.h"
|
2016-11-11 12:53:41 +00:00
|
|
|
|
|
|
|
#define _WIN32_WINNT 0x0600
|
2016-12-28 14:25:07 +00:00
|
|
|
#define VK_USE_PLATFORM_WIN32_KHR
|
2016-11-11 12:53:41 +00:00
|
|
|
|
2002-11-16 21:51:47 +00:00
|
|
|
#include "gdk.h"
|
Changes multihead reorganizing code for win32 support, mostly from a patch
Wed Jun 5 18:34:47 2002 Owen Taylor <otaylor@redhat.com>
Changes multihead reorganizing code for win32 support,
mostly from a patch by Hans Breuer.
* gdk/gdkcolor.c gdk/x11/gdkcolor-x11.c gdk/gdkcursor.c
gdk/x11/gdkcursor-x11.c gdk/gdkevents.c gdk/x11/gdkevents-x11.c
gdk/gdkfont.c gdk/x11/gdkfont-x11.c gdk/gdkkeys.c
gdk/x11/gdkkeys-x11.c gdk/gdkimage.c gdk/x11/gdkimage-x11.c
gdk/gdkscreen.c gdk/x11/gdkmain-x11.c
gdk/gdkdisplay.c gdk/gdkevents-x11.c gdk/gdkpango.c
gdk/x11/gdkpango-x11.c gdk/gdkselection.c
gdk/x11/gdkselection-x11.c gdk/gdkwindow.c
gdk/x11/gdkwindow-x11.c gdk/gdkvisual.c gdk/x11/gdkvisual-x11.c:
Move port-independent singlehead wrapper functions into
port-independent part of GDK. (#80009)
* gdk/win32/gdkcolor-win32.c gdk/win32/gdkcursor-win32.c
gdk/win32/gdkevents-win32.c gdk/win32/gdkfont-win32.c
gdk/win32/gdkimage-win32.c gdk/win32/gdkkeys-win32.c
gdk/win32/gdkmain-win32.c gdk/win32/gdkproperty-win32.c
gdk/win32/gdkselection-win32.c gdk/win32/gkwindow-win32.c:
Turn singlehead functions into "multihead" functions that ignore
their GdkDisplay or GdkScreen arguments.
* gdk/win32/gdkdrawable-win32.c gdk/win32/gdkevents-win32.c
gdk/win32/gdkinput-win32.c gdk/win32/gdkprivate-win32.h:
Misc multihead-compatibility changes.
* gtk/gtk.def gdk/gdk.def: Update for multihead functions.
* gdk/gdkcolormap.h gdk/gdkvisual.h gdk/x11/gdkcolormap-x11.c
gdk/x11/gdkvisual-x11.c: Remove the screen fields
from the public parts of the colormap/visual structures, add accessors
instead.
* gdk/gdkpixbuf-render.c gdk/gdkpixmap.c gdk/gdkrgb.c
gdk/x11/gdkcolormap-x11.c gdk/x11/gdkimage-x11.c
gdk/x11/gdkimage-x11.c gdk/x11/gdkprivate-x11.h gtk/gtkgc.c
gtk/gtkstyle.c gtk/gtkwidget.c: Use accessors to get the screen
for colormaps, visuals; move the fields into the private
structures for the x11 backend.
* gdk/gdkdisplay.[ch] gdk/x11/gdkdisplay-x11.[ch]
gdk/gdkscreen.[ch] gdk/x11/gdkscreen-x11.c:
Remove virtualization of screen and display functions.
(#79990, patch from Erwann Chenede)
* gdk/win32/gdkdisplay-x11.c gdk/win32/gdkscreen-win32.c
gdk/win32/{Makefile.am, makefile.msc, makefile.mingw}:
New files containing stub implementations of Display,
Screen functions.
* gdk/x11/gdkscreen-x11.[ch] gdk/x11/gdkdisplay-x11.[ch]
gdk/x11/gdkx.h: Clean up function exports and what
headers they are in. (#79954)
* gdk/x11/gdkx.h: Fix macro that was referring to a non-existant
screen->screen_num. (In the patch for #79972, Erwann Chenede)
* gdk/gdkscreen.c gdk/gdkwindow.c gdk/x11/gdkinternals.h
gdk/x11/gdkscreen-x11.c: Fix gdk_screen_get_window_at_pointer()
to use window hooks. (#79972, patch partly from Erwann Chenede)
* gdk/x11/gdkdisplay-x11.c gdk/x11/gdkevents-x11.c: Fix
some warnings.
2002-06-06 00:26:42 +00:00
|
|
|
#include "gdkprivate-win32.h"
|
2014-12-17 04:32:04 +00:00
|
|
|
#include "gdkdisplay-win32.h"
|
2016-02-22 20:01:24 +00:00
|
|
|
#include "gdkdevicemanager-win32.h"
|
2014-12-17 04:32:04 +00:00
|
|
|
#include "gdkglcontext-win32.h"
|
2011-01-02 10:51:25 +00:00
|
|
|
#include "gdkwin32display.h"
|
|
|
|
#include "gdkwin32screen.h"
|
|
|
|
#include "gdkwin32window.h"
|
2016-04-20 07:36:00 +00:00
|
|
|
#include "gdkmonitor-win32.h"
|
2011-11-02 15:49:55 +00:00
|
|
|
#include "gdkwin32.h"
|
2016-12-28 14:25:07 +00:00
|
|
|
#include "gdkvulkancontext-win32.h"
|
Changes multihead reorganizing code for win32 support, mostly from a patch
Wed Jun 5 18:34:47 2002 Owen Taylor <otaylor@redhat.com>
Changes multihead reorganizing code for win32 support,
mostly from a patch by Hans Breuer.
* gdk/gdkcolor.c gdk/x11/gdkcolor-x11.c gdk/gdkcursor.c
gdk/x11/gdkcursor-x11.c gdk/gdkevents.c gdk/x11/gdkevents-x11.c
gdk/gdkfont.c gdk/x11/gdkfont-x11.c gdk/gdkkeys.c
gdk/x11/gdkkeys-x11.c gdk/gdkimage.c gdk/x11/gdkimage-x11.c
gdk/gdkscreen.c gdk/x11/gdkmain-x11.c
gdk/gdkdisplay.c gdk/gdkevents-x11.c gdk/gdkpango.c
gdk/x11/gdkpango-x11.c gdk/gdkselection.c
gdk/x11/gdkselection-x11.c gdk/gdkwindow.c
gdk/x11/gdkwindow-x11.c gdk/gdkvisual.c gdk/x11/gdkvisual-x11.c:
Move port-independent singlehead wrapper functions into
port-independent part of GDK. (#80009)
* gdk/win32/gdkcolor-win32.c gdk/win32/gdkcursor-win32.c
gdk/win32/gdkevents-win32.c gdk/win32/gdkfont-win32.c
gdk/win32/gdkimage-win32.c gdk/win32/gdkkeys-win32.c
gdk/win32/gdkmain-win32.c gdk/win32/gdkproperty-win32.c
gdk/win32/gdkselection-win32.c gdk/win32/gkwindow-win32.c:
Turn singlehead functions into "multihead" functions that ignore
their GdkDisplay or GdkScreen arguments.
* gdk/win32/gdkdrawable-win32.c gdk/win32/gdkevents-win32.c
gdk/win32/gdkinput-win32.c gdk/win32/gdkprivate-win32.h:
Misc multihead-compatibility changes.
* gtk/gtk.def gdk/gdk.def: Update for multihead functions.
* gdk/gdkcolormap.h gdk/gdkvisual.h gdk/x11/gdkcolormap-x11.c
gdk/x11/gdkvisual-x11.c: Remove the screen fields
from the public parts of the colormap/visual structures, add accessors
instead.
* gdk/gdkpixbuf-render.c gdk/gdkpixmap.c gdk/gdkrgb.c
gdk/x11/gdkcolormap-x11.c gdk/x11/gdkimage-x11.c
gdk/x11/gdkimage-x11.c gdk/x11/gdkprivate-x11.h gtk/gtkgc.c
gtk/gtkstyle.c gtk/gtkwidget.c: Use accessors to get the screen
for colormaps, visuals; move the fields into the private
structures for the x11 backend.
* gdk/gdkdisplay.[ch] gdk/x11/gdkdisplay-x11.[ch]
gdk/gdkscreen.[ch] gdk/x11/gdkscreen-x11.c:
Remove virtualization of screen and display functions.
(#79990, patch from Erwann Chenede)
* gdk/win32/gdkdisplay-x11.c gdk/win32/gdkscreen-win32.c
gdk/win32/{Makefile.am, makefile.msc, makefile.mingw}:
New files containing stub implementations of Display,
Screen functions.
* gdk/x11/gdkscreen-x11.[ch] gdk/x11/gdkdisplay-x11.[ch]
gdk/x11/gdkx.h: Clean up function exports and what
headers they are in. (#79954)
* gdk/x11/gdkx.h: Fix macro that was referring to a non-existant
screen->screen_num. (In the patch for #79972, Erwann Chenede)
* gdk/gdkscreen.c gdk/gdkwindow.c gdk/x11/gdkinternals.h
gdk/x11/gdkscreen-x11.c: Fix gdk_screen_get_window_at_pointer()
to use window hooks. (#79972, patch partly from Erwann Chenede)
* gdk/x11/gdkdisplay-x11.c gdk/x11/gdkevents-x11.c: Fix
some warnings.
2002-06-06 00:26:42 +00:00
|
|
|
|
2016-11-01 08:42:31 +00:00
|
|
|
#include <dwmapi.h>
|
|
|
|
|
2015-10-29 16:20:54 +00:00
|
|
|
static int debug_indent = 0;
|
|
|
|
|
2016-04-20 07:36:00 +00:00
|
|
|
static GdkMonitor *
|
|
|
|
_gdk_win32_display_find_matching_monitor (GdkWin32Display *win32_display,
|
|
|
|
GdkMonitor *needle)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < win32_display->monitors->len; i++)
|
|
|
|
{
|
|
|
|
GdkWin32Monitor *m;
|
|
|
|
|
|
|
|
m = GDK_WIN32_MONITOR (g_ptr_array_index (win32_display->monitors, i));
|
|
|
|
|
|
|
|
if (_gdk_win32_monitor_compare (m, GDK_WIN32_MONITOR (needle)) == 0)
|
|
|
|
return GDK_MONITOR (m);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
_gdk_win32_display_init_monitors (GdkWin32Display *win32_display)
|
|
|
|
{
|
|
|
|
GdkDisplay *display = GDK_DISPLAY (win32_display);
|
|
|
|
GPtrArray *new_monitors;
|
|
|
|
gint i;
|
|
|
|
gboolean changed = FALSE;
|
|
|
|
GdkWin32Monitor *primary_to_move = NULL;
|
|
|
|
|
|
|
|
for (i = 0; i < win32_display->monitors->len; i++)
|
|
|
|
GDK_WIN32_MONITOR (g_ptr_array_index (win32_display->monitors, i))->remove = TRUE;
|
|
|
|
|
|
|
|
new_monitors = _gdk_win32_display_get_monitor_list (win32_display);
|
|
|
|
|
|
|
|
for (i = 0; i < new_monitors->len; i++)
|
|
|
|
{
|
|
|
|
GdkWin32Monitor *w32_m;
|
|
|
|
GdkMonitor *m;
|
|
|
|
GdkWin32Monitor *w32_ex_monitor;
|
|
|
|
GdkMonitor *ex_monitor;
|
|
|
|
GdkRectangle geometry, ex_geometry;
|
|
|
|
GdkRectangle workarea, ex_workarea;
|
|
|
|
|
|
|
|
w32_m = GDK_WIN32_MONITOR (g_ptr_array_index (new_monitors, i));
|
|
|
|
m = GDK_MONITOR (w32_m);
|
|
|
|
ex_monitor = _gdk_win32_display_find_matching_monitor (win32_display, m);
|
|
|
|
w32_ex_monitor = GDK_WIN32_MONITOR (ex_monitor);
|
|
|
|
|
|
|
|
if (ex_monitor == NULL)
|
|
|
|
{
|
|
|
|
w32_m->add = TRUE;
|
|
|
|
changed = TRUE;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
w32_ex_monitor->remove = FALSE;
|
|
|
|
|
|
|
|
if (i == 0)
|
|
|
|
primary_to_move = w32_ex_monitor;
|
|
|
|
|
|
|
|
gdk_monitor_get_geometry (m, &geometry);
|
|
|
|
gdk_monitor_get_geometry (ex_monitor, &ex_geometry);
|
|
|
|
gdk_monitor_get_workarea (m, &workarea);
|
|
|
|
gdk_monitor_get_workarea (ex_monitor, &ex_workarea);
|
|
|
|
|
|
|
|
if (memcmp (&workarea, &ex_workarea, sizeof (GdkRectangle)) != 0)
|
|
|
|
{
|
|
|
|
w32_ex_monitor->work_rect = workarea;
|
|
|
|
changed = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (memcmp (&geometry, &ex_geometry, sizeof (GdkRectangle)) != 0)
|
|
|
|
{
|
|
|
|
gdk_monitor_set_size (ex_monitor, geometry.width, geometry.height);
|
|
|
|
gdk_monitor_set_position (ex_monitor, geometry.x, geometry.y);
|
|
|
|
changed = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (gdk_monitor_get_width_mm (m) != gdk_monitor_get_width_mm (ex_monitor) ||
|
|
|
|
gdk_monitor_get_height_mm (m) != gdk_monitor_get_height_mm (ex_monitor))
|
|
|
|
{
|
|
|
|
gdk_monitor_set_physical_size (ex_monitor,
|
|
|
|
gdk_monitor_get_width_mm (m),
|
|
|
|
gdk_monitor_get_height_mm (m));
|
|
|
|
changed = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (g_strcmp0 (gdk_monitor_get_model (m), gdk_monitor_get_model (ex_monitor)) != 0)
|
|
|
|
{
|
|
|
|
gdk_monitor_set_model (ex_monitor,
|
|
|
|
gdk_monitor_get_model (m));
|
|
|
|
changed = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (g_strcmp0 (gdk_monitor_get_manufacturer (m), gdk_monitor_get_manufacturer (ex_monitor)) != 0)
|
|
|
|
{
|
|
|
|
gdk_monitor_set_manufacturer (ex_monitor,
|
|
|
|
gdk_monitor_get_manufacturer (m));
|
|
|
|
changed = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (gdk_monitor_get_refresh_rate (m) != gdk_monitor_get_refresh_rate (ex_monitor))
|
|
|
|
{
|
|
|
|
gdk_monitor_set_refresh_rate (ex_monitor, gdk_monitor_get_refresh_rate (m));
|
|
|
|
changed = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (gdk_monitor_get_scale_factor (m) != gdk_monitor_get_scale_factor (ex_monitor))
|
|
|
|
{
|
|
|
|
gdk_monitor_set_scale_factor (ex_monitor, gdk_monitor_get_scale_factor (m));
|
|
|
|
changed = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (gdk_monitor_get_subpixel_layout (m) != gdk_monitor_get_subpixel_layout (ex_monitor))
|
|
|
|
{
|
|
|
|
gdk_monitor_set_subpixel_layout (ex_monitor, gdk_monitor_get_subpixel_layout (m));
|
|
|
|
changed = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = win32_display->monitors->len - 1; i >= 0; i--)
|
|
|
|
{
|
|
|
|
GdkWin32Monitor *w32_ex_monitor;
|
|
|
|
GdkMonitor *ex_monitor;
|
|
|
|
|
|
|
|
w32_ex_monitor = GDK_WIN32_MONITOR (g_ptr_array_index (win32_display->monitors, i));
|
|
|
|
ex_monitor = GDK_MONITOR (w32_ex_monitor);
|
|
|
|
|
|
|
|
if (!w32_ex_monitor->remove)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
changed = TRUE;
|
|
|
|
gdk_display_monitor_removed (display, ex_monitor);
|
|
|
|
g_ptr_array_remove_index (win32_display->monitors, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < new_monitors->len; i++)
|
|
|
|
{
|
|
|
|
GdkWin32Monitor *w32_m;
|
|
|
|
GdkMonitor *m;
|
|
|
|
|
|
|
|
w32_m = GDK_WIN32_MONITOR (g_ptr_array_index (new_monitors, i));
|
|
|
|
m = GDK_MONITOR (w32_m);
|
|
|
|
|
|
|
|
if (!w32_m->add)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
gdk_display_monitor_added (display, m);
|
|
|
|
|
|
|
|
if (i == 0)
|
|
|
|
g_ptr_array_insert (win32_display->monitors, 0, g_object_ref (w32_m));
|
|
|
|
else
|
|
|
|
g_ptr_array_add (win32_display->monitors, g_object_ref (w32_m));
|
|
|
|
}
|
|
|
|
|
|
|
|
g_ptr_array_free (new_monitors, TRUE);
|
|
|
|
|
|
|
|
if (primary_to_move)
|
|
|
|
{
|
|
|
|
g_ptr_array_remove (win32_display->monitors, g_object_ref (primary_to_move));
|
|
|
|
g_ptr_array_insert (win32_display->monitors, 0, primary_to_move);
|
|
|
|
changed = TRUE;
|
|
|
|
}
|
|
|
|
|
GDK-Win32/4.0: Enable HiDPI support for Windows
This enables HiDPI support for GTK+ on Windows, so that the
fonts and window look better on HiDPI displays. Notes for the current
work:
-The DPI awareness enabling can be disabled if and only if an application
manifest is not embedded in the app to enable DPI awareness AND a user
compatibility setting is not set to limit DPI awareness for the app, via
the envvar GDK_WIN32_DISABLE_HIDPI. The app manifest/user setting for
DPI awareness will always win against the envvar, and so the HiDPI items
will be always setup in such scenarios, unless DPI awareness is disabled.
-Both automatic detection for the scaling factor and setting the scale
factor using the GDK_SCALE envvar are supported, where the envvar takes
precedence, which will therefore disable automatic scaling when
resolution changes.
-We now default to a per-system DPI awareness model, which means that we
do not handle WM_DPICHANGED, unless one sets the
GDK_WIN32_PER_MONITOR_HIDPI envvar, where notes for it are in the
following point.
-Automatic scaling during WM_DISPLAYCHANGE is handled (DPI setting change of
current monitor) is now supported. WM_DPICHANGED is handled as well,
except that the window positioning during the change of scaling still
needs to be refined, a change in GDK itself may be required for this.
-I am unable to test the wintab items because I don't have such devices
around.
https://bugzilla.gnome.org/show_bug.cgi?id=768081
2016-06-27 05:16:43 +00:00
|
|
|
for (i = 0; i < win32_display->monitors->len; i++)
|
|
|
|
{
|
|
|
|
GdkMonitor *monitor;
|
|
|
|
GdkWin32Monitor *win32_monitor;
|
|
|
|
|
|
|
|
monitor = GDK_MONITOR (g_ptr_array_index (win32_display->monitors, i));
|
|
|
|
|
|
|
|
if (win32_display->has_fixed_scale)
|
|
|
|
gdk_monitor_set_scale_factor (monitor, win32_display->window_scale);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* First acquire the scale using the current screen */
|
|
|
|
GdkRectangle workarea;
|
|
|
|
POINT pt;
|
|
|
|
guint scale = _gdk_win32_display_get_monitor_scale_factor (win32_display, NULL, NULL, NULL);
|
|
|
|
|
|
|
|
gdk_monitor_get_workarea (monitor, &workarea);
|
|
|
|
workarea.x -= _gdk_offset_x;
|
|
|
|
workarea.y -= _gdk_offset_y;
|
|
|
|
workarea.x += workarea.width / scale;
|
|
|
|
workarea.y += workarea.height / scale;
|
|
|
|
pt.x = workarea.x;
|
|
|
|
pt.y = workarea.y;
|
|
|
|
|
|
|
|
/* acquire the scale using the monitor which the window is nearest on Windows 8.1+ */
|
|
|
|
if (win32_display->have_at_least_win81)
|
|
|
|
{
|
|
|
|
HMONITOR hmonitor = MonitorFromPoint (pt, MONITOR_DEFAULTTONEAREST);
|
|
|
|
scale = _gdk_win32_display_get_monitor_scale_factor (win32_display, hmonitor, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
gdk_monitor_set_scale_factor (monitor, scale);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-20 07:36:00 +00:00
|
|
|
return changed;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-05-13 07:45:40 +00:00
|
|
|
/**
|
|
|
|
* gdk_win32_display_set_cursor_theme:
|
|
|
|
* @display: (type GdkWin32Display): a #GdkDisplay
|
2015-10-22 15:50:49 +00:00
|
|
|
* @name: (allow-none): the name of the cursor theme to use, or %NULL to unset
|
2015-05-13 07:45:40 +00:00
|
|
|
* a previously set value
|
|
|
|
* @size: the cursor size to use, or 0 to keep the previous size
|
|
|
|
*
|
|
|
|
* Sets the cursor theme from which the images for cursor
|
|
|
|
* should be taken.
|
|
|
|
*
|
|
|
|
* If the windowing system supports it, existing cursors created
|
|
|
|
* with gdk_cursor_new(), gdk_cursor_new_for_display() and
|
|
|
|
* gdk_cursor_new_from_name() are updated to reflect the theme
|
|
|
|
* change. Custom cursors constructed with
|
2017-11-30 01:14:53 +00:00
|
|
|
* gdk_cursor_new_from_texture() will have to be handled
|
2015-05-13 07:45:40 +00:00
|
|
|
* by the application (GTK+ applications can learn about
|
|
|
|
* cursor theme changes by listening for change notification
|
|
|
|
* for the corresponding #GtkSetting).
|
|
|
|
*
|
|
|
|
* Since: 3.18
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gdk_win32_display_set_cursor_theme (GdkDisplay *display,
|
|
|
|
const gchar *name,
|
2015-10-16 07:07:02 +00:00
|
|
|
gint size)
|
2015-05-13 07:45:40 +00:00
|
|
|
{
|
|
|
|
gint cursor_size;
|
|
|
|
gint w, h;
|
|
|
|
Win32CursorTheme *theme;
|
|
|
|
GdkWin32Display *win32_display = GDK_WIN32_DISPLAY (display);
|
|
|
|
|
|
|
|
g_assert (win32_display);
|
|
|
|
|
|
|
|
if (name == NULL)
|
|
|
|
name = "system";
|
|
|
|
|
|
|
|
w = GetSystemMetrics (SM_CXCURSOR);
|
|
|
|
h = GetSystemMetrics (SM_CYCURSOR);
|
|
|
|
|
|
|
|
/* We can load cursors of any size, but SetCursor() will scale them back
|
|
|
|
* to this value. It's possible to break that restrictions with SetSystemCursor(),
|
|
|
|
* but that will override cursors for the whole desktop session.
|
|
|
|
*/
|
|
|
|
cursor_size = (w == h) ? w : size;
|
|
|
|
|
|
|
|
if (win32_display->cursor_theme_name != NULL &&
|
|
|
|
g_strcmp0 (name, win32_display->cursor_theme_name) == 0 &&
|
|
|
|
win32_display->cursor_theme_size == cursor_size)
|
|
|
|
return;
|
|
|
|
|
|
|
|
theme = win32_cursor_theme_load (name, cursor_size);
|
|
|
|
if (theme == NULL)
|
|
|
|
{
|
|
|
|
g_warning ("Failed to load cursor theme %s", name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (win32_display->cursor_theme)
|
|
|
|
{
|
|
|
|
win32_cursor_theme_destroy (win32_display->cursor_theme);
|
|
|
|
win32_display->cursor_theme = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
win32_display->cursor_theme = theme;
|
|
|
|
g_free (win32_display->cursor_theme_name);
|
|
|
|
win32_display->cursor_theme_name = g_strdup (name);
|
|
|
|
win32_display->cursor_theme_size = cursor_size;
|
|
|
|
|
|
|
|
_gdk_win32_display_update_cursors (win32_display);
|
|
|
|
}
|
|
|
|
|
|
|
|
Win32CursorTheme *
|
|
|
|
_gdk_win32_display_get_cursor_theme (GdkWin32Display *win32_display)
|
|
|
|
{
|
|
|
|
Win32CursorTheme *theme;
|
|
|
|
|
|
|
|
g_assert (win32_display->cursor_theme_name);
|
|
|
|
|
|
|
|
theme = win32_display->cursor_theme;
|
|
|
|
if (!theme)
|
|
|
|
{
|
|
|
|
theme = win32_cursor_theme_load (win32_display->cursor_theme_name,
|
|
|
|
win32_display->cursor_theme_size);
|
|
|
|
if (theme == NULL)
|
|
|
|
{
|
|
|
|
g_warning ("Failed to load cursor theme %s",
|
|
|
|
win32_display->cursor_theme_name);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
win32_display->cursor_theme = theme;
|
|
|
|
}
|
|
|
|
|
|
|
|
return theme;
|
|
|
|
}
|
2003-12-08 22:43:51 +00:00
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
static gulong
|
|
|
|
gdk_win32_display_get_next_serial (GdkDisplay *display)
|
2009-02-14 18:23:54 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-10-29 16:20:54 +00:00
|
|
|
static LRESULT CALLBACK
|
|
|
|
inner_display_change_window_procedure (HWND hwnd,
|
|
|
|
UINT message,
|
|
|
|
WPARAM wparam,
|
|
|
|
LPARAM lparam)
|
|
|
|
{
|
|
|
|
switch (message)
|
|
|
|
{
|
|
|
|
case WM_DESTROY:
|
|
|
|
{
|
|
|
|
PostQuitMessage (0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
case WM_DISPLAYCHANGE:
|
|
|
|
{
|
2016-01-15 19:45:45 +00:00
|
|
|
GdkWin32Display *win32_display = GDK_WIN32_DISPLAY (_gdk_display);
|
|
|
|
|
2016-02-29 17:17:28 +00:00
|
|
|
_gdk_win32_screen_on_displaychange_event (GDK_WIN32_SCREEN (win32_display->screen));
|
2015-10-29 16:20:54 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
/* Otherwise call DefWindowProcW(). */
|
|
|
|
GDK_NOTE (EVENTS, g_print (" DefWindowProcW"));
|
|
|
|
return DefWindowProc (hwnd, message, wparam, lparam);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static LRESULT CALLBACK
|
|
|
|
display_change_window_procedure (HWND hwnd,
|
|
|
|
UINT message,
|
|
|
|
WPARAM wparam,
|
|
|
|
LPARAM lparam)
|
|
|
|
{
|
|
|
|
LRESULT retval;
|
|
|
|
|
|
|
|
GDK_NOTE (EVENTS, g_print ("%s%*s%s %p",
|
|
|
|
(debug_indent > 0 ? "\n" : ""),
|
|
|
|
debug_indent, "",
|
|
|
|
_gdk_win32_message_to_string (message), hwnd));
|
|
|
|
debug_indent += 2;
|
|
|
|
retval = inner_display_change_window_procedure (hwnd, message, wparam, lparam);
|
|
|
|
debug_indent -= 2;
|
|
|
|
|
|
|
|
GDK_NOTE (EVENTS, g_print (" => %" G_GINT64_FORMAT "%s", (gint64) retval, (debug_indent == 0 ? "\n" : "")));
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Use a hidden window to be notified about display changes */
|
|
|
|
static void
|
|
|
|
register_display_change_notification (GdkDisplay *display)
|
|
|
|
{
|
|
|
|
GdkWin32Display *display_win32 = GDK_WIN32_DISPLAY (display);
|
|
|
|
WNDCLASS wclass = { 0, };
|
|
|
|
ATOM klass;
|
|
|
|
|
|
|
|
wclass.lpszClassName = "GdkDisplayChange";
|
|
|
|
wclass.lpfnWndProc = display_change_window_procedure;
|
|
|
|
wclass.hInstance = _gdk_app_hmodule;
|
|
|
|
|
|
|
|
klass = RegisterClass (&wclass);
|
|
|
|
if (klass)
|
|
|
|
{
|
|
|
|
display_win32->hwnd = CreateWindow (MAKEINTRESOURCE (klass),
|
|
|
|
NULL, WS_POPUP,
|
|
|
|
0, 0, 0, 0, NULL, NULL,
|
|
|
|
_gdk_app_hmodule, NULL);
|
|
|
|
if (!display_win32->hwnd)
|
|
|
|
{
|
|
|
|
UnregisterClass (MAKEINTRESOURCE (klass), _gdk_app_hmodule);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-09-03 01:27:57 +00:00
|
|
|
GdkDisplay *
|
2011-01-02 10:51:25 +00:00
|
|
|
_gdk_win32_display_open (const gchar *display_name)
|
2004-09-03 01:27:57 +00:00
|
|
|
{
|
2016-01-15 19:45:45 +00:00
|
|
|
GdkWin32Display *win32_display;
|
|
|
|
|
2005-03-20 21:39:55 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("gdk_display_open: %s\n", (display_name ? display_name : "NULL")));
|
|
|
|
|
|
|
|
if (display_name == NULL ||
|
|
|
|
g_ascii_strcasecmp (display_name,
|
|
|
|
gdk_display_get_name (_gdk_display)) == 0)
|
|
|
|
{
|
|
|
|
if (_gdk_display != NULL)
|
|
|
|
{
|
|
|
|
GDK_NOTE (MISC, g_print ("... return _gdk_display\n"));
|
|
|
|
return _gdk_display;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GDK_NOTE (MISC, g_print ("... return NULL\n"));
|
|
|
|
return NULL;
|
|
|
|
}
|
2004-09-03 01:27:57 +00:00
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
_gdk_display = g_object_new (GDK_TYPE_WIN32_DISPLAY, NULL);
|
2016-01-15 19:45:45 +00:00
|
|
|
win32_display = GDK_WIN32_DISPLAY (_gdk_display);
|
|
|
|
|
|
|
|
win32_display->screen = g_object_new (GDK_TYPE_WIN32_SCREEN, NULL);
|
2004-09-03 01:27:57 +00:00
|
|
|
|
2016-03-05 18:02:15 +00:00
|
|
|
_gdk_events_init (_gdk_display);
|
2016-02-29 19:59:36 +00:00
|
|
|
|
|
|
|
_gdk_input_ignore_core = FALSE;
|
|
|
|
|
2017-11-24 16:56:42 +00:00
|
|
|
_gdk_device_manager = g_object_new (GDK_TYPE_DEVICE_MANAGER_WIN32,
|
|
|
|
NULL);
|
2017-11-30 05:38:20 +00:00
|
|
|
_gdk_device_manager->display = _gdk_display;
|
2016-02-29 19:59:36 +00:00
|
|
|
|
Changes multihead reorganizing code for win32 support, mostly from a patch
Wed Jun 5 18:34:47 2002 Owen Taylor <otaylor@redhat.com>
Changes multihead reorganizing code for win32 support,
mostly from a patch by Hans Breuer.
* gdk/gdkcolor.c gdk/x11/gdkcolor-x11.c gdk/gdkcursor.c
gdk/x11/gdkcursor-x11.c gdk/gdkevents.c gdk/x11/gdkevents-x11.c
gdk/gdkfont.c gdk/x11/gdkfont-x11.c gdk/gdkkeys.c
gdk/x11/gdkkeys-x11.c gdk/gdkimage.c gdk/x11/gdkimage-x11.c
gdk/gdkscreen.c gdk/x11/gdkmain-x11.c
gdk/gdkdisplay.c gdk/gdkevents-x11.c gdk/gdkpango.c
gdk/x11/gdkpango-x11.c gdk/gdkselection.c
gdk/x11/gdkselection-x11.c gdk/gdkwindow.c
gdk/x11/gdkwindow-x11.c gdk/gdkvisual.c gdk/x11/gdkvisual-x11.c:
Move port-independent singlehead wrapper functions into
port-independent part of GDK. (#80009)
* gdk/win32/gdkcolor-win32.c gdk/win32/gdkcursor-win32.c
gdk/win32/gdkevents-win32.c gdk/win32/gdkfont-win32.c
gdk/win32/gdkimage-win32.c gdk/win32/gdkkeys-win32.c
gdk/win32/gdkmain-win32.c gdk/win32/gdkproperty-win32.c
gdk/win32/gdkselection-win32.c gdk/win32/gkwindow-win32.c:
Turn singlehead functions into "multihead" functions that ignore
their GdkDisplay or GdkScreen arguments.
* gdk/win32/gdkdrawable-win32.c gdk/win32/gdkevents-win32.c
gdk/win32/gdkinput-win32.c gdk/win32/gdkprivate-win32.h:
Misc multihead-compatibility changes.
* gtk/gtk.def gdk/gdk.def: Update for multihead functions.
* gdk/gdkcolormap.h gdk/gdkvisual.h gdk/x11/gdkcolormap-x11.c
gdk/x11/gdkvisual-x11.c: Remove the screen fields
from the public parts of the colormap/visual structures, add accessors
instead.
* gdk/gdkpixbuf-render.c gdk/gdkpixmap.c gdk/gdkrgb.c
gdk/x11/gdkcolormap-x11.c gdk/x11/gdkimage-x11.c
gdk/x11/gdkimage-x11.c gdk/x11/gdkprivate-x11.h gtk/gtkgc.c
gtk/gtkstyle.c gtk/gtkwidget.c: Use accessors to get the screen
for colormaps, visuals; move the fields into the private
structures for the x11 backend.
* gdk/gdkdisplay.[ch] gdk/x11/gdkdisplay-x11.[ch]
gdk/gdkscreen.[ch] gdk/x11/gdkscreen-x11.c:
Remove virtualization of screen and display functions.
(#79990, patch from Erwann Chenede)
* gdk/win32/gdkdisplay-x11.c gdk/win32/gdkscreen-win32.c
gdk/win32/{Makefile.am, makefile.msc, makefile.mingw}:
New files containing stub implementations of Display,
Screen functions.
* gdk/x11/gdkscreen-x11.[ch] gdk/x11/gdkdisplay-x11.[ch]
gdk/x11/gdkx.h: Clean up function exports and what
headers they are in. (#79954)
* gdk/x11/gdkx.h: Fix macro that was referring to a non-existant
screen->screen_num. (In the patch for #79972, Erwann Chenede)
* gdk/gdkscreen.c gdk/gdkwindow.c gdk/x11/gdkinternals.h
gdk/x11/gdkscreen-x11.c: Fix gdk_screen_get_window_at_pointer()
to use window hooks. (#79972, patch partly from Erwann Chenede)
* gdk/x11/gdkdisplay-x11.c gdk/x11/gdkevents-x11.c: Fix
some warnings.
2002-06-06 00:26:42 +00:00
|
|
|
_gdk_dnd_init ();
|
|
|
|
|
2005-09-08 22:45:40 +00:00
|
|
|
/* Precalculate display name */
|
|
|
|
(void) gdk_display_get_name (_gdk_display);
|
|
|
|
|
2015-10-29 16:20:54 +00:00
|
|
|
register_display_change_notification (_gdk_display);
|
|
|
|
|
2013-04-17 21:59:21 +00:00
|
|
|
g_signal_emit_by_name (_gdk_display, "opened");
|
|
|
|
|
2005-03-20 21:39:55 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("... _gdk_display now set up\n"));
|
|
|
|
|
Changes multihead reorganizing code for win32 support, mostly from a patch
Wed Jun 5 18:34:47 2002 Owen Taylor <otaylor@redhat.com>
Changes multihead reorganizing code for win32 support,
mostly from a patch by Hans Breuer.
* gdk/gdkcolor.c gdk/x11/gdkcolor-x11.c gdk/gdkcursor.c
gdk/x11/gdkcursor-x11.c gdk/gdkevents.c gdk/x11/gdkevents-x11.c
gdk/gdkfont.c gdk/x11/gdkfont-x11.c gdk/gdkkeys.c
gdk/x11/gdkkeys-x11.c gdk/gdkimage.c gdk/x11/gdkimage-x11.c
gdk/gdkscreen.c gdk/x11/gdkmain-x11.c
gdk/gdkdisplay.c gdk/gdkevents-x11.c gdk/gdkpango.c
gdk/x11/gdkpango-x11.c gdk/gdkselection.c
gdk/x11/gdkselection-x11.c gdk/gdkwindow.c
gdk/x11/gdkwindow-x11.c gdk/gdkvisual.c gdk/x11/gdkvisual-x11.c:
Move port-independent singlehead wrapper functions into
port-independent part of GDK. (#80009)
* gdk/win32/gdkcolor-win32.c gdk/win32/gdkcursor-win32.c
gdk/win32/gdkevents-win32.c gdk/win32/gdkfont-win32.c
gdk/win32/gdkimage-win32.c gdk/win32/gdkkeys-win32.c
gdk/win32/gdkmain-win32.c gdk/win32/gdkproperty-win32.c
gdk/win32/gdkselection-win32.c gdk/win32/gkwindow-win32.c:
Turn singlehead functions into "multihead" functions that ignore
their GdkDisplay or GdkScreen arguments.
* gdk/win32/gdkdrawable-win32.c gdk/win32/gdkevents-win32.c
gdk/win32/gdkinput-win32.c gdk/win32/gdkprivate-win32.h:
Misc multihead-compatibility changes.
* gtk/gtk.def gdk/gdk.def: Update for multihead functions.
* gdk/gdkcolormap.h gdk/gdkvisual.h gdk/x11/gdkcolormap-x11.c
gdk/x11/gdkvisual-x11.c: Remove the screen fields
from the public parts of the colormap/visual structures, add accessors
instead.
* gdk/gdkpixbuf-render.c gdk/gdkpixmap.c gdk/gdkrgb.c
gdk/x11/gdkcolormap-x11.c gdk/x11/gdkimage-x11.c
gdk/x11/gdkimage-x11.c gdk/x11/gdkprivate-x11.h gtk/gtkgc.c
gtk/gtkstyle.c gtk/gtkwidget.c: Use accessors to get the screen
for colormaps, visuals; move the fields into the private
structures for the x11 backend.
* gdk/gdkdisplay.[ch] gdk/x11/gdkdisplay-x11.[ch]
gdk/gdkscreen.[ch] gdk/x11/gdkscreen-x11.c:
Remove virtualization of screen and display functions.
(#79990, patch from Erwann Chenede)
* gdk/win32/gdkdisplay-x11.c gdk/win32/gdkscreen-win32.c
gdk/win32/{Makefile.am, makefile.msc, makefile.mingw}:
New files containing stub implementations of Display,
Screen functions.
* gdk/x11/gdkscreen-x11.[ch] gdk/x11/gdkdisplay-x11.[ch]
gdk/x11/gdkx.h: Clean up function exports and what
headers they are in. (#79954)
* gdk/x11/gdkx.h: Fix macro that was referring to a non-existant
screen->screen_num. (In the patch for #79972, Erwann Chenede)
* gdk/gdkscreen.c gdk/gdkwindow.c gdk/x11/gdkinternals.h
gdk/x11/gdkscreen-x11.c: Fix gdk_screen_get_window_at_pointer()
to use window hooks. (#79972, patch partly from Erwann Chenede)
* gdk/x11/gdkdisplay-x11.c gdk/x11/gdkevents-x11.c: Fix
some warnings.
2002-06-06 00:26:42 +00:00
|
|
|
return _gdk_display;
|
|
|
|
}
|
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
G_DEFINE_TYPE (GdkWin32Display, gdk_win32_display, GDK_TYPE_DISPLAY)
|
|
|
|
|
2011-06-06 18:05:18 +00:00
|
|
|
static const gchar *
|
2011-01-02 10:51:25 +00:00
|
|
|
gdk_win32_display_get_name (GdkDisplay *display)
|
Changes multihead reorganizing code for win32 support, mostly from a patch
Wed Jun 5 18:34:47 2002 Owen Taylor <otaylor@redhat.com>
Changes multihead reorganizing code for win32 support,
mostly from a patch by Hans Breuer.
* gdk/gdkcolor.c gdk/x11/gdkcolor-x11.c gdk/gdkcursor.c
gdk/x11/gdkcursor-x11.c gdk/gdkevents.c gdk/x11/gdkevents-x11.c
gdk/gdkfont.c gdk/x11/gdkfont-x11.c gdk/gdkkeys.c
gdk/x11/gdkkeys-x11.c gdk/gdkimage.c gdk/x11/gdkimage-x11.c
gdk/gdkscreen.c gdk/x11/gdkmain-x11.c
gdk/gdkdisplay.c gdk/gdkevents-x11.c gdk/gdkpango.c
gdk/x11/gdkpango-x11.c gdk/gdkselection.c
gdk/x11/gdkselection-x11.c gdk/gdkwindow.c
gdk/x11/gdkwindow-x11.c gdk/gdkvisual.c gdk/x11/gdkvisual-x11.c:
Move port-independent singlehead wrapper functions into
port-independent part of GDK. (#80009)
* gdk/win32/gdkcolor-win32.c gdk/win32/gdkcursor-win32.c
gdk/win32/gdkevents-win32.c gdk/win32/gdkfont-win32.c
gdk/win32/gdkimage-win32.c gdk/win32/gdkkeys-win32.c
gdk/win32/gdkmain-win32.c gdk/win32/gdkproperty-win32.c
gdk/win32/gdkselection-win32.c gdk/win32/gkwindow-win32.c:
Turn singlehead functions into "multihead" functions that ignore
their GdkDisplay or GdkScreen arguments.
* gdk/win32/gdkdrawable-win32.c gdk/win32/gdkevents-win32.c
gdk/win32/gdkinput-win32.c gdk/win32/gdkprivate-win32.h:
Misc multihead-compatibility changes.
* gtk/gtk.def gdk/gdk.def: Update for multihead functions.
* gdk/gdkcolormap.h gdk/gdkvisual.h gdk/x11/gdkcolormap-x11.c
gdk/x11/gdkvisual-x11.c: Remove the screen fields
from the public parts of the colormap/visual structures, add accessors
instead.
* gdk/gdkpixbuf-render.c gdk/gdkpixmap.c gdk/gdkrgb.c
gdk/x11/gdkcolormap-x11.c gdk/x11/gdkimage-x11.c
gdk/x11/gdkimage-x11.c gdk/x11/gdkprivate-x11.h gtk/gtkgc.c
gtk/gtkstyle.c gtk/gtkwidget.c: Use accessors to get the screen
for colormaps, visuals; move the fields into the private
structures for the x11 backend.
* gdk/gdkdisplay.[ch] gdk/x11/gdkdisplay-x11.[ch]
gdk/gdkscreen.[ch] gdk/x11/gdkscreen-x11.c:
Remove virtualization of screen and display functions.
(#79990, patch from Erwann Chenede)
* gdk/win32/gdkdisplay-x11.c gdk/win32/gdkscreen-win32.c
gdk/win32/{Makefile.am, makefile.msc, makefile.mingw}:
New files containing stub implementations of Display,
Screen functions.
* gdk/x11/gdkscreen-x11.[ch] gdk/x11/gdkdisplay-x11.[ch]
gdk/x11/gdkx.h: Clean up function exports and what
headers they are in. (#79954)
* gdk/x11/gdkx.h: Fix macro that was referring to a non-existant
screen->screen_num. (In the patch for #79972, Erwann Chenede)
* gdk/gdkscreen.c gdk/gdkwindow.c gdk/x11/gdkinternals.h
gdk/x11/gdkscreen-x11.c: Fix gdk_screen_get_window_at_pointer()
to use window hooks. (#79972, patch partly from Erwann Chenede)
* gdk/x11/gdkdisplay-x11.c gdk/x11/gdkevents-x11.c: Fix
some warnings.
2002-06-06 00:26:42 +00:00
|
|
|
{
|
2005-03-20 21:39:55 +00:00
|
|
|
HDESK hdesk = GetThreadDesktop (GetCurrentThreadId ());
|
|
|
|
char dummy;
|
|
|
|
char *desktop_name;
|
|
|
|
HWINSTA hwinsta = GetProcessWindowStation ();
|
|
|
|
char *window_station_name;
|
|
|
|
DWORD n;
|
2008-06-11 16:05:28 +00:00
|
|
|
DWORD session_id;
|
2005-03-20 21:39:55 +00:00
|
|
|
char *display_name;
|
2005-09-08 22:45:40 +00:00
|
|
|
static const char *display_name_cache = NULL;
|
2009-04-06 12:10:35 +00:00
|
|
|
typedef BOOL (WINAPI *PFN_ProcessIdToSessionId) (DWORD, DWORD *);
|
2008-06-13 08:36:26 +00:00
|
|
|
PFN_ProcessIdToSessionId processIdToSessionId;
|
2005-09-08 22:45:40 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail (GDK_IS_DISPLAY (display), NULL);
|
2011-06-09 18:45:20 +00:00
|
|
|
|
2005-09-08 22:45:40 +00:00
|
|
|
if (display_name_cache != NULL)
|
|
|
|
return display_name_cache;
|
2005-03-20 21:39:55 +00:00
|
|
|
|
|
|
|
n = 0;
|
|
|
|
GetUserObjectInformation (hdesk, UOI_NAME, &dummy, 0, &n);
|
|
|
|
if (n == 0)
|
|
|
|
desktop_name = "Default";
|
|
|
|
else
|
|
|
|
{
|
|
|
|
n++;
|
|
|
|
desktop_name = g_alloca (n + 1);
|
|
|
|
memset (desktop_name, 0, n + 1);
|
|
|
|
|
|
|
|
if (!GetUserObjectInformation (hdesk, UOI_NAME, desktop_name, n, &n))
|
|
|
|
desktop_name = "Default";
|
|
|
|
}
|
|
|
|
|
|
|
|
n = 0;
|
|
|
|
GetUserObjectInformation (hwinsta, UOI_NAME, &dummy, 0, &n);
|
|
|
|
if (n == 0)
|
|
|
|
window_station_name = "WinSta0";
|
|
|
|
else
|
|
|
|
{
|
|
|
|
n++;
|
|
|
|
window_station_name = g_alloca (n + 1);
|
|
|
|
memset (window_station_name, 0, n + 1);
|
|
|
|
|
|
|
|
if (!GetUserObjectInformation (hwinsta, UOI_NAME, window_station_name, n, &n))
|
|
|
|
window_station_name = "WinSta0";
|
|
|
|
}
|
|
|
|
|
2008-06-13 08:36:26 +00:00
|
|
|
processIdToSessionId = (PFN_ProcessIdToSessionId) GetProcAddress (GetModuleHandle ("kernel32.dll"), "ProcessIdToSessionId");
|
|
|
|
if (!processIdToSessionId || !processIdToSessionId (GetCurrentProcessId (), &session_id))
|
2008-06-11 16:05:28 +00:00
|
|
|
session_id = 0;
|
|
|
|
|
|
|
|
display_name = g_strdup_printf ("%ld\\%s\\%s",
|
|
|
|
session_id,
|
|
|
|
window_station_name,
|
2005-03-20 21:39:55 +00:00
|
|
|
desktop_name);
|
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("gdk_win32_display_get_name: %s\n", display_name));
|
2005-03-20 21:39:55 +00:00
|
|
|
|
2005-09-08 22:45:40 +00:00
|
|
|
display_name_cache = display_name;
|
2005-03-20 21:39:55 +00:00
|
|
|
|
2005-09-08 22:45:40 +00:00
|
|
|
return display_name_cache;
|
Changes multihead reorganizing code for win32 support, mostly from a patch
Wed Jun 5 18:34:47 2002 Owen Taylor <otaylor@redhat.com>
Changes multihead reorganizing code for win32 support,
mostly from a patch by Hans Breuer.
* gdk/gdkcolor.c gdk/x11/gdkcolor-x11.c gdk/gdkcursor.c
gdk/x11/gdkcursor-x11.c gdk/gdkevents.c gdk/x11/gdkevents-x11.c
gdk/gdkfont.c gdk/x11/gdkfont-x11.c gdk/gdkkeys.c
gdk/x11/gdkkeys-x11.c gdk/gdkimage.c gdk/x11/gdkimage-x11.c
gdk/gdkscreen.c gdk/x11/gdkmain-x11.c
gdk/gdkdisplay.c gdk/gdkevents-x11.c gdk/gdkpango.c
gdk/x11/gdkpango-x11.c gdk/gdkselection.c
gdk/x11/gdkselection-x11.c gdk/gdkwindow.c
gdk/x11/gdkwindow-x11.c gdk/gdkvisual.c gdk/x11/gdkvisual-x11.c:
Move port-independent singlehead wrapper functions into
port-independent part of GDK. (#80009)
* gdk/win32/gdkcolor-win32.c gdk/win32/gdkcursor-win32.c
gdk/win32/gdkevents-win32.c gdk/win32/gdkfont-win32.c
gdk/win32/gdkimage-win32.c gdk/win32/gdkkeys-win32.c
gdk/win32/gdkmain-win32.c gdk/win32/gdkproperty-win32.c
gdk/win32/gdkselection-win32.c gdk/win32/gkwindow-win32.c:
Turn singlehead functions into "multihead" functions that ignore
their GdkDisplay or GdkScreen arguments.
* gdk/win32/gdkdrawable-win32.c gdk/win32/gdkevents-win32.c
gdk/win32/gdkinput-win32.c gdk/win32/gdkprivate-win32.h:
Misc multihead-compatibility changes.
* gtk/gtk.def gdk/gdk.def: Update for multihead functions.
* gdk/gdkcolormap.h gdk/gdkvisual.h gdk/x11/gdkcolormap-x11.c
gdk/x11/gdkvisual-x11.c: Remove the screen fields
from the public parts of the colormap/visual structures, add accessors
instead.
* gdk/gdkpixbuf-render.c gdk/gdkpixmap.c gdk/gdkrgb.c
gdk/x11/gdkcolormap-x11.c gdk/x11/gdkimage-x11.c
gdk/x11/gdkimage-x11.c gdk/x11/gdkprivate-x11.h gtk/gtkgc.c
gtk/gtkstyle.c gtk/gtkwidget.c: Use accessors to get the screen
for colormaps, visuals; move the fields into the private
structures for the x11 backend.
* gdk/gdkdisplay.[ch] gdk/x11/gdkdisplay-x11.[ch]
gdk/gdkscreen.[ch] gdk/x11/gdkscreen-x11.c:
Remove virtualization of screen and display functions.
(#79990, patch from Erwann Chenede)
* gdk/win32/gdkdisplay-x11.c gdk/win32/gdkscreen-win32.c
gdk/win32/{Makefile.am, makefile.msc, makefile.mingw}:
New files containing stub implementations of Display,
Screen functions.
* gdk/x11/gdkscreen-x11.[ch] gdk/x11/gdkdisplay-x11.[ch]
gdk/x11/gdkx.h: Clean up function exports and what
headers they are in. (#79954)
* gdk/x11/gdkx.h: Fix macro that was referring to a non-existant
screen->screen_num. (In the patch for #79972, Erwann Chenede)
* gdk/gdkscreen.c gdk/gdkwindow.c gdk/x11/gdkinternals.h
gdk/x11/gdkscreen-x11.c: Fix gdk_screen_get_window_at_pointer()
to use window hooks. (#79972, patch partly from Erwann Chenede)
* gdk/x11/gdkdisplay-x11.c gdk/x11/gdkevents-x11.c: Fix
some warnings.
2002-06-06 00:26:42 +00:00
|
|
|
}
|
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
static GdkWindow *
|
|
|
|
gdk_win32_display_get_default_group (GdkDisplay *display)
|
2004-03-05 23:26:07 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_DISPLAY (display), NULL);
|
|
|
|
|
|
|
|
g_warning ("gdk_display_get_default_group not yet implemented");
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
2004-08-06 19:20:42 +00:00
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
static gboolean
|
|
|
|
gdk_win32_display_supports_selection_notification (GdkDisplay *display)
|
2004-08-06 19:20:42 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_DISPLAY (display), FALSE);
|
|
|
|
|
2011-06-09 18:45:20 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HWND _hwnd_next_viewer = NULL;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* maybe this should be integrated with the default message loop - or maybe not ;-)
|
|
|
|
*/
|
|
|
|
static LRESULT CALLBACK
|
|
|
|
inner_clipboard_window_procedure (HWND hwnd,
|
|
|
|
UINT message,
|
|
|
|
WPARAM wparam,
|
|
|
|
LPARAM lparam)
|
|
|
|
{
|
|
|
|
switch (message)
|
|
|
|
{
|
|
|
|
case WM_DESTROY: /* remove us from chain */
|
|
|
|
{
|
|
|
|
ChangeClipboardChain (hwnd, _hwnd_next_viewer);
|
|
|
|
PostQuitMessage (0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
case WM_CHANGECBCHAIN:
|
|
|
|
{
|
|
|
|
HWND hwndRemove = (HWND) wparam; /* handle of window being removed */
|
|
|
|
HWND hwndNext = (HWND) lparam; /* handle of next window in chain */
|
|
|
|
|
|
|
|
if (hwndRemove == _hwnd_next_viewer)
|
|
|
|
_hwnd_next_viewer = hwndNext == hwnd ? NULL : hwndNext;
|
|
|
|
else if (_hwnd_next_viewer != NULL)
|
|
|
|
return SendMessage (_hwnd_next_viewer, message, wparam, lparam);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
case WM_CLIPBOARDUPDATE:
|
|
|
|
case WM_DRAWCLIPBOARD:
|
|
|
|
{
|
2016-03-19 09:49:56 +00:00
|
|
|
HWND hwnd_owner;
|
|
|
|
HWND hwnd_opener;
|
2011-06-09 18:45:20 +00:00
|
|
|
GdkEvent *event;
|
|
|
|
GdkWindow *owner;
|
|
|
|
|
2016-03-19 09:49:56 +00:00
|
|
|
hwnd_owner = GetClipboardOwner ();
|
2015-02-27 21:00:16 +00:00
|
|
|
|
2016-03-19 09:49:56 +00:00
|
|
|
if ((hwnd_owner == NULL) &&
|
|
|
|
(GetLastError () != ERROR_SUCCESS))
|
|
|
|
WIN32_API_FAILED ("GetClipboardOwner");
|
2011-06-09 18:45:20 +00:00
|
|
|
|
2016-03-19 09:49:56 +00:00
|
|
|
hwnd_opener = GetOpenClipboardWindow ();
|
|
|
|
|
|
|
|
GDK_NOTE (DND, g_print (" drawclipboard owner: %p; opener %p ", hwnd_owner, hwnd_opener));
|
2011-06-09 18:45:20 +00:00
|
|
|
|
2011-06-16 05:48:56 +00:00
|
|
|
#ifdef G_ENABLE_DEBUG
|
2011-06-09 18:45:20 +00:00
|
|
|
if (_gdk_debug_flags & GDK_DEBUG_DND)
|
|
|
|
{
|
2016-03-19 09:49:56 +00:00
|
|
|
if (OpenClipboard (hwnd))
|
|
|
|
{
|
|
|
|
UINT nFormat = 0;
|
|
|
|
|
|
|
|
while ((nFormat = EnumClipboardFormats (nFormat)) != 0)
|
|
|
|
g_print ("%s ", _gdk_win32_cf_to_string (nFormat));
|
|
|
|
|
|
|
|
CloseClipboard ();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
WIN32_API_FAILED ("OpenClipboard");
|
|
|
|
}
|
2011-06-09 18:45:20 +00:00
|
|
|
}
|
2011-06-16 05:48:56 +00:00
|
|
|
#endif
|
2011-06-09 18:45:20 +00:00
|
|
|
|
|
|
|
GDK_NOTE (DND, g_print (" \n"));
|
|
|
|
|
|
|
|
event = gdk_event_new (GDK_OWNER_CHANGE);
|
2017-11-14 23:05:41 +00:00
|
|
|
event->owner_change.window = NULL;
|
2011-06-09 18:45:20 +00:00
|
|
|
event->owner_change.reason = GDK_OWNER_CHANGE_NEW_OWNER;
|
|
|
|
event->owner_change.selection = GDK_SELECTION_CLIPBOARD;
|
|
|
|
event->owner_change.time = _gdk_win32_get_next_tick (0);
|
|
|
|
event->owner_change.selection_time = GDK_CURRENT_TIME;
|
|
|
|
_gdk_win32_append_event (event);
|
|
|
|
|
|
|
|
if (_hwnd_next_viewer != NULL)
|
|
|
|
return SendMessage (_hwnd_next_viewer, message, wparam, lparam);
|
|
|
|
|
|
|
|
/* clear error to avoid confusing SetClipboardViewer() return */
|
|
|
|
SetLastError (0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
/* Otherwise call DefWindowProcW(). */
|
|
|
|
GDK_NOTE (EVENTS, g_print (" DefWindowProcW"));
|
|
|
|
return DefWindowProc (hwnd, message, wparam, lparam);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static LRESULT CALLBACK
|
|
|
|
_clipboard_window_procedure (HWND hwnd,
|
|
|
|
UINT message,
|
|
|
|
WPARAM wparam,
|
|
|
|
LPARAM lparam)
|
|
|
|
{
|
|
|
|
LRESULT retval;
|
|
|
|
|
|
|
|
GDK_NOTE (EVENTS, g_print ("%s%*s%s %p",
|
|
|
|
(debug_indent > 0 ? "\n" : ""),
|
|
|
|
debug_indent, "",
|
|
|
|
_gdk_win32_message_to_string (message), hwnd));
|
|
|
|
debug_indent += 2;
|
|
|
|
retval = inner_clipboard_window_procedure (hwnd, message, wparam, lparam);
|
|
|
|
debug_indent -= 2;
|
|
|
|
|
2014-08-13 18:17:23 +00:00
|
|
|
GDK_NOTE (EVENTS, g_print (" => %" G_GINT64_FORMAT "%s", (gint64) retval, (debug_indent == 0 ? "\n" : "")));
|
2011-06-09 18:45:20 +00:00
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Creates a hidden window and adds it to the clipboard chain
|
|
|
|
*/
|
2015-11-12 15:42:51 +00:00
|
|
|
static gboolean
|
|
|
|
register_clipboard_notification (GdkDisplay *display)
|
2011-06-09 18:45:20 +00:00
|
|
|
{
|
2015-11-12 15:42:51 +00:00
|
|
|
GdkWin32Display *display_win32 = GDK_WIN32_DISPLAY (display);
|
2011-06-09 18:45:20 +00:00
|
|
|
WNDCLASS wclass = { 0, };
|
2015-11-12 15:42:51 +00:00
|
|
|
ATOM klass;
|
2011-06-09 18:45:20 +00:00
|
|
|
|
|
|
|
wclass.lpszClassName = "GdkClipboardNotification";
|
2015-11-12 15:42:51 +00:00
|
|
|
wclass.lpfnWndProc = _clipboard_window_procedure;
|
|
|
|
wclass.hInstance = _gdk_app_hmodule;
|
2011-06-09 18:45:20 +00:00
|
|
|
|
|
|
|
klass = RegisterClass (&wclass);
|
|
|
|
if (!klass)
|
2015-11-12 15:42:51 +00:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
display_win32->clipboard_hwnd = CreateWindow (MAKEINTRESOURCE (klass),
|
|
|
|
NULL, WS_POPUP,
|
|
|
|
0, 0, 0, 0, NULL, NULL,
|
|
|
|
_gdk_app_hmodule, NULL);
|
2011-06-09 18:45:20 +00:00
|
|
|
|
2015-11-12 15:42:51 +00:00
|
|
|
if (display_win32->clipboard_hwnd == NULL)
|
2011-06-09 18:45:20 +00:00
|
|
|
goto failed;
|
|
|
|
|
|
|
|
SetLastError (0);
|
2015-11-12 15:42:51 +00:00
|
|
|
_hwnd_next_viewer = SetClipboardViewer (display_win32->clipboard_hwnd);
|
2011-06-09 18:45:20 +00:00
|
|
|
|
|
|
|
if (_hwnd_next_viewer == NULL && GetLastError() != 0)
|
|
|
|
goto failed;
|
|
|
|
|
|
|
|
/* FIXME: http://msdn.microsoft.com/en-us/library/ms649033(v=VS.85).aspx */
|
|
|
|
/* This is only supported by Vista, and not yet by mingw64 */
|
|
|
|
/* if (AddClipboardFormatListener (hwnd) == FALSE) */
|
|
|
|
/* goto failed; */
|
|
|
|
|
2015-11-12 15:42:51 +00:00
|
|
|
return TRUE;
|
2011-06-09 18:45:20 +00:00
|
|
|
|
|
|
|
failed:
|
|
|
|
g_critical ("Failed to install clipboard viewer");
|
|
|
|
UnregisterClass (MAKEINTRESOURCE (klass), _gdk_app_hmodule);
|
2015-11-12 15:42:51 +00:00
|
|
|
return FALSE;
|
2004-08-06 19:20:42 +00:00
|
|
|
}
|
|
|
|
|
2015-04-29 07:31:08 +00:00
|
|
|
static gboolean
|
2011-01-02 10:51:25 +00:00
|
|
|
gdk_win32_display_request_selection_notification (GdkDisplay *display,
|
2015-11-12 15:42:51 +00:00
|
|
|
GdkAtom selection)
|
2004-08-06 19:20:42 +00:00
|
|
|
|
|
|
|
{
|
2015-11-12 15:42:51 +00:00
|
|
|
GdkWin32Display *display_win32 = GDK_WIN32_DISPLAY (display);
|
2011-06-09 18:45:20 +00:00
|
|
|
gboolean ret = FALSE;
|
|
|
|
|
|
|
|
GDK_NOTE (DND,
|
|
|
|
g_print ("gdk_display_request_selection_notification (..., %s)",
|
|
|
|
gdk_atom_name (selection)));
|
|
|
|
|
|
|
|
if (selection == GDK_SELECTION_CLIPBOARD ||
|
|
|
|
selection == GDK_SELECTION_PRIMARY)
|
|
|
|
{
|
2015-11-12 15:42:51 +00:00
|
|
|
if (display_win32->clipboard_hwnd == NULL)
|
2011-06-09 18:45:20 +00:00
|
|
|
{
|
2015-11-12 15:42:51 +00:00
|
|
|
if (register_clipboard_notification (display))
|
|
|
|
GDK_NOTE (DND, g_print (" registered"));
|
|
|
|
else
|
|
|
|
GDK_NOTE (DND, g_print (" failed to register"));
|
2011-06-09 18:45:20 +00:00
|
|
|
}
|
2015-11-12 15:42:51 +00:00
|
|
|
ret = (display_win32->clipboard_hwnd != NULL);
|
2011-06-09 18:45:20 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GDK_NOTE (DND, g_print (" unsupported"));
|
|
|
|
ret = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
GDK_NOTE (DND, g_print (" -> %s\n", ret ? "TRUE" : "FALSE"));
|
|
|
|
return ret;
|
2004-08-06 19:20:42 +00:00
|
|
|
}
|
2004-10-29 21:44:53 +00:00
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
static gboolean
|
|
|
|
gdk_win32_display_supports_clipboard_persistence (GdkDisplay *display)
|
2004-10-29 21:44:53 +00:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
static void
|
|
|
|
gdk_win32_display_store_clipboard (GdkDisplay *display,
|
2008-01-15 15:32:37 +00:00
|
|
|
GdkWindow *clipboard_window,
|
|
|
|
guint32 time_,
|
|
|
|
const GdkAtom *targets,
|
|
|
|
gint n_targets)
|
2004-10-29 21:44:53 +00:00
|
|
|
{
|
|
|
|
}
|
2006-02-20 10:10:27 +00:00
|
|
|
|
2015-04-29 07:31:08 +00:00
|
|
|
static gboolean
|
2011-01-02 10:51:25 +00:00
|
|
|
gdk_win32_display_supports_shapes (GdkDisplay *display)
|
2006-02-20 10:10:27 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_DISPLAY (display), FALSE);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
static gboolean
|
|
|
|
gdk_win32_display_supports_input_shapes (GdkDisplay *display)
|
2006-02-20 10:10:27 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_DISPLAY (display), FALSE);
|
|
|
|
|
2014-07-24 16:27:09 +00:00
|
|
|
/* Partially supported, see WM_NCHITTEST handler. */
|
|
|
|
return TRUE;
|
2006-02-20 10:10:27 +00:00
|
|
|
}
|
2007-06-01 12:16:12 +00:00
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
static void
|
|
|
|
gdk_win32_display_beep (GdkDisplay *display)
|
|
|
|
{
|
|
|
|
g_return_if_fail (display == gdk_display_get_default());
|
|
|
|
if (!MessageBeep (-1))
|
|
|
|
Beep(1000, 50);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gdk_win32_display_flush (GdkDisplay * display)
|
|
|
|
{
|
|
|
|
g_return_if_fail (display == _gdk_display);
|
|
|
|
|
|
|
|
GdiFlush ();
|
|
|
|
}
|
|
|
|
|
2011-10-27 14:56:40 +00:00
|
|
|
static void
|
|
|
|
gdk_win32_display_sync (GdkDisplay * display)
|
|
|
|
{
|
|
|
|
g_return_if_fail (display == _gdk_display);
|
|
|
|
|
|
|
|
GdiFlush ();
|
|
|
|
}
|
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
static void
|
|
|
|
gdk_win32_display_dispose (GObject *object)
|
|
|
|
{
|
2015-10-29 16:20:54 +00:00
|
|
|
GdkWin32Display *display_win32 = GDK_WIN32_DISPLAY (object);
|
|
|
|
|
2015-11-13 11:54:54 +00:00
|
|
|
if (display_win32->hwnd != NULL)
|
|
|
|
{
|
|
|
|
DestroyWindow (display_win32->hwnd);
|
|
|
|
display_win32->hwnd = NULL;
|
|
|
|
}
|
|
|
|
|
2015-11-13 11:58:45 +00:00
|
|
|
if (display_win32->clipboard_hwnd != NULL)
|
|
|
|
{
|
|
|
|
DestroyWindow (display_win32->clipboard_hwnd);
|
|
|
|
display_win32->clipboard_hwnd = NULL;
|
|
|
|
_hwnd_next_viewer = NULL;
|
|
|
|
}
|
2015-11-12 14:59:43 +00:00
|
|
|
|
GDK-Win32/4.0: Enable HiDPI support for Windows
This enables HiDPI support for GTK+ on Windows, so that the
fonts and window look better on HiDPI displays. Notes for the current
work:
-The DPI awareness enabling can be disabled if and only if an application
manifest is not embedded in the app to enable DPI awareness AND a user
compatibility setting is not set to limit DPI awareness for the app, via
the envvar GDK_WIN32_DISABLE_HIDPI. The app manifest/user setting for
DPI awareness will always win against the envvar, and so the HiDPI items
will be always setup in such scenarios, unless DPI awareness is disabled.
-Both automatic detection for the scaling factor and setting the scale
factor using the GDK_SCALE envvar are supported, where the envvar takes
precedence, which will therefore disable automatic scaling when
resolution changes.
-We now default to a per-system DPI awareness model, which means that we
do not handle WM_DPICHANGED, unless one sets the
GDK_WIN32_PER_MONITOR_HIDPI envvar, where notes for it are in the
following point.
-Automatic scaling during WM_DISPLAYCHANGE is handled (DPI setting change of
current monitor) is now supported. WM_DPICHANGED is handled as well,
except that the window positioning during the change of scaling still
needs to be refined, a change in GDK itself may be required for this.
-I am unable to test the wintab items because I don't have such devices
around.
https://bugzilla.gnome.org/show_bug.cgi?id=768081
2016-06-27 05:16:43 +00:00
|
|
|
if (display_win32->have_at_least_win81)
|
|
|
|
{
|
|
|
|
if (display_win32->shcore_funcs.hshcore != NULL)
|
|
|
|
{
|
|
|
|
FreeLibrary (display_win32->shcore_funcs.hshcore);
|
|
|
|
display_win32->shcore_funcs.hshcore = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-12 14:59:43 +00:00
|
|
|
G_OBJECT_CLASS (gdk_win32_display_parent_class)->dispose (object);
|
2011-01-02 10:51:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gdk_win32_display_finalize (GObject *object)
|
|
|
|
{
|
2015-05-13 07:45:40 +00:00
|
|
|
GdkWin32Display *display_win32 = GDK_WIN32_DISPLAY (object);
|
|
|
|
|
|
|
|
_gdk_win32_display_finalize_cursors (display_win32);
|
2015-12-15 20:25:25 +00:00
|
|
|
_gdk_win32_dnd_exit ();
|
2015-05-13 07:45:40 +00:00
|
|
|
|
2016-04-20 07:36:00 +00:00
|
|
|
g_ptr_array_free (display_win32->monitors, TRUE);
|
|
|
|
|
2015-05-13 07:45:40 +00:00
|
|
|
G_OBJECT_CLASS (gdk_win32_display_parent_class)->finalize (object);
|
2011-01-02 10:51:25 +00:00
|
|
|
}
|
|
|
|
|
GDK-Win32/4.0: Enable HiDPI support for Windows
This enables HiDPI support for GTK+ on Windows, so that the
fonts and window look better on HiDPI displays. Notes for the current
work:
-The DPI awareness enabling can be disabled if and only if an application
manifest is not embedded in the app to enable DPI awareness AND a user
compatibility setting is not set to limit DPI awareness for the app, via
the envvar GDK_WIN32_DISABLE_HIDPI. The app manifest/user setting for
DPI awareness will always win against the envvar, and so the HiDPI items
will be always setup in such scenarios, unless DPI awareness is disabled.
-Both automatic detection for the scaling factor and setting the scale
factor using the GDK_SCALE envvar are supported, where the envvar takes
precedence, which will therefore disable automatic scaling when
resolution changes.
-We now default to a per-system DPI awareness model, which means that we
do not handle WM_DPICHANGED, unless one sets the
GDK_WIN32_PER_MONITOR_HIDPI envvar, where notes for it are in the
following point.
-Automatic scaling during WM_DISPLAYCHANGE is handled (DPI setting change of
current monitor) is now supported. WM_DPICHANGED is handled as well,
except that the window positioning during the change of scaling still
needs to be refined, a change in GDK itself may be required for this.
-I am unable to test the wintab items because I don't have such devices
around.
https://bugzilla.gnome.org/show_bug.cgi?id=768081
2016-06-27 05:16:43 +00:00
|
|
|
static void
|
|
|
|
_gdk_win32_enable_hidpi (GdkWin32Display *display)
|
|
|
|
{
|
|
|
|
gboolean check_for_dpi_awareness = FALSE;
|
|
|
|
gboolean have_hpi_disable_envvar = FALSE;
|
|
|
|
|
|
|
|
enum dpi_aware_status {
|
|
|
|
DPI_STATUS_PENDING,
|
|
|
|
DPI_STATUS_SUCCESS,
|
|
|
|
DPI_STATUS_DISABLED,
|
|
|
|
DPI_STATUS_FAILED
|
|
|
|
} status = DPI_STATUS_PENDING;
|
|
|
|
|
|
|
|
if (g_win32_check_windows_version (6, 3, 0, G_WIN32_OS_ANY))
|
|
|
|
{
|
|
|
|
/* If we are on Windows 8.1 or later, cache up functions from shcore.dll, by all means */
|
|
|
|
display->have_at_least_win81 = TRUE;
|
|
|
|
display->shcore_funcs.hshcore = LoadLibraryW (L"shcore.dll");
|
|
|
|
|
|
|
|
if (display->shcore_funcs.hshcore != NULL)
|
|
|
|
{
|
|
|
|
display->shcore_funcs.setDpiAwareFunc =
|
|
|
|
(funcSetProcessDpiAwareness) GetProcAddress (display->shcore_funcs.hshcore,
|
|
|
|
"SetProcessDpiAwareness");
|
|
|
|
display->shcore_funcs.getDpiAwareFunc =
|
|
|
|
(funcGetProcessDpiAwareness) GetProcAddress (display->shcore_funcs.hshcore,
|
|
|
|
"GetProcessDpiAwareness");
|
|
|
|
|
|
|
|
display->shcore_funcs.getDpiForMonitorFunc =
|
|
|
|
(funcGetDpiForMonitor) GetProcAddress (display->shcore_funcs.hshcore,
|
|
|
|
"GetDpiForMonitor");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Windows Vista through 8: use functions from user32.dll directly */
|
|
|
|
HMODULE user32;
|
|
|
|
|
|
|
|
display->have_at_least_win81 = FALSE;
|
|
|
|
user32 = GetModuleHandleW (L"user32.dll");
|
|
|
|
|
|
|
|
if (user32 != NULL)
|
|
|
|
{
|
|
|
|
display->user32_dpi_funcs.setDpiAwareFunc =
|
|
|
|
(funcSetProcessDPIAware) GetProcAddress (user32, "SetProcessDPIAware");
|
|
|
|
display->user32_dpi_funcs.isDpiAwareFunc =
|
|
|
|
(funcIsProcessDPIAware) GetProcAddress (user32, "IsProcessDPIAware");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (g_getenv ("GDK_WIN32_DISABLE_HIDPI") == NULL)
|
|
|
|
{
|
|
|
|
/* For Windows 8.1 and later, use SetProcessDPIAwareness() */
|
|
|
|
if (display->have_at_least_win81)
|
|
|
|
{
|
|
|
|
/* then make the GDK-using app DPI-aware */
|
|
|
|
if (display->shcore_funcs.setDpiAwareFunc != NULL)
|
|
|
|
{
|
|
|
|
GdkWin32ProcessDpiAwareness hidpi_mode;
|
|
|
|
|
|
|
|
/* TODO: See how per-monitor DPI awareness is done by the Wayland backend */
|
|
|
|
if (g_getenv ("GDK_WIN32_PER_MONITOR_HIDPI") != NULL)
|
|
|
|
hidpi_mode = PROCESS_PER_MONITOR_DPI_AWARE;
|
|
|
|
else
|
|
|
|
hidpi_mode = PROCESS_SYSTEM_DPI_AWARE;
|
|
|
|
|
|
|
|
switch (display->shcore_funcs.setDpiAwareFunc (hidpi_mode))
|
|
|
|
{
|
|
|
|
case S_OK:
|
|
|
|
display->dpi_aware_type = hidpi_mode;
|
|
|
|
status = DPI_STATUS_SUCCESS;
|
|
|
|
break;
|
|
|
|
case E_ACCESSDENIED:
|
|
|
|
/* This means the app used a manifest to set DPI awareness, or a
|
|
|
|
DPI compatibility setting is used.
|
|
|
|
The manifest is the trump card in this game of bridge here. The
|
|
|
|
same applies if one uses the control panel or program properties to
|
|
|
|
force system DPI awareness */
|
|
|
|
check_for_dpi_awareness = TRUE;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
display->dpi_aware_type = PROCESS_DPI_UNAWARE;
|
|
|
|
status = DPI_STATUS_FAILED;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2017-01-09 09:53:46 +00:00
|
|
|
else
|
GDK-Win32/4.0: Enable HiDPI support for Windows
This enables HiDPI support for GTK+ on Windows, so that the
fonts and window look better on HiDPI displays. Notes for the current
work:
-The DPI awareness enabling can be disabled if and only if an application
manifest is not embedded in the app to enable DPI awareness AND a user
compatibility setting is not set to limit DPI awareness for the app, via
the envvar GDK_WIN32_DISABLE_HIDPI. The app manifest/user setting for
DPI awareness will always win against the envvar, and so the HiDPI items
will be always setup in such scenarios, unless DPI awareness is disabled.
-Both automatic detection for the scaling factor and setting the scale
factor using the GDK_SCALE envvar are supported, where the envvar takes
precedence, which will therefore disable automatic scaling when
resolution changes.
-We now default to a per-system DPI awareness model, which means that we
do not handle WM_DPICHANGED, unless one sets the
GDK_WIN32_PER_MONITOR_HIDPI envvar, where notes for it are in the
following point.
-Automatic scaling during WM_DISPLAYCHANGE is handled (DPI setting change of
current monitor) is now supported. WM_DPICHANGED is handled as well,
except that the window positioning during the change of scaling still
needs to be refined, a change in GDK itself may be required for this.
-I am unable to test the wintab items because I don't have such devices
around.
https://bugzilla.gnome.org/show_bug.cgi?id=768081
2016-06-27 05:16:43 +00:00
|
|
|
{
|
2017-01-09 09:53:46 +00:00
|
|
|
check_for_dpi_awareness = TRUE;
|
GDK-Win32/4.0: Enable HiDPI support for Windows
This enables HiDPI support for GTK+ on Windows, so that the
fonts and window look better on HiDPI displays. Notes for the current
work:
-The DPI awareness enabling can be disabled if and only if an application
manifest is not embedded in the app to enable DPI awareness AND a user
compatibility setting is not set to limit DPI awareness for the app, via
the envvar GDK_WIN32_DISABLE_HIDPI. The app manifest/user setting for
DPI awareness will always win against the envvar, and so the HiDPI items
will be always setup in such scenarios, unless DPI awareness is disabled.
-Both automatic detection for the scaling factor and setting the scale
factor using the GDK_SCALE envvar are supported, where the envvar takes
precedence, which will therefore disable automatic scaling when
resolution changes.
-We now default to a per-system DPI awareness model, which means that we
do not handle WM_DPICHANGED, unless one sets the
GDK_WIN32_PER_MONITOR_HIDPI envvar, where notes for it are in the
following point.
-Automatic scaling during WM_DISPLAYCHANGE is handled (DPI setting change of
current monitor) is now supported. WM_DPICHANGED is handled as well,
except that the window positioning during the change of scaling still
needs to be refined, a change in GDK itself may be required for this.
-I am unable to test the wintab items because I don't have such devices
around.
https://bugzilla.gnome.org/show_bug.cgi?id=768081
2016-06-27 05:16:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* For Windows Vista through 8, use SetProcessDPIAware() */
|
|
|
|
display->have_at_least_win81 = FALSE;
|
|
|
|
if (display->user32_dpi_funcs.setDpiAwareFunc != NULL)
|
|
|
|
{
|
|
|
|
if (display->user32_dpi_funcs.setDpiAwareFunc () != 0)
|
|
|
|
{
|
|
|
|
display->dpi_aware_type = PROCESS_SYSTEM_DPI_AWARE;
|
|
|
|
status = DPI_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
check_for_dpi_awareness = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
display->dpi_aware_type = PROCESS_DPI_UNAWARE;
|
|
|
|
status = DPI_STATUS_FAILED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* if GDK_WIN32_DISABLE_HIDPI is set, check for any DPI
|
|
|
|
* awareness settings done via manifests or user settings
|
|
|
|
*/
|
|
|
|
check_for_dpi_awareness = TRUE;
|
|
|
|
have_hpi_disable_envvar = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (check_for_dpi_awareness)
|
|
|
|
{
|
|
|
|
if (display->have_at_least_win81)
|
|
|
|
{
|
|
|
|
if (display->shcore_funcs.getDpiAwareFunc != NULL)
|
|
|
|
{
|
|
|
|
display->shcore_funcs.getDpiAwareFunc (NULL, &display->dpi_aware_type);
|
|
|
|
|
|
|
|
if (display->dpi_aware_type != PROCESS_DPI_UNAWARE)
|
|
|
|
status = DPI_STATUS_SUCCESS;
|
|
|
|
else
|
|
|
|
/* This means the DPI awareness setting was forcefully disabled */
|
|
|
|
status = DPI_STATUS_DISABLED;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
display->dpi_aware_type = PROCESS_DPI_UNAWARE;
|
|
|
|
status = DPI_STATUS_FAILED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (display->user32_dpi_funcs.isDpiAwareFunc != NULL)
|
|
|
|
{
|
|
|
|
/* This most probably means DPI awareness is set through
|
|
|
|
the manifest, or a DPI compatibility setting is used. */
|
|
|
|
display->dpi_aware_type = display->user32_dpi_funcs.isDpiAwareFunc () ?
|
|
|
|
PROCESS_SYSTEM_DPI_AWARE :
|
|
|
|
PROCESS_DPI_UNAWARE;
|
|
|
|
|
|
|
|
if (display->dpi_aware_type == PROCESS_SYSTEM_DPI_AWARE)
|
|
|
|
status = DPI_STATUS_SUCCESS;
|
|
|
|
else
|
|
|
|
status = DPI_STATUS_DISABLED;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
display->dpi_aware_type = PROCESS_DPI_UNAWARE;
|
|
|
|
status = DPI_STATUS_FAILED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (have_hpi_disable_envvar &&
|
|
|
|
status == DPI_STATUS_SUCCESS)
|
|
|
|
{
|
|
|
|
/* The user setting or application manifest trumps over GDK_WIN32_DISABLE_HIDPI */
|
|
|
|
g_print ("Note: GDK_WIN32_DISABLE_HIDPI is ignored due to preset\n"
|
|
|
|
" DPI awareness settings in user settings or application\n"
|
|
|
|
" manifest, DPI awareness is still enabled.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (status)
|
|
|
|
{
|
|
|
|
case DPI_STATUS_SUCCESS:
|
|
|
|
GDK_NOTE (MISC, g_message ("HiDPI support enabled, type: %s",
|
|
|
|
display->dpi_aware_type == PROCESS_PER_MONITOR_DPI_AWARE ? "per-monitor" : "system"));
|
|
|
|
break;
|
|
|
|
case DPI_STATUS_DISABLED:
|
|
|
|
GDK_NOTE (MISC, g_message ("HiDPI support disabled via manifest"));
|
|
|
|
break;
|
|
|
|
case DPI_STATUS_FAILED:
|
|
|
|
g_warning ("Failed to enable HiDPI support.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
static void
|
2015-05-13 07:45:40 +00:00
|
|
|
gdk_win32_display_init (GdkWin32Display *display)
|
2011-01-02 10:51:25 +00:00
|
|
|
{
|
GDK-Win32/4.0: Enable HiDPI support for Windows
This enables HiDPI support for GTK+ on Windows, so that the
fonts and window look better on HiDPI displays. Notes for the current
work:
-The DPI awareness enabling can be disabled if and only if an application
manifest is not embedded in the app to enable DPI awareness AND a user
compatibility setting is not set to limit DPI awareness for the app, via
the envvar GDK_WIN32_DISABLE_HIDPI. The app manifest/user setting for
DPI awareness will always win against the envvar, and so the HiDPI items
will be always setup in such scenarios, unless DPI awareness is disabled.
-Both automatic detection for the scaling factor and setting the scale
factor using the GDK_SCALE envvar are supported, where the envvar takes
precedence, which will therefore disable automatic scaling when
resolution changes.
-We now default to a per-system DPI awareness model, which means that we
do not handle WM_DPICHANGED, unless one sets the
GDK_WIN32_PER_MONITOR_HIDPI envvar, where notes for it are in the
following point.
-Automatic scaling during WM_DISPLAYCHANGE is handled (DPI setting change of
current monitor) is now supported. WM_DPICHANGED is handled as well,
except that the window positioning during the change of scaling still
needs to be refined, a change in GDK itself may be required for this.
-I am unable to test the wintab items because I don't have such devices
around.
https://bugzilla.gnome.org/show_bug.cgi?id=768081
2016-06-27 05:16:43 +00:00
|
|
|
const gchar *scale_str = g_getenv ("GDK_SCALE");
|
|
|
|
|
2016-04-20 07:36:00 +00:00
|
|
|
display->monitors = g_ptr_array_new_with_free_func (g_object_unref);
|
GDK-Win32/4.0: Enable HiDPI support for Windows
This enables HiDPI support for GTK+ on Windows, so that the
fonts and window look better on HiDPI displays. Notes for the current
work:
-The DPI awareness enabling can be disabled if and only if an application
manifest is not embedded in the app to enable DPI awareness AND a user
compatibility setting is not set to limit DPI awareness for the app, via
the envvar GDK_WIN32_DISABLE_HIDPI. The app manifest/user setting for
DPI awareness will always win against the envvar, and so the HiDPI items
will be always setup in such scenarios, unless DPI awareness is disabled.
-Both automatic detection for the scaling factor and setting the scale
factor using the GDK_SCALE envvar are supported, where the envvar takes
precedence, which will therefore disable automatic scaling when
resolution changes.
-We now default to a per-system DPI awareness model, which means that we
do not handle WM_DPICHANGED, unless one sets the
GDK_WIN32_PER_MONITOR_HIDPI envvar, where notes for it are in the
following point.
-Automatic scaling during WM_DISPLAYCHANGE is handled (DPI setting change of
current monitor) is now supported. WM_DPICHANGED is handled as well,
except that the window positioning during the change of scaling still
needs to be refined, a change in GDK itself may be required for this.
-I am unable to test the wintab items because I don't have such devices
around.
https://bugzilla.gnome.org/show_bug.cgi?id=768081
2016-06-27 05:16:43 +00:00
|
|
|
|
|
|
|
_gdk_win32_enable_hidpi (display);
|
|
|
|
|
|
|
|
/* if we have DPI awareness, set up fixed scale if set */
|
|
|
|
if (display->dpi_aware_type != PROCESS_DPI_UNAWARE &&
|
|
|
|
scale_str != NULL)
|
|
|
|
{
|
|
|
|
display->window_scale = atol (scale_str);
|
|
|
|
|
|
|
|
if (display->window_scale == 0)
|
|
|
|
display->window_scale = 1;
|
|
|
|
|
|
|
|
display->has_fixed_scale = TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
display->window_scale = 1;
|
|
|
|
|
2015-05-13 07:45:40 +00:00
|
|
|
_gdk_win32_display_init_cursors (display);
|
2016-10-29 02:37:20 +00:00
|
|
|
gdk_win32_display_check_composited (display);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gdk_win32_display_check_composited (GdkWin32Display *display)
|
|
|
|
{
|
|
|
|
gboolean composited;
|
|
|
|
|
|
|
|
/* On Windows 8 and later, DWM (composition) is always enabled */
|
|
|
|
if (g_win32_check_windows_version (6, 2, 0, G_WIN32_OS_ANY))
|
|
|
|
{
|
|
|
|
composited = TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (DwmIsCompositionEnabled (&composited) != S_OK)
|
|
|
|
composited = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gdk_display_set_composited (GDK_DISPLAY (display), composited);
|
2011-01-02 10:51:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gdk_win32_display_notify_startup_complete (GdkDisplay *display,
|
|
|
|
const gchar *startup_id)
|
|
|
|
{
|
|
|
|
/* nothing */
|
|
|
|
}
|
2016-04-11 20:22:23 +00:00
|
|
|
|
2016-04-20 07:36:00 +00:00
|
|
|
static int
|
|
|
|
gdk_win32_display_get_n_monitors (GdkDisplay *display)
|
|
|
|
{
|
|
|
|
GdkWin32Display *win32_display = GDK_WIN32_DISPLAY (display);
|
|
|
|
|
|
|
|
return win32_display->monitors->len;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static GdkMonitor *
|
|
|
|
gdk_win32_display_get_monitor (GdkDisplay *display,
|
|
|
|
int monitor_num)
|
|
|
|
{
|
|
|
|
GdkWin32Display *win32_display = GDK_WIN32_DISPLAY (display);
|
|
|
|
|
2017-01-20 09:08:41 +00:00
|
|
|
if (monitor_num < 0 || monitor_num >= win32_display->monitors->len)
|
|
|
|
return NULL;
|
2016-04-20 07:36:00 +00:00
|
|
|
|
2017-01-20 09:08:41 +00:00
|
|
|
return (GdkMonitor *) g_ptr_array_index (win32_display->monitors, monitor_num);
|
2016-04-20 07:36:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static GdkMonitor *
|
|
|
|
gdk_win32_display_get_primary_monitor (GdkDisplay *display)
|
|
|
|
{
|
|
|
|
GdkWin32Display *win32_display = GDK_WIN32_DISPLAY (display);
|
|
|
|
|
|
|
|
/* We arrange for the first monitor in the array to also be the primiary monitor */
|
|
|
|
if (win32_display->monitors->len > 0)
|
|
|
|
return (GdkMonitor *) g_ptr_array_index (win32_display->monitors, 0);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
GDK-Win32/4.0: Enable HiDPI support for Windows
This enables HiDPI support for GTK+ on Windows, so that the
fonts and window look better on HiDPI displays. Notes for the current
work:
-The DPI awareness enabling can be disabled if and only if an application
manifest is not embedded in the app to enable DPI awareness AND a user
compatibility setting is not set to limit DPI awareness for the app, via
the envvar GDK_WIN32_DISABLE_HIDPI. The app manifest/user setting for
DPI awareness will always win against the envvar, and so the HiDPI items
will be always setup in such scenarios, unless DPI awareness is disabled.
-Both automatic detection for the scaling factor and setting the scale
factor using the GDK_SCALE envvar are supported, where the envvar takes
precedence, which will therefore disable automatic scaling when
resolution changes.
-We now default to a per-system DPI awareness model, which means that we
do not handle WM_DPICHANGED, unless one sets the
GDK_WIN32_PER_MONITOR_HIDPI envvar, where notes for it are in the
following point.
-Automatic scaling during WM_DISPLAYCHANGE is handled (DPI setting change of
current monitor) is now supported. WM_DPICHANGED is handled as well,
except that the window positioning during the change of scaling still
needs to be refined, a change in GDK itself may be required for this.
-I am unable to test the wintab items because I don't have such devices
around.
https://bugzilla.gnome.org/show_bug.cgi?id=768081
2016-06-27 05:16:43 +00:00
|
|
|
guint
|
|
|
|
_gdk_win32_display_get_monitor_scale_factor (GdkWin32Display *win32_display,
|
|
|
|
HMONITOR hmonitor,
|
|
|
|
HWND hwnd,
|
|
|
|
gint *dpi)
|
|
|
|
{
|
|
|
|
gboolean is_scale_acquired = FALSE;
|
|
|
|
gboolean use_dpi_for_monitor = FALSE;
|
|
|
|
guint dpix, dpiy;
|
|
|
|
|
|
|
|
if (win32_display->have_at_least_win81)
|
|
|
|
{
|
|
|
|
if (hmonitor != NULL)
|
|
|
|
use_dpi_for_monitor = TRUE;
|
|
|
|
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (hwnd != NULL)
|
|
|
|
{
|
|
|
|
hmonitor = MonitorFromWindow (hwnd, MONITOR_DEFAULTTONEAREST);
|
|
|
|
use_dpi_for_monitor = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (use_dpi_for_monitor)
|
|
|
|
{
|
|
|
|
/* Use GetDpiForMonitor() for Windows 8.1+, when we have a HMONITOR */
|
|
|
|
if (win32_display->shcore_funcs.hshcore != NULL &&
|
|
|
|
win32_display->shcore_funcs.getDpiForMonitorFunc != NULL)
|
|
|
|
{
|
|
|
|
if (win32_display->shcore_funcs.getDpiForMonitorFunc (hmonitor,
|
|
|
|
MDT_EFFECTIVE_DPI,
|
|
|
|
&dpix,
|
|
|
|
&dpiy) == S_OK)
|
|
|
|
{
|
|
|
|
is_scale_acquired = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Go back to GetDeviceCaps() for Windows 8 and earler, or when we don't
|
|
|
|
* have a HMONITOR nor a HWND
|
|
|
|
*/
|
|
|
|
HDC hdc = GetDC (hwnd);
|
|
|
|
|
|
|
|
/* in case we can't get the DC for the window, return 1 for the scale */
|
|
|
|
if (hdc == NULL)
|
|
|
|
{
|
|
|
|
if (dpi != NULL)
|
|
|
|
*dpi = USER_DEFAULT_SCREEN_DPI;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
dpix = GetDeviceCaps (hdc, LOGPIXELSX);
|
|
|
|
dpiy = GetDeviceCaps (hdc, LOGPIXELSY);
|
|
|
|
ReleaseDC (hwnd, hdc);
|
|
|
|
|
|
|
|
is_scale_acquired = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_scale_acquired)
|
|
|
|
/* USER_DEFAULT_SCREEN_DPI = 96, in winuser.h */
|
|
|
|
{
|
|
|
|
if (dpi != NULL)
|
|
|
|
*dpi = dpix;
|
|
|
|
|
|
|
|
if (win32_display->has_fixed_scale)
|
|
|
|
return win32_display->window_scale;
|
|
|
|
else
|
|
|
|
return dpix / USER_DEFAULT_SCREEN_DPI > 1 ? dpix / USER_DEFAULT_SCREEN_DPI : 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (dpi != NULL)
|
|
|
|
*dpi = USER_DEFAULT_SCREEN_DPI;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-31 04:49:44 +00:00
|
|
|
static gboolean
|
|
|
|
gdk_win32_display_get_setting (GdkDisplay *display,
|
|
|
|
const gchar *name,
|
|
|
|
GValue *value)
|
|
|
|
{
|
2017-11-17 18:21:24 +00:00
|
|
|
return _gdk_win32_get_setting (name, value);
|
2017-10-31 04:49:44 +00:00
|
|
|
}
|
|
|
|
|
2017-11-17 20:39:08 +00:00
|
|
|
static guint32
|
|
|
|
gdk_win32_display_get_last_seen_time (GdkDisplay *display)
|
|
|
|
{
|
|
|
|
return GetMessageTime ();
|
|
|
|
}
|
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
static void
|
|
|
|
gdk_win32_display_class_init (GdkWin32DisplayClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
GdkDisplayClass *display_class = GDK_DISPLAY_CLASS (klass);
|
|
|
|
|
|
|
|
object_class->dispose = gdk_win32_display_dispose;
|
|
|
|
object_class->finalize = gdk_win32_display_finalize;
|
|
|
|
|
|
|
|
display_class->window_type = GDK_TYPE_WIN32_WINDOW;
|
|
|
|
|
|
|
|
display_class->get_name = gdk_win32_display_get_name;
|
|
|
|
display_class->beep = gdk_win32_display_beep;
|
2011-10-27 14:56:40 +00:00
|
|
|
display_class->sync = gdk_win32_display_sync;
|
2011-01-02 10:51:25 +00:00
|
|
|
display_class->flush = gdk_win32_display_flush;
|
|
|
|
display_class->has_pending = _gdk_win32_display_has_pending;
|
|
|
|
display_class->queue_events = _gdk_win32_display_queue_events;
|
|
|
|
display_class->get_default_group = gdk_win32_display_get_default_group;
|
|
|
|
|
|
|
|
display_class->supports_selection_notification = gdk_win32_display_supports_selection_notification;
|
|
|
|
display_class->request_selection_notification = gdk_win32_display_request_selection_notification;
|
|
|
|
display_class->supports_clipboard_persistence = gdk_win32_display_supports_clipboard_persistence;
|
|
|
|
display_class->store_clipboard = gdk_win32_display_store_clipboard;
|
|
|
|
display_class->supports_shapes = gdk_win32_display_supports_shapes;
|
|
|
|
display_class->supports_input_shapes = gdk_win32_display_supports_input_shapes;
|
|
|
|
|
|
|
|
//? display_class->get_app_launch_context = _gdk_win32_display_get_app_launch_context;
|
|
|
|
display_class->get_default_cursor_size = _gdk_win32_display_get_default_cursor_size;
|
|
|
|
display_class->get_maximal_cursor_size = _gdk_win32_display_get_maximal_cursor_size;
|
|
|
|
display_class->supports_cursor_alpha = _gdk_win32_display_supports_cursor_alpha;
|
|
|
|
display_class->supports_cursor_color = _gdk_win32_display_supports_cursor_color;
|
|
|
|
|
|
|
|
display_class->get_next_serial = gdk_win32_display_get_next_serial;
|
|
|
|
display_class->notify_startup_complete = gdk_win32_display_notify_startup_complete;
|
|
|
|
display_class->create_window_impl = _gdk_win32_display_create_window_impl;
|
|
|
|
|
|
|
|
display_class->get_keymap = _gdk_win32_display_get_keymap;
|
|
|
|
display_class->get_selection_owner = _gdk_win32_display_get_selection_owner;
|
|
|
|
display_class->set_selection_owner = _gdk_win32_display_set_selection_owner;
|
|
|
|
display_class->send_selection_notify = _gdk_win32_display_send_selection_notify;
|
|
|
|
display_class->get_selection_property = _gdk_win32_display_get_selection_property;
|
2017-11-14 02:56:35 +00:00
|
|
|
display_class->clear_selection_targets = gdk_win32_display_clear_selection_targets;
|
|
|
|
display_class->add_selection_targets = gdk_win32_display_add_selection_targets;
|
2011-01-02 10:51:25 +00:00
|
|
|
display_class->convert_selection = _gdk_win32_display_convert_selection;
|
|
|
|
display_class->text_property_to_utf8_list = _gdk_win32_display_text_property_to_utf8_list;
|
|
|
|
display_class->utf8_to_string_target = _gdk_win32_display_utf8_to_string_target;
|
2014-12-17 04:32:04 +00:00
|
|
|
display_class->make_gl_context_current = _gdk_win32_display_make_gl_context_current;
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2016-04-20 07:36:00 +00:00
|
|
|
display_class->get_n_monitors = gdk_win32_display_get_n_monitors;
|
|
|
|
display_class->get_monitor = gdk_win32_display_get_monitor;
|
|
|
|
display_class->get_primary_monitor = gdk_win32_display_get_primary_monitor;
|
|
|
|
|
2016-12-28 14:25:07 +00:00
|
|
|
#ifdef GDK_RENDERING_VULKAN
|
|
|
|
display_class->vk_context_type = GDK_TYPE_WIN32_VULKAN_CONTEXT;
|
|
|
|
display_class->vk_extension_name = VK_KHR_WIN32_SURFACE_EXTENSION_NAME;
|
|
|
|
#endif
|
|
|
|
|
2017-10-31 04:49:44 +00:00
|
|
|
display_class->get_setting = gdk_win32_display_get_setting;
|
2017-11-17 20:39:08 +00:00
|
|
|
display_class->get_last_seen_time = gdk_win32_display_get_last_seen_time;
|
2017-11-17 22:42:12 +00:00
|
|
|
display_class->set_cursor_theme = gdk_win32_display_set_cursor_theme;
|
2017-10-31 04:49:44 +00:00
|
|
|
|
2013-05-02 13:36:41 +00:00
|
|
|
_gdk_win32_windowing_init ();
|
2011-01-02 10:51:25 +00:00
|
|
|
}
|