1999-11-11 22:12:27 +00:00
|
|
|
/* GDK - The GIMP Drawing Kit
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
2004-05-08 16:25:15 +00:00
|
|
|
* Copyright (C) 1998-2004 Tor Lillqvist
|
2011-01-02 10:51:25 +00:00
|
|
|
* Copyright (C) 2001-2011 Hans Breuer
|
2009-03-01 13:55:50 +00:00
|
|
|
* Copyright (C) 2007-2009 Cody Russell
|
1999-11-11 22:12:27 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
2000-07-26 11:33:08 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1999-11-11 22:12:27 +00:00
|
|
|
* 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
|
2000-07-26 11:33:08 +00:00
|
|
|
* Lesser General Public License for more details.
|
1999-11-11 22:12:27 +00:00
|
|
|
*
|
2000-07-26 11:33:08 +00:00
|
|
|
* 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/>.
|
1999-11-11 22:12:27 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2000-07-26 11:33:08 +00:00
|
|
|
* Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
|
1999-11-11 22:12:27 +00:00
|
|
|
* file for a list of people on the GTK+ Team. See the ChangeLog
|
|
|
|
* files for a list of changes. These files are distributed with
|
2015-04-29 07:31:08 +00:00
|
|
|
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
1999-11-11 22:12:27 +00:00
|
|
|
*/
|
|
|
|
|
2008-06-22 14:28:52 +00:00
|
|
|
#include "config.h"
|
1999-11-11 22:12:27 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2005-11-09 12:35:56 +00:00
|
|
|
#include "gdk.h"
|
2019-05-19 03:09:05 +00:00
|
|
|
#include "gdksurfaceprivate.h"
|
1999-11-20 01:22:57 +00:00
|
|
|
#include "gdkprivate-win32.h"
|
2010-05-25 22:38:44 +00:00
|
|
|
#include "gdkdeviceprivate.h"
|
|
|
|
#include "gdkdevicemanager-win32.h"
|
2008-10-05 00:00:10 +00:00
|
|
|
#include "gdkenumtypes.h"
|
2011-01-02 10:51:25 +00:00
|
|
|
#include "gdkwin32.h"
|
|
|
|
#include "gdkdisplayprivate.h"
|
2019-05-21 21:20:15 +00:00
|
|
|
#include "gdkframeclockidleprivate.h"
|
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
|
|
|
#include "gdkmonitorprivate.h"
|
2018-03-20 10:46:11 +00:00
|
|
|
#include "gdkwin32surface.h"
|
2018-03-29 23:40:32 +00:00
|
|
|
#include "gdkwin32cursor.h"
|
2014-12-17 04:32:04 +00:00
|
|
|
#include "gdkglcontext-win32.h"
|
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
|
|
|
#include "gdkdisplay-win32.h"
|
2011-01-02 10:51:25 +00:00
|
|
|
|
|
|
|
#include <cairo-win32.h>
|
2015-04-22 19:10:55 +00:00
|
|
|
#include <dwmapi.h>
|
2016-03-08 02:33:47 +00:00
|
|
|
#include <math.h>
|
|
|
|
#include "fallback-c89.c"
|
2003-08-06 21:01:00 +00:00
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
static void gdk_surface_win32_finalize (GObject *object);
|
2000-07-25 17:31:05 +00:00
|
|
|
|
|
|
|
static gpointer parent_class = NULL;
|
2008-02-05 16:47:24 +00:00
|
|
|
static GSList *modal_window_stack = NULL;
|
2000-07-25 17:31:05 +00:00
|
|
|
|
2011-10-26 10:43:24 +00:00
|
|
|
typedef struct _FullscreenInfo FullscreenInfo;
|
|
|
|
|
|
|
|
struct _FullscreenInfo
|
|
|
|
{
|
|
|
|
RECT r;
|
|
|
|
guint hint_flags;
|
|
|
|
LONG style;
|
|
|
|
};
|
2011-01-02 10:51:25 +00:00
|
|
|
|
2016-03-08 05:03:29 +00:00
|
|
|
struct _AeroSnapEdgeRegion
|
|
|
|
{
|
|
|
|
/* The rectangle along the edge of the desktop
|
|
|
|
* that allows application of the snap transformation.
|
|
|
|
*/
|
|
|
|
GdkRectangle edge;
|
|
|
|
|
|
|
|
/* A subregion of the "edge". When the pointer hits
|
|
|
|
* this region, the transformation is revealed.
|
|
|
|
* Usually it is 1-pixel thick and is located at the
|
|
|
|
* very edge of the screen. When there's a toolbar
|
|
|
|
* at that edge, the "trigger" and the "edge" regions
|
|
|
|
* are extended to cover that toolbar.
|
|
|
|
*/
|
|
|
|
GdkRectangle trigger;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct _AeroSnapEdgeRegion AeroSnapEdgeRegion;
|
|
|
|
|
|
|
|
/* Size of the regions at the edges of the desktop where
|
|
|
|
* snapping can take place (in pixels)
|
|
|
|
*/
|
|
|
|
#define AEROSNAP_REGION_THICKNESS (20)
|
|
|
|
/* Size of the subregions that actually trigger the snapping prompt
|
|
|
|
* (in pixels).
|
|
|
|
*/
|
|
|
|
#define AEROSNAP_REGION_TRIGGER_THICKNESS (1)
|
|
|
|
|
2016-03-12 16:26:19 +00:00
|
|
|
/* The gap between the snap indicator and the edge of the work area
|
|
|
|
* (in pixels).
|
|
|
|
*/
|
|
|
|
#define AEROSNAP_INDICATOR_EDGE_GAP (10)
|
|
|
|
|
|
|
|
/* Width of the outline of the snap indicator
|
|
|
|
* (in pixels).
|
|
|
|
*/
|
|
|
|
#define AEROSNAP_INDICATOR_LINE_WIDTH (3.0)
|
|
|
|
|
|
|
|
/* Corner radius of the snap indicator.
|
|
|
|
*/
|
|
|
|
#define AEROSNAP_INDICATOR_CORNER_RADIUS (3.0)
|
|
|
|
|
|
|
|
/* The time it takes for snap indicator to expand/shrink
|
|
|
|
* from current window size to future position of the
|
|
|
|
* snapped window (in microseconds).
|
|
|
|
*/
|
|
|
|
#define AEROSNAP_INDICATOR_ANIMATION_DURATION (200 * 1000)
|
|
|
|
|
|
|
|
/* Opacity if the snap indicator. */
|
|
|
|
#define AEROSNAP_INDICATOR_OPACITY (0.5)
|
|
|
|
|
|
|
|
/* The interval between snap indicator redraws (in milliseconds).
|
|
|
|
* 16 is ~ 1/60 of a second, for ~60 FPS.
|
|
|
|
*/
|
|
|
|
#define AEROSNAP_INDICATOR_ANIMATION_TICK (16)
|
|
|
|
|
2018-04-09 20:16:23 +00:00
|
|
|
static void gdk_win32_impl_frame_clock_after_paint (GdkFrameClock *clock,
|
|
|
|
GdkSurface *surface);
|
2018-03-20 10:40:08 +00:00
|
|
|
static gboolean _gdk_surface_get_functions (GdkSurface *window,
|
2008-10-05 00:00:10 +00:00
|
|
|
GdkWMFunction *functions);
|
2006-02-09 02:58:45 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
G_DEFINE_TYPE (GdkWin32Surface, gdk_win32_surface, GDK_TYPE_SURFACE)
|
2011-01-02 10:51:25 +00:00
|
|
|
|
|
|
|
static void
|
2019-05-19 03:09:05 +00:00
|
|
|
gdk_win32_surface_init (GdkWin32Surface *impl)
|
2000-07-25 17:31:05 +00:00
|
|
|
{
|
2003-12-14 01:06:56 +00:00
|
|
|
impl->hicon_big = NULL;
|
|
|
|
impl->hicon_small = NULL;
|
2000-07-25 17:31:05 +00:00
|
|
|
impl->hint_flags = 0;
|
2018-03-20 10:40:08 +00:00
|
|
|
impl->type_hint = GDK_SURFACE_TYPE_HINT_NORMAL;
|
2007-07-12 23:38:30 +00:00
|
|
|
impl->transient_owner = NULL;
|
2007-10-18 00:31:22 +00:00
|
|
|
impl->transient_children = NULL;
|
|
|
|
impl->num_transients = 0;
|
|
|
|
impl->changing_state = FALSE;
|
2018-03-20 11:05:26 +00:00
|
|
|
impl->surface_scale = 1;
|
2000-07-25 17:31:05 +00:00
|
|
|
}
|
Large changes to the Win32 backend, partially made necessary by the
2000-05-02 Tor Lillqvist <tml@iki.fi>
Large changes to the Win32 backend, partially made necessary by
the changes to the backend-independent internal
structures. Attempts to implement similar backing store stuff as
on X11. The current (CVS) version of the Win32 backend is *not* as
stable as it was before the no-flicker branch was merged. A
zipfile with that version is available from
http://www.gimp.org/win32/. That should be use by "production"
code until this CVS version is usable. (But note, the Win32
backend has never been claimed to be "production quality".)
* README.win32: Add the above comment about versions.
* gdk/gdkwindow.c: Don't use backing store for now on Win32.
* gdk/gdk.def: Update.
* gdk/gdkfont.h: Declare temporary Win32-only functions. Will
presumably be replaced by some more better mechanism as 1.4 gets
closer to release shape.
* gdk/makefile.{cygwin,msc}: Update.
* gdk/win32/*.c: Correct inclusions of the backend-specific and
internal headers. Change code according to changes in these. Use
gdk_drawable_*, not gdk_window_* where necessary.
* gdk/win32/gdkdnd-win32.c: Use MISC selector for GDK_NOTE, not
our old DND.
* gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_text): Don't try
to interpret single characters as UTF-8. Thanks to Hans Breuer.
Use correct function name in warning messages.
* gdk/win32/gdkevents-win32.c: Use correct parameter lists for the
GSourceFuncs gdk_event_prepare and gdk_event_check.
(gdk_event_get_graphics_expose): Do implement, use
PeekMessage. Thanks to Hans Breuer.
(event_mask_string): Debugging function to print an GdkEventMask.
(gdk_pointer_grab): Use it.
* gdk/win32/gdkfont-win32.c: The Unicode subrange that the
(old) book I used claimed was Hangul actually is CJK Unified
Ideographs Extension A. Also, Hangul Syllables were missing.
Improve logging.
* gdk/win32/gdkgc-win32.c: Largish changes.
* gdk/win32/gdkim-win32.c (gdk_set_locale): Use
g_win32_getlocale() from GLib, and not setlocale() to get current
locale name.
* gdk/win32/gdkprivate-win32.h
* gdk/win32/gdkwin32.h: Move stuff from gdkprivate-win32.h to
gdkwin32.h, similarily as in the X11 backend.
* gdk/win32/gdkwindow-win32.c (gdk_propagate_shapes): Bugfix,
assignment was used instead of equals in if test. Thanks to Hans
Breuer.
* gdk/win32/makefile.{cygwin,msc}
* gtk/makefile.{cygwin,msc}: Updates. Better kludge to get the
path to the Win32 headers that works also with the mingw compiler.
* gtk/gtkstyle.c: Include <string.h>.
2000-05-01 22:06:49 +00:00
|
|
|
|
2018-03-29 23:40:32 +00:00
|
|
|
|
|
|
|
static void
|
2019-05-19 03:09:05 +00:00
|
|
|
gdk_surface_win32_dispose (GObject *object)
|
2018-03-29 23:40:32 +00:00
|
|
|
{
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *surface;
|
2018-03-29 23:40:32 +00:00
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
g_return_if_fail (GDK_IS_WIN32_SURFACE (object));
|
2018-03-29 23:40:32 +00:00
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
surface = GDK_WIN32_SURFACE (object);
|
2018-03-29 23:40:32 +00:00
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
g_clear_object (&surface->cursor);
|
2018-03-29 23:40:32 +00:00
|
|
|
|
|
|
|
G_OBJECT_CLASS (parent_class)->dispose (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-07-25 17:31:05 +00:00
|
|
|
static void
|
2019-05-19 03:09:05 +00:00
|
|
|
gdk_surface_win32_finalize (GObject *object)
|
2000-07-25 17:31:05 +00:00
|
|
|
{
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *surface;
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
g_return_if_fail (GDK_IS_WIN32_SURFACE (object));
|
2000-07-25 17:31:05 +00:00
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
surface = GDK_WIN32_SURFACE (object);
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2019-05-21 21:20:15 +00:00
|
|
|
if (!GDK_SURFACE_DESTROYED (surface))
|
1999-11-20 01:22:57 +00:00
|
|
|
{
|
2019-05-19 03:09:05 +00:00
|
|
|
gdk_win32_handle_table_remove (surface->handle);
|
1999-11-20 01:22:57 +00:00
|
|
|
}
|
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
g_clear_pointer (&surface->snap_stash, g_free);
|
|
|
|
g_clear_pointer (&surface->snap_stash_int, g_free);
|
2016-03-08 03:17:09 +00:00
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
if (surface->hicon_big != NULL)
|
2003-12-14 01:06:56 +00:00
|
|
|
{
|
2019-05-19 03:09:05 +00:00
|
|
|
GDI_CALL (DestroyIcon, (surface->hicon_big));
|
|
|
|
surface->hicon_big = NULL;
|
2003-12-14 01:06:56 +00:00
|
|
|
}
|
2008-02-05 16:47:24 +00:00
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
if (surface->hicon_small != NULL)
|
2003-08-05 22:24:35 +00:00
|
|
|
{
|
2019-05-19 03:09:05 +00:00
|
|
|
GDI_CALL (DestroyIcon, (surface->hicon_small));
|
|
|
|
surface->hicon_small = NULL;
|
2003-08-05 22:24:35 +00:00
|
|
|
}
|
2000-07-04 06:12:54 +00:00
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
g_free (surface->decorations);
|
2016-02-23 09:20:55 +00:00
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
if (surface->cache_surface)
|
2017-09-04 14:42:11 +00:00
|
|
|
{
|
2019-05-19 03:09:05 +00:00
|
|
|
cairo_surface_destroy (surface->cache_surface);
|
|
|
|
surface->cache_surface = NULL;
|
2017-09-04 14:42:11 +00:00
|
|
|
}
|
|
|
|
|
2019-05-21 21:20:15 +00:00
|
|
|
_gdk_win32_surface_unregister_dnd (GDK_SURFACE (surface));
|
2019-05-19 03:09:05 +00:00
|
|
|
g_clear_object (&surface->drop);
|
GDK W32: Adapt to GdkDrop and GdkDragContext changes
* Remove clipdrop->dnd_target_state, it's not used anymore
* Remove non-functioning _gdk_dropfiles_store(), store dropfiles
list in GdkWin32Drop instead
* Fix multiple comment typos
* Fix _gdk_win32_get_clipboard_format_name_as_interned_mimetype() to
leave names that look like mime/types alone
* Refactor _gdk_win32_add_w32format_to_pairs() to populate
GdkContentFormatsBuilder directly, instead of making a GList
* Rename context -> drag (still using GdkDragContext type,
but [almost?] all variables and comments say "drag" now)
* Rename GdkDropContext -> GdkDrop
* Rename some parameter names for clarity
* Rewrite local protocol to look more like OLE2 protocol
instead of mirroring the structure of the X11 API.
* Add handle_events field to GdkWin32DragContext,
to shut off event handling (temporary fix until GTK is patched up)
* Remove _gdk_win32_drag_context_find() - the drag object is stored
in GdkDrop instead. Use _gdk_win32_find_drag_for_dest_surface()
to get it initially.
* Remove target_ctx_for_window, droptarget context is stored
in the surface instead.
* Call gdk_drag_context_set_cursor() just like wayland backend does
(slightly broken for now)
* Clean up the action choosing code (filter source actions by using
keyboard state, pass that to GTK, get all actions supported by GTK in
response, match them up with filtered source actions, return the
result, falling back to COPY in case of multiple actions)
* Check drag_win32->protocol instead of the use_ole2_dnd variable where
possible
* Remove protocol checks from functions that are only used by the local
protocol
* Use event state to manufacture the keyboard state for WM_MOUSEMOVE
* Change function names printed by GDK_NOTE to name the actual
functions, not their theoretical generic GDK stack ancestors
* Consistently use drag_win32 and drop_win32 variables instead of a mix
of that and win32_drag/win32_drop
* Return FALSE from button handler to ensure that GTK gets the button
event to break implicit grab
* Emit leave event on failed idroptarget_drop() calls
2018-06-05 23:03:51 +00:00
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
g_assert (surface->transient_owner == NULL);
|
|
|
|
g_assert (surface->transient_children == NULL);
|
2017-09-04 14:42:11 +00:00
|
|
|
|
2000-07-25 17:31:05 +00:00
|
|
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
1999-11-20 01:22:57 +00:00
|
|
|
}
|
1999-11-11 22:12:27 +00:00
|
|
|
|
2018-04-24 15:14:23 +00:00
|
|
|
void
|
|
|
|
_gdk_win32_get_window_client_area_rect (GdkSurface *window,
|
|
|
|
gint scale,
|
|
|
|
RECT *rect)
|
2017-09-02 15:25:36 +00:00
|
|
|
{
|
|
|
|
gint x, y, width, height;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_surface_get_position (window, &x, &y);
|
|
|
|
width = gdk_surface_get_width (window);
|
|
|
|
height = gdk_surface_get_height (window);
|
2017-09-02 15:25:36 +00:00
|
|
|
rect->left = x * scale;
|
|
|
|
rect->top = y * scale;
|
|
|
|
rect->right = rect->left + width * scale;
|
|
|
|
rect->bottom = rect->top + height * scale;
|
|
|
|
}
|
|
|
|
|
2018-04-09 20:16:23 +00:00
|
|
|
static void
|
|
|
|
gdk_win32_impl_frame_clock_after_paint (GdkFrameClock *clock,
|
|
|
|
GdkSurface *surface)
|
|
|
|
{
|
|
|
|
DWM_TIMING_INFO timing_info;
|
|
|
|
LARGE_INTEGER tick_frequency;
|
|
|
|
GdkFrameTimings *timings;
|
|
|
|
|
|
|
|
timings = gdk_frame_clock_get_timings (clock, gdk_frame_clock_get_frame_counter (clock));
|
|
|
|
|
|
|
|
if (timings)
|
|
|
|
{
|
|
|
|
timings->refresh_interval = 16667; /* default to 1/60th of a second */
|
|
|
|
timings->presentation_time = 0;
|
|
|
|
|
|
|
|
if (QueryPerformanceFrequency (&tick_frequency))
|
|
|
|
{
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
timing_info.cbSize = sizeof (timing_info);
|
|
|
|
hr = DwmGetCompositionTimingInfo (NULL, &timing_info);
|
|
|
|
|
|
|
|
if (SUCCEEDED (hr))
|
|
|
|
{
|
|
|
|
timings->refresh_interval = timing_info.qpcRefreshPeriod * (gdouble)G_USEC_PER_SEC / tick_frequency.QuadPart;
|
|
|
|
timings->presentation_time = timing_info.qpcCompose * (gdouble)G_USEC_PER_SEC / tick_frequency.QuadPart;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
timings->complete = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
void
|
2018-03-20 10:40:08 +00:00
|
|
|
_gdk_win32_adjust_client_rect (GdkSurface *window,
|
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
|
|
|
RECT *rect)
|
|
|
|
{
|
|
|
|
LONG style, exstyle;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
style = GetWindowLong (GDK_SURFACE_HWND (window), GWL_STYLE);
|
|
|
|
exstyle = GetWindowLong (GDK_SURFACE_HWND (window), GWL_EXSTYLE);
|
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
|
|
|
API_CALL (AdjustWindowRectEx, (rect, style, FALSE, exstyle));
|
|
|
|
}
|
|
|
|
|
2015-04-22 19:10:55 +00:00
|
|
|
gboolean
|
2018-03-20 10:40:08 +00:00
|
|
|
_gdk_win32_surface_enable_transparency (GdkSurface *window)
|
2015-04-22 19:10:55 +00:00
|
|
|
{
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl;
|
2015-04-22 19:10:55 +00:00
|
|
|
DWM_BLURBEHIND blur_behind;
|
|
|
|
HRGN empty_region;
|
|
|
|
HRESULT call_result;
|
2019-05-28 16:37:28 +00:00
|
|
|
HWND thiswindow;
|
2015-04-22 19:10:55 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (window == NULL || GDK_SURFACE_HWND (window) == NULL)
|
2015-04-22 19:10:55 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
impl = GDK_WIN32_SURFACE (window);
|
2016-02-23 09:20:55 +00:00
|
|
|
|
|
|
|
/* layered windows don't need blurbehind for transparency */
|
|
|
|
if (impl->layered)
|
|
|
|
return TRUE;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (!gdk_display_is_composited (gdk_surface_get_display (window)))
|
2015-04-22 19:10:55 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
thiswindow = GDK_SURFACE_HWND (window);
|
2015-04-22 19:10:55 +00:00
|
|
|
|
|
|
|
empty_region = CreateRectRgn (0, 0, -1, -1);
|
|
|
|
|
|
|
|
if (empty_region == NULL)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
memset (&blur_behind, 0, sizeof (blur_behind));
|
|
|
|
blur_behind.dwFlags = DWM_BB_ENABLE | DWM_BB_BLURREGION;
|
|
|
|
blur_behind.hRgnBlur = empty_region;
|
|
|
|
blur_behind.fEnable = TRUE;
|
|
|
|
call_result = DwmEnableBlurBehindWindow (thiswindow, &blur_behind);
|
|
|
|
|
|
|
|
if (!SUCCEEDED (call_result))
|
|
|
|
g_warning ("%s: %s (%p) failed: %" G_GINT32_MODIFIER "x",
|
|
|
|
G_STRLOC, "DwmEnableBlurBehindWindow", thiswindow, (guint32) call_result);
|
|
|
|
|
|
|
|
DeleteObject (empty_region);
|
|
|
|
|
|
|
|
return SUCCEEDED (call_result);
|
|
|
|
}
|
|
|
|
|
gdk/win32/gdkprivate-win32.h Rename all global variables and functions to
2002-11-12 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkprivate-win32.h
* gdk/win32/*.c: Rename all global variables and functions to
start with underscore.
Merge from stable:
More work on the Win32 backend. The cause of some scrolling
problems was that SetWindowPos() and ScrollWindowEx() don't blit
those parts of the window they think are invalid. As we didn't
keep Windows's update region in synch with GDK's, Windows thought
those areas that in fact had been updated were invalid. Calling
ValidateRgn() in _gdk_windowing_window_queue_antiexpose() seems to
be an elegant and efficient solution, removing from Windows's
update region those areas we are about to repaint proactively.
In some cases garbage leftover values were used for the clip
origin in GdkGCWin32. This showed up as odd blank areas around the
pixmaps included in the Text Widget in gtk-demo.
Having the clip region either as a GdkRegion or a HRGN in
GdkGCWin32 was unnecessary, it's better to just use a HRGN.
The translation and antiexpose queue handling in
gdkgeometry-win32.c seems unnecessary (and not implementable in
the same way as on X11 anyway, no serial numbers) on Windows,
ifdeffed out.
Don't (try to) do guffaw scrolling as there is no static window
gravity on Windows. Guffaw scrolling would be unnecessary anyway,
as there is the ScrollWindow() API. This improves the behaviour of
the Text Widget demo in gtk-demo a lot. But I have no idea how the
lack of static win gravity should be handled in other places where
the X11 code uses it. Especially _gdk_window_move_resize_child().
There is still some problem in expose handling. By moving an
obscuring window back and forth over testgtk's main window, for
instance, every now and then you typically get narrow vertical or
horizontal strips of pixels that haven't been properly redrawn
after being exposed. A fencepost error somewhere?
Otherwise, all of testgtk and gtk-demo except "big windows" now
seem to work pretty well.
Bug #79720 should be fixed now.
* gdk/win32/gdkcolor-win32.c (gdk_win32_color_to_string,
gdk_win32_print_paletteentries, gdk_win32_print_system_palette,
gdk_win32_print_hpalette)
* gdk/win32/gdkdrawable-win32.c (gdk_win32_drawable_description)
* gdk/win32/gdkevents-win32.c (gdk_win32_message_name):
Move all debugging helper functions to gdkmain-win32.c.
* gdk/win32/gdkdrawable-win32.c (_gdk_win32_draw_tiles):
Rewrite. Make static. Must take tile origin parameters, too.
(gdk_win32_draw_rectangle): Pass the tile/stipple origin to
_gdk_win32_draw_tiles(). Remove #if 0 code.
(blit_inside_window): Don't call ScrollDC(), that didn't work at
all like I thought. A simple call to BitBlt() is enough.
* gdk/win32/gdkevents-win32.c (gdk_event_translate) Remove unused
latin_locale_loaded variable.
(_gdk_win32_get_next_tick): New function. Used to make sure
timestamps of events are always increasing, both in events
generated from the window procedure and in events gotten via
PeekMessage(). Not sure whether this is actually useful, but it
seemed as a good idea.
(real_window_procedure): Don't use a local GdkEventPrivate
variable. Don't attempt any compression of configure or expose
events here, handled elsewhere.
(erase_background): Accumulate window offsets when traversing up
the parent chain for GDK_PARENT_RELATIVE_BG, in order to get
correct alignment of background pixmaps. Don't fill with
BLACK_BRUSH if GDK_NO_BG.
(gdk_event_get_graphics_expose): A bit more verbose debugging output.
(gdk_event_translate): Use _gdk_win32_get_next_tick(). In the
WM_PAINT handler, don't check for empty update rect. When we get a
WM_PAINT, the update region isn't empty. And if it for some
strange reason is, that will be handled later anyway. Call
GetUpdateRgn() before calling BeginPaint() and EndPaint() (which
empty the update region).
* gdk/win32/gdkdnd-win32.c
* gdk/win32/gdkinput-win32.c:
Use _gdk_win32_get_next_tick().
* gdk/win32/gdkfont-win32.c: Use %p to print HFONTs.
(gdk_text_size): Remove, unused.
* gdk/win32/gdkgc-win32.c: Set clip origins to zero
when appropriate.
(gdk_gc_copy): Increase refcount on colormap if present.
(gdk_win32_hdc_get): Handle just hcliprgn. If we have a stipple,
combine it with clip region after selecting into the DC.
(_gdk_win32_bitmap_to_hrgn): Rename from _gdk_win32_bitmap_to_region.
(_gdk_win3_gdkregion_to_hrgn): New function, code snippet
extracted from gdk_win32_hdc_get().
* gdk/win32/gdkgeometry-win32.c: Ifdef out the translate_queue
handling.
(gdk_window_copy_area_scroll): Increase clipRect to avoid
ScrollWindowEx() not scrolling pixels it thinks are invalid.
Scroll also children with the ScrollWindowEx() call. No need to
call gdk_window_move() on the children.
(gdk_window_scroll): Don't do guffaw scrolling.
(gdk_window_compute_position): Fix typo, used win32_y where x was
intended.
(gdk_window_premove, gdk_window_postmove,
gdk_window_clip_changed): Add debugging output.
(_gdk_windowing_window_queue_antiexpose): Just call ValidateRgn()
on the region.
(_gdk_window_process_expose): No use for the serial number
parameter now. Instead of a rectangle, take a region parameter, as
Windows gives us one in WM_PAINT.
* gdk/win32/gdkmain-win32.c (_gdk_win32_lbstyle_to_string,
_gdk_win32_pstype_to_string, _gdk_win32_psstyle_to_string,
_gdk_win32_psendcap_to_string, _gdk_win32_psjoin_to_string,
_gdk_win32_rect_to_string, _gdk_win32_gdkrectangle_to_string,
_gdk_win32_gdkregion_to_string): New debugging functions.
(static_printf): Helper function for the above. sprintfs into a
static circular buffer, return value should be used "soon".
* gdk/win32/gdkwindow-win32.c (gdk_propagate_shapes): Plug memory
leak, free list after use.
(gdk_window_gravity_works): Remove, we know that there is no such
thing on Windows.
(gdk_window_set_static_bit_gravity,
gdk_window_set_static_win_gravity): Ditto, remove, they didn't do
anything anyway.
(_gdk_windowing_window_init, gdk_window_foreign_new): Call
_gdk_window_init_position() like in the X11 backend.
(gdk_window_reparent): Don't call the now nonexistent
gdk_window_set_static_win_gravity(). No idea what should be done
instead.
(gdk_window_get_geometry): The returned x and y should be relative
to parent. Used to be always zero..
(gdk_window_set_static_gravities): Return FALSE if trying to set
static gravity.
* gdk/win32/gdkprivate-win32.h: Drop the clip_region field from
GdkGCWin32. Only use the HRGN hcliprgn. Declare new
functions.
* gdk/win32/*.c: Use new debugging functions.
* gdk/win32/rc/gdk.rc.in: Update copyright year.
2002-11-12 22:17:48 +00:00
|
|
|
static const gchar *
|
|
|
|
get_default_title (void)
|
|
|
|
{
|
|
|
|
const char *title;
|
|
|
|
title = g_get_application_name ();
|
|
|
|
if (!title)
|
|
|
|
title = g_get_prgname ();
|
|
|
|
|
|
|
|
return title;
|
2000-07-25 17:31:05 +00:00
|
|
|
}
|
|
|
|
|
1999-11-11 22:12:27 +00:00
|
|
|
/* RegisterGdkClass
|
|
|
|
* is a wrapper function for RegisterWindowClassEx.
|
2015-04-29 07:31:08 +00:00
|
|
|
* It creates at least one unique class for every
|
2018-03-20 10:40:08 +00:00
|
|
|
* GdkSurfaceType. If support for single window-specific icons
|
1999-11-11 22:12:27 +00:00
|
|
|
* is ever needed (e.g Dialog specific), every such window should
|
|
|
|
* get its own class
|
|
|
|
*/
|
2001-10-28 21:28:51 +00:00
|
|
|
static ATOM
|
2018-03-20 10:40:08 +00:00
|
|
|
RegisterGdkClass (GdkSurfaceType wtype, GdkSurfaceTypeHint wtype_hint)
|
1999-11-11 22:12:27 +00:00
|
|
|
{
|
2007-04-25 23:44:54 +00:00
|
|
|
static ATOM klassTOPLEVEL = 0;
|
|
|
|
static ATOM klassTEMP = 0;
|
|
|
|
static ATOM klassTEMPSHADOW = 0;
|
1999-11-11 22:12:27 +00:00
|
|
|
static HICON hAppIcon = NULL;
|
2006-10-28 23:58:30 +00:00
|
|
|
static HICON hAppIconSm = NULL;
|
2015-04-29 07:31:08 +00:00
|
|
|
static WNDCLASSEXW wcl;
|
1999-11-11 22:12:27 +00:00
|
|
|
ATOM klass = 0;
|
|
|
|
|
Massive changes. Too many to list here, but I'll try a summary:
2002-02-17 Tor Lillqvist <tml@iki.fi>
* gdk/win32/*.c: Massive changes. Too many to list here, but I'll
try a summary:
1) Unify GdkPixmap and GdkImage implementation: For each
GdkPixmap, allocate a GdkImage, and vice versa.
GdkPixmapImplWin32Data has a pointer to the GdkImage.
GdkImage::windowing_data is a pointer to the GdkPixmap.
This simplifies many pixmap and image related functions a lot, and
reduces duplicated code snippets. For instance, there is only one
place in gdk/win32 where CreateDIBSection() is called, in the
function _gdk_win32_new_pixmap(). Converting a bitmap (GdkPixmap)
to a Windows region is almost trivial, with the bitmap bits being
readily accessible in the associated GdkImage.
All blitting between GdkPixmaps, GdkWindows and GdkImages goes
through handled the _gdk_win32_blit() function, which calls
different functions to handle the cases of blitting from pixmaps,
inside windows (scrolling), or from windows, which all require
somewhat different handling.
2) Support 256-color mode. This has long been very broken, now it
works more or less OK. Keep the logical palette for each colormap
as small as possible while allocating and freeing colors. Select
and realize the logical palette associated with a GdkColormap into
a DC before drawing or blitting.
When the display is in 256-color mode, make it possible for the
user to override the size of the palette(s) used with either the
GDK_WIN32_MAX_COLORS environment variable, or a -max-colors
command line option. It is possible to reduce the palette size all
the way down to using just the 16 static colors (which causes the
system visual to be of type GDK_VISUAL_STATIC_COLOR. This could
possibly be useful if one desperately wants to avoid color
flashing. (Note that in order for this to work properly, an as of
yet not commited fix to gdkrgb.c is needed.)
Handle the palette messages. On WM_PALETTECHANGED, call
UpdateColors() for the given window hierarchy. Do this only if a
window in some other top-level window hierarchy caused the palette
change (realized a palette). Do this max five times in a row (an
arbitrarily chosen limit), though, otherwise redraw by generating
expose events. On WM_QUERYNEWPALETTE, cause a redraw of the whole
window hierarchy by generating GDK_EXPOSE events.
3) Code cleanup in general. For instance, remove the "emulated"
X11 structs ColormapStruct, Visual and XStandardColormap. Use the
new GDK_DEBUG_* flags for debugging output in the relevant source
files. Remove the unused colormap hash table in gdkcolor-win32.c
4) Plug some resource leaks.
2002-02-14 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkdnd-win32.c (gdk_dropfiles_filter): Use
g_filename_to_uri() to actually create legal URIs in the
text/uri-list data.
2002-02-17 00:25:05 +00:00
|
|
|
wcl.cbSize = sizeof (WNDCLASSEX);
|
1999-11-11 22:12:27 +00:00
|
|
|
wcl.style = 0; /* DON'T set CS_<H,V>REDRAW. It causes total redraw
|
|
|
|
* on WM_SIZE and WM_MOVE. Flicker, Performance!
|
|
|
|
*/
|
2018-03-20 10:40:08 +00:00
|
|
|
wcl.lpfnWndProc = _gdk_win32_surface_procedure;
|
1999-11-11 22:12:27 +00:00
|
|
|
wcl.cbClsExtra = 0;
|
|
|
|
wcl.cbWndExtra = 0;
|
2018-06-16 18:24:56 +00:00
|
|
|
wcl.hInstance = _gdk_dll_hinstance;
|
1999-11-11 22:12:27 +00:00
|
|
|
wcl.hIcon = 0;
|
2006-10-28 23:58:30 +00:00
|
|
|
wcl.hIconSm = 0;
|
2008-02-05 16:47:24 +00:00
|
|
|
|
1999-11-11 22:12:27 +00:00
|
|
|
/* initialize once! */
|
2006-10-28 23:58:30 +00:00
|
|
|
if (0 == hAppIcon && 0 == hAppIconSm)
|
1999-11-11 22:12:27 +00:00
|
|
|
{
|
2002-08-26 20:00:36 +00:00
|
|
|
gchar sLoc [MAX_PATH+1];
|
1999-11-11 22:12:27 +00:00
|
|
|
|
2018-06-16 18:24:56 +00:00
|
|
|
if (0 != GetModuleFileName (_gdk_dll_hinstance, sLoc, MAX_PATH))
|
2006-10-28 23:58:30 +00:00
|
|
|
{
|
|
|
|
ExtractIconEx (sLoc, 0, &hAppIcon, &hAppIconSm, 1);
|
2008-02-05 16:47:24 +00:00
|
|
|
|
2006-10-28 23:58:30 +00:00
|
|
|
if (0 == hAppIcon && 0 == hAppIconSm)
|
|
|
|
{
|
|
|
|
if (0 != GetModuleFileName (_gdk_dll_hinstance, sLoc, MAX_PATH))
|
2008-02-05 16:47:24 +00:00
|
|
|
{
|
|
|
|
ExtractIconEx (sLoc, 0, &hAppIcon, &hAppIconSm, 1);
|
|
|
|
}
|
2006-10-28 23:58:30 +00:00
|
|
|
}
|
|
|
|
}
|
2008-02-05 16:47:24 +00:00
|
|
|
|
2006-10-28 23:58:30 +00:00
|
|
|
if (0 == hAppIcon && 0 == hAppIconSm)
|
|
|
|
{
|
|
|
|
hAppIcon = LoadImage (NULL, IDI_APPLICATION, IMAGE_ICON,
|
|
|
|
GetSystemMetrics (SM_CXICON),
|
|
|
|
GetSystemMetrics (SM_CYICON), 0);
|
|
|
|
hAppIconSm = LoadImage (NULL, IDI_APPLICATION, IMAGE_ICON,
|
|
|
|
GetSystemMetrics (SM_CXSMICON),
|
|
|
|
GetSystemMetrics (SM_CYSMICON), 0);
|
|
|
|
}
|
1999-11-11 22:12:27 +00:00
|
|
|
}
|
2008-02-05 16:47:24 +00:00
|
|
|
|
2006-10-28 23:58:30 +00:00
|
|
|
if (0 == hAppIcon)
|
|
|
|
hAppIcon = hAppIconSm;
|
|
|
|
else if (0 == hAppIconSm)
|
|
|
|
hAppIconSm = hAppIcon;
|
1999-11-11 22:12:27 +00:00
|
|
|
|
|
|
|
wcl.lpszMenuName = NULL;
|
|
|
|
|
|
|
|
/* initialize once per class */
|
2001-03-10 18:13:03 +00:00
|
|
|
/*
|
|
|
|
* HB: Setting the background brush leads to flicker, because we
|
|
|
|
* don't get asked how to clear the background. This is not what
|
|
|
|
* we want, at least not for input_only windows ...
|
|
|
|
*/
|
1999-11-11 22:12:27 +00:00
|
|
|
#define ONCE_PER_CLASS() \
|
|
|
|
wcl.hIcon = CopyIcon (hAppIcon); \
|
2006-10-28 23:58:30 +00:00
|
|
|
wcl.hIconSm = CopyIcon (hAppIconSm); \
|
Massive changes. Too many to list here, but I'll try a summary:
2002-02-17 Tor Lillqvist <tml@iki.fi>
* gdk/win32/*.c: Massive changes. Too many to list here, but I'll
try a summary:
1) Unify GdkPixmap and GdkImage implementation: For each
GdkPixmap, allocate a GdkImage, and vice versa.
GdkPixmapImplWin32Data has a pointer to the GdkImage.
GdkImage::windowing_data is a pointer to the GdkPixmap.
This simplifies many pixmap and image related functions a lot, and
reduces duplicated code snippets. For instance, there is only one
place in gdk/win32 where CreateDIBSection() is called, in the
function _gdk_win32_new_pixmap(). Converting a bitmap (GdkPixmap)
to a Windows region is almost trivial, with the bitmap bits being
readily accessible in the associated GdkImage.
All blitting between GdkPixmaps, GdkWindows and GdkImages goes
through handled the _gdk_win32_blit() function, which calls
different functions to handle the cases of blitting from pixmaps,
inside windows (scrolling), or from windows, which all require
somewhat different handling.
2) Support 256-color mode. This has long been very broken, now it
works more or less OK. Keep the logical palette for each colormap
as small as possible while allocating and freeing colors. Select
and realize the logical palette associated with a GdkColormap into
a DC before drawing or blitting.
When the display is in 256-color mode, make it possible for the
user to override the size of the palette(s) used with either the
GDK_WIN32_MAX_COLORS environment variable, or a -max-colors
command line option. It is possible to reduce the palette size all
the way down to using just the 16 static colors (which causes the
system visual to be of type GDK_VISUAL_STATIC_COLOR. This could
possibly be useful if one desperately wants to avoid color
flashing. (Note that in order for this to work properly, an as of
yet not commited fix to gdkrgb.c is needed.)
Handle the palette messages. On WM_PALETTECHANGED, call
UpdateColors() for the given window hierarchy. Do this only if a
window in some other top-level window hierarchy caused the palette
change (realized a palette). Do this max five times in a row (an
arbitrarily chosen limit), though, otherwise redraw by generating
expose events. On WM_QUERYNEWPALETTE, cause a redraw of the whole
window hierarchy by generating GDK_EXPOSE events.
3) Code cleanup in general. For instance, remove the "emulated"
X11 structs ColormapStruct, Visual and XStandardColormap. Use the
new GDK_DEBUG_* flags for debugging output in the relevant source
files. Remove the unused colormap hash table in gdkcolor-win32.c
4) Plug some resource leaks.
2002-02-14 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkdnd-win32.c (gdk_dropfiles_filter): Use
g_filename_to_uri() to actually create legal URIs in the
text/uri-list data.
2002-02-17 00:25:05 +00:00
|
|
|
wcl.hbrBackground = NULL; \
|
2015-04-29 07:31:08 +00:00
|
|
|
wcl.hCursor = LoadCursor (NULL, IDC_ARROW);
|
|
|
|
|
1999-11-11 22:12:27 +00:00
|
|
|
switch (wtype)
|
Massive changes. Too many to list here, but I'll try a summary:
2002-02-17 Tor Lillqvist <tml@iki.fi>
* gdk/win32/*.c: Massive changes. Too many to list here, but I'll
try a summary:
1) Unify GdkPixmap and GdkImage implementation: For each
GdkPixmap, allocate a GdkImage, and vice versa.
GdkPixmapImplWin32Data has a pointer to the GdkImage.
GdkImage::windowing_data is a pointer to the GdkPixmap.
This simplifies many pixmap and image related functions a lot, and
reduces duplicated code snippets. For instance, there is only one
place in gdk/win32 where CreateDIBSection() is called, in the
function _gdk_win32_new_pixmap(). Converting a bitmap (GdkPixmap)
to a Windows region is almost trivial, with the bitmap bits being
readily accessible in the associated GdkImage.
All blitting between GdkPixmaps, GdkWindows and GdkImages goes
through handled the _gdk_win32_blit() function, which calls
different functions to handle the cases of blitting from pixmaps,
inside windows (scrolling), or from windows, which all require
somewhat different handling.
2) Support 256-color mode. This has long been very broken, now it
works more or less OK. Keep the logical palette for each colormap
as small as possible while allocating and freeing colors. Select
and realize the logical palette associated with a GdkColormap into
a DC before drawing or blitting.
When the display is in 256-color mode, make it possible for the
user to override the size of the palette(s) used with either the
GDK_WIN32_MAX_COLORS environment variable, or a -max-colors
command line option. It is possible to reduce the palette size all
the way down to using just the 16 static colors (which causes the
system visual to be of type GDK_VISUAL_STATIC_COLOR. This could
possibly be useful if one desperately wants to avoid color
flashing. (Note that in order for this to work properly, an as of
yet not commited fix to gdkrgb.c is needed.)
Handle the palette messages. On WM_PALETTECHANGED, call
UpdateColors() for the given window hierarchy. Do this only if a
window in some other top-level window hierarchy caused the palette
change (realized a palette). Do this max five times in a row (an
arbitrarily chosen limit), though, otherwise redraw by generating
expose events. On WM_QUERYNEWPALETTE, cause a redraw of the whole
window hierarchy by generating GDK_EXPOSE events.
3) Code cleanup in general. For instance, remove the "emulated"
X11 structs ColormapStruct, Visual and XStandardColormap. Use the
new GDK_DEBUG_* flags for debugging output in the relevant source
files. Remove the unused colormap hash table in gdkcolor-win32.c
4) Plug some resource leaks.
2002-02-14 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkdnd-win32.c (gdk_dropfiles_filter): Use
g_filename_to_uri() to actually create legal URIs in the
text/uri-list data.
2002-02-17 00:25:05 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_TOPLEVEL:
|
2019-05-26 15:36:03 +00:00
|
|
|
case GDK_SURFACE_POPUP:
|
2014-12-17 04:32:04 +00:00
|
|
|
/* MSDN: CS_OWNDC is needed for OpenGL contexts */
|
|
|
|
wcl.style |= CS_OWNDC;
|
Massive changes. Too many to list here, but I'll try a summary:
2002-02-17 Tor Lillqvist <tml@iki.fi>
* gdk/win32/*.c: Massive changes. Too many to list here, but I'll
try a summary:
1) Unify GdkPixmap and GdkImage implementation: For each
GdkPixmap, allocate a GdkImage, and vice versa.
GdkPixmapImplWin32Data has a pointer to the GdkImage.
GdkImage::windowing_data is a pointer to the GdkPixmap.
This simplifies many pixmap and image related functions a lot, and
reduces duplicated code snippets. For instance, there is only one
place in gdk/win32 where CreateDIBSection() is called, in the
function _gdk_win32_new_pixmap(). Converting a bitmap (GdkPixmap)
to a Windows region is almost trivial, with the bitmap bits being
readily accessible in the associated GdkImage.
All blitting between GdkPixmaps, GdkWindows and GdkImages goes
through handled the _gdk_win32_blit() function, which calls
different functions to handle the cases of blitting from pixmaps,
inside windows (scrolling), or from windows, which all require
somewhat different handling.
2) Support 256-color mode. This has long been very broken, now it
works more or less OK. Keep the logical palette for each colormap
as small as possible while allocating and freeing colors. Select
and realize the logical palette associated with a GdkColormap into
a DC before drawing or blitting.
When the display is in 256-color mode, make it possible for the
user to override the size of the palette(s) used with either the
GDK_WIN32_MAX_COLORS environment variable, or a -max-colors
command line option. It is possible to reduce the palette size all
the way down to using just the 16 static colors (which causes the
system visual to be of type GDK_VISUAL_STATIC_COLOR. This could
possibly be useful if one desperately wants to avoid color
flashing. (Note that in order for this to work properly, an as of
yet not commited fix to gdkrgb.c is needed.)
Handle the palette messages. On WM_PALETTECHANGED, call
UpdateColors() for the given window hierarchy. Do this only if a
window in some other top-level window hierarchy caused the palette
change (realized a palette). Do this max five times in a row (an
arbitrarily chosen limit), though, otherwise redraw by generating
expose events. On WM_QUERYNEWPALETTE, cause a redraw of the whole
window hierarchy by generating GDK_EXPOSE events.
3) Code cleanup in general. For instance, remove the "emulated"
X11 structs ColormapStruct, Visual and XStandardColormap. Use the
new GDK_DEBUG_* flags for debugging output in the relevant source
files. Remove the unused colormap hash table in gdkcolor-win32.c
4) Plug some resource leaks.
2002-02-14 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkdnd-win32.c (gdk_dropfiles_filter): Use
g_filename_to_uri() to actually create legal URIs in the
text/uri-list data.
2002-02-17 00:25:05 +00:00
|
|
|
if (0 == klassTOPLEVEL)
|
2014-12-17 04:32:04 +00:00
|
|
|
{
|
2018-03-21 10:49:14 +00:00
|
|
|
wcl.lpszClassName = L"gdkSurfaceToplevel";
|
2014-12-17 04:32:04 +00:00
|
|
|
|
|
|
|
ONCE_PER_CLASS ();
|
|
|
|
klassTOPLEVEL = RegisterClassExW (&wcl);
|
|
|
|
}
|
Massive changes. Too many to list here, but I'll try a summary:
2002-02-17 Tor Lillqvist <tml@iki.fi>
* gdk/win32/*.c: Massive changes. Too many to list here, but I'll
try a summary:
1) Unify GdkPixmap and GdkImage implementation: For each
GdkPixmap, allocate a GdkImage, and vice versa.
GdkPixmapImplWin32Data has a pointer to the GdkImage.
GdkImage::windowing_data is a pointer to the GdkPixmap.
This simplifies many pixmap and image related functions a lot, and
reduces duplicated code snippets. For instance, there is only one
place in gdk/win32 where CreateDIBSection() is called, in the
function _gdk_win32_new_pixmap(). Converting a bitmap (GdkPixmap)
to a Windows region is almost trivial, with the bitmap bits being
readily accessible in the associated GdkImage.
All blitting between GdkPixmaps, GdkWindows and GdkImages goes
through handled the _gdk_win32_blit() function, which calls
different functions to handle the cases of blitting from pixmaps,
inside windows (scrolling), or from windows, which all require
somewhat different handling.
2) Support 256-color mode. This has long been very broken, now it
works more or less OK. Keep the logical palette for each colormap
as small as possible while allocating and freeing colors. Select
and realize the logical palette associated with a GdkColormap into
a DC before drawing or blitting.
When the display is in 256-color mode, make it possible for the
user to override the size of the palette(s) used with either the
GDK_WIN32_MAX_COLORS environment variable, or a -max-colors
command line option. It is possible to reduce the palette size all
the way down to using just the 16 static colors (which causes the
system visual to be of type GDK_VISUAL_STATIC_COLOR. This could
possibly be useful if one desperately wants to avoid color
flashing. (Note that in order for this to work properly, an as of
yet not commited fix to gdkrgb.c is needed.)
Handle the palette messages. On WM_PALETTECHANGED, call
UpdateColors() for the given window hierarchy. Do this only if a
window in some other top-level window hierarchy caused the palette
change (realized a palette). Do this max five times in a row (an
arbitrarily chosen limit), though, otherwise redraw by generating
expose events. On WM_QUERYNEWPALETTE, cause a redraw of the whole
window hierarchy by generating GDK_EXPOSE events.
3) Code cleanup in general. For instance, remove the "emulated"
X11 structs ColormapStruct, Visual and XStandardColormap. Use the
new GDK_DEBUG_* flags for debugging output in the relevant source
files. Remove the unused colormap hash table in gdkcolor-win32.c
4) Plug some resource leaks.
2002-02-14 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkdnd-win32.c (gdk_dropfiles_filter): Use
g_filename_to_uri() to actually create legal URIs in the
text/uri-list data.
2002-02-17 00:25:05 +00:00
|
|
|
klass = klassTOPLEVEL;
|
|
|
|
break;
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_TEMP:
|
|
|
|
if ((wtype_hint == GDK_SURFACE_TYPE_HINT_MENU) ||
|
|
|
|
(wtype_hint == GDK_SURFACE_TYPE_HINT_DROPDOWN_MENU) ||
|
|
|
|
(wtype_hint == GDK_SURFACE_TYPE_HINT_POPUP_MENU))
|
2007-04-25 23:44:54 +00:00
|
|
|
{
|
|
|
|
if (klassTEMPSHADOW == 0)
|
|
|
|
{
|
2018-03-21 10:49:14 +00:00
|
|
|
wcl.lpszClassName = L"gdkSurfaceTempShadow";
|
2007-04-25 23:44:54 +00:00
|
|
|
wcl.style |= CS_SAVEBITS;
|
2015-04-15 09:17:06 +00:00
|
|
|
wcl.style |= 0x00020000; /* CS_DROPSHADOW */
|
|
|
|
|
2007-04-25 23:44:54 +00:00
|
|
|
ONCE_PER_CLASS ();
|
2007-06-15 15:25:50 +00:00
|
|
|
klassTEMPSHADOW = RegisterClassExW (&wcl);
|
2007-04-25 23:44:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
klass = klassTEMPSHADOW;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (klassTEMP == 0)
|
|
|
|
{
|
2018-03-21 10:49:14 +00:00
|
|
|
wcl.lpszClassName = L"gdkSurfaceTemp";
|
2007-04-25 23:44:54 +00:00
|
|
|
wcl.style |= CS_SAVEBITS;
|
|
|
|
ONCE_PER_CLASS ();
|
2007-06-15 15:25:50 +00:00
|
|
|
klassTEMP = RegisterClassExW (&wcl);
|
2007-04-25 23:44:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
klass = klassTEMP;
|
|
|
|
}
|
Massive changes. Too many to list here, but I'll try a summary:
2002-02-17 Tor Lillqvist <tml@iki.fi>
* gdk/win32/*.c: Massive changes. Too many to list here, but I'll
try a summary:
1) Unify GdkPixmap and GdkImage implementation: For each
GdkPixmap, allocate a GdkImage, and vice versa.
GdkPixmapImplWin32Data has a pointer to the GdkImage.
GdkImage::windowing_data is a pointer to the GdkPixmap.
This simplifies many pixmap and image related functions a lot, and
reduces duplicated code snippets. For instance, there is only one
place in gdk/win32 where CreateDIBSection() is called, in the
function _gdk_win32_new_pixmap(). Converting a bitmap (GdkPixmap)
to a Windows region is almost trivial, with the bitmap bits being
readily accessible in the associated GdkImage.
All blitting between GdkPixmaps, GdkWindows and GdkImages goes
through handled the _gdk_win32_blit() function, which calls
different functions to handle the cases of blitting from pixmaps,
inside windows (scrolling), or from windows, which all require
somewhat different handling.
2) Support 256-color mode. This has long been very broken, now it
works more or less OK. Keep the logical palette for each colormap
as small as possible while allocating and freeing colors. Select
and realize the logical palette associated with a GdkColormap into
a DC before drawing or blitting.
When the display is in 256-color mode, make it possible for the
user to override the size of the palette(s) used with either the
GDK_WIN32_MAX_COLORS environment variable, or a -max-colors
command line option. It is possible to reduce the palette size all
the way down to using just the 16 static colors (which causes the
system visual to be of type GDK_VISUAL_STATIC_COLOR. This could
possibly be useful if one desperately wants to avoid color
flashing. (Note that in order for this to work properly, an as of
yet not commited fix to gdkrgb.c is needed.)
Handle the palette messages. On WM_PALETTECHANGED, call
UpdateColors() for the given window hierarchy. Do this only if a
window in some other top-level window hierarchy caused the palette
change (realized a palette). Do this max five times in a row (an
arbitrarily chosen limit), though, otherwise redraw by generating
expose events. On WM_QUERYNEWPALETTE, cause a redraw of the whole
window hierarchy by generating GDK_EXPOSE events.
3) Code cleanup in general. For instance, remove the "emulated"
X11 structs ColormapStruct, Visual and XStandardColormap. Use the
new GDK_DEBUG_* flags for debugging output in the relevant source
files. Remove the unused colormap hash table in gdkcolor-win32.c
4) Plug some resource leaks.
2002-02-14 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkdnd-win32.c (gdk_dropfiles_filter): Use
g_filename_to_uri() to actually create legal URIs in the
text/uri-list data.
2002-02-17 00:25:05 +00:00
|
|
|
break;
|
2015-04-29 07:31:08 +00:00
|
|
|
|
Massive changes. Too many to list here, but I'll try a summary:
2002-02-17 Tor Lillqvist <tml@iki.fi>
* gdk/win32/*.c: Massive changes. Too many to list here, but I'll
try a summary:
1) Unify GdkPixmap and GdkImage implementation: For each
GdkPixmap, allocate a GdkImage, and vice versa.
GdkPixmapImplWin32Data has a pointer to the GdkImage.
GdkImage::windowing_data is a pointer to the GdkPixmap.
This simplifies many pixmap and image related functions a lot, and
reduces duplicated code snippets. For instance, there is only one
place in gdk/win32 where CreateDIBSection() is called, in the
function _gdk_win32_new_pixmap(). Converting a bitmap (GdkPixmap)
to a Windows region is almost trivial, with the bitmap bits being
readily accessible in the associated GdkImage.
All blitting between GdkPixmaps, GdkWindows and GdkImages goes
through handled the _gdk_win32_blit() function, which calls
different functions to handle the cases of blitting from pixmaps,
inside windows (scrolling), or from windows, which all require
somewhat different handling.
2) Support 256-color mode. This has long been very broken, now it
works more or less OK. Keep the logical palette for each colormap
as small as possible while allocating and freeing colors. Select
and realize the logical palette associated with a GdkColormap into
a DC before drawing or blitting.
When the display is in 256-color mode, make it possible for the
user to override the size of the palette(s) used with either the
GDK_WIN32_MAX_COLORS environment variable, or a -max-colors
command line option. It is possible to reduce the palette size all
the way down to using just the 16 static colors (which causes the
system visual to be of type GDK_VISUAL_STATIC_COLOR. This could
possibly be useful if one desperately wants to avoid color
flashing. (Note that in order for this to work properly, an as of
yet not commited fix to gdkrgb.c is needed.)
Handle the palette messages. On WM_PALETTECHANGED, call
UpdateColors() for the given window hierarchy. Do this only if a
window in some other top-level window hierarchy caused the palette
change (realized a palette). Do this max five times in a row (an
arbitrarily chosen limit), though, otherwise redraw by generating
expose events. On WM_QUERYNEWPALETTE, cause a redraw of the whole
window hierarchy by generating GDK_EXPOSE events.
3) Code cleanup in general. For instance, remove the "emulated"
X11 structs ColormapStruct, Visual and XStandardColormap. Use the
new GDK_DEBUG_* flags for debugging output in the relevant source
files. Remove the unused colormap hash table in gdkcolor-win32.c
4) Plug some resource leaks.
2002-02-14 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkdnd-win32.c (gdk_dropfiles_filter): Use
g_filename_to_uri() to actually create legal URIs in the
text/uri-list data.
2002-02-17 00:25:05 +00:00
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
break;
|
|
|
|
}
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2000-02-13 14:52:47 +00:00
|
|
|
if (klass == 0)
|
|
|
|
{
|
2006-09-03 22:50:00 +00:00
|
|
|
WIN32_API_FAILED ("RegisterClassExW");
|
2000-02-13 14:52:47 +00:00
|
|
|
g_error ("That is a fatal error");
|
|
|
|
}
|
1999-11-11 22:12:27 +00:00
|
|
|
return klass;
|
1999-11-20 01:22:57 +00:00
|
|
|
}
|
1999-11-11 22:12:27 +00:00
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
/*
|
|
|
|
* Create native windows.
|
|
|
|
*
|
|
|
|
* With the default Gdk the created windows are mostly toplevel windows.
|
|
|
|
*
|
|
|
|
* Placement of the window is derived from the passed in window,
|
|
|
|
* except for toplevel window where OS/Window Manager placement
|
|
|
|
* is used.
|
|
|
|
*
|
|
|
|
* [1] http://mail.gnome.org/archives/gtk-devel-list/2010-August/msg00214.html
|
|
|
|
*/
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkSurface *
|
|
|
|
_gdk_win32_display_create_surface (GdkDisplay *display,
|
|
|
|
GdkSurfaceType surface_type,
|
|
|
|
GdkSurface *parent,
|
|
|
|
int x,
|
|
|
|
int y,
|
|
|
|
int width,
|
|
|
|
int height)
|
1999-11-11 22:12:27 +00:00
|
|
|
{
|
2005-03-16 01:38:57 +00:00
|
|
|
HWND hwndNew;
|
2019-05-28 16:39:58 +00:00
|
|
|
HANDLE owner;
|
Massive changes. Too many to list here, but I'll try a summary:
2002-02-17 Tor Lillqvist <tml@iki.fi>
* gdk/win32/*.c: Massive changes. Too many to list here, but I'll
try a summary:
1) Unify GdkPixmap and GdkImage implementation: For each
GdkPixmap, allocate a GdkImage, and vice versa.
GdkPixmapImplWin32Data has a pointer to the GdkImage.
GdkImage::windowing_data is a pointer to the GdkPixmap.
This simplifies many pixmap and image related functions a lot, and
reduces duplicated code snippets. For instance, there is only one
place in gdk/win32 where CreateDIBSection() is called, in the
function _gdk_win32_new_pixmap(). Converting a bitmap (GdkPixmap)
to a Windows region is almost trivial, with the bitmap bits being
readily accessible in the associated GdkImage.
All blitting between GdkPixmaps, GdkWindows and GdkImages goes
through handled the _gdk_win32_blit() function, which calls
different functions to handle the cases of blitting from pixmaps,
inside windows (scrolling), or from windows, which all require
somewhat different handling.
2) Support 256-color mode. This has long been very broken, now it
works more or less OK. Keep the logical palette for each colormap
as small as possible while allocating and freeing colors. Select
and realize the logical palette associated with a GdkColormap into
a DC before drawing or blitting.
When the display is in 256-color mode, make it possible for the
user to override the size of the palette(s) used with either the
GDK_WIN32_MAX_COLORS environment variable, or a -max-colors
command line option. It is possible to reduce the palette size all
the way down to using just the 16 static colors (which causes the
system visual to be of type GDK_VISUAL_STATIC_COLOR. This could
possibly be useful if one desperately wants to avoid color
flashing. (Note that in order for this to work properly, an as of
yet not commited fix to gdkrgb.c is needed.)
Handle the palette messages. On WM_PALETTECHANGED, call
UpdateColors() for the given window hierarchy. Do this only if a
window in some other top-level window hierarchy caused the palette
change (realized a palette). Do this max five times in a row (an
arbitrarily chosen limit), though, otherwise redraw by generating
expose events. On WM_QUERYNEWPALETTE, cause a redraw of the whole
window hierarchy by generating GDK_EXPOSE events.
3) Code cleanup in general. For instance, remove the "emulated"
X11 structs ColormapStruct, Visual and XStandardColormap. Use the
new GDK_DEBUG_* flags for debugging output in the relevant source
files. Remove the unused colormap hash table in gdkcolor-win32.c
4) Plug some resource leaks.
2002-02-14 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkdnd-win32.c (gdk_dropfiles_filter): Use
g_filename_to_uri() to actually create legal URIs in the
text/uri-list data.
2002-02-17 00:25:05 +00:00
|
|
|
ATOM klass = 0;
|
Move the code that sets the window style and extended window style, and
2002-12-21 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkwindow-win32.c (gdk_window_new): Move the code that
sets the window style and extended window style, and adjusts the
width and height to take the window decorations into account
earlier. The adjusted width and height used to be ignored. Remove
the local x, y, width and height variables, no need to further
confuse the code by having local copies. (Partial fix, I hope, for
#101588)
(gdk_window_move): When moving top-level windows, take title bar
and border width into account, offsetting the coordinates before
calling SetWindowPos().
(gdk_window_set_decorations, gdk_window_set_functions):
Reimplement, taking into account the peculiar semantics of
GDK_DECOR_ALL and GDK_FUNC_ALL. (#79036)
(gdk_window_get_decorations): Implement. (#98981)
(gdk_window_set_type_hint): When setting
GDK_WINDOW_TYPE_HINT_MENU, call gdk_window_set_decorations().
(#79036)
* gdk/gdk.def: Add gdk_window_get_decorations. (#98981)
2002-12-21 23:32:20 +00:00
|
|
|
DWORD dwStyle = 0, dwExStyle;
|
Massive changes. Too many to list here, but I'll try a summary:
2002-02-17 Tor Lillqvist <tml@iki.fi>
* gdk/win32/*.c: Massive changes. Too many to list here, but I'll
try a summary:
1) Unify GdkPixmap and GdkImage implementation: For each
GdkPixmap, allocate a GdkImage, and vice versa.
GdkPixmapImplWin32Data has a pointer to the GdkImage.
GdkImage::windowing_data is a pointer to the GdkPixmap.
This simplifies many pixmap and image related functions a lot, and
reduces duplicated code snippets. For instance, there is only one
place in gdk/win32 where CreateDIBSection() is called, in the
function _gdk_win32_new_pixmap(). Converting a bitmap (GdkPixmap)
to a Windows region is almost trivial, with the bitmap bits being
readily accessible in the associated GdkImage.
All blitting between GdkPixmaps, GdkWindows and GdkImages goes
through handled the _gdk_win32_blit() function, which calls
different functions to handle the cases of blitting from pixmaps,
inside windows (scrolling), or from windows, which all require
somewhat different handling.
2) Support 256-color mode. This has long been very broken, now it
works more or less OK. Keep the logical palette for each colormap
as small as possible while allocating and freeing colors. Select
and realize the logical palette associated with a GdkColormap into
a DC before drawing or blitting.
When the display is in 256-color mode, make it possible for the
user to override the size of the palette(s) used with either the
GDK_WIN32_MAX_COLORS environment variable, or a -max-colors
command line option. It is possible to reduce the palette size all
the way down to using just the 16 static colors (which causes the
system visual to be of type GDK_VISUAL_STATIC_COLOR. This could
possibly be useful if one desperately wants to avoid color
flashing. (Note that in order for this to work properly, an as of
yet not commited fix to gdkrgb.c is needed.)
Handle the palette messages. On WM_PALETTECHANGED, call
UpdateColors() for the given window hierarchy. Do this only if a
window in some other top-level window hierarchy caused the palette
change (realized a palette). Do this max five times in a row (an
arbitrarily chosen limit), though, otherwise redraw by generating
expose events. On WM_QUERYNEWPALETTE, cause a redraw of the whole
window hierarchy by generating GDK_EXPOSE events.
3) Code cleanup in general. For instance, remove the "emulated"
X11 structs ColormapStruct, Visual and XStandardColormap. Use the
new GDK_DEBUG_* flags for debugging output in the relevant source
files. Remove the unused colormap hash table in gdkcolor-win32.c
4) Plug some resource leaks.
2002-02-14 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkdnd-win32.c (gdk_dropfiles_filter): Use
g_filename_to_uri() to actually create legal URIs in the
text/uri-list data.
2002-02-17 00:25:05 +00:00
|
|
|
RECT rect;
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl;
|
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
|
|
|
GdkWin32Display *display_win32;
|
2019-05-21 23:41:00 +00:00
|
|
|
GdkSurface *surface;
|
Move the code that sets the window style and extended window style, and
2002-12-21 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkwindow-win32.c (gdk_window_new): Move the code that
sets the window style and extended window style, and adjusts the
width and height to take the window decorations into account
earlier. The adjusted width and height used to be ignored. Remove
the local x, y, width and height variables, no need to further
confuse the code by having local copies. (Partial fix, I hope, for
#101588)
(gdk_window_move): When moving top-level windows, take title bar
and border width into account, offsetting the coordinates before
calling SetWindowPos().
(gdk_window_set_decorations, gdk_window_set_functions):
Reimplement, taking into account the peculiar semantics of
GDK_DECOR_ALL and GDK_FUNC_ALL. (#79036)
(gdk_window_get_decorations): Implement. (#98981)
(gdk_window_set_type_hint): When setting
GDK_WINDOW_TYPE_HINT_MENU, call gdk_window_set_decorations().
(#79036)
* gdk/gdk.def: Add gdk_window_get_decorations. (#98981)
2002-12-21 23:32:20 +00:00
|
|
|
const gchar *title;
|
2006-09-03 22:50:00 +00:00
|
|
|
wchar_t *wtitle;
|
Fix for #108007, #112402, #117042: There was confusion in gdk/win32 at
2003-07-29 Tor Lillqvist <tml@iki.fi>
Fix for #108007, #112402, #117042: There was confusion in
gdk/win32 at various places whether a window position refers to
the decoration position or the client area position. Also whether
window size includes decorations or not.
The correct interpretation apparently is that in GDK (like in
X11), a top-level window position means the decoration's position,
but size means the window's inner size (client area size). In the
Win32 API, the window size usually includes the decorations,
though.
* gdk/win32/gdkevents-win32.c (decode_key_lparam): Move inside
#ifdef G_ENABLE_DEBUG.
(handle_configure_event): New function, generates GDK_CONFIGURE
events from WM_SIZE and WM_MOVE messages. Even if no event is
generated because of the event mask, still set the private
position and size fields. Calculate position and size correctly.
(gdk_event_translate): Call handle_configure_event().
* gdk/win32/gdkgeometry-win32.c: Cosmetics.
* gdk/win32/gdkwindow-win32.c: Use GDI_CALL() and API_CALL()
macros. Cosmetic debugging output changes.
(SafeAdjustWindowRectEx): Remove. If an application wants to
locate a window outside of the screen, it's not GDK's business to
prevent it. And anyway, with multiple monitors, negative
coordinates are perfectly normal.
(gdk_window_new): Adjust the window size for decorations after
_gdk_window_init_position() has done its job. (But the big window
code currently is presumably broken on Win32 anyway.)
(gdk_window_move): The position passed in is supposed to be that
of the window border, so don't need to adjust for decorations.
(gdk_window_resize, gdk_window_move_resize): Simplify somewhat.
2003-07-29 23:35:40 +00:00
|
|
|
gint window_width, window_height;
|
2019-05-19 03:09:05 +00:00
|
|
|
gint window_x, window_y;
|
2003-08-08 07:16:16 +00:00
|
|
|
gint offset_x = 0, offset_y = 0;
|
2019-05-19 03:09:05 +00:00
|
|
|
gint real_x = 0, real_y = 0;
|
2018-04-09 20:16:23 +00:00
|
|
|
GdkFrameClock *frame_clock;
|
1999-11-11 22:12:27 +00:00
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
g_return_val_if_fail (display == _gdk_display, NULL);
|
2016-02-22 16:55:16 +00:00
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
GDK_NOTE (MISC,
|
2019-05-19 03:09:05 +00:00
|
|
|
g_print ("_gdk_surface_new: %s\n", (surface_type == GDK_SURFACE_TOPLEVEL ? "TOPLEVEL" :
|
2019-05-28 17:21:42 +00:00
|
|
|
(surface_type == GDK_SURFACE_TEMP ? "TEMP" :
|
|
|
|
(surface_type == GDK_SURFACE_TEMP ? "POPUP" : "???")))));
|
1999-11-11 22:12:27 +00:00
|
|
|
|
2019-05-21 21:20:15 +00:00
|
|
|
display_win32 = GDK_WIN32_DISPLAY (display);
|
|
|
|
|
|
|
|
if (parent)
|
|
|
|
frame_clock = g_object_ref (gdk_surface_get_frame_clock (parent));
|
|
|
|
else
|
|
|
|
frame_clock = _gdk_frame_clock_idle_new ();
|
|
|
|
|
|
|
|
impl = g_object_new (GDK_TYPE_WIN32_SURFACE,
|
2019-05-22 22:40:27 +00:00
|
|
|
"surface-type", surface_type,
|
2019-05-21 21:20:15 +00:00
|
|
|
"display", display,
|
|
|
|
"parent", parent,
|
|
|
|
"frame-clock", frame_clock,
|
|
|
|
NULL);
|
2003-12-10 23:58:23 +00:00
|
|
|
|
2019-05-21 23:41:00 +00:00
|
|
|
surface = GDK_SURFACE (impl);
|
|
|
|
surface->x = x;
|
|
|
|
surface->y = y;
|
|
|
|
surface->width = width;
|
|
|
|
surface->height = height;
|
|
|
|
|
2016-02-23 09:20:55 +00:00
|
|
|
impl->layered = FALSE;
|
|
|
|
impl->layered_opacity = 1.0;
|
1999-11-11 22:12:27 +00:00
|
|
|
|
2018-03-20 11:05:26 +00:00
|
|
|
impl->surface_scale = _gdk_win32_display_get_monitor_scale_factor (display_win32, NULL, NULL, NULL);
|
2019-05-19 03:09:05 +00:00
|
|
|
impl->unscaled_width = width * impl->surface_scale;
|
|
|
|
impl->unscaled_height = height * impl->surface_scale;
|
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
|
|
|
|
2019-04-21 16:06:11 +00:00
|
|
|
dwExStyle = 0;
|
2019-05-28 16:39:58 +00:00
|
|
|
owner = NULL;
|
|
|
|
|
|
|
|
offset_x = _gdk_offset_x;
|
|
|
|
offset_y = _gdk_offset_y;
|
|
|
|
/* MSDN: We need WS_CLIPCHILDREN and WS_CLIPSIBLINGS for GL Context Creation */
|
|
|
|
dwStyle = WS_CLIPCHILDREN | WS_CLIPSIBLINGS;
|
1999-11-11 22:12:27 +00:00
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
switch (surface_type)
|
1999-11-11 22:12:27 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_TOPLEVEL:
|
2019-05-28 16:39:58 +00:00
|
|
|
dwStyle |= WS_OVERLAPPEDWINDOW;
|
2019-05-26 15:36:03 +00:00
|
|
|
break;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_TEMP:
|
2011-11-25 10:21:26 +00:00
|
|
|
dwExStyle |= WS_EX_TOOLWINDOW | WS_EX_TOPMOST;
|
2019-05-28 16:39:58 +00:00
|
|
|
/* fall through */
|
|
|
|
case GDK_SURFACE_POPUP:
|
|
|
|
dwStyle |= WS_POPUP;
|
|
|
|
|
|
|
|
/* Only popup and temp windows are fit to use the Owner Window mechanism */
|
|
|
|
if (parent != NULL)
|
|
|
|
owner = GDK_SURFACE_HWND (parent);
|
1999-11-11 22:12:27 +00:00
|
|
|
break;
|
2000-07-25 17:31:05 +00:00
|
|
|
|
Move the code that sets the window style and extended window style, and
2002-12-21 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkwindow-win32.c (gdk_window_new): Move the code that
sets the window style and extended window style, and adjusts the
width and height to take the window decorations into account
earlier. The adjusted width and height used to be ignored. Remove
the local x, y, width and height variables, no need to further
confuse the code by having local copies. (Partial fix, I hope, for
#101588)
(gdk_window_move): When moving top-level windows, take title bar
and border width into account, offsetting the coordinates before
calling SetWindowPos().
(gdk_window_set_decorations, gdk_window_set_functions):
Reimplement, taking into account the peculiar semantics of
GDK_DECOR_ALL and GDK_FUNC_ALL. (#79036)
(gdk_window_get_decorations): Implement. (#98981)
(gdk_window_set_type_hint): When setting
GDK_WINDOW_TYPE_HINT_MENU, call gdk_window_set_decorations().
(#79036)
* gdk/gdk.def: Add gdk_window_get_decorations. (#98981)
2002-12-21 23:32:20 +00:00
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
1999-11-11 22:12:27 +00:00
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
rect.left = x * impl->surface_scale;
|
|
|
|
rect.top = y * impl->surface_scale;
|
|
|
|
rect.right = rect.left + width * impl->surface_scale;
|
|
|
|
rect.bottom = rect.top + height * impl->surface_scale;
|
1999-11-11 22:12:27 +00:00
|
|
|
|
2016-12-19 09:09:49 +00:00
|
|
|
AdjustWindowRectEx (&rect, dwStyle, FALSE, dwExStyle);
|
1999-11-11 22:12:27 +00:00
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
real_x = (x - offset_x) * impl->surface_scale;
|
|
|
|
real_y = (y - offset_y) * impl->surface_scale;
|
2011-01-02 10:51:25 +00:00
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
if (surface_type == GDK_SURFACE_TOPLEVEL)
|
2016-12-19 09:09:49 +00:00
|
|
|
{
|
|
|
|
/* We initially place it at default so that we can get the
|
|
|
|
default window positioning if we want */
|
2019-05-19 03:09:05 +00:00
|
|
|
window_x = window_y = CW_USEDEFAULT;
|
Fix for #108007, #112402, #117042: There was confusion in gdk/win32 at
2003-07-29 Tor Lillqvist <tml@iki.fi>
Fix for #108007, #112402, #117042: There was confusion in
gdk/win32 at various places whether a window position refers to
the decoration position or the client area position. Also whether
window size includes decorations or not.
The correct interpretation apparently is that in GDK (like in
X11), a top-level window position means the decoration's position,
but size means the window's inner size (client area size). In the
Win32 API, the window size usually includes the decorations,
though.
* gdk/win32/gdkevents-win32.c (decode_key_lparam): Move inside
#ifdef G_ENABLE_DEBUG.
(handle_configure_event): New function, generates GDK_CONFIGURE
events from WM_SIZE and WM_MOVE messages. Even if no event is
generated because of the event mask, still set the private
position and size fields. Calculate position and size correctly.
(gdk_event_translate): Call handle_configure_event().
* gdk/win32/gdkgeometry-win32.c: Cosmetics.
* gdk/win32/gdkwindow-win32.c: Use GDI_CALL() and API_CALL()
macros. Cosmetic debugging output changes.
(SafeAdjustWindowRectEx): Remove. If an application wants to
locate a window outside of the screen, it's not GDK's business to
prevent it. And anyway, with multiple monitors, negative
coordinates are perfectly normal.
(gdk_window_new): Adjust the window size for decorations after
_gdk_window_init_position() has done its job. (But the big window
code currently is presumably broken on Win32 anyway.)
(gdk_window_move): The position passed in is supposed to be that
of the window border, so don't need to adjust for decorations.
(gdk_window_resize, gdk_window_move_resize): Simplify somewhat.
2003-07-29 23:35:40 +00:00
|
|
|
}
|
|
|
|
else
|
2018-06-25 22:47:40 +00:00
|
|
|
{
|
|
|
|
/* TEMP: Put these where requested */
|
2019-05-19 03:09:05 +00:00
|
|
|
window_x = real_x;
|
|
|
|
window_y = real_y;
|
1999-11-11 22:12:27 +00:00
|
|
|
}
|
Move the code that sets the window style and extended window style, and
2002-12-21 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkwindow-win32.c (gdk_window_new): Move the code that
sets the window style and extended window style, and adjusts the
width and height to take the window decorations into account
earlier. The adjusted width and height used to be ignored. Remove
the local x, y, width and height variables, no need to further
confuse the code by having local copies. (Partial fix, I hope, for
#101588)
(gdk_window_move): When moving top-level windows, take title bar
and border width into account, offsetting the coordinates before
calling SetWindowPos().
(gdk_window_set_decorations, gdk_window_set_functions):
Reimplement, taking into account the peculiar semantics of
GDK_DECOR_ALL and GDK_FUNC_ALL. (#79036)
(gdk_window_get_decorations): Implement. (#98981)
(gdk_window_set_type_hint): When setting
GDK_WINDOW_TYPE_HINT_MENU, call gdk_window_set_decorations().
(#79036)
* gdk/gdk.def: Add gdk_window_get_decorations. (#98981)
2002-12-21 23:32:20 +00:00
|
|
|
|
2016-12-19 09:09:49 +00:00
|
|
|
window_width = rect.right - rect.left;
|
|
|
|
window_height = rect.bottom - rect.top;
|
|
|
|
|
2016-11-04 03:08:50 +00:00
|
|
|
title = get_default_title ();
|
Move the code that sets the window style and extended window style, and
2002-12-21 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkwindow-win32.c (gdk_window_new): Move the code that
sets the window style and extended window style, and adjusts the
width and height to take the window decorations into account
earlier. The adjusted width and height used to be ignored. Remove
the local x, y, width and height variables, no need to further
confuse the code by having local copies. (Partial fix, I hope, for
#101588)
(gdk_window_move): When moving top-level windows, take title bar
and border width into account, offsetting the coordinates before
calling SetWindowPos().
(gdk_window_set_decorations, gdk_window_set_functions):
Reimplement, taking into account the peculiar semantics of
GDK_DECOR_ALL and GDK_FUNC_ALL. (#79036)
(gdk_window_get_decorations): Implement. (#98981)
(gdk_window_set_type_hint): When setting
GDK_WINDOW_TYPE_HINT_MENU, call gdk_window_set_decorations().
(#79036)
* gdk/gdk.def: Add gdk_window_get_decorations. (#98981)
2002-12-21 23:32:20 +00:00
|
|
|
if (!title || !*title)
|
2005-03-15 02:07:08 +00:00
|
|
|
title = "";
|
Move the code that sets the window style and extended window style, and
2002-12-21 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkwindow-win32.c (gdk_window_new): Move the code that
sets the window style and extended window style, and adjusts the
width and height to take the window decorations into account
earlier. The adjusted width and height used to be ignored. Remove
the local x, y, width and height variables, no need to further
confuse the code by having local copies. (Partial fix, I hope, for
#101588)
(gdk_window_move): When moving top-level windows, take title bar
and border width into account, offsetting the coordinates before
calling SetWindowPos().
(gdk_window_set_decorations, gdk_window_set_functions):
Reimplement, taking into account the peculiar semantics of
GDK_DECOR_ALL and GDK_FUNC_ALL. (#79036)
(gdk_window_get_decorations): Implement. (#98981)
(gdk_window_set_type_hint): When setting
GDK_WINDOW_TYPE_HINT_MENU, call gdk_window_set_decorations().
(#79036)
* gdk/gdk.def: Add gdk_window_get_decorations. (#98981)
2002-12-21 23:32:20 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (impl->type_hint == GDK_SURFACE_TYPE_HINT_UTILITY)
|
2008-10-05 00:00:10 +00:00
|
|
|
dwExStyle |= WS_EX_TOOLWINDOW;
|
|
|
|
|
W32: Massive W32 DnD fix
Massive changes to OLE2 DnD protocol, which was completely broken before:
* Keep GdkDragContext and OLE2 objects separate (don't ref/unref them
together, don't necessarily create them together).
* Keep IDataObject formats in the object itself, not in a global variable.
* Fix getdata() to look up the request target in its format list, not in the
global hash table
* Create target GdkDragContext on each drag_enter, destroy it on drag_leave,
whereas IDropTarget is created when a window becomes a drag destination
and is re-used indefinitely.
* Query the source IDataObject for its supported types, cache them in the
target (!) context. This is how GTK+ works, honestly.
* Remember current_src_object when we initiate a drag, to be able
to detect later on that the data object is ours and use a
shortcut when querying targets
* Make sure GDK_DRAG_MOTION is only sent when something changes
* Support GTK drag cursors
* Ensure that exotic GTK clipboard formats are registered
(but try to avoid registering formats that can't be used between applications).
* Don't enumerate internal formats
* Ensure that DnD indicator window can't accept drags or receive any kind of input
(use WS_EX_TRANSPARENT).
* Remove unneeded indentation in _gdk_win32_dnd_do_dragdrop()
* Fix indentation in gdk_win32_drag_context_drop_finish()
* Remove obsolete comments in _gdk_win32_window_register_dnd()
* Check for DnD in progress when processing WM_KILLFOCUS, don't emit a grab
break event in such cases (this allows alt-tabbing while DnD is in progress,
though there may be lingering issues with focus after dropping...)
* Support Shell ID List -> text/uri-list conversion, now it's possible
to drop files (dragged from Explorer) on GTK+ applications
* Explicitly use RegisterClipboardFormatA() when we know that the string
is not in unicode. Otherwise explicitly use RegisterClipboardFormatW()
with a UTF8->UTF16 converted string
* Fix _gdk_win32_display_get_selection_owner() to correctly bail
when selection owner HWND is NULL (looking up GdkWindow for NULL
HWND always succeeds and returns the root window - not the intended
effect)
* More logging
* Send DROP_FINISHED event after DnD loop ends
* Send STATUS event on feedback
* Move GetKeyboardState() and related code into _gdk_win32_window_drag_begin(),
so that it's closer to the point where last_pt and start_pt are set
* Use & 0x80 to check for the key being pressed. Windows will set low-order bit
to 1 for all mouse buttons to indicate that they are toggled, so simply
checking for the value not being 0 is not enough anymore.
This is probably a new thing in modern W32 that didn't exist before
(OLE2 DnD code is old).
* Fixed (hopefully) and simplified HiDPI parts of the code.
Also adds managed DnD implementation for W32 GDK backend (for both
OLE2 and LOCAL protocols). Mostly a copy of the X11 backend code, but
there are some minor differences:
* doesn't use drag_window field in GdkDragContext,
uses the one in GdkWin32DragContext exclusively
* subtracts hotspot offset from the window coordinates when showing
the dragback animation
* tries to consistently support scaling and caches the scale
in the context
* Some keynav code is removed (places where grabbing/ungrabbing should
happen is marked with TODOs), and the rest is probably inert.
Also significantly changes the way selection (and clipboard) is handled
(as MSDN rightly notes, the handling for DnD and Clipboard
formats is virtually the same, so it makes sense to handle
both with the same code):
* Don't spam GDK_OWNER_CHANGE, send them only when owner
actually changes
* Open clipboard when our process becomes the clipboard owner
(we are doing it anyway, to empty the clipboard and *become* the owner),
and then don't close it until a scheduled selection request event
(with TARGETS target) is received. Process that event by announcing
all of our supported formats (by that time add_targets() should have
been called up the stack, thus the formats are known; just in case,
add_targets() will also schedule a selection request, if one isn't
scheduled already, so that late-coming formats can still be announced).
* Allow clipboard opening for selection_convert() to be delayed if it
fails initially.
* The last two points above should fix all the bugs about GTK+ rising
too much ruckus over OpenClipboard() failures, as owner change
*is allowed* to fail (though not all callers currently handle
that case), and selection_convert() is asynchronous to begin with.
Still, this is somewhat risky, as there's a possibility that the
code will work in unexpected ways and the clipboard will remain open.
There's now logging to track the clipboard being opened and closed,
and a number of failsafes that try to ensure that it isn't kept open
for no reason.
* Added copious notes on the way clipboard works on X11, Windows and GDK-W32,
also removed old comments in DnD implementation, replaced some of them
with the new ones
* A lot of crufty module-global variables are stuffed into a singleton
object, GdkWin32Selection. It's technically possible to make it a
sub-object of the Display object (the way Wayland backend does),
but since Display object on W32 is a singleton anyway... why bother?
* Fixed the send_change_events() a bit (was slightly broken in one of the
previous iterations)
* Ensure that there's no confusion between selection conversion (an artifact
term from X11) and selection transmutation (changing the data to be W32-compatible)
* Put all the transmutation code and format-target-matching code into gdkselection-win32.c,
now this code isn't spread across multiple files.
* Consequently, moved some code away from gdkproperty-win32.c and gdkdnd-win32.c
* Extensive format transmutation checks for OLE2 DnD and clipboard.
We now keep track of which format mappings are for transmutations,
and which aren't (for example, when formats are passed as-is, or when
a registered name is just an alias)
* Put transmutation code into separate functions
* Ensure that drop target keeps a format->target map for supported formats,
this is useful when selection_convert() is called, as it only receives a
single target and no hints on the format from which the data should
be transmuted into this target.
* Add clear_targets() on W32, to de called by GTK
* Use g_set_object() instead of g_ref_object() where it is allowed.
* Fix indentation (and convert tabs to spaces), remove unused variables
(This commit is cherry-picked from the gtk-3-22 branch)
https://bugzilla.gnome.org/show_bug.cgi?id=786509
2017-08-19 12:06:27 +00:00
|
|
|
/* WS_EX_TRANSPARENT means "try draw this window last, and ignore input".
|
|
|
|
* It's the last part we're after. We don't want DND indicator to accept
|
|
|
|
* input, because that will make it a potential drop target, and if it's
|
|
|
|
* under the mouse cursor, this will kill any DND.
|
|
|
|
*/
|
2018-03-20 10:40:08 +00:00
|
|
|
if (impl->type_hint == GDK_SURFACE_TYPE_HINT_DND)
|
W32: Massive W32 DnD fix
Massive changes to OLE2 DnD protocol, which was completely broken before:
* Keep GdkDragContext and OLE2 objects separate (don't ref/unref them
together, don't necessarily create them together).
* Keep IDataObject formats in the object itself, not in a global variable.
* Fix getdata() to look up the request target in its format list, not in the
global hash table
* Create target GdkDragContext on each drag_enter, destroy it on drag_leave,
whereas IDropTarget is created when a window becomes a drag destination
and is re-used indefinitely.
* Query the source IDataObject for its supported types, cache them in the
target (!) context. This is how GTK+ works, honestly.
* Remember current_src_object when we initiate a drag, to be able
to detect later on that the data object is ours and use a
shortcut when querying targets
* Make sure GDK_DRAG_MOTION is only sent when something changes
* Support GTK drag cursors
* Ensure that exotic GTK clipboard formats are registered
(but try to avoid registering formats that can't be used between applications).
* Don't enumerate internal formats
* Ensure that DnD indicator window can't accept drags or receive any kind of input
(use WS_EX_TRANSPARENT).
* Remove unneeded indentation in _gdk_win32_dnd_do_dragdrop()
* Fix indentation in gdk_win32_drag_context_drop_finish()
* Remove obsolete comments in _gdk_win32_window_register_dnd()
* Check for DnD in progress when processing WM_KILLFOCUS, don't emit a grab
break event in such cases (this allows alt-tabbing while DnD is in progress,
though there may be lingering issues with focus after dropping...)
* Support Shell ID List -> text/uri-list conversion, now it's possible
to drop files (dragged from Explorer) on GTK+ applications
* Explicitly use RegisterClipboardFormatA() when we know that the string
is not in unicode. Otherwise explicitly use RegisterClipboardFormatW()
with a UTF8->UTF16 converted string
* Fix _gdk_win32_display_get_selection_owner() to correctly bail
when selection owner HWND is NULL (looking up GdkWindow for NULL
HWND always succeeds and returns the root window - not the intended
effect)
* More logging
* Send DROP_FINISHED event after DnD loop ends
* Send STATUS event on feedback
* Move GetKeyboardState() and related code into _gdk_win32_window_drag_begin(),
so that it's closer to the point where last_pt and start_pt are set
* Use & 0x80 to check for the key being pressed. Windows will set low-order bit
to 1 for all mouse buttons to indicate that they are toggled, so simply
checking for the value not being 0 is not enough anymore.
This is probably a new thing in modern W32 that didn't exist before
(OLE2 DnD code is old).
* Fixed (hopefully) and simplified HiDPI parts of the code.
Also adds managed DnD implementation for W32 GDK backend (for both
OLE2 and LOCAL protocols). Mostly a copy of the X11 backend code, but
there are some minor differences:
* doesn't use drag_window field in GdkDragContext,
uses the one in GdkWin32DragContext exclusively
* subtracts hotspot offset from the window coordinates when showing
the dragback animation
* tries to consistently support scaling and caches the scale
in the context
* Some keynav code is removed (places where grabbing/ungrabbing should
happen is marked with TODOs), and the rest is probably inert.
Also significantly changes the way selection (and clipboard) is handled
(as MSDN rightly notes, the handling for DnD and Clipboard
formats is virtually the same, so it makes sense to handle
both with the same code):
* Don't spam GDK_OWNER_CHANGE, send them only when owner
actually changes
* Open clipboard when our process becomes the clipboard owner
(we are doing it anyway, to empty the clipboard and *become* the owner),
and then don't close it until a scheduled selection request event
(with TARGETS target) is received. Process that event by announcing
all of our supported formats (by that time add_targets() should have
been called up the stack, thus the formats are known; just in case,
add_targets() will also schedule a selection request, if one isn't
scheduled already, so that late-coming formats can still be announced).
* Allow clipboard opening for selection_convert() to be delayed if it
fails initially.
* The last two points above should fix all the bugs about GTK+ rising
too much ruckus over OpenClipboard() failures, as owner change
*is allowed* to fail (though not all callers currently handle
that case), and selection_convert() is asynchronous to begin with.
Still, this is somewhat risky, as there's a possibility that the
code will work in unexpected ways and the clipboard will remain open.
There's now logging to track the clipboard being opened and closed,
and a number of failsafes that try to ensure that it isn't kept open
for no reason.
* Added copious notes on the way clipboard works on X11, Windows and GDK-W32,
also removed old comments in DnD implementation, replaced some of them
with the new ones
* A lot of crufty module-global variables are stuffed into a singleton
object, GdkWin32Selection. It's technically possible to make it a
sub-object of the Display object (the way Wayland backend does),
but since Display object on W32 is a singleton anyway... why bother?
* Fixed the send_change_events() a bit (was slightly broken in one of the
previous iterations)
* Ensure that there's no confusion between selection conversion (an artifact
term from X11) and selection transmutation (changing the data to be W32-compatible)
* Put all the transmutation code and format-target-matching code into gdkselection-win32.c,
now this code isn't spread across multiple files.
* Consequently, moved some code away from gdkproperty-win32.c and gdkdnd-win32.c
* Extensive format transmutation checks for OLE2 DnD and clipboard.
We now keep track of which format mappings are for transmutations,
and which aren't (for example, when formats are passed as-is, or when
a registered name is just an alias)
* Put transmutation code into separate functions
* Ensure that drop target keeps a format->target map for supported formats,
this is useful when selection_convert() is called, as it only receives a
single target and no hints on the format from which the data should
be transmuted into this target.
* Add clear_targets() on W32, to de called by GTK
* Use g_set_object() instead of g_ref_object() where it is allowed.
* Fix indentation (and convert tabs to spaces), remove unused variables
(This commit is cherry-picked from the gtk-3-22 branch)
https://bugzilla.gnome.org/show_bug.cgi?id=786509
2017-08-19 12:06:27 +00:00
|
|
|
dwExStyle |= WS_EX_TRANSPARENT;
|
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
klass = RegisterGdkClass (surface_type, impl->type_hint);
|
Move the code that sets the window style and extended window style, and
2002-12-21 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkwindow-win32.c (gdk_window_new): Move the code that
sets the window style and extended window style, and adjusts the
width and height to take the window decorations into account
earlier. The adjusted width and height used to be ignored. Remove
the local x, y, width and height variables, no need to further
confuse the code by having local copies. (Partial fix, I hope, for
#101588)
(gdk_window_move): When moving top-level windows, take title bar
and border width into account, offsetting the coordinates before
calling SetWindowPos().
(gdk_window_set_decorations, gdk_window_set_functions):
Reimplement, taking into account the peculiar semantics of
GDK_DECOR_ALL and GDK_FUNC_ALL. (#79036)
(gdk_window_get_decorations): Implement. (#98981)
(gdk_window_set_type_hint): When setting
GDK_WINDOW_TYPE_HINT_MENU, call gdk_window_set_decorations().
(#79036)
* gdk/gdk.def: Add gdk_window_get_decorations. (#98981)
2002-12-21 23:32:20 +00:00
|
|
|
|
2006-09-03 22:50:00 +00:00
|
|
|
wtitle = g_utf8_to_utf16 (title, -1, NULL, NULL, NULL);
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2006-09-03 22:50:00 +00:00
|
|
|
hwndNew = CreateWindowExW (dwExStyle,
|
2009-07-18 14:24:02 +00:00
|
|
|
MAKEINTRESOURCEW (klass),
|
|
|
|
wtitle,
|
|
|
|
dwStyle,
|
2019-05-19 03:09:05 +00:00
|
|
|
window_x, window_y,
|
2009-07-18 14:24:02 +00:00
|
|
|
window_width, window_height,
|
2019-05-28 16:39:58 +00:00
|
|
|
owner,
|
2009-07-18 14:24:02 +00:00
|
|
|
NULL,
|
2018-06-16 18:24:56 +00:00
|
|
|
_gdk_dll_hinstance,
|
2019-05-21 23:41:00 +00:00
|
|
|
surface);
|
2019-05-19 03:09:05 +00:00
|
|
|
impl->handle = hwndNew;
|
2011-11-02 11:15:53 +00:00
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
GetWindowRect (hwndNew, &rect);
|
2016-12-19 09:09:49 +00:00
|
|
|
impl->initial_x = rect.left;
|
|
|
|
impl->initial_y = rect.top;
|
2011-11-02 11:15:53 +00:00
|
|
|
|
2016-12-19 09:09:49 +00:00
|
|
|
/* Now we know the initial position, move to actually specified position */
|
2019-05-19 03:09:05 +00:00
|
|
|
if (real_x != window_x || real_y != window_y)
|
2016-12-19 09:09:49 +00:00
|
|
|
{
|
2019-05-19 03:09:05 +00:00
|
|
|
API_CALL (SetWindowPos, (hwndNew,
|
2016-12-19 09:09:49 +00:00
|
|
|
SWP_NOZORDER_SPECIFIED,
|
|
|
|
real_x, real_y, 0, 0,
|
|
|
|
SWP_NOACTIVATE | SWP_NOSIZE | SWP_NOZORDER));
|
2011-11-02 11:15:53 +00:00
|
|
|
}
|
2005-03-16 01:38:57 +00:00
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
g_object_ref (impl);
|
2019-05-21 21:20:15 +00:00
|
|
|
/* Take note: we're inserting a pointer into a heap-allocated
|
|
|
|
* object (impl). Inserting a pointer to a stack variable
|
|
|
|
* will break the logic, since stack variables are short-lived.
|
|
|
|
* We insert a pointer to the handle instead of the handle itself
|
|
|
|
* probably because we need to hash them differently depending
|
|
|
|
* on the bitness of the OS. That pointer is still unique,
|
|
|
|
* so this works out in the end.
|
|
|
|
*/
|
|
|
|
gdk_win32_handle_table_insert (&GDK_SURFACE_HWND (impl), impl);
|
1999-11-11 22:12:27 +00:00
|
|
|
|
2005-03-16 01:38:57 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("... \"%s\" %dx%d@%+d%+d %p = %p\n",
|
2006-09-03 22:50:00 +00:00
|
|
|
title,
|
Fix for #108007, #112402, #117042: There was confusion in gdk/win32 at
2003-07-29 Tor Lillqvist <tml@iki.fi>
Fix for #108007, #112402, #117042: There was confusion in
gdk/win32 at various places whether a window position refers to
the decoration position or the client area position. Also whether
window size includes decorations or not.
The correct interpretation apparently is that in GDK (like in
X11), a top-level window position means the decoration's position,
but size means the window's inner size (client area size). In the
Win32 API, the window size usually includes the decorations,
though.
* gdk/win32/gdkevents-win32.c (decode_key_lparam): Move inside
#ifdef G_ENABLE_DEBUG.
(handle_configure_event): New function, generates GDK_CONFIGURE
events from WM_SIZE and WM_MOVE messages. Even if no event is
generated because of the event mask, still set the private
position and size fields. Calculate position and size correctly.
(gdk_event_translate): Call handle_configure_event().
* gdk/win32/gdkgeometry-win32.c: Cosmetics.
* gdk/win32/gdkwindow-win32.c: Use GDI_CALL() and API_CALL()
macros. Cosmetic debugging output changes.
(SafeAdjustWindowRectEx): Remove. If an application wants to
locate a window outside of the screen, it's not GDK's business to
prevent it. And anyway, with multiple monitors, negative
coordinates are perfectly normal.
(gdk_window_new): Adjust the window size for decorations after
_gdk_window_init_position() has done its job. (But the big window
code currently is presumably broken on Win32 anyway.)
(gdk_window_move): The position passed in is supposed to be that
of the window border, so don't need to adjust for decorations.
(gdk_window_resize, gdk_window_move_resize): Simplify somewhat.
2003-07-29 23:35:40 +00:00
|
|
|
window_width, window_height,
|
2019-05-21 23:41:00 +00:00
|
|
|
surface->x - offset_x,
|
|
|
|
surface->y - offset_y,
|
2019-05-28 16:39:58 +00:00
|
|
|
owner,
|
2019-05-19 03:09:05 +00:00
|
|
|
hwndNew));
|
2008-10-05 00:00:10 +00:00
|
|
|
|
2006-09-03 22:50:00 +00:00
|
|
|
g_free (wtitle);
|
1999-11-11 22:12:27 +00:00
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
if (impl->handle == NULL)
|
1999-11-11 22:12:27 +00:00
|
|
|
{
|
2006-09-03 22:50:00 +00:00
|
|
|
WIN32_API_FAILED ("CreateWindowExW");
|
2019-05-19 03:09:05 +00:00
|
|
|
g_object_unref (impl);
|
|
|
|
return NULL;
|
1999-11-11 22:12:27 +00:00
|
|
|
}
|
|
|
|
|
2019-05-21 23:41:00 +00:00
|
|
|
_gdk_win32_surface_enable_transparency (surface);
|
2020-02-22 14:56:36 +00:00
|
|
|
_gdk_win32_surface_register_dnd (surface);
|
2018-04-09 20:16:23 +00:00
|
|
|
|
|
|
|
g_signal_connect (frame_clock,
|
|
|
|
"after-paint",
|
|
|
|
G_CALLBACK (gdk_win32_impl_frame_clock_after_paint),
|
2019-05-19 03:09:05 +00:00
|
|
|
impl);
|
|
|
|
|
2019-05-21 21:20:15 +00:00
|
|
|
g_object_unref (frame_clock);
|
|
|
|
|
2019-05-21 23:41:00 +00:00
|
|
|
return surface;
|
2004-08-22 19:16:22 +00:00
|
|
|
}
|
|
|
|
|
2010-12-10 19:06:13 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_destroy (GdkSurface *window,
|
2019-05-19 03:09:05 +00:00
|
|
|
gboolean foreign_destroy)
|
1999-11-11 22:12:27 +00:00
|
|
|
{
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *surface = GDK_WIN32_SURFACE (window);
|
1999-11-11 22:12:27 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (window));
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("gdk_win32_surface_destroy: %p\n",
|
|
|
|
GDK_SURFACE_HWND (window)));
|
1999-11-11 22:12:27 +00:00
|
|
|
|
2008-02-05 16:47:24 +00:00
|
|
|
/* Remove ourself from the modal stack */
|
|
|
|
_gdk_remove_modal_window (window);
|
|
|
|
|
2019-05-24 10:55:06 +00:00
|
|
|
g_signal_handlers_disconnect_by_func (gdk_surface_get_frame_clock (window),
|
|
|
|
gdk_win32_impl_frame_clock_after_paint,
|
|
|
|
window);
|
|
|
|
|
2007-10-18 00:31:22 +00:00
|
|
|
/* Remove all our transient children */
|
2019-05-19 03:09:05 +00:00
|
|
|
while (surface->transient_children != NULL)
|
2007-10-18 00:31:22 +00:00
|
|
|
{
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkSurface *child = surface->transient_children->data;
|
2018-07-31 08:50:06 +00:00
|
|
|
gdk_surface_set_transient_for (child, NULL);
|
2007-10-18 00:31:22 +00:00
|
|
|
}
|
|
|
|
|
2007-07-12 23:38:30 +00:00
|
|
|
/* Remove ourself from our transient owner */
|
2019-05-19 03:09:05 +00:00
|
|
|
if (surface->transient_owner != NULL)
|
2007-07-12 23:38:30 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_surface_set_transient_for (window, NULL);
|
2007-07-12 23:38:30 +00:00
|
|
|
}
|
2004-03-13 18:27:56 +00:00
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
if (!foreign_destroy)
|
2001-07-28 23:02:02 +00:00
|
|
|
{
|
2011-01-02 10:51:25 +00:00
|
|
|
window->destroyed = TRUE;
|
2018-03-20 10:40:08 +00:00
|
|
|
DestroyWindow (GDK_SURFACE_HWND (window));
|
2001-07-28 23:02:02 +00:00
|
|
|
}
|
1999-11-11 22:12:27 +00:00
|
|
|
}
|
|
|
|
|
2000-05-16 21:27:10 +00:00
|
|
|
/* This function is called when the window really gone.
|
|
|
|
*/
|
2011-01-02 10:51:25 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_destroy_notify (GdkSurface *window)
|
1999-11-11 22:12:27 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (window));
|
1999-11-11 22:12:27 +00:00
|
|
|
|
1999-11-20 01:22:57 +00:00
|
|
|
GDK_NOTE (EVENTS,
|
2018-03-20 10:40:08 +00:00
|
|
|
g_print ("gdk_surface_destroy_notify: %p%s\n",
|
|
|
|
GDK_SURFACE_HWND (window),
|
|
|
|
(GDK_SURFACE_DESTROYED (window) ? " (destroyed)" : "")));
|
1999-11-11 22:12:27 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (!GDK_SURFACE_DESTROYED (window))
|
1999-11-11 22:12:27 +00:00
|
|
|
{
|
2018-06-25 22:47:40 +00:00
|
|
|
g_warning ("window %p unexpectedly destroyed",
|
|
|
|
GDK_SURFACE_HWND (window));
|
1999-11-11 22:12:27 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
_gdk_surface_destroy (window, TRUE);
|
1999-11-11 22:12:27 +00:00
|
|
|
}
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_handle_table_remove (GDK_SURFACE_HWND (window));
|
2003-06-30 21:58:24 +00:00
|
|
|
g_object_unref (window);
|
1999-11-11 22:12:27 +00:00
|
|
|
}
|
|
|
|
|
2003-08-02 02:05:12 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
get_outer_rect (GdkSurface *window,
|
2003-08-02 02:05:12 +00:00
|
|
|
gint width,
|
|
|
|
gint height,
|
|
|
|
RECT *rect)
|
|
|
|
{
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl = GDK_WIN32_SURFACE (window);
|
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
|
|
|
|
2003-08-02 02:05:12 +00:00
|
|
|
rect->left = rect->top = 0;
|
2018-03-20 11:05:26 +00:00
|
|
|
rect->right = width * impl->surface_scale;
|
|
|
|
rect->bottom = height * impl->surface_scale;
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2005-11-09 12:35:56 +00:00
|
|
|
_gdk_win32_adjust_client_rect (window, rect);
|
2003-08-02 02:05:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
adjust_for_gravity_hints (GdkSurface *window,
|
2009-07-18 14:24:02 +00:00
|
|
|
RECT *outer_rect,
|
|
|
|
gint *x,
|
|
|
|
gint *y)
|
2003-08-02 02:05:12 +00:00
|
|
|
{
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl = GDK_WIN32_SURFACE (window);
|
2009-02-14 18:23:54 +00:00
|
|
|
|
2003-08-02 02:05:12 +00:00
|
|
|
if (impl->hint_flags & GDK_HINT_WIN_GRAVITY)
|
|
|
|
{
|
2011-11-02 15:49:55 +00:00
|
|
|
#ifdef G_ENABLE_DEBUG
|
2003-08-02 02:05:12 +00:00
|
|
|
gint orig_x = *x, orig_y = *y;
|
2011-11-02 15:49:55 +00:00
|
|
|
#endif
|
2003-08-02 02:05:12 +00:00
|
|
|
|
|
|
|
switch (impl->hints.win_gravity)
|
|
|
|
{
|
|
|
|
case GDK_GRAVITY_NORTH:
|
|
|
|
case GDK_GRAVITY_CENTER:
|
|
|
|
case GDK_GRAVITY_SOUTH:
|
2018-03-20 11:05:26 +00:00
|
|
|
*x -= (outer_rect->right - outer_rect->left / 2) / impl->surface_scale;
|
2011-01-02 10:51:25 +00:00
|
|
|
*x += window->width / 2;
|
2003-08-02 02:05:12 +00:00
|
|
|
break;
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2003-08-02 02:05:12 +00:00
|
|
|
case GDK_GRAVITY_SOUTH_EAST:
|
|
|
|
case GDK_GRAVITY_EAST:
|
|
|
|
case GDK_GRAVITY_NORTH_EAST:
|
2018-03-20 11:05:26 +00:00
|
|
|
*x -= (outer_rect->right - outer_rect->left) / impl->surface_scale;
|
2011-01-02 10:51:25 +00:00
|
|
|
*x += window->width;
|
2003-08-02 02:05:12 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case GDK_GRAVITY_STATIC:
|
2018-03-20 11:05:26 +00:00
|
|
|
*x += outer_rect->left / impl->surface_scale;
|
2003-08-02 02:05:12 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (impl->hints.win_gravity)
|
|
|
|
{
|
|
|
|
case GDK_GRAVITY_WEST:
|
|
|
|
case GDK_GRAVITY_CENTER:
|
|
|
|
case GDK_GRAVITY_EAST:
|
2018-03-20 11:05:26 +00:00
|
|
|
*y -= ((outer_rect->bottom - outer_rect->top) / 2) / impl->surface_scale;
|
2011-01-02 10:51:25 +00:00
|
|
|
*y += window->height / 2;
|
2003-08-02 02:05:12 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case GDK_GRAVITY_SOUTH_WEST:
|
|
|
|
case GDK_GRAVITY_SOUTH:
|
|
|
|
case GDK_GRAVITY_SOUTH_EAST:
|
2018-03-20 11:05:26 +00:00
|
|
|
*y -= (outer_rect->bottom - outer_rect->top) / impl->surface_scale;
|
2011-01-02 10:51:25 +00:00
|
|
|
*y += window->height;
|
2003-08-02 02:05:12 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case GDK_GRAVITY_STATIC:
|
2018-03-20 11:05:26 +00:00
|
|
|
*y += outer_rect->top * impl->surface_scale;
|
2003-08-02 02:05:12 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
GDK_NOTE (MISC,
|
|
|
|
(orig_x != *x || orig_y != *y) ?
|
|
|
|
g_print ("adjust_for_gravity_hints: x: %d->%d, y: %d->%d\n",
|
|
|
|
orig_x, *x, orig_y, *y)
|
|
|
|
: (void) 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-08-19 18:34:59 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
show_window_internal (GdkSurface *window,
|
2019-11-16 19:50:57 +00:00
|
|
|
gboolean already_mapped,
|
|
|
|
gboolean unminimize)
|
1999-11-11 22:12:27 +00:00
|
|
|
{
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *surface;
|
2011-10-25 12:26:22 +00:00
|
|
|
gboolean focus_on_map = FALSE;
|
2008-10-21 20:31:05 +00:00
|
|
|
DWORD exstyle;
|
2004-05-08 16:25:15 +00:00
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
if (window->destroyed)
|
Merge from stable:
2002-12-09 Tor Lillqvist <tml@iki.fi>
Merge from stable:
* gdk/win32/gdkdrawable-win32.c (generic_draw): Don't leak
stipple_gc. More checks for errors. Use correct ternary ROP when
blitting the foreground into the tile pixmap onto those pixels
where the stipple is set. (I didn't notice that I had used the
wrong one, as it didn't matter on Win2k, where DIB sections
apparently are zeroed upon creation. But on Win98 they have random
initial contents. Thanks to Hans Breuer for reporting this.)
(gdk_win32_draw_rectangle, gdk_win32_draw_arc,
gdk_win32_draw_polygon): Don't pass the LINE_ATTRIBUTES bits to
generic_draw() if drawing a filled figure.
* gdk/win32/gdkmain-win32.c (_gdk_win32_print_dc): Minor cosmetics.
(_gdk_win32_gcvalues_mask_to_string): Initialize buffer as empty.
(_gdk_win32_window_state_to_string): New debugging output helper
function.
* gdk/win32/gdkevents-win32.c: Minor debugging output changes.
(gdk_event_translate): Ignore the WM_SHOWWINDOW/SW_OTHERUNZOOM or
SW_OTHERZOOM messages. Do not generate a GDK_UNMAP event for
WM_SIZE/SIZE_MINIMIZED messages, they do not really corrspond to
unmapping on X11. Set window state correctly for all three of
SIZE_{MINIMIZED,MAXIMIZED,RESTORED}. A maximized and then iconified
("minimized" in Windows terminology) window still has the
"maximized" property, i.e. when deiconified, it will reappear as
maximized. (#10557)
* gdk/win32/gdkprivate-win32.h: Declare new function.
(WIN32_API_FAILED, WIN32_GDI_FAILED, OTHER_API_FAILED): Don't use
__PRETTY_FUNCTION__ if __GNUC__ >= 3, to avoid warning message.
* gdk/win32/gdkwindow-win32.c (show_window_internal): Handle more
situations. Add parameter to tell whether deiconifying. Code
reorg: Return early when appropriate instead of using nested if
statements. If just deiconifying without raising, restore active
window. (#10557)
(gdk_window_hide, gdk_window_withdraw, gdk_window_iconify,
gdk_window_deiconify, gdk_window_maximize, gdk_window_unmaximize,
gdk_window_focus): Use _gdk_win32_window_state_to_string() in
debugging output.
(gdk_window_iconify): Restore active window after calling
ShowWindow(). Otherwise the "next" window gets activated.
(gdk_window_stick, gdk_window_unstick): Don't output any warnings.
(gdk_window_set_transient_for): Rewrite. Just call SetWindowLong()
with GWL_HWNDPARENT, which despite its name sets the *owner*
window, which should be exactly what we want. The PSDK
documentation is said to be misleading. testgtk's modal window
test now works much better. (#50586)
2002-12-09 00:43:42 +00:00
|
|
|
return;
|
1999-11-11 22:12:27 +00:00
|
|
|
|
2011-10-25 12:26:22 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("show_window_internal: %p: %s%s\n",
|
2018-03-20 10:40:08 +00:00
|
|
|
GDK_SURFACE_HWND (window),
|
|
|
|
_gdk_win32_surface_state_to_string (window->state),
|
2019-11-16 19:50:57 +00:00
|
|
|
(unminimize ? " unminimize" : "")));
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2019-11-16 19:50:57 +00:00
|
|
|
/* If asked to show (not unminimize) a withdrawn and iconified
|
Merge from stable:
2002-12-09 Tor Lillqvist <tml@iki.fi>
Merge from stable:
* gdk/win32/gdkdrawable-win32.c (generic_draw): Don't leak
stipple_gc. More checks for errors. Use correct ternary ROP when
blitting the foreground into the tile pixmap onto those pixels
where the stipple is set. (I didn't notice that I had used the
wrong one, as it didn't matter on Win2k, where DIB sections
apparently are zeroed upon creation. But on Win98 they have random
initial contents. Thanks to Hans Breuer for reporting this.)
(gdk_win32_draw_rectangle, gdk_win32_draw_arc,
gdk_win32_draw_polygon): Don't pass the LINE_ATTRIBUTES bits to
generic_draw() if drawing a filled figure.
* gdk/win32/gdkmain-win32.c (_gdk_win32_print_dc): Minor cosmetics.
(_gdk_win32_gcvalues_mask_to_string): Initialize buffer as empty.
(_gdk_win32_window_state_to_string): New debugging output helper
function.
* gdk/win32/gdkevents-win32.c: Minor debugging output changes.
(gdk_event_translate): Ignore the WM_SHOWWINDOW/SW_OTHERUNZOOM or
SW_OTHERZOOM messages. Do not generate a GDK_UNMAP event for
WM_SIZE/SIZE_MINIMIZED messages, they do not really corrspond to
unmapping on X11. Set window state correctly for all three of
SIZE_{MINIMIZED,MAXIMIZED,RESTORED}. A maximized and then iconified
("minimized" in Windows terminology) window still has the
"maximized" property, i.e. when deiconified, it will reappear as
maximized. (#10557)
* gdk/win32/gdkprivate-win32.h: Declare new function.
(WIN32_API_FAILED, WIN32_GDI_FAILED, OTHER_API_FAILED): Don't use
__PRETTY_FUNCTION__ if __GNUC__ >= 3, to avoid warning message.
* gdk/win32/gdkwindow-win32.c (show_window_internal): Handle more
situations. Add parameter to tell whether deiconifying. Code
reorg: Return early when appropriate instead of using nested if
statements. If just deiconifying without raising, restore active
window. (#10557)
(gdk_window_hide, gdk_window_withdraw, gdk_window_iconify,
gdk_window_deiconify, gdk_window_maximize, gdk_window_unmaximize,
gdk_window_focus): Use _gdk_win32_window_state_to_string() in
debugging output.
(gdk_window_iconify): Restore active window after calling
ShowWindow(). Otherwise the "next" window gets activated.
(gdk_window_stick, gdk_window_unstick): Don't output any warnings.
(gdk_window_set_transient_for): Rewrite. Just call SetWindowLong()
with GWL_HWNDPARENT, which despite its name sets the *owner*
window, which should be exactly what we want. The PSDK
documentation is said to be misleading. testgtk's modal window
test now works much better. (#50586)
2002-12-09 00:43:42 +00:00
|
|
|
* window, do that.
|
|
|
|
*/
|
2019-11-16 19:50:57 +00:00
|
|
|
if (!unminimize &&
|
2011-10-25 12:26:22 +00:00
|
|
|
!already_mapped &&
|
2019-11-16 19:50:57 +00:00
|
|
|
(window->state & GDK_SURFACE_STATE_MINIMIZED))
|
2015-04-29 07:31:08 +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
|
|
|
GtkShowWindow (window, SW_SHOWMINNOACTIVE);
|
Merge from stable:
2002-12-09 Tor Lillqvist <tml@iki.fi>
Merge from stable:
* gdk/win32/gdkdrawable-win32.c (generic_draw): Don't leak
stipple_gc. More checks for errors. Use correct ternary ROP when
blitting the foreground into the tile pixmap onto those pixels
where the stipple is set. (I didn't notice that I had used the
wrong one, as it didn't matter on Win2k, where DIB sections
apparently are zeroed upon creation. But on Win98 they have random
initial contents. Thanks to Hans Breuer for reporting this.)
(gdk_win32_draw_rectangle, gdk_win32_draw_arc,
gdk_win32_draw_polygon): Don't pass the LINE_ATTRIBUTES bits to
generic_draw() if drawing a filled figure.
* gdk/win32/gdkmain-win32.c (_gdk_win32_print_dc): Minor cosmetics.
(_gdk_win32_gcvalues_mask_to_string): Initialize buffer as empty.
(_gdk_win32_window_state_to_string): New debugging output helper
function.
* gdk/win32/gdkevents-win32.c: Minor debugging output changes.
(gdk_event_translate): Ignore the WM_SHOWWINDOW/SW_OTHERUNZOOM or
SW_OTHERZOOM messages. Do not generate a GDK_UNMAP event for
WM_SIZE/SIZE_MINIMIZED messages, they do not really corrspond to
unmapping on X11. Set window state correctly for all three of
SIZE_{MINIMIZED,MAXIMIZED,RESTORED}. A maximized and then iconified
("minimized" in Windows terminology) window still has the
"maximized" property, i.e. when deiconified, it will reappear as
maximized. (#10557)
* gdk/win32/gdkprivate-win32.h: Declare new function.
(WIN32_API_FAILED, WIN32_GDI_FAILED, OTHER_API_FAILED): Don't use
__PRETTY_FUNCTION__ if __GNUC__ >= 3, to avoid warning message.
* gdk/win32/gdkwindow-win32.c (show_window_internal): Handle more
situations. Add parameter to tell whether deiconifying. Code
reorg: Return early when appropriate instead of using nested if
statements. If just deiconifying without raising, restore active
window. (#10557)
(gdk_window_hide, gdk_window_withdraw, gdk_window_iconify,
gdk_window_deiconify, gdk_window_maximize, gdk_window_unmaximize,
gdk_window_focus): Use _gdk_win32_window_state_to_string() in
debugging output.
(gdk_window_iconify): Restore active window after calling
ShowWindow(). Otherwise the "next" window gets activated.
(gdk_window_stick, gdk_window_unstick): Don't output any warnings.
(gdk_window_set_transient_for): Rewrite. Just call SetWindowLong()
with GWL_HWNDPARENT, which despite its name sets the *owner*
window, which should be exactly what we want. The PSDK
documentation is said to be misleading. testgtk's modal window
test now works much better. (#50586)
2002-12-09 00:43:42 +00:00
|
|
|
return;
|
1999-11-11 22:12:27 +00:00
|
|
|
}
|
2015-04-29 07:31:08 +00:00
|
|
|
|
Merge from stable:
2002-12-09 Tor Lillqvist <tml@iki.fi>
Merge from stable:
* gdk/win32/gdkdrawable-win32.c (generic_draw): Don't leak
stipple_gc. More checks for errors. Use correct ternary ROP when
blitting the foreground into the tile pixmap onto those pixels
where the stipple is set. (I didn't notice that I had used the
wrong one, as it didn't matter on Win2k, where DIB sections
apparently are zeroed upon creation. But on Win98 they have random
initial contents. Thanks to Hans Breuer for reporting this.)
(gdk_win32_draw_rectangle, gdk_win32_draw_arc,
gdk_win32_draw_polygon): Don't pass the LINE_ATTRIBUTES bits to
generic_draw() if drawing a filled figure.
* gdk/win32/gdkmain-win32.c (_gdk_win32_print_dc): Minor cosmetics.
(_gdk_win32_gcvalues_mask_to_string): Initialize buffer as empty.
(_gdk_win32_window_state_to_string): New debugging output helper
function.
* gdk/win32/gdkevents-win32.c: Minor debugging output changes.
(gdk_event_translate): Ignore the WM_SHOWWINDOW/SW_OTHERUNZOOM or
SW_OTHERZOOM messages. Do not generate a GDK_UNMAP event for
WM_SIZE/SIZE_MINIMIZED messages, they do not really corrspond to
unmapping on X11. Set window state correctly for all three of
SIZE_{MINIMIZED,MAXIMIZED,RESTORED}. A maximized and then iconified
("minimized" in Windows terminology) window still has the
"maximized" property, i.e. when deiconified, it will reappear as
maximized. (#10557)
* gdk/win32/gdkprivate-win32.h: Declare new function.
(WIN32_API_FAILED, WIN32_GDI_FAILED, OTHER_API_FAILED): Don't use
__PRETTY_FUNCTION__ if __GNUC__ >= 3, to avoid warning message.
* gdk/win32/gdkwindow-win32.c (show_window_internal): Handle more
situations. Add parameter to tell whether deiconifying. Code
reorg: Return early when appropriate instead of using nested if
statements. If just deiconifying without raising, restore active
window. (#10557)
(gdk_window_hide, gdk_window_withdraw, gdk_window_iconify,
gdk_window_deiconify, gdk_window_maximize, gdk_window_unmaximize,
gdk_window_focus): Use _gdk_win32_window_state_to_string() in
debugging output.
(gdk_window_iconify): Restore active window after calling
ShowWindow(). Otherwise the "next" window gets activated.
(gdk_window_stick, gdk_window_unstick): Don't output any warnings.
(gdk_window_set_transient_for): Rewrite. Just call SetWindowLong()
with GWL_HWNDPARENT, which despite its name sets the *owner*
window, which should be exactly what we want. The PSDK
documentation is said to be misleading. testgtk's modal window
test now works much better. (#50586)
2002-12-09 00:43:42 +00:00
|
|
|
/* If asked to just show an iconified window, do nothing. */
|
2019-11-16 19:50:57 +00:00
|
|
|
if (!unminimize && (window->state & GDK_SURFACE_STATE_MINIMIZED))
|
Merge from stable:
2002-12-09 Tor Lillqvist <tml@iki.fi>
Merge from stable:
* gdk/win32/gdkdrawable-win32.c (generic_draw): Don't leak
stipple_gc. More checks for errors. Use correct ternary ROP when
blitting the foreground into the tile pixmap onto those pixels
where the stipple is set. (I didn't notice that I had used the
wrong one, as it didn't matter on Win2k, where DIB sections
apparently are zeroed upon creation. But on Win98 they have random
initial contents. Thanks to Hans Breuer for reporting this.)
(gdk_win32_draw_rectangle, gdk_win32_draw_arc,
gdk_win32_draw_polygon): Don't pass the LINE_ATTRIBUTES bits to
generic_draw() if drawing a filled figure.
* gdk/win32/gdkmain-win32.c (_gdk_win32_print_dc): Minor cosmetics.
(_gdk_win32_gcvalues_mask_to_string): Initialize buffer as empty.
(_gdk_win32_window_state_to_string): New debugging output helper
function.
* gdk/win32/gdkevents-win32.c: Minor debugging output changes.
(gdk_event_translate): Ignore the WM_SHOWWINDOW/SW_OTHERUNZOOM or
SW_OTHERZOOM messages. Do not generate a GDK_UNMAP event for
WM_SIZE/SIZE_MINIMIZED messages, they do not really corrspond to
unmapping on X11. Set window state correctly for all three of
SIZE_{MINIMIZED,MAXIMIZED,RESTORED}. A maximized and then iconified
("minimized" in Windows terminology) window still has the
"maximized" property, i.e. when deiconified, it will reappear as
maximized. (#10557)
* gdk/win32/gdkprivate-win32.h: Declare new function.
(WIN32_API_FAILED, WIN32_GDI_FAILED, OTHER_API_FAILED): Don't use
__PRETTY_FUNCTION__ if __GNUC__ >= 3, to avoid warning message.
* gdk/win32/gdkwindow-win32.c (show_window_internal): Handle more
situations. Add parameter to tell whether deiconifying. Code
reorg: Return early when appropriate instead of using nested if
statements. If just deiconifying without raising, restore active
window. (#10557)
(gdk_window_hide, gdk_window_withdraw, gdk_window_iconify,
gdk_window_deiconify, gdk_window_maximize, gdk_window_unmaximize,
gdk_window_focus): Use _gdk_win32_window_state_to_string() in
debugging output.
(gdk_window_iconify): Restore active window after calling
ShowWindow(). Otherwise the "next" window gets activated.
(gdk_window_stick, gdk_window_unstick): Don't output any warnings.
(gdk_window_set_transient_for): Rewrite. Just call SetWindowLong()
with GWL_HWNDPARENT, which despite its name sets the *owner*
window, which should be exactly what we want. The PSDK
documentation is said to be misleading. testgtk's modal window
test now works much better. (#50586)
2002-12-09 00:43:42 +00:00
|
|
|
return;
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2019-11-16 19:50:57 +00:00
|
|
|
/* If asked to unminimize an already noniconified window, do
|
Merge from stable:
2002-12-09 Tor Lillqvist <tml@iki.fi>
Merge from stable:
* gdk/win32/gdkdrawable-win32.c (generic_draw): Don't leak
stipple_gc. More checks for errors. Use correct ternary ROP when
blitting the foreground into the tile pixmap onto those pixels
where the stipple is set. (I didn't notice that I had used the
wrong one, as it didn't matter on Win2k, where DIB sections
apparently are zeroed upon creation. But on Win98 they have random
initial contents. Thanks to Hans Breuer for reporting this.)
(gdk_win32_draw_rectangle, gdk_win32_draw_arc,
gdk_win32_draw_polygon): Don't pass the LINE_ATTRIBUTES bits to
generic_draw() if drawing a filled figure.
* gdk/win32/gdkmain-win32.c (_gdk_win32_print_dc): Minor cosmetics.
(_gdk_win32_gcvalues_mask_to_string): Initialize buffer as empty.
(_gdk_win32_window_state_to_string): New debugging output helper
function.
* gdk/win32/gdkevents-win32.c: Minor debugging output changes.
(gdk_event_translate): Ignore the WM_SHOWWINDOW/SW_OTHERUNZOOM or
SW_OTHERZOOM messages. Do not generate a GDK_UNMAP event for
WM_SIZE/SIZE_MINIMIZED messages, they do not really corrspond to
unmapping on X11. Set window state correctly for all three of
SIZE_{MINIMIZED,MAXIMIZED,RESTORED}. A maximized and then iconified
("minimized" in Windows terminology) window still has the
"maximized" property, i.e. when deiconified, it will reappear as
maximized. (#10557)
* gdk/win32/gdkprivate-win32.h: Declare new function.
(WIN32_API_FAILED, WIN32_GDI_FAILED, OTHER_API_FAILED): Don't use
__PRETTY_FUNCTION__ if __GNUC__ >= 3, to avoid warning message.
* gdk/win32/gdkwindow-win32.c (show_window_internal): Handle more
situations. Add parameter to tell whether deiconifying. Code
reorg: Return early when appropriate instead of using nested if
statements. If just deiconifying without raising, restore active
window. (#10557)
(gdk_window_hide, gdk_window_withdraw, gdk_window_iconify,
gdk_window_deiconify, gdk_window_maximize, gdk_window_unmaximize,
gdk_window_focus): Use _gdk_win32_window_state_to_string() in
debugging output.
(gdk_window_iconify): Restore active window after calling
ShowWindow(). Otherwise the "next" window gets activated.
(gdk_window_stick, gdk_window_unstick): Don't output any warnings.
(gdk_window_set_transient_for): Rewrite. Just call SetWindowLong()
with GWL_HWNDPARENT, which despite its name sets the *owner*
window, which should be exactly what we want. The PSDK
documentation is said to be misleading. testgtk's modal window
test now works much better. (#50586)
2002-12-09 00:43:42 +00:00
|
|
|
* nothing. (Especially, don't cause the window to rise and
|
|
|
|
* activate. There are different calls for that.)
|
|
|
|
*/
|
2019-11-16 19:50:57 +00:00
|
|
|
if (unminimize && !(window->state & GDK_SURFACE_STATE_MINIMIZED))
|
Merge from stable:
2002-12-09 Tor Lillqvist <tml@iki.fi>
Merge from stable:
* gdk/win32/gdkdrawable-win32.c (generic_draw): Don't leak
stipple_gc. More checks for errors. Use correct ternary ROP when
blitting the foreground into the tile pixmap onto those pixels
where the stipple is set. (I didn't notice that I had used the
wrong one, as it didn't matter on Win2k, where DIB sections
apparently are zeroed upon creation. But on Win98 they have random
initial contents. Thanks to Hans Breuer for reporting this.)
(gdk_win32_draw_rectangle, gdk_win32_draw_arc,
gdk_win32_draw_polygon): Don't pass the LINE_ATTRIBUTES bits to
generic_draw() if drawing a filled figure.
* gdk/win32/gdkmain-win32.c (_gdk_win32_print_dc): Minor cosmetics.
(_gdk_win32_gcvalues_mask_to_string): Initialize buffer as empty.
(_gdk_win32_window_state_to_string): New debugging output helper
function.
* gdk/win32/gdkevents-win32.c: Minor debugging output changes.
(gdk_event_translate): Ignore the WM_SHOWWINDOW/SW_OTHERUNZOOM or
SW_OTHERZOOM messages. Do not generate a GDK_UNMAP event for
WM_SIZE/SIZE_MINIMIZED messages, they do not really corrspond to
unmapping on X11. Set window state correctly for all three of
SIZE_{MINIMIZED,MAXIMIZED,RESTORED}. A maximized and then iconified
("minimized" in Windows terminology) window still has the
"maximized" property, i.e. when deiconified, it will reappear as
maximized. (#10557)
* gdk/win32/gdkprivate-win32.h: Declare new function.
(WIN32_API_FAILED, WIN32_GDI_FAILED, OTHER_API_FAILED): Don't use
__PRETTY_FUNCTION__ if __GNUC__ >= 3, to avoid warning message.
* gdk/win32/gdkwindow-win32.c (show_window_internal): Handle more
situations. Add parameter to tell whether deiconifying. Code
reorg: Return early when appropriate instead of using nested if
statements. If just deiconifying without raising, restore active
window. (#10557)
(gdk_window_hide, gdk_window_withdraw, gdk_window_iconify,
gdk_window_deiconify, gdk_window_maximize, gdk_window_unmaximize,
gdk_window_focus): Use _gdk_win32_window_state_to_string() in
debugging output.
(gdk_window_iconify): Restore active window after calling
ShowWindow(). Otherwise the "next" window gets activated.
(gdk_window_stick, gdk_window_unstick): Don't output any warnings.
(gdk_window_set_transient_for): Rewrite. Just call SetWindowLong()
with GWL_HWNDPARENT, which despite its name sets the *owner*
window, which should be exactly what we want. The PSDK
documentation is said to be misleading. testgtk's modal window
test now works much better. (#50586)
2002-12-09 00:43:42 +00:00
|
|
|
return;
|
2015-04-29 07:31:08 +00:00
|
|
|
|
Merge from stable:
2002-12-09 Tor Lillqvist <tml@iki.fi>
Merge from stable:
* gdk/win32/gdkdrawable-win32.c (generic_draw): Don't leak
stipple_gc. More checks for errors. Use correct ternary ROP when
blitting the foreground into the tile pixmap onto those pixels
where the stipple is set. (I didn't notice that I had used the
wrong one, as it didn't matter on Win2k, where DIB sections
apparently are zeroed upon creation. But on Win98 they have random
initial contents. Thanks to Hans Breuer for reporting this.)
(gdk_win32_draw_rectangle, gdk_win32_draw_arc,
gdk_win32_draw_polygon): Don't pass the LINE_ATTRIBUTES bits to
generic_draw() if drawing a filled figure.
* gdk/win32/gdkmain-win32.c (_gdk_win32_print_dc): Minor cosmetics.
(_gdk_win32_gcvalues_mask_to_string): Initialize buffer as empty.
(_gdk_win32_window_state_to_string): New debugging output helper
function.
* gdk/win32/gdkevents-win32.c: Minor debugging output changes.
(gdk_event_translate): Ignore the WM_SHOWWINDOW/SW_OTHERUNZOOM or
SW_OTHERZOOM messages. Do not generate a GDK_UNMAP event for
WM_SIZE/SIZE_MINIMIZED messages, they do not really corrspond to
unmapping on X11. Set window state correctly for all three of
SIZE_{MINIMIZED,MAXIMIZED,RESTORED}. A maximized and then iconified
("minimized" in Windows terminology) window still has the
"maximized" property, i.e. when deiconified, it will reappear as
maximized. (#10557)
* gdk/win32/gdkprivate-win32.h: Declare new function.
(WIN32_API_FAILED, WIN32_GDI_FAILED, OTHER_API_FAILED): Don't use
__PRETTY_FUNCTION__ if __GNUC__ >= 3, to avoid warning message.
* gdk/win32/gdkwindow-win32.c (show_window_internal): Handle more
situations. Add parameter to tell whether deiconifying. Code
reorg: Return early when appropriate instead of using nested if
statements. If just deiconifying without raising, restore active
window. (#10557)
(gdk_window_hide, gdk_window_withdraw, gdk_window_iconify,
gdk_window_deiconify, gdk_window_maximize, gdk_window_unmaximize,
gdk_window_focus): Use _gdk_win32_window_state_to_string() in
debugging output.
(gdk_window_iconify): Restore active window after calling
ShowWindow(). Otherwise the "next" window gets activated.
(gdk_window_stick, gdk_window_unstick): Don't output any warnings.
(gdk_window_set_transient_for): Rewrite. Just call SetWindowLong()
with GWL_HWNDPARENT, which despite its name sets the *owner*
window, which should be exactly what we want. The PSDK
documentation is said to be misleading. testgtk's modal window
test now works much better. (#50586)
2002-12-09 00:43:42 +00:00
|
|
|
/* If asked to show (but not raise) a window that is already
|
|
|
|
* visible, do nothing.
|
|
|
|
*/
|
2019-11-16 19:50:57 +00:00
|
|
|
if (!unminimize && !already_mapped && IsWindowVisible (GDK_SURFACE_HWND (window)))
|
Merge from stable:
2002-12-09 Tor Lillqvist <tml@iki.fi>
Merge from stable:
* gdk/win32/gdkdrawable-win32.c (generic_draw): Don't leak
stipple_gc. More checks for errors. Use correct ternary ROP when
blitting the foreground into the tile pixmap onto those pixels
where the stipple is set. (I didn't notice that I had used the
wrong one, as it didn't matter on Win2k, where DIB sections
apparently are zeroed upon creation. But on Win98 they have random
initial contents. Thanks to Hans Breuer for reporting this.)
(gdk_win32_draw_rectangle, gdk_win32_draw_arc,
gdk_win32_draw_polygon): Don't pass the LINE_ATTRIBUTES bits to
generic_draw() if drawing a filled figure.
* gdk/win32/gdkmain-win32.c (_gdk_win32_print_dc): Minor cosmetics.
(_gdk_win32_gcvalues_mask_to_string): Initialize buffer as empty.
(_gdk_win32_window_state_to_string): New debugging output helper
function.
* gdk/win32/gdkevents-win32.c: Minor debugging output changes.
(gdk_event_translate): Ignore the WM_SHOWWINDOW/SW_OTHERUNZOOM or
SW_OTHERZOOM messages. Do not generate a GDK_UNMAP event for
WM_SIZE/SIZE_MINIMIZED messages, they do not really corrspond to
unmapping on X11. Set window state correctly for all three of
SIZE_{MINIMIZED,MAXIMIZED,RESTORED}. A maximized and then iconified
("minimized" in Windows terminology) window still has the
"maximized" property, i.e. when deiconified, it will reappear as
maximized. (#10557)
* gdk/win32/gdkprivate-win32.h: Declare new function.
(WIN32_API_FAILED, WIN32_GDI_FAILED, OTHER_API_FAILED): Don't use
__PRETTY_FUNCTION__ if __GNUC__ >= 3, to avoid warning message.
* gdk/win32/gdkwindow-win32.c (show_window_internal): Handle more
situations. Add parameter to tell whether deiconifying. Code
reorg: Return early when appropriate instead of using nested if
statements. If just deiconifying without raising, restore active
window. (#10557)
(gdk_window_hide, gdk_window_withdraw, gdk_window_iconify,
gdk_window_deiconify, gdk_window_maximize, gdk_window_unmaximize,
gdk_window_focus): Use _gdk_win32_window_state_to_string() in
debugging output.
(gdk_window_iconify): Restore active window after calling
ShowWindow(). Otherwise the "next" window gets activated.
(gdk_window_stick, gdk_window_unstick): Don't output any warnings.
(gdk_window_set_transient_for): Rewrite. Just call SetWindowLong()
with GWL_HWNDPARENT, which despite its name sets the *owner*
window, which should be exactly what we want. The PSDK
documentation is said to be misleading. testgtk's modal window
test now works much better. (#50586)
2002-12-09 00:43:42 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
/* Other cases */
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2011-10-25 12:26:22 +00:00
|
|
|
if (!already_mapped)
|
|
|
|
focus_on_map = window->focus_on_map;
|
Merge from stable:
2002-12-09 Tor Lillqvist <tml@iki.fi>
Merge from stable:
* gdk/win32/gdkdrawable-win32.c (generic_draw): Don't leak
stipple_gc. More checks for errors. Use correct ternary ROP when
blitting the foreground into the tile pixmap onto those pixels
where the stipple is set. (I didn't notice that I had used the
wrong one, as it didn't matter on Win2k, where DIB sections
apparently are zeroed upon creation. But on Win98 they have random
initial contents. Thanks to Hans Breuer for reporting this.)
(gdk_win32_draw_rectangle, gdk_win32_draw_arc,
gdk_win32_draw_polygon): Don't pass the LINE_ATTRIBUTES bits to
generic_draw() if drawing a filled figure.
* gdk/win32/gdkmain-win32.c (_gdk_win32_print_dc): Minor cosmetics.
(_gdk_win32_gcvalues_mask_to_string): Initialize buffer as empty.
(_gdk_win32_window_state_to_string): New debugging output helper
function.
* gdk/win32/gdkevents-win32.c: Minor debugging output changes.
(gdk_event_translate): Ignore the WM_SHOWWINDOW/SW_OTHERUNZOOM or
SW_OTHERZOOM messages. Do not generate a GDK_UNMAP event for
WM_SIZE/SIZE_MINIMIZED messages, they do not really corrspond to
unmapping on X11. Set window state correctly for all three of
SIZE_{MINIMIZED,MAXIMIZED,RESTORED}. A maximized and then iconified
("minimized" in Windows terminology) window still has the
"maximized" property, i.e. when deiconified, it will reappear as
maximized. (#10557)
* gdk/win32/gdkprivate-win32.h: Declare new function.
(WIN32_API_FAILED, WIN32_GDI_FAILED, OTHER_API_FAILED): Don't use
__PRETTY_FUNCTION__ if __GNUC__ >= 3, to avoid warning message.
* gdk/win32/gdkwindow-win32.c (show_window_internal): Handle more
situations. Add parameter to tell whether deiconifying. Code
reorg: Return early when appropriate instead of using nested if
statements. If just deiconifying without raising, restore active
window. (#10557)
(gdk_window_hide, gdk_window_withdraw, gdk_window_iconify,
gdk_window_deiconify, gdk_window_maximize, gdk_window_unmaximize,
gdk_window_focus): Use _gdk_win32_window_state_to_string() in
debugging output.
(gdk_window_iconify): Restore active window after calling
ShowWindow(). Otherwise the "next" window gets activated.
(gdk_window_stick, gdk_window_unstick): Don't output any warnings.
(gdk_window_set_transient_for): Rewrite. Just call SetWindowLong()
with GWL_HWNDPARENT, which despite its name sets the *owner*
window, which should be exactly what we want. The PSDK
documentation is said to be misleading. testgtk's modal window
test now works much better. (#50586)
2002-12-09 00:43:42 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
exstyle = GetWindowLong (GDK_SURFACE_HWND (window), GWL_EXSTYLE);
|
2008-10-21 20:31:05 +00:00
|
|
|
|
2004-03-10 22:20:36 +00:00
|
|
|
/* Use SetWindowPos to show transparent windows so automatic redraws
|
|
|
|
* in other windows can be suppressed.
|
|
|
|
*/
|
2008-10-21 20:31:05 +00:00
|
|
|
if (exstyle & WS_EX_TRANSPARENT)
|
2004-03-10 22:20:36 +00:00
|
|
|
{
|
2011-10-25 12:26:22 +00:00
|
|
|
UINT flags = SWP_SHOWWINDOW | SWP_NOREDRAW | SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER;
|
2008-10-21 20:31:05 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_TYPE (window) == GDK_SURFACE_TEMP || !focus_on_map)
|
2009-07-18 14:24:02 +00:00
|
|
|
flags |= SWP_NOACTIVATE;
|
2004-03-10 22:20:36 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
SetWindowPos (GDK_SURFACE_HWND (window),
|
2015-11-21 03:58:22 +00:00
|
|
|
SWP_NOZORDER_SPECIFIED, 0, 0, 0, 0, flags);
|
2008-10-21 20:31:05 +00:00
|
|
|
|
2004-03-10 22:20:36 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-10-27 14:09:42 +00:00
|
|
|
/* For initial map of "normal" windows we want to emulate WM window
|
2015-04-29 07:31:08 +00:00
|
|
|
* positioning behaviour, which means:
|
2011-10-27 14:09:42 +00:00
|
|
|
* + Use user specified position if GDK_HINT_POS or GDK_HINT_USER_POS
|
|
|
|
* otherwise:
|
|
|
|
* + default to the initial CW_USEDEFAULT placement,
|
|
|
|
* no matter if the user moved the window before showing it.
|
|
|
|
* + Certain window types and hints have more elaborate positioning
|
|
|
|
* schemes.
|
|
|
|
*/
|
2019-05-19 03:09:05 +00:00
|
|
|
surface = GDK_WIN32_SURFACE (window);
|
2011-10-27 14:09:42 +00:00
|
|
|
if (!already_mapped &&
|
2018-03-20 10:40:08 +00:00
|
|
|
GDK_SURFACE_TYPE (window) == GDK_SURFACE_TOPLEVEL &&
|
2019-05-19 03:09:05 +00:00
|
|
|
(surface->hint_flags & (GDK_HINT_POS | GDK_HINT_USER_POS)) == 0)
|
2011-10-27 14:09:42 +00:00
|
|
|
{
|
|
|
|
gboolean center = FALSE;
|
|
|
|
RECT window_rect, center_on_rect;
|
|
|
|
int x, y;
|
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
x = surface->initial_x;
|
|
|
|
y = surface->initial_y;
|
2011-10-27 14:09:42 +00:00
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
if (surface->type_hint == GDK_SURFACE_TYPE_HINT_SPLASHSCREEN)
|
2011-10-27 14:09:42 +00:00
|
|
|
{
|
|
|
|
HMONITOR monitor;
|
|
|
|
MONITORINFO mi;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
monitor = MonitorFromWindow (GDK_SURFACE_HWND (window), MONITOR_DEFAULTTONEAREST);
|
2011-10-27 14:09:42 +00:00
|
|
|
mi.cbSize = sizeof (mi);
|
|
|
|
if (monitor && GetMonitorInfo (monitor, &mi))
|
|
|
|
center_on_rect = mi.rcMonitor;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
center_on_rect.left = 0;
|
2016-03-14 16:14:22 +00:00
|
|
|
center_on_rect.top = 0;
|
2011-10-27 14:09:42 +00:00
|
|
|
center_on_rect.right = GetSystemMetrics (SM_CXSCREEN);
|
|
|
|
center_on_rect.bottom = GetSystemMetrics (SM_CYSCREEN);
|
|
|
|
}
|
|
|
|
center = TRUE;
|
|
|
|
}
|
2019-05-19 03:09:05 +00:00
|
|
|
else if (surface->transient_owner != NULL &&
|
|
|
|
GDK_SURFACE_IS_MAPPED (surface->transient_owner))
|
2011-10-27 14:09:42 +00:00
|
|
|
{
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkSurface *owner = surface->transient_owner;
|
2011-10-27 14:09:42 +00:00
|
|
|
/* Center on transient parent */
|
2019-05-19 03:09:05 +00:00
|
|
|
center_on_rect.left = (owner->x - _gdk_offset_x) * surface->surface_scale;
|
|
|
|
center_on_rect.top = (owner->y - _gdk_offset_y) * surface->surface_scale;
|
|
|
|
center_on_rect.right = center_on_rect.left + owner->width * surface->surface_scale;
|
|
|
|
center_on_rect.bottom = center_on_rect.top + owner->height * surface->surface_scale;
|
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
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
_gdk_win32_adjust_client_rect (GDK_SURFACE (owner), ¢er_on_rect);
|
2011-10-27 14:09:42 +00:00
|
|
|
center = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (center)
|
|
|
|
{
|
|
|
|
window_rect.left = 0;
|
|
|
|
window_rect.top = 0;
|
2019-05-19 03:09:05 +00:00
|
|
|
window_rect.right = window->width * surface->surface_scale;
|
|
|
|
window_rect.bottom = window->height * surface->surface_scale;
|
2011-10-27 14:09:42 +00:00
|
|
|
_gdk_win32_adjust_client_rect (window, &window_rect);
|
|
|
|
|
|
|
|
x = center_on_rect.left + ((center_on_rect.right - center_on_rect.left) - (window_rect.right - window_rect.left)) / 2;
|
|
|
|
y = center_on_rect.top + ((center_on_rect.bottom - center_on_rect.top) - (window_rect.bottom - window_rect.top)) / 2;
|
|
|
|
}
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
API_CALL (SetWindowPos, (GDK_SURFACE_HWND (window),
|
2015-11-21 03:58:22 +00:00
|
|
|
SWP_NOZORDER_SPECIFIED,
|
2011-10-27 14:09:42 +00:00
|
|
|
x, y, 0, 0,
|
|
|
|
SWP_NOACTIVATE | SWP_NOSIZE | SWP_NOZORDER));
|
|
|
|
}
|
|
|
|
|
2011-11-02 13:30:23 +00:00
|
|
|
if (!already_mapped &&
|
2018-03-20 10:40:08 +00:00
|
|
|
GDK_SURFACE_TYPE (window) == GDK_SURFACE_TOPLEVEL)
|
2011-11-02 13:30:23 +00:00
|
|
|
{
|
|
|
|
/* Ensure new windows are fully onscreen */
|
|
|
|
RECT window_rect;
|
|
|
|
HMONITOR monitor;
|
|
|
|
MONITORINFO mi;
|
|
|
|
int x, y;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
GetWindowRect (GDK_SURFACE_HWND (window), &window_rect);
|
2011-11-02 13:30:23 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
monitor = MonitorFromWindow (GDK_SURFACE_HWND (window), MONITOR_DEFAULTTONEAREST);
|
2011-11-02 13:30:23 +00:00
|
|
|
mi.cbSize = sizeof (mi);
|
|
|
|
if (monitor && GetMonitorInfo (monitor, &mi))
|
|
|
|
{
|
|
|
|
x = window_rect.left;
|
|
|
|
y = window_rect.top;
|
|
|
|
|
|
|
|
if (window_rect.right > mi.rcWork.right)
|
|
|
|
{
|
|
|
|
window_rect.left -= (window_rect.right - mi.rcWork.right);
|
|
|
|
window_rect.right -= (window_rect.right - mi.rcWork.right);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (window_rect.bottom > mi.rcWork.bottom)
|
|
|
|
{
|
|
|
|
window_rect.top -= (window_rect.bottom - mi.rcWork.bottom);
|
|
|
|
window_rect.bottom -= (window_rect.bottom - mi.rcWork.bottom);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (window_rect.left < mi.rcWork.left)
|
|
|
|
{
|
|
|
|
window_rect.right += (mi.rcWork.left - window_rect.left);
|
|
|
|
window_rect.left += (mi.rcWork.left - window_rect.left);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (window_rect.top < mi.rcWork.top)
|
|
|
|
{
|
|
|
|
window_rect.bottom += (mi.rcWork.top - window_rect.top);
|
|
|
|
window_rect.top += (mi.rcWork.top - window_rect.top);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (x != window_rect.left || y != window_rect.top)
|
2018-03-20 10:40:08 +00:00
|
|
|
API_CALL (SetWindowPos, (GDK_SURFACE_HWND (window),
|
2015-11-21 03:58:22 +00:00
|
|
|
SWP_NOZORDER_SPECIFIED,
|
2011-11-02 13:30:23 +00:00
|
|
|
window_rect.left, window_rect.top, 0, 0,
|
|
|
|
SWP_NOACTIVATE | SWP_NOSIZE | SWP_NOZORDER));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (window->state & GDK_SURFACE_STATE_FULLSCREEN)
|
2008-08-28 02:42:23 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_surface_fullscreen (window);
|
2008-08-28 02:42:23 +00:00
|
|
|
}
|
2018-03-20 10:40:08 +00:00
|
|
|
else if (window->state & GDK_SURFACE_STATE_MAXIMIZED)
|
2008-08-28 02:42:23 +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
|
|
|
GtkShowWindow (window, SW_MAXIMIZE);
|
2008-08-28 02:42:23 +00:00
|
|
|
}
|
2019-11-16 19:50:57 +00:00
|
|
|
else if (window->state & GDK_SURFACE_STATE_MINIMIZED)
|
2008-08-28 02:42:23 +00:00
|
|
|
{
|
2011-10-25 12:26:22 +00:00
|
|
|
if (focus_on_map)
|
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
|
|
|
GtkShowWindow (window, SW_RESTORE);
|
2011-10-25 12:26:22 +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
|
|
|
GtkShowWindow (window, SW_SHOWNOACTIVATE);
|
2008-08-28 02:42:23 +00:00
|
|
|
}
|
2018-03-20 10:40:08 +00:00
|
|
|
else if (GDK_SURFACE_TYPE (window) == GDK_SURFACE_TEMP || !focus_on_map)
|
2008-08-28 02:42:23 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
if (!IsWindowVisible (GDK_SURFACE_HWND (window)))
|
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
|
|
|
GtkShowWindow (window, SW_SHOWNOACTIVATE);
|
2016-02-08 12:20:02 +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
|
|
|
GtkShowWindow (window, SW_SHOWNA);
|
2008-08-28 02:42:23 +00:00
|
|
|
}
|
2018-03-20 10:40:08 +00:00
|
|
|
else if (!IsWindowVisible (GDK_SURFACE_HWND (window)))
|
2008-08-28 02:42:23 +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
|
|
|
GtkShowWindow (window, SW_SHOWNORMAL);
|
2008-08-28 02:42:23 +00:00
|
|
|
}
|
2016-02-08 12:20:02 +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
|
|
|
GtkShowWindow (window, SW_SHOW);
|
2016-02-08 12:20:02 +00:00
|
|
|
}
|
2011-10-26 09:08:33 +00:00
|
|
|
|
|
|
|
/* Sync STATE_ABOVE to TOPMOST */
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_TYPE (window) != GDK_SURFACE_TEMP &&
|
|
|
|
(((window->state & GDK_SURFACE_STATE_ABOVE) &&
|
2011-11-25 10:21:26 +00:00
|
|
|
!(exstyle & WS_EX_TOPMOST)) ||
|
2018-03-20 10:40:08 +00:00
|
|
|
(!(window->state & GDK_SURFACE_STATE_ABOVE) &&
|
2011-11-25 10:21:26 +00:00
|
|
|
(exstyle & WS_EX_TOPMOST))))
|
2011-10-26 09:08:33 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
API_CALL (SetWindowPos, (GDK_SURFACE_HWND (window),
|
|
|
|
(window->state & GDK_SURFACE_STATE_ABOVE)?HWND_TOPMOST:HWND_NOTOPMOST,
|
2011-10-26 09:08:33 +00:00
|
|
|
0, 0, 0, 0,
|
2018-06-17 10:58:16 +00:00
|
|
|
SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE | SWP_NOOWNERZORDER));
|
2011-10-26 09:08:33 +00:00
|
|
|
}
|
1999-11-11 22:12:27 +00:00
|
|
|
}
|
|
|
|
|
2008-07-02 13:58:28 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_show (GdkSurface *window,
|
2009-07-01 08:26:37 +00:00
|
|
|
gboolean already_mapped)
|
2001-08-19 18:34:59 +00:00
|
|
|
{
|
2009-02-14 18:23:54 +00:00
|
|
|
show_window_internal (window, FALSE, FALSE);
|
2001-08-19 18:34:59 +00:00
|
|
|
}
|
|
|
|
|
2008-07-02 13:58:28 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_hide (GdkSurface *window)
|
1999-11-11 22:12:27 +00:00
|
|
|
{
|
2011-01-02 10:51:25 +00:00
|
|
|
if (window->destroyed)
|
gdk/win32/gdkprivate-win32.h New flags _gdk_input_locale_is_ime and
2003-07-25 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkprivate-win32.h
* gdk/win32/gdkglobals-win32.c: New flags _gdk_input_locale_is_ime
and _gdk_keyboard_has_altgr.
* gdk/win32/gdkevents-win32.c: Lots of changes. Most important
ones detailled here.
Code that has been ifdeffed out for a long time removed. Remove
some really old doc comments that were left behind for some public
functions, the official ones are in the X11 backend anyway. Change
GDK_WINDOW_OBJECT() calls to GdkWindowObject casts. Reformat
multi-line boolean expressions to have the operators at ends of
lines.
As mouse capture with SetCapture() indeed seems to work OK, no
need to have the correspoinding macro USE_SETCAPTURE and ifdefs.
Ifdef out the gdk-ping-msg stuff. I don't remember why it was
needed at some time, and things seem to work fine now without
(knock on wood).
Ifdef out the search for some Latin locale keyboard layout being
loaded. Not used currently, but might be needed after all, if we
decide that we want to be able to generate ASCII control character
events with a non-Latin keyboard.
(assign_object): New helper function, handles the g_object_ref()
and unref() calls when assigning GObject pointers.
(generate_crossing_events): Also generate the GDK_NOTIFY_INTERIOR
enter event when the pointer has moved to an ancestor window. Was
left out by mistake.
(gdk_window_is_ancestor): Renamed from gdk_window_is_child().
(gdk_pointer_grab, gdk_pointer_ungrab): Implement the confine_to
functionality, using ClipCursor().
(find_window_for_mouse_event): Splice part of code into new
function find_real_window_for_grabbed_mouse_event().
(fixup_event, append_event, apply_filters): New functions, code
refactored out from elsewhere.
(synthesize_enter_or_leave_event, synthesize_leave_event,
synthesize_enter_event,
synthesize_leave_events,synthesize_enter_events): Also take a
GdkCrossingMode parameter, in preparation to generating
GDK_CROSSING_GRAB and GDK_CROSSING_UNGRAB events.
(fixup_event, append_event, fill_key_event_string): New functions,
code refactoring.
(vk_from_char, build_keypress_event, build_keyrelease_event):
Removed as part of dropping WM_CHAR handling.
(build_key_event_state,gdk_event_translate): Call
GetKeyboardState(), once, for each keyboard message, instead of
several calls to GetKeyState() here and there.
(gdk_event_translate): Fix bugs #104516, #104662, #115902. While
at it, do some major refactoring, and some fixes for potential
problems noticed while going through the code.
Don't handle WM_CHAR at all. Only handle WM_KEYDOWN and
WM_KEYUP. Don't need the state variables related to whether to
wait for WM_CHAR or not, and whether the current key is
AltGr. Remove lots of complexity. Thus don't need the
use_ime_composition flag.
Not handling WM_CHAR means dead key handling will have to be taken
care of by GTK, but that seems to work fine, so no worry.
Another side-effect is that Alt+keypad digits don't work any
longer, but it's better to learn to use GTK's ISO14755 support is
anyway.
Be more careful in checking whether AltGr is involved. Only
attempt to handle it if the keyboard actually has it. And
explicitly check for *left* Control plus *right* Alt being
pressed. Still, allow (left) Alt and/or (right) Control with AltGr
chars.
Handle keys using similar code as in the X11 backend. As we have
built a keymap in gdkkeys-win32.c anyway, use it by calling
gdk_keymap_translate_keyboard_state() to look up the keysym from
the virtual key code and keyboard state. Build the key event
string in exactly the same way as the X11 backend.
If an IME is being used, don't generate GDK events for keys
between receiving WM_IME_STARTCOMPOSITION and
WM_IME_ENDCOMPOSITION, as those keys are for the IME.
For WM_IME_COMPOSITION, handle all the Unicode chars returned from
the IME, not just the first one.
gdk_event_translate() is still quite complex, could split the
message handler cases out into separate functions.
On mouse events, when the mouse is grabbed, use
find_real_window_for_grabbed_mouse_event() in order to be able to
generate correct crossing events.
No longer take a pre-allocated GdkEvent as parameter. Instead,
allocate events as needed and append them to the queue. (This is
different from how gdk_event_translate() in the X11 backend
works.) This change made the code much clearer, especially in the
cases where we have to generate several GDK events for one Windows
message. Return FALSE if DefWindowProc() should be called, TRUE
if not. If DefWindowProc() should not be called, also return the
value to be returned from the window procedure.
(Previously, the interaction with gdk_event_translate()'s caller
was much more complex, when we had to indicate whether the
already-queued event should be left in the queue or removed, and
in addition also had to indicate whether to call DefWindowProc()
or not, and what value to return from the window procedure if
not.)
Don't use a separate "private" variable required to be pointing to
the GdkWindowObject of the "window" variable at all times. Just
use casts, even if looks a bit uglier.
Notice destroyed windows as early as possible, and break out of
the messsage switch.
Use _gdk_pointer_root as current_window when the pointer is
outside GDK's top-level windows.
On WM_INPUTLANGCHANGE, set _gdk_input_locale_is_ime as
appropriate, based on ImmIsIME().
(gdk_event_translate, gdk_event_send_client_message_for_display,
gdk_screen_broadcast_client_message): Implement client messages.
Use a registered Windows message to pass GDK client messages. Note
that the amount of user data is restricted to four bytes, as it is
carried in the LPARAM. (The WPARAM is used for the message type
"atom".)
(real_window_procedure): Adapt for new gdk_event_translate()
interface.
* gdk/win32/gdkmain-win32.c (_gdk_windowing_init): Set
_gdk_input_locale_is_ime initially.
* gdk/win32/gdkwindow-win32.c: Use g_object_ref()/unref() instead
of g_colormap_ref()/unref().
(gdk_window_new): Made code a bit more like the X11 one, pretend
to handle screens (although we just have one for now).
* gdk/x11/gdkevents-x11.c
(gdk_event_send_client_message_for_display,
gdk_screen_broadcast_client_message): Document the user data
limitation on Win32.
* gdk/win32/gdkevents-win32.c (print_event): More complete enter
and leave notify detail output.
* gdk/win32/gdkkeys-win32.c (update_keymap): Make dead keys
visible to GDK and GTK. Store the corresponding GDK_dead_* keysym
for those, so that the GtkIMContextCimple compose tables will
work. Deduce if the keyboard layout has the AltGr key, and set the
above flag accordingly.
2003-07-26 01:54:59 +00:00
|
|
|
return;
|
2000-07-25 17:31:05 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("gdk_win32_surface_hide: %p: %s\n",
|
|
|
|
GDK_SURFACE_HWND (window),
|
|
|
|
_gdk_win32_surface_state_to_string (window->state)));
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_IS_MAPPED (window))
|
2018-03-20 11:05:26 +00:00
|
|
|
gdk_synthesize_surface_state (window,
|
gdk/win32/gdkprivate-win32.h New flags _gdk_input_locale_is_ime and
2003-07-25 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkprivate-win32.h
* gdk/win32/gdkglobals-win32.c: New flags _gdk_input_locale_is_ime
and _gdk_keyboard_has_altgr.
* gdk/win32/gdkevents-win32.c: Lots of changes. Most important
ones detailled here.
Code that has been ifdeffed out for a long time removed. Remove
some really old doc comments that were left behind for some public
functions, the official ones are in the X11 backend anyway. Change
GDK_WINDOW_OBJECT() calls to GdkWindowObject casts. Reformat
multi-line boolean expressions to have the operators at ends of
lines.
As mouse capture with SetCapture() indeed seems to work OK, no
need to have the correspoinding macro USE_SETCAPTURE and ifdefs.
Ifdef out the gdk-ping-msg stuff. I don't remember why it was
needed at some time, and things seem to work fine now without
(knock on wood).
Ifdef out the search for some Latin locale keyboard layout being
loaded. Not used currently, but might be needed after all, if we
decide that we want to be able to generate ASCII control character
events with a non-Latin keyboard.
(assign_object): New helper function, handles the g_object_ref()
and unref() calls when assigning GObject pointers.
(generate_crossing_events): Also generate the GDK_NOTIFY_INTERIOR
enter event when the pointer has moved to an ancestor window. Was
left out by mistake.
(gdk_window_is_ancestor): Renamed from gdk_window_is_child().
(gdk_pointer_grab, gdk_pointer_ungrab): Implement the confine_to
functionality, using ClipCursor().
(find_window_for_mouse_event): Splice part of code into new
function find_real_window_for_grabbed_mouse_event().
(fixup_event, append_event, apply_filters): New functions, code
refactored out from elsewhere.
(synthesize_enter_or_leave_event, synthesize_leave_event,
synthesize_enter_event,
synthesize_leave_events,synthesize_enter_events): Also take a
GdkCrossingMode parameter, in preparation to generating
GDK_CROSSING_GRAB and GDK_CROSSING_UNGRAB events.
(fixup_event, append_event, fill_key_event_string): New functions,
code refactoring.
(vk_from_char, build_keypress_event, build_keyrelease_event):
Removed as part of dropping WM_CHAR handling.
(build_key_event_state,gdk_event_translate): Call
GetKeyboardState(), once, for each keyboard message, instead of
several calls to GetKeyState() here and there.
(gdk_event_translate): Fix bugs #104516, #104662, #115902. While
at it, do some major refactoring, and some fixes for potential
problems noticed while going through the code.
Don't handle WM_CHAR at all. Only handle WM_KEYDOWN and
WM_KEYUP. Don't need the state variables related to whether to
wait for WM_CHAR or not, and whether the current key is
AltGr. Remove lots of complexity. Thus don't need the
use_ime_composition flag.
Not handling WM_CHAR means dead key handling will have to be taken
care of by GTK, but that seems to work fine, so no worry.
Another side-effect is that Alt+keypad digits don't work any
longer, but it's better to learn to use GTK's ISO14755 support is
anyway.
Be more careful in checking whether AltGr is involved. Only
attempt to handle it if the keyboard actually has it. And
explicitly check for *left* Control plus *right* Alt being
pressed. Still, allow (left) Alt and/or (right) Control with AltGr
chars.
Handle keys using similar code as in the X11 backend. As we have
built a keymap in gdkkeys-win32.c anyway, use it by calling
gdk_keymap_translate_keyboard_state() to look up the keysym from
the virtual key code and keyboard state. Build the key event
string in exactly the same way as the X11 backend.
If an IME is being used, don't generate GDK events for keys
between receiving WM_IME_STARTCOMPOSITION and
WM_IME_ENDCOMPOSITION, as those keys are for the IME.
For WM_IME_COMPOSITION, handle all the Unicode chars returned from
the IME, not just the first one.
gdk_event_translate() is still quite complex, could split the
message handler cases out into separate functions.
On mouse events, when the mouse is grabbed, use
find_real_window_for_grabbed_mouse_event() in order to be able to
generate correct crossing events.
No longer take a pre-allocated GdkEvent as parameter. Instead,
allocate events as needed and append them to the queue. (This is
different from how gdk_event_translate() in the X11 backend
works.) This change made the code much clearer, especially in the
cases where we have to generate several GDK events for one Windows
message. Return FALSE if DefWindowProc() should be called, TRUE
if not. If DefWindowProc() should not be called, also return the
value to be returned from the window procedure.
(Previously, the interaction with gdk_event_translate()'s caller
was much more complex, when we had to indicate whether the
already-queued event should be left in the queue or removed, and
in addition also had to indicate whether to call DefWindowProc()
or not, and what value to return from the window procedure if
not.)
Don't use a separate "private" variable required to be pointing to
the GdkWindowObject of the "window" variable at all times. Just
use casts, even if looks a bit uglier.
Notice destroyed windows as early as possible, and break out of
the messsage switch.
Use _gdk_pointer_root as current_window when the pointer is
outside GDK's top-level windows.
On WM_INPUTLANGCHANGE, set _gdk_input_locale_is_ime as
appropriate, based on ImmIsIME().
(gdk_event_translate, gdk_event_send_client_message_for_display,
gdk_screen_broadcast_client_message): Implement client messages.
Use a registered Windows message to pass GDK client messages. Note
that the amount of user data is restricted to four bytes, as it is
carried in the LPARAM. (The WPARAM is used for the message type
"atom".)
(real_window_procedure): Adapt for new gdk_event_translate()
interface.
* gdk/win32/gdkmain-win32.c (_gdk_windowing_init): Set
_gdk_input_locale_is_ime initially.
* gdk/win32/gdkwindow-win32.c: Use g_object_ref()/unref() instead
of g_colormap_ref()/unref().
(gdk_window_new): Made code a bit more like the X11 one, pretend
to handle screens (although we just have one for now).
* gdk/x11/gdkevents-x11.c
(gdk_event_send_client_message_for_display,
gdk_screen_broadcast_client_message): Document the user data
limitation on Win32.
* gdk/win32/gdkevents-win32.c (print_event): More complete enter
and leave notify detail output.
* gdk/win32/gdkkeys-win32.c (update_keymap): Make dead keys
visible to GDK and GTK. Store the corresponding GDK_dead_* keysym
for those, so that the GtkIMContextCimple compose tables will
work. Deduce if the keyboard layout has the AltGr key, and set the
above flag accordingly.
2003-07-26 01:54:59 +00:00
|
|
|
0,
|
2018-03-20 10:40:08 +00:00
|
|
|
GDK_SURFACE_STATE_WITHDRAWN);
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
_gdk_surface_clear_update_area (window);
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_TYPE (window) == GDK_SURFACE_TOPLEVEL)
|
|
|
|
ShowOwnedPopups (GDK_SURFACE_HWND (window), FALSE);
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2015-11-21 04:00:33 +00:00
|
|
|
/* Use SetWindowPos to hide transparent windows so automatic redraws
|
|
|
|
* in other windows can be suppressed.
|
|
|
|
*/
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GetWindowLong (GDK_SURFACE_HWND (window), GWL_EXSTYLE) & WS_EX_TRANSPARENT)
|
gdk/win32/gdkprivate-win32.h New flags _gdk_input_locale_is_ime and
2003-07-25 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkprivate-win32.h
* gdk/win32/gdkglobals-win32.c: New flags _gdk_input_locale_is_ime
and _gdk_keyboard_has_altgr.
* gdk/win32/gdkevents-win32.c: Lots of changes. Most important
ones detailled here.
Code that has been ifdeffed out for a long time removed. Remove
some really old doc comments that were left behind for some public
functions, the official ones are in the X11 backend anyway. Change
GDK_WINDOW_OBJECT() calls to GdkWindowObject casts. Reformat
multi-line boolean expressions to have the operators at ends of
lines.
As mouse capture with SetCapture() indeed seems to work OK, no
need to have the correspoinding macro USE_SETCAPTURE and ifdefs.
Ifdef out the gdk-ping-msg stuff. I don't remember why it was
needed at some time, and things seem to work fine now without
(knock on wood).
Ifdef out the search for some Latin locale keyboard layout being
loaded. Not used currently, but might be needed after all, if we
decide that we want to be able to generate ASCII control character
events with a non-Latin keyboard.
(assign_object): New helper function, handles the g_object_ref()
and unref() calls when assigning GObject pointers.
(generate_crossing_events): Also generate the GDK_NOTIFY_INTERIOR
enter event when the pointer has moved to an ancestor window. Was
left out by mistake.
(gdk_window_is_ancestor): Renamed from gdk_window_is_child().
(gdk_pointer_grab, gdk_pointer_ungrab): Implement the confine_to
functionality, using ClipCursor().
(find_window_for_mouse_event): Splice part of code into new
function find_real_window_for_grabbed_mouse_event().
(fixup_event, append_event, apply_filters): New functions, code
refactored out from elsewhere.
(synthesize_enter_or_leave_event, synthesize_leave_event,
synthesize_enter_event,
synthesize_leave_events,synthesize_enter_events): Also take a
GdkCrossingMode parameter, in preparation to generating
GDK_CROSSING_GRAB and GDK_CROSSING_UNGRAB events.
(fixup_event, append_event, fill_key_event_string): New functions,
code refactoring.
(vk_from_char, build_keypress_event, build_keyrelease_event):
Removed as part of dropping WM_CHAR handling.
(build_key_event_state,gdk_event_translate): Call
GetKeyboardState(), once, for each keyboard message, instead of
several calls to GetKeyState() here and there.
(gdk_event_translate): Fix bugs #104516, #104662, #115902. While
at it, do some major refactoring, and some fixes for potential
problems noticed while going through the code.
Don't handle WM_CHAR at all. Only handle WM_KEYDOWN and
WM_KEYUP. Don't need the state variables related to whether to
wait for WM_CHAR or not, and whether the current key is
AltGr. Remove lots of complexity. Thus don't need the
use_ime_composition flag.
Not handling WM_CHAR means dead key handling will have to be taken
care of by GTK, but that seems to work fine, so no worry.
Another side-effect is that Alt+keypad digits don't work any
longer, but it's better to learn to use GTK's ISO14755 support is
anyway.
Be more careful in checking whether AltGr is involved. Only
attempt to handle it if the keyboard actually has it. And
explicitly check for *left* Control plus *right* Alt being
pressed. Still, allow (left) Alt and/or (right) Control with AltGr
chars.
Handle keys using similar code as in the X11 backend. As we have
built a keymap in gdkkeys-win32.c anyway, use it by calling
gdk_keymap_translate_keyboard_state() to look up the keysym from
the virtual key code and keyboard state. Build the key event
string in exactly the same way as the X11 backend.
If an IME is being used, don't generate GDK events for keys
between receiving WM_IME_STARTCOMPOSITION and
WM_IME_ENDCOMPOSITION, as those keys are for the IME.
For WM_IME_COMPOSITION, handle all the Unicode chars returned from
the IME, not just the first one.
gdk_event_translate() is still quite complex, could split the
message handler cases out into separate functions.
On mouse events, when the mouse is grabbed, use
find_real_window_for_grabbed_mouse_event() in order to be able to
generate correct crossing events.
No longer take a pre-allocated GdkEvent as parameter. Instead,
allocate events as needed and append them to the queue. (This is
different from how gdk_event_translate() in the X11 backend
works.) This change made the code much clearer, especially in the
cases where we have to generate several GDK events for one Windows
message. Return FALSE if DefWindowProc() should be called, TRUE
if not. If DefWindowProc() should not be called, also return the
value to be returned from the window procedure.
(Previously, the interaction with gdk_event_translate()'s caller
was much more complex, when we had to indicate whether the
already-queued event should be left in the queue or removed, and
in addition also had to indicate whether to call DefWindowProc()
or not, and what value to return from the window procedure if
not.)
Don't use a separate "private" variable required to be pointing to
the GdkWindowObject of the "window" variable at all times. Just
use casts, even if looks a bit uglier.
Notice destroyed windows as early as possible, and break out of
the messsage switch.
Use _gdk_pointer_root as current_window when the pointer is
outside GDK's top-level windows.
On WM_INPUTLANGCHANGE, set _gdk_input_locale_is_ime as
appropriate, based on ImmIsIME().
(gdk_event_translate, gdk_event_send_client_message_for_display,
gdk_screen_broadcast_client_message): Implement client messages.
Use a registered Windows message to pass GDK client messages. Note
that the amount of user data is restricted to four bytes, as it is
carried in the LPARAM. (The WPARAM is used for the message type
"atom".)
(real_window_procedure): Adapt for new gdk_event_translate()
interface.
* gdk/win32/gdkmain-win32.c (_gdk_windowing_init): Set
_gdk_input_locale_is_ime initially.
* gdk/win32/gdkwindow-win32.c: Use g_object_ref()/unref() instead
of g_colormap_ref()/unref().
(gdk_window_new): Made code a bit more like the X11 one, pretend
to handle screens (although we just have one for now).
* gdk/x11/gdkevents-x11.c
(gdk_event_send_client_message_for_display,
gdk_screen_broadcast_client_message): Document the user data
limitation on Win32.
* gdk/win32/gdkevents-win32.c (print_event): More complete enter
and leave notify detail output.
* gdk/win32/gdkkeys-win32.c (update_keymap): Make dead keys
visible to GDK and GTK. Store the corresponding GDK_dead_* keysym
for those, so that the GtkIMContextCimple compose tables will
work. Deduce if the keyboard layout has the AltGr key, and set the
above flag accordingly.
2003-07-26 01:54:59 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
SetWindowPos (GDK_SURFACE_HWND (window), SWP_NOZORDER_SPECIFIED,
|
2005-03-16 01:38:57 +00:00
|
|
|
0, 0, 0, 0,
|
2004-03-10 22:20:36 +00:00
|
|
|
SWP_HIDEWINDOW | SWP_NOREDRAW | SWP_NOZORDER | SWP_NOMOVE | SWP_NOSIZE);
|
gdk/win32/gdkprivate-win32.h New flags _gdk_input_locale_is_ime and
2003-07-25 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkprivate-win32.h
* gdk/win32/gdkglobals-win32.c: New flags _gdk_input_locale_is_ime
and _gdk_keyboard_has_altgr.
* gdk/win32/gdkevents-win32.c: Lots of changes. Most important
ones detailled here.
Code that has been ifdeffed out for a long time removed. Remove
some really old doc comments that were left behind for some public
functions, the official ones are in the X11 backend anyway. Change
GDK_WINDOW_OBJECT() calls to GdkWindowObject casts. Reformat
multi-line boolean expressions to have the operators at ends of
lines.
As mouse capture with SetCapture() indeed seems to work OK, no
need to have the correspoinding macro USE_SETCAPTURE and ifdefs.
Ifdef out the gdk-ping-msg stuff. I don't remember why it was
needed at some time, and things seem to work fine now without
(knock on wood).
Ifdef out the search for some Latin locale keyboard layout being
loaded. Not used currently, but might be needed after all, if we
decide that we want to be able to generate ASCII control character
events with a non-Latin keyboard.
(assign_object): New helper function, handles the g_object_ref()
and unref() calls when assigning GObject pointers.
(generate_crossing_events): Also generate the GDK_NOTIFY_INTERIOR
enter event when the pointer has moved to an ancestor window. Was
left out by mistake.
(gdk_window_is_ancestor): Renamed from gdk_window_is_child().
(gdk_pointer_grab, gdk_pointer_ungrab): Implement the confine_to
functionality, using ClipCursor().
(find_window_for_mouse_event): Splice part of code into new
function find_real_window_for_grabbed_mouse_event().
(fixup_event, append_event, apply_filters): New functions, code
refactored out from elsewhere.
(synthesize_enter_or_leave_event, synthesize_leave_event,
synthesize_enter_event,
synthesize_leave_events,synthesize_enter_events): Also take a
GdkCrossingMode parameter, in preparation to generating
GDK_CROSSING_GRAB and GDK_CROSSING_UNGRAB events.
(fixup_event, append_event, fill_key_event_string): New functions,
code refactoring.
(vk_from_char, build_keypress_event, build_keyrelease_event):
Removed as part of dropping WM_CHAR handling.
(build_key_event_state,gdk_event_translate): Call
GetKeyboardState(), once, for each keyboard message, instead of
several calls to GetKeyState() here and there.
(gdk_event_translate): Fix bugs #104516, #104662, #115902. While
at it, do some major refactoring, and some fixes for potential
problems noticed while going through the code.
Don't handle WM_CHAR at all. Only handle WM_KEYDOWN and
WM_KEYUP. Don't need the state variables related to whether to
wait for WM_CHAR or not, and whether the current key is
AltGr. Remove lots of complexity. Thus don't need the
use_ime_composition flag.
Not handling WM_CHAR means dead key handling will have to be taken
care of by GTK, but that seems to work fine, so no worry.
Another side-effect is that Alt+keypad digits don't work any
longer, but it's better to learn to use GTK's ISO14755 support is
anyway.
Be more careful in checking whether AltGr is involved. Only
attempt to handle it if the keyboard actually has it. And
explicitly check for *left* Control plus *right* Alt being
pressed. Still, allow (left) Alt and/or (right) Control with AltGr
chars.
Handle keys using similar code as in the X11 backend. As we have
built a keymap in gdkkeys-win32.c anyway, use it by calling
gdk_keymap_translate_keyboard_state() to look up the keysym from
the virtual key code and keyboard state. Build the key event
string in exactly the same way as the X11 backend.
If an IME is being used, don't generate GDK events for keys
between receiving WM_IME_STARTCOMPOSITION and
WM_IME_ENDCOMPOSITION, as those keys are for the IME.
For WM_IME_COMPOSITION, handle all the Unicode chars returned from
the IME, not just the first one.
gdk_event_translate() is still quite complex, could split the
message handler cases out into separate functions.
On mouse events, when the mouse is grabbed, use
find_real_window_for_grabbed_mouse_event() in order to be able to
generate correct crossing events.
No longer take a pre-allocated GdkEvent as parameter. Instead,
allocate events as needed and append them to the queue. (This is
different from how gdk_event_translate() in the X11 backend
works.) This change made the code much clearer, especially in the
cases where we have to generate several GDK events for one Windows
message. Return FALSE if DefWindowProc() should be called, TRUE
if not. If DefWindowProc() should not be called, also return the
value to be returned from the window procedure.
(Previously, the interaction with gdk_event_translate()'s caller
was much more complex, when we had to indicate whether the
already-queued event should be left in the queue or removed, and
in addition also had to indicate whether to call DefWindowProc()
or not, and what value to return from the window procedure if
not.)
Don't use a separate "private" variable required to be pointing to
the GdkWindowObject of the "window" variable at all times. Just
use casts, even if looks a bit uglier.
Notice destroyed windows as early as possible, and break out of
the messsage switch.
Use _gdk_pointer_root as current_window when the pointer is
outside GDK's top-level windows.
On WM_INPUTLANGCHANGE, set _gdk_input_locale_is_ime as
appropriate, based on ImmIsIME().
(gdk_event_translate, gdk_event_send_client_message_for_display,
gdk_screen_broadcast_client_message): Implement client messages.
Use a registered Windows message to pass GDK client messages. Note
that the amount of user data is restricted to four bytes, as it is
carried in the LPARAM. (The WPARAM is used for the message type
"atom".)
(real_window_procedure): Adapt for new gdk_event_translate()
interface.
* gdk/win32/gdkmain-win32.c (_gdk_windowing_init): Set
_gdk_input_locale_is_ime initially.
* gdk/win32/gdkwindow-win32.c: Use g_object_ref()/unref() instead
of g_colormap_ref()/unref().
(gdk_window_new): Made code a bit more like the X11 one, pretend
to handle screens (although we just have one for now).
* gdk/x11/gdkevents-x11.c
(gdk_event_send_client_message_for_display,
gdk_screen_broadcast_client_message): Document the user data
limitation on Win32.
* gdk/win32/gdkevents-win32.c (print_event): More complete enter
and leave notify detail output.
* gdk/win32/gdkkeys-win32.c (update_keymap): Make dead keys
visible to GDK and GTK. Store the corresponding GDK_dead_* keysym
for those, so that the GtkIMContextCimple compose tables will
work. Deduce if the keyboard layout has the AltGr key, and set the
above flag accordingly.
2003-07-26 01:54:59 +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
|
|
|
GtkShowWindow (window, SW_HIDE);
|
1999-11-11 22:12:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-07-02 13:58:28 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_withdraw (GdkSurface *window)
|
1999-11-11 22:12:27 +00:00
|
|
|
{
|
2011-01-02 10:51:25 +00:00
|
|
|
if (window->destroyed)
|
gdk/win32/gdkprivate-win32.h New flags _gdk_input_locale_is_ime and
2003-07-25 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkprivate-win32.h
* gdk/win32/gdkglobals-win32.c: New flags _gdk_input_locale_is_ime
and _gdk_keyboard_has_altgr.
* gdk/win32/gdkevents-win32.c: Lots of changes. Most important
ones detailled here.
Code that has been ifdeffed out for a long time removed. Remove
some really old doc comments that were left behind for some public
functions, the official ones are in the X11 backend anyway. Change
GDK_WINDOW_OBJECT() calls to GdkWindowObject casts. Reformat
multi-line boolean expressions to have the operators at ends of
lines.
As mouse capture with SetCapture() indeed seems to work OK, no
need to have the correspoinding macro USE_SETCAPTURE and ifdefs.
Ifdef out the gdk-ping-msg stuff. I don't remember why it was
needed at some time, and things seem to work fine now without
(knock on wood).
Ifdef out the search for some Latin locale keyboard layout being
loaded. Not used currently, but might be needed after all, if we
decide that we want to be able to generate ASCII control character
events with a non-Latin keyboard.
(assign_object): New helper function, handles the g_object_ref()
and unref() calls when assigning GObject pointers.
(generate_crossing_events): Also generate the GDK_NOTIFY_INTERIOR
enter event when the pointer has moved to an ancestor window. Was
left out by mistake.
(gdk_window_is_ancestor): Renamed from gdk_window_is_child().
(gdk_pointer_grab, gdk_pointer_ungrab): Implement the confine_to
functionality, using ClipCursor().
(find_window_for_mouse_event): Splice part of code into new
function find_real_window_for_grabbed_mouse_event().
(fixup_event, append_event, apply_filters): New functions, code
refactored out from elsewhere.
(synthesize_enter_or_leave_event, synthesize_leave_event,
synthesize_enter_event,
synthesize_leave_events,synthesize_enter_events): Also take a
GdkCrossingMode parameter, in preparation to generating
GDK_CROSSING_GRAB and GDK_CROSSING_UNGRAB events.
(fixup_event, append_event, fill_key_event_string): New functions,
code refactoring.
(vk_from_char, build_keypress_event, build_keyrelease_event):
Removed as part of dropping WM_CHAR handling.
(build_key_event_state,gdk_event_translate): Call
GetKeyboardState(), once, for each keyboard message, instead of
several calls to GetKeyState() here and there.
(gdk_event_translate): Fix bugs #104516, #104662, #115902. While
at it, do some major refactoring, and some fixes for potential
problems noticed while going through the code.
Don't handle WM_CHAR at all. Only handle WM_KEYDOWN and
WM_KEYUP. Don't need the state variables related to whether to
wait for WM_CHAR or not, and whether the current key is
AltGr. Remove lots of complexity. Thus don't need the
use_ime_composition flag.
Not handling WM_CHAR means dead key handling will have to be taken
care of by GTK, but that seems to work fine, so no worry.
Another side-effect is that Alt+keypad digits don't work any
longer, but it's better to learn to use GTK's ISO14755 support is
anyway.
Be more careful in checking whether AltGr is involved. Only
attempt to handle it if the keyboard actually has it. And
explicitly check for *left* Control plus *right* Alt being
pressed. Still, allow (left) Alt and/or (right) Control with AltGr
chars.
Handle keys using similar code as in the X11 backend. As we have
built a keymap in gdkkeys-win32.c anyway, use it by calling
gdk_keymap_translate_keyboard_state() to look up the keysym from
the virtual key code and keyboard state. Build the key event
string in exactly the same way as the X11 backend.
If an IME is being used, don't generate GDK events for keys
between receiving WM_IME_STARTCOMPOSITION and
WM_IME_ENDCOMPOSITION, as those keys are for the IME.
For WM_IME_COMPOSITION, handle all the Unicode chars returned from
the IME, not just the first one.
gdk_event_translate() is still quite complex, could split the
message handler cases out into separate functions.
On mouse events, when the mouse is grabbed, use
find_real_window_for_grabbed_mouse_event() in order to be able to
generate correct crossing events.
No longer take a pre-allocated GdkEvent as parameter. Instead,
allocate events as needed and append them to the queue. (This is
different from how gdk_event_translate() in the X11 backend
works.) This change made the code much clearer, especially in the
cases where we have to generate several GDK events for one Windows
message. Return FALSE if DefWindowProc() should be called, TRUE
if not. If DefWindowProc() should not be called, also return the
value to be returned from the window procedure.
(Previously, the interaction with gdk_event_translate()'s caller
was much more complex, when we had to indicate whether the
already-queued event should be left in the queue or removed, and
in addition also had to indicate whether to call DefWindowProc()
or not, and what value to return from the window procedure if
not.)
Don't use a separate "private" variable required to be pointing to
the GdkWindowObject of the "window" variable at all times. Just
use casts, even if looks a bit uglier.
Notice destroyed windows as early as possible, and break out of
the messsage switch.
Use _gdk_pointer_root as current_window when the pointer is
outside GDK's top-level windows.
On WM_INPUTLANGCHANGE, set _gdk_input_locale_is_ime as
appropriate, based on ImmIsIME().
(gdk_event_translate, gdk_event_send_client_message_for_display,
gdk_screen_broadcast_client_message): Implement client messages.
Use a registered Windows message to pass GDK client messages. Note
that the amount of user data is restricted to four bytes, as it is
carried in the LPARAM. (The WPARAM is used for the message type
"atom".)
(real_window_procedure): Adapt for new gdk_event_translate()
interface.
* gdk/win32/gdkmain-win32.c (_gdk_windowing_init): Set
_gdk_input_locale_is_ime initially.
* gdk/win32/gdkwindow-win32.c: Use g_object_ref()/unref() instead
of g_colormap_ref()/unref().
(gdk_window_new): Made code a bit more like the X11 one, pretend
to handle screens (although we just have one for now).
* gdk/x11/gdkevents-x11.c
(gdk_event_send_client_message_for_display,
gdk_screen_broadcast_client_message): Document the user data
limitation on Win32.
* gdk/win32/gdkevents-win32.c (print_event): More complete enter
and leave notify detail output.
* gdk/win32/gdkkeys-win32.c (update_keymap): Make dead keys
visible to GDK and GTK. Store the corresponding GDK_dead_* keysym
for those, so that the GtkIMContextCimple compose tables will
work. Deduce if the keyboard layout has the AltGr key, and set the
above flag accordingly.
2003-07-26 01:54:59 +00:00
|
|
|
return;
|
1999-11-11 22:12:27 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("gdk_win32_surface_withdraw: %p: %s\n",
|
|
|
|
GDK_SURFACE_HWND (window),
|
|
|
|
_gdk_win32_surface_state_to_string (window->state)));
|
2011-01-02 10:51:25 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_surface_hide (window); /* ??? */
|
1999-11-11 22:12:27 +00:00
|
|
|
}
|
|
|
|
|
2008-07-02 13:58:28 +00:00
|
|
|
static void
|
2019-07-15 09:32:35 +00:00
|
|
|
gdk_win32_surface_do_move (GdkSurface *window,
|
|
|
|
gint x, gint y)
|
2008-07-02 20:22:30 +00:00
|
|
|
{
|
2019-05-28 17:25:45 +00:00
|
|
|
RECT outer_rect;
|
|
|
|
GdkWin32Surface *impl;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (window));
|
2008-07-02 20:22:30 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (window))
|
2008-07-02 20:22:30 +00:00
|
|
|
return;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("gdk_win32_surface_move: %p: %+d%+d\n",
|
|
|
|
GDK_SURFACE_HWND (window), x, y));
|
2008-07-02 20:22:30 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (window->state & GDK_SURFACE_STATE_FULLSCREEN)
|
2011-10-27 08:42:07 +00:00
|
|
|
return;
|
2008-07-02 20:22:30 +00:00
|
|
|
|
2019-05-28 17:25:45 +00:00
|
|
|
impl = GDK_WIN32_SURFACE (window);
|
|
|
|
get_outer_rect (window, window->width, window->height, &outer_rect);
|
2008-07-02 20:22:30 +00:00
|
|
|
|
2019-05-28 17:25:45 +00:00
|
|
|
adjust_for_gravity_hints (window, &outer_rect, &x, &y);
|
2008-07-02 20:22:30 +00:00
|
|
|
|
2019-05-28 17:25:45 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("... SetWindowPos(%p,NULL,%d,%d,0,0,"
|
|
|
|
"NOACTIVATE|NOSIZE|NOZORDER)\n",
|
|
|
|
GDK_SURFACE_HWND (window),
|
|
|
|
(x - _gdk_offset_x) * impl->surface_scale,
|
|
|
|
(y - _gdk_offset_y) * impl->surface_scale));
|
|
|
|
|
|
|
|
API_CALL (SetWindowPos, (GDK_SURFACE_HWND (window),
|
|
|
|
SWP_NOZORDER_SPECIFIED,
|
|
|
|
(x - _gdk_offset_x) * impl->surface_scale,
|
|
|
|
(y - _gdk_offset_y) * impl->surface_scale,
|
|
|
|
0, 0,
|
|
|
|
SWP_NOACTIVATE | SWP_NOSIZE | SWP_NOZORDER));
|
2008-07-02 20:22:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_resize (GdkSurface *window,
|
2008-07-02 20:22:30 +00:00
|
|
|
gint width, gint height)
|
1999-11-11 22:12:27 +00:00
|
|
|
{
|
2019-05-28 17:25:45 +00:00
|
|
|
RECT outer_rect;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (window));
|
2008-07-02 20:22:30 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (window))
|
2008-07-02 20:22:30 +00:00
|
|
|
return;
|
|
|
|
|
2000-07-25 17:31:05 +00:00
|
|
|
if (width < 1)
|
1999-11-11 22:12:27 +00:00
|
|
|
width = 1;
|
2000-07-25 17:31:05 +00:00
|
|
|
if (height < 1)
|
1999-11-11 22:12:27 +00:00
|
|
|
height = 1;
|
2008-07-02 20:22:30 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("gdk_win32_surface_resize: %p: %dx%d\n",
|
|
|
|
GDK_SURFACE_HWND (window), width, height));
|
2008-07-02 20:22:30 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (window->state & GDK_SURFACE_STATE_FULLSCREEN)
|
2011-10-27 08:42:07 +00:00
|
|
|
return;
|
2008-07-02 20:22:30 +00:00
|
|
|
|
2019-05-28 17:25:45 +00:00
|
|
|
get_outer_rect (window, width, height, &outer_rect);
|
2008-07-02 20:22:30 +00:00
|
|
|
|
2019-05-28 17:25:45 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("... SetWindowPos(%p,NULL,0,0,%ld,%ld,"
|
|
|
|
"NOACTIVATE|NOMOVE|NOZORDER)\n",
|
|
|
|
GDK_SURFACE_HWND (window),
|
|
|
|
outer_rect.right - outer_rect.left,
|
|
|
|
outer_rect.bottom - outer_rect.top));
|
|
|
|
|
|
|
|
API_CALL (SetWindowPos, (GDK_SURFACE_HWND (window),
|
|
|
|
SWP_NOZORDER_SPECIFIED,
|
|
|
|
0, 0,
|
|
|
|
outer_rect.right - outer_rect.left,
|
|
|
|
outer_rect.bottom - outer_rect.top,
|
|
|
|
SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOZORDER));
|
|
|
|
window->resize_count += 1;
|
2008-07-02 20:22:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2019-07-15 13:47:12 +00:00
|
|
|
gdk_win32_surface_do_move_resize (GdkSurface *window,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height)
|
2008-07-02 20:22:30 +00:00
|
|
|
{
|
2019-05-28 17:25:45 +00:00
|
|
|
RECT outer_rect;
|
|
|
|
GdkWin32Surface *impl;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (window));
|
2008-07-02 20:22:30 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (window))
|
2008-07-02 20:22:30 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (width < 1)
|
|
|
|
width = 1;
|
|
|
|
if (height < 1)
|
|
|
|
height = 1;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (window->state & GDK_SURFACE_STATE_FULLSCREEN)
|
2011-10-27 08:42:07 +00:00
|
|
|
return;
|
2003-08-05 22:24:35 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("gdk_win32_surface_move_resize: %p: %dx%d@%+d%+d\n",
|
|
|
|
GDK_SURFACE_HWND (window),
|
2008-07-02 20:22:30 +00:00
|
|
|
width, height, x, y));
|
|
|
|
|
2019-05-28 17:25:45 +00:00
|
|
|
impl = GDK_WIN32_SURFACE (window);
|
Fix for #108007, #112402, #117042: There was confusion in gdk/win32 at
2003-07-29 Tor Lillqvist <tml@iki.fi>
Fix for #108007, #112402, #117042: There was confusion in
gdk/win32 at various places whether a window position refers to
the decoration position or the client area position. Also whether
window size includes decorations or not.
The correct interpretation apparently is that in GDK (like in
X11), a top-level window position means the decoration's position,
but size means the window's inner size (client area size). In the
Win32 API, the window size usually includes the decorations,
though.
* gdk/win32/gdkevents-win32.c (decode_key_lparam): Move inside
#ifdef G_ENABLE_DEBUG.
(handle_configure_event): New function, generates GDK_CONFIGURE
events from WM_SIZE and WM_MOVE messages. Even if no event is
generated because of the event mask, still set the private
position and size fields. Calculate position and size correctly.
(gdk_event_translate): Call handle_configure_event().
* gdk/win32/gdkgeometry-win32.c: Cosmetics.
* gdk/win32/gdkwindow-win32.c: Use GDI_CALL() and API_CALL()
macros. Cosmetic debugging output changes.
(SafeAdjustWindowRectEx): Remove. If an application wants to
locate a window outside of the screen, it's not GDK's business to
prevent it. And anyway, with multiple monitors, negative
coordinates are perfectly normal.
(gdk_window_new): Adjust the window size for decorations after
_gdk_window_init_position() has done its job. (But the big window
code currently is presumably broken on Win32 anyway.)
(gdk_window_move): The position passed in is supposed to be that
of the window border, so don't need to adjust for decorations.
(gdk_window_resize, gdk_window_move_resize): Simplify somewhat.
2003-07-29 23:35:40 +00:00
|
|
|
|
2019-05-28 17:25:45 +00:00
|
|
|
get_outer_rect (window, width, height, &outer_rect);
|
Fix for #108007, #112402, #117042: There was confusion in gdk/win32 at
2003-07-29 Tor Lillqvist <tml@iki.fi>
Fix for #108007, #112402, #117042: There was confusion in
gdk/win32 at various places whether a window position refers to
the decoration position or the client area position. Also whether
window size includes decorations or not.
The correct interpretation apparently is that in GDK (like in
X11), a top-level window position means the decoration's position,
but size means the window's inner size (client area size). In the
Win32 API, the window size usually includes the decorations,
though.
* gdk/win32/gdkevents-win32.c (decode_key_lparam): Move inside
#ifdef G_ENABLE_DEBUG.
(handle_configure_event): New function, generates GDK_CONFIGURE
events from WM_SIZE and WM_MOVE messages. Even if no event is
generated because of the event mask, still set the private
position and size fields. Calculate position and size correctly.
(gdk_event_translate): Call handle_configure_event().
* gdk/win32/gdkgeometry-win32.c: Cosmetics.
* gdk/win32/gdkwindow-win32.c: Use GDI_CALL() and API_CALL()
macros. Cosmetic debugging output changes.
(SafeAdjustWindowRectEx): Remove. If an application wants to
locate a window outside of the screen, it's not GDK's business to
prevent it. And anyway, with multiple monitors, negative
coordinates are perfectly normal.
(gdk_window_new): Adjust the window size for decorations after
_gdk_window_init_position() has done its job. (But the big window
code currently is presumably broken on Win32 anyway.)
(gdk_window_move): The position passed in is supposed to be that
of the window border, so don't need to adjust for decorations.
(gdk_window_resize, gdk_window_move_resize): Simplify somewhat.
2003-07-29 23:35:40 +00:00
|
|
|
|
2019-05-28 17:25:45 +00:00
|
|
|
adjust_for_gravity_hints (window, &outer_rect, &x, &y);
|
2008-07-02 06:06:29 +00:00
|
|
|
|
2019-05-28 17:25:45 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("... SetWindowPos(%p,NULL,%d,%d,%ld,%ld,"
|
|
|
|
"NOACTIVATE|NOZORDER)\n",
|
|
|
|
GDK_SURFACE_HWND (window),
|
|
|
|
(x - _gdk_offset_x) * impl->surface_scale,
|
|
|
|
(y - _gdk_offset_y) * impl->surface_scale,
|
|
|
|
outer_rect.right - outer_rect.left,
|
|
|
|
outer_rect.bottom - outer_rect.top));
|
|
|
|
|
|
|
|
API_CALL (SetWindowPos, (GDK_SURFACE_HWND (window),
|
|
|
|
SWP_NOZORDER_SPECIFIED,
|
|
|
|
(x - _gdk_offset_x) * impl->surface_scale,
|
|
|
|
(y - _gdk_offset_y) * impl->surface_scale,
|
|
|
|
outer_rect.right - outer_rect.left,
|
|
|
|
outer_rect.bottom - outer_rect.top,
|
|
|
|
SWP_NOACTIVATE | SWP_NOZORDER));
|
2008-07-02 20:22:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2019-07-15 13:47:12 +00:00
|
|
|
gdk_win32_surface_move_resize_internal (GdkSurface *window,
|
|
|
|
gboolean with_move,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height)
|
2008-07-02 20:22:30 +00:00
|
|
|
{
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *surface = GDK_WIN32_SURFACE (window);
|
2011-10-27 08:42:07 +00:00
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
surface->inhibit_configure = TRUE;
|
2011-10-27 08:42:07 +00:00
|
|
|
|
2015-04-29 07:31:08 +00:00
|
|
|
/* We ignore changes to the window being moved or resized by the
|
2011-10-25 14:13:47 +00:00
|
|
|
user, as we don't want to fight the user */
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_HWND (window) == _modal_move_resize_window)
|
2011-10-27 08:42:07 +00:00
|
|
|
goto out;
|
2011-10-25 14:13:47 +00:00
|
|
|
|
2008-07-02 20:22:30 +00:00
|
|
|
if (with_move && (width < 0 && height < 0))
|
|
|
|
{
|
2019-07-15 09:32:35 +00:00
|
|
|
gdk_win32_surface_do_move (window, x, y);
|
2008-07-02 20:22:30 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (with_move)
|
|
|
|
{
|
2019-07-15 13:47:12 +00:00
|
|
|
gdk_win32_surface_do_move_resize (window, x, y, width, height);
|
2008-07-02 20:22:30 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_resize (window, width, height);
|
2008-07-02 20:22:30 +00:00
|
|
|
}
|
1999-11-11 22:12:27 +00:00
|
|
|
}
|
2011-10-27 08:42:07 +00:00
|
|
|
|
|
|
|
out:
|
2019-05-19 03:09:05 +00:00
|
|
|
surface->inhibit_configure = FALSE;
|
2011-10-27 08:42:07 +00:00
|
|
|
|
2018-06-25 22:47:40 +00:00
|
|
|
_gdk_win32_emit_configure_event (window);
|
1999-11-11 22:12:27 +00:00
|
|
|
}
|
|
|
|
|
2019-07-15 13:47:12 +00:00
|
|
|
void
|
|
|
|
gdk_win32_surface_move_resize (GdkSurface *window,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height)
|
|
|
|
{
|
|
|
|
gdk_win32_surface_move_resize_internal (window, TRUE, x, y, width, height);
|
|
|
|
}
|
|
|
|
|
2019-07-15 08:54:44 +00:00
|
|
|
static void
|
|
|
|
gdk_win32_surface_toplevel_resize (GdkSurface *surface,
|
|
|
|
gint width,
|
|
|
|
gint height)
|
|
|
|
{
|
2019-07-15 13:47:12 +00:00
|
|
|
gdk_win32_surface_move_resize_internal (surface, FALSE, 0, 0, width, height);
|
2019-07-15 08:54:44 +00:00
|
|
|
}
|
|
|
|
|
2019-07-15 09:32:35 +00:00
|
|
|
void
|
|
|
|
gdk_win32_surface_move (GdkSurface *surface,
|
|
|
|
gint x,
|
|
|
|
gint y)
|
|
|
|
{
|
2019-07-15 13:47:12 +00:00
|
|
|
gdk_win32_surface_move_resize_internal (surface, TRUE, x, y, -1, -1);
|
2019-07-15 09:32:35 +00:00
|
|
|
}
|
|
|
|
|
2019-07-15 09:35:24 +00:00
|
|
|
static void
|
2020-02-16 11:59:24 +00:00
|
|
|
gdk_win32_surface_layout_popup (GdkSurface *surface,
|
|
|
|
int width,
|
|
|
|
int height,
|
|
|
|
GdkPopupLayout *layout)
|
2019-07-15 09:35:24 +00:00
|
|
|
{
|
2020-02-16 11:59:24 +00:00
|
|
|
GdkRectangle final_rect;
|
2019-07-15 09:35:24 +00:00
|
|
|
int x, y;
|
|
|
|
|
2020-02-16 11:59:24 +00:00
|
|
|
gdk_surface_layout_popup_helper (surface,
|
|
|
|
width,
|
|
|
|
height,
|
|
|
|
layout,
|
|
|
|
&final_rect);
|
2019-07-15 09:35:24 +00:00
|
|
|
|
2020-02-16 11:59:24 +00:00
|
|
|
gdk_surface_get_origin (surface->parent, &x, &y);
|
2019-07-15 09:35:24 +00:00
|
|
|
x += final_rect.x;
|
|
|
|
y += final_rect.y;
|
|
|
|
|
|
|
|
if (final_rect.width != surface->width ||
|
|
|
|
final_rect.height != surface->height)
|
|
|
|
{
|
|
|
|
gdk_win32_surface_move_resize (surface,
|
2020-02-16 11:59:24 +00:00
|
|
|
x,
|
|
|
|
y,
|
|
|
|
final_rect.width,
|
|
|
|
final_rect.height);
|
2019-07-15 09:35:24 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gdk_win32_surface_move (surface, x, y);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2020-02-16 11:59:24 +00:00
|
|
|
show_popup (GdkSurface *surface)
|
|
|
|
{
|
|
|
|
gdk_surface_raise (surface);
|
|
|
|
gdk_synthesize_surface_state (surface, GDK_SURFACE_STATE_WITHDRAWN, 0);
|
|
|
|
_gdk_surface_update_viewable (surface);
|
|
|
|
show_window_internal (surface, FALSE, FALSE);
|
|
|
|
gdk_surface_invalidate_rect (surface, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
show_grabbing_popup (GdkSeat *seat,
|
|
|
|
GdkSurface *surface,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
show_popup (surface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gdk_win32_surface_present_popup (GdkSurface *surface,
|
|
|
|
int width,
|
|
|
|
int height,
|
|
|
|
GdkPopupLayout *layout)
|
2019-07-15 09:35:24 +00:00
|
|
|
{
|
2020-02-16 11:59:24 +00:00
|
|
|
gdk_win32_surface_layout_popup (surface, width, height, layout);
|
|
|
|
|
|
|
|
if (GDK_SURFACE_IS_MAPPED (surface))
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
if (surface->autohide)
|
|
|
|
{
|
|
|
|
gdk_seat_grab (gdk_display_get_default_seat (surface->display),
|
|
|
|
surface,
|
|
|
|
GDK_SEAT_CAPABILITY_ALL,
|
|
|
|
TRUE,
|
|
|
|
NULL, NULL,
|
|
|
|
show_grabbing_popup, NULL);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
show_popup (surface);
|
|
|
|
}
|
|
|
|
|
|
|
|
return GDK_SURFACE_IS_MAPPED (surface);
|
2019-07-15 09:35:24 +00:00
|
|
|
}
|
|
|
|
|
2008-07-02 13:58:28 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_raise (GdkSurface *window)
|
1999-11-11 22:12:27 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
if (!GDK_SURFACE_DESTROYED (window))
|
1999-11-11 22:12:27 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("gdk_win32_surface_raise: %p\n",
|
|
|
|
GDK_SURFACE_HWND (window)));
|
1999-11-11 22:12:27 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_TYPE (window) == GDK_SURFACE_TEMP)
|
|
|
|
API_CALL (SetWindowPos, (GDK_SURFACE_HWND (window), HWND_TOPMOST,
|
2006-02-09 03:20:56 +00:00
|
|
|
0, 0, 0, 0,
|
2017-09-20 17:21:44 +00:00
|
|
|
SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOSIZE | SWP_NOOWNERZORDER));
|
2011-01-02 10:51:25 +00:00
|
|
|
else if (window->accept_focus)
|
2012-01-25 12:02:21 +00:00
|
|
|
/* Do not wrap this in an API_CALL macro as SetForegroundWindow might
|
|
|
|
* fail when for example dragging a window belonging to a different
|
|
|
|
* application at the time of a gtk_window_present() call due to focus
|
|
|
|
* stealing prevention. */
|
2018-03-20 10:40:08 +00:00
|
|
|
SetForegroundWindow (GDK_SURFACE_HWND (window));
|
2006-02-09 03:20:56 +00:00
|
|
|
else
|
2018-03-20 10:40:08 +00:00
|
|
|
API_CALL (SetWindowPos, (GDK_SURFACE_HWND (window), HWND_TOP,
|
2006-02-09 03:20:56 +00:00
|
|
|
0, 0, 0, 0,
|
2018-06-17 10:58:16 +00:00
|
|
|
SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOSIZE | SWP_NOOWNERZORDER));
|
1999-11-11 22:12:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-07-02 13:58:28 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_lower (GdkSurface *window)
|
1999-11-11 22:12:27 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
if (!GDK_SURFACE_DESTROYED (window))
|
1999-11-11 22:12:27 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("gdk_win32_surface_lower: %p\n"
|
2005-03-16 01:38:57 +00:00
|
|
|
"... SetWindowPos(%p,HWND_BOTTOM,0,0,0,0,"
|
|
|
|
"NOACTIVATE|NOMOVE|NOSIZE)\n",
|
2018-03-20 10:40:08 +00:00
|
|
|
GDK_SURFACE_HWND (window),
|
|
|
|
GDK_SURFACE_HWND (window)));
|
1999-11-11 22:12:27 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
API_CALL (SetWindowPos, (GDK_SURFACE_HWND (window), HWND_BOTTOM,
|
2005-03-16 01:38:57 +00:00
|
|
|
0, 0, 0, 0,
|
2018-06-17 10:58:16 +00:00
|
|
|
SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOSIZE | SWP_NOOWNERZORDER));
|
1999-11-11 22:12:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-20 01:13:41 +00:00
|
|
|
void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_set_urgency_hint (GdkSurface *window,
|
2019-04-20 01:13:41 +00:00
|
|
|
gboolean urgent)
|
2005-07-03 15:47:42 +00:00
|
|
|
{
|
2005-08-01 07:19:15 +00:00
|
|
|
FLASHWINFO flashwinfo;
|
2012-11-23 20:38:34 +00:00
|
|
|
typedef BOOL (WINAPI *PFN_FlashWindowEx) (FLASHWINFO*);
|
2005-09-18 12:28:42 +00:00
|
|
|
PFN_FlashWindowEx flashWindowEx = NULL;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (window));
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (window))
|
2005-09-18 12:28:42 +00:00
|
|
|
return;
|
|
|
|
|
2005-11-28 08:40:56 +00:00
|
|
|
flashWindowEx = (PFN_FlashWindowEx) GetProcAddress (GetModuleHandle ("user32.dll"), "FlashWindowEx");
|
|
|
|
|
|
|
|
if (flashWindowEx)
|
2005-09-18 12:28:42 +00:00
|
|
|
{
|
2005-11-28 08:40:56 +00:00
|
|
|
flashwinfo.cbSize = sizeof (flashwinfo);
|
2018-03-20 10:40:08 +00:00
|
|
|
flashwinfo.hwnd = GDK_SURFACE_HWND (window);
|
2005-11-28 08:40:56 +00:00
|
|
|
if (urgent)
|
|
|
|
flashwinfo.dwFlags = FLASHW_ALL | FLASHW_TIMER;
|
|
|
|
else
|
|
|
|
flashwinfo.dwFlags = FLASHW_STOP;
|
|
|
|
flashwinfo.uCount = 0;
|
|
|
|
flashwinfo.dwTimeout = 0;
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2005-11-28 08:40:56 +00:00
|
|
|
flashWindowEx (&flashwinfo);
|
2005-09-18 12:28:42 +00:00
|
|
|
}
|
|
|
|
else
|
2005-11-28 08:40:56 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
FlashWindow (GDK_SURFACE_HWND (window), urgent);
|
2005-11-28 08:40:56 +00:00
|
|
|
}
|
2005-07-03 15:47:42 +00:00
|
|
|
}
|
|
|
|
|
2006-02-09 02:58:45 +00:00
|
|
|
static gboolean
|
2018-03-20 10:40:08 +00:00
|
|
|
get_effective_window_decorations (GdkSurface *window,
|
2006-02-09 02:58:45 +00:00
|
|
|
GdkWMDecoration *decoration)
|
2005-11-27 02:58:09 +00:00
|
|
|
{
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl = GDK_WIN32_SURFACE (window);
|
2005-11-27 02:58:09 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (gdk_surface_get_decorations (window, decoration))
|
2006-02-09 02:58:45 +00:00
|
|
|
return TRUE;
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2018-03-20 11:05:26 +00:00
|
|
|
if (window->surface_type != GDK_SURFACE_TOPLEVEL)
|
2008-02-05 16:47:24 +00:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
2005-11-27 02:58:09 +00:00
|
|
|
|
|
|
|
if ((impl->hint_flags & GDK_HINT_MIN_SIZE) &&
|
|
|
|
(impl->hint_flags & GDK_HINT_MAX_SIZE) &&
|
|
|
|
impl->hints.min_width == impl->hints.max_width &&
|
|
|
|
impl->hints.min_height == impl->hints.max_height)
|
|
|
|
{
|
2006-02-09 02:58:45 +00:00
|
|
|
*decoration = GDK_DECOR_ALL | GDK_DECOR_RESIZEH | GDK_DECOR_MAXIMIZE;
|
2008-02-05 16:47:24 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (impl->type_hint == GDK_SURFACE_TYPE_HINT_DIALOG ||
|
|
|
|
impl->type_hint == GDK_SURFACE_TYPE_HINT_MENU ||
|
|
|
|
impl->type_hint == GDK_SURFACE_TYPE_HINT_TOOLBAR)
|
2008-02-05 16:47:24 +00:00
|
|
|
{
|
|
|
|
*decoration |= GDK_DECOR_MINIMIZE;
|
|
|
|
}
|
2018-03-20 10:40:08 +00:00
|
|
|
else if (impl->type_hint == GDK_SURFACE_TYPE_HINT_SPLASHSCREEN)
|
2008-02-05 16:47:24 +00:00
|
|
|
{
|
|
|
|
*decoration |= GDK_DECOR_MENU | GDK_DECOR_MINIMIZE;
|
|
|
|
}
|
2005-11-27 02:58:09 +00:00
|
|
|
|
2006-02-09 02:58:45 +00:00
|
|
|
return TRUE;
|
2005-11-27 02:58:09 +00:00
|
|
|
}
|
|
|
|
else if (impl->hint_flags & GDK_HINT_MAX_SIZE)
|
|
|
|
{
|
2006-02-09 02:58:45 +00:00
|
|
|
*decoration = GDK_DECOR_ALL | GDK_DECOR_MAXIMIZE;
|
2018-03-20 10:40:08 +00:00
|
|
|
if (impl->type_hint == GDK_SURFACE_TYPE_HINT_DIALOG ||
|
|
|
|
impl->type_hint == GDK_SURFACE_TYPE_HINT_MENU ||
|
|
|
|
impl->type_hint == GDK_SURFACE_TYPE_HINT_TOOLBAR)
|
2008-02-05 16:47:24 +00:00
|
|
|
{
|
|
|
|
*decoration |= GDK_DECOR_MINIMIZE;
|
|
|
|
}
|
|
|
|
|
2006-02-09 02:58:45 +00:00
|
|
|
return TRUE;
|
2005-11-27 02:58:09 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
switch (impl->type_hint)
|
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_TYPE_HINT_DIALOG:
|
2006-02-09 02:58:45 +00:00
|
|
|
*decoration = (GDK_DECOR_ALL | GDK_DECOR_MINIMIZE | GDK_DECOR_MAXIMIZE);
|
|
|
|
return TRUE;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_TYPE_HINT_MENU:
|
2006-02-09 02:58:45 +00:00
|
|
|
*decoration = (GDK_DECOR_ALL | GDK_DECOR_RESIZEH | GDK_DECOR_MINIMIZE | GDK_DECOR_MAXIMIZE);
|
|
|
|
return TRUE;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_TYPE_HINT_TOOLBAR:
|
|
|
|
case GDK_SURFACE_TYPE_HINT_UTILITY:
|
2008-10-05 00:00:10 +00:00
|
|
|
*decoration = (GDK_DECOR_ALL | GDK_DECOR_MINIMIZE | GDK_DECOR_MAXIMIZE);
|
2006-02-09 02:58:45 +00:00
|
|
|
return TRUE;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_TYPE_HINT_SPLASHSCREEN:
|
2008-10-05 00:00:10 +00:00
|
|
|
*decoration = (GDK_DECOR_ALL | GDK_DECOR_RESIZEH | GDK_DECOR_MENU |
|
|
|
|
GDK_DECOR_MINIMIZE | GDK_DECOR_MAXIMIZE);
|
2006-02-09 02:58:45 +00:00
|
|
|
return TRUE;
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_TYPE_HINT_DOCK:
|
2006-02-09 02:58:45 +00:00
|
|
|
return FALSE;
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_TYPE_HINT_DESKTOP:
|
2006-02-09 02:58:45 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2005-11-27 02:58:09 +00:00
|
|
|
default:
|
|
|
|
/* Fall thru */
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_TYPE_HINT_NORMAL:
|
2006-02-09 02:58:45 +00:00
|
|
|
*decoration = GDK_DECOR_ALL;
|
|
|
|
return TRUE;
|
2005-11-27 02:58:09 +00:00
|
|
|
}
|
|
|
|
}
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2006-02-09 02:58:45 +00:00
|
|
|
return FALSE;
|
2005-11-27 02:58:09 +00:00
|
|
|
}
|
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_set_geometry_hints (GdkSurface *window,
|
2008-01-15 15:32:37 +00:00
|
|
|
const GdkGeometry *geometry,
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurfaceHints geom_mask)
|
1999-11-11 22:12:27 +00:00
|
|
|
{
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl = GDK_WIN32_SURFACE (window);
|
2011-10-26 10:43:24 +00:00
|
|
|
FullscreenInfo *fi;
|
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
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (window));
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (window))
|
1999-11-11 22:12:27 +00:00
|
|
|
return;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("gdk_surface_set_geometry_hints: %p\n",
|
|
|
|
GDK_SURFACE_HWND (window)));
|
Fix for #108007, #112402, #117042: There was confusion in gdk/win32 at
2003-07-29 Tor Lillqvist <tml@iki.fi>
Fix for #108007, #112402, #117042: There was confusion in
gdk/win32 at various places whether a window position refers to
the decoration position or the client area position. Also whether
window size includes decorations or not.
The correct interpretation apparently is that in GDK (like in
X11), a top-level window position means the decoration's position,
but size means the window's inner size (client area size). In the
Win32 API, the window size usually includes the decorations,
though.
* gdk/win32/gdkevents-win32.c (decode_key_lparam): Move inside
#ifdef G_ENABLE_DEBUG.
(handle_configure_event): New function, generates GDK_CONFIGURE
events from WM_SIZE and WM_MOVE messages. Even if no event is
generated because of the event mask, still set the private
position and size fields. Calculate position and size correctly.
(gdk_event_translate): Call handle_configure_event().
* gdk/win32/gdkgeometry-win32.c: Cosmetics.
* gdk/win32/gdkwindow-win32.c: Use GDI_CALL() and API_CALL()
macros. Cosmetic debugging output changes.
(SafeAdjustWindowRectEx): Remove. If an application wants to
locate a window outside of the screen, it's not GDK's business to
prevent it. And anyway, with multiple monitors, negative
coordinates are perfectly normal.
(gdk_window_new): Adjust the window size for decorations after
_gdk_window_init_position() has done its job. (But the big window
code currently is presumably broken on Win32 anyway.)
(gdk_window_move): The position passed in is supposed to be that
of the window border, so don't need to adjust for decorations.
(gdk_window_resize, gdk_window_move_resize): Simplify somewhat.
2003-07-29 23:35:40 +00:00
|
|
|
|
2011-10-26 10:43:24 +00:00
|
|
|
fi = g_object_get_data (G_OBJECT (window), "fullscreen-info");
|
|
|
|
if (fi)
|
|
|
|
fi->hint_flags = geom_mask;
|
|
|
|
else
|
|
|
|
impl->hint_flags = geom_mask;
|
2003-08-02 02:05:12 +00:00
|
|
|
impl->hints = *geometry;
|
1999-11-11 22:12:27 +00:00
|
|
|
|
|
|
|
if (geom_mask & GDK_HINT_POS)
|
2016-02-06 01:14:37 +00:00
|
|
|
{
|
|
|
|
/* even the X11 mplementation doesn't care */
|
|
|
|
}
|
1999-11-11 22:12:27 +00:00
|
|
|
|
|
|
|
if (geom_mask & GDK_HINT_MIN_SIZE)
|
|
|
|
{
|
Fix for #108007, #112402, #117042: There was confusion in gdk/win32 at
2003-07-29 Tor Lillqvist <tml@iki.fi>
Fix for #108007, #112402, #117042: There was confusion in
gdk/win32 at various places whether a window position refers to
the decoration position or the client area position. Also whether
window size includes decorations or not.
The correct interpretation apparently is that in GDK (like in
X11), a top-level window position means the decoration's position,
but size means the window's inner size (client area size). In the
Win32 API, the window size usually includes the decorations,
though.
* gdk/win32/gdkevents-win32.c (decode_key_lparam): Move inside
#ifdef G_ENABLE_DEBUG.
(handle_configure_event): New function, generates GDK_CONFIGURE
events from WM_SIZE and WM_MOVE messages. Even if no event is
generated because of the event mask, still set the private
position and size fields. Calculate position and size correctly.
(gdk_event_translate): Call handle_configure_event().
* gdk/win32/gdkgeometry-win32.c: Cosmetics.
* gdk/win32/gdkwindow-win32.c: Use GDI_CALL() and API_CALL()
macros. Cosmetic debugging output changes.
(SafeAdjustWindowRectEx): Remove. If an application wants to
locate a window outside of the screen, it's not GDK's business to
prevent it. And anyway, with multiple monitors, negative
coordinates are perfectly normal.
(gdk_window_new): Adjust the window size for decorations after
_gdk_window_init_position() has done its job. (But the big window
code currently is presumably broken on Win32 anyway.)
(gdk_window_move): The position passed in is supposed to be that
of the window border, so don't need to adjust for decorations.
(gdk_window_resize, gdk_window_move_resize): Simplify somewhat.
2003-07-29 23:35:40 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("... MIN_SIZE: %dx%d\n",
|
|
|
|
geometry->min_width, geometry->min_height));
|
1999-11-11 22:12:27 +00:00
|
|
|
}
|
2015-04-29 07:31:08 +00:00
|
|
|
|
1999-11-11 22:12:27 +00:00
|
|
|
if (geom_mask & GDK_HINT_MAX_SIZE)
|
|
|
|
{
|
Fix for #108007, #112402, #117042: There was confusion in gdk/win32 at
2003-07-29 Tor Lillqvist <tml@iki.fi>
Fix for #108007, #112402, #117042: There was confusion in
gdk/win32 at various places whether a window position refers to
the decoration position or the client area position. Also whether
window size includes decorations or not.
The correct interpretation apparently is that in GDK (like in
X11), a top-level window position means the decoration's position,
but size means the window's inner size (client area size). In the
Win32 API, the window size usually includes the decorations,
though.
* gdk/win32/gdkevents-win32.c (decode_key_lparam): Move inside
#ifdef G_ENABLE_DEBUG.
(handle_configure_event): New function, generates GDK_CONFIGURE
events from WM_SIZE and WM_MOVE messages. Even if no event is
generated because of the event mask, still set the private
position and size fields. Calculate position and size correctly.
(gdk_event_translate): Call handle_configure_event().
* gdk/win32/gdkgeometry-win32.c: Cosmetics.
* gdk/win32/gdkwindow-win32.c: Use GDI_CALL() and API_CALL()
macros. Cosmetic debugging output changes.
(SafeAdjustWindowRectEx): Remove. If an application wants to
locate a window outside of the screen, it's not GDK's business to
prevent it. And anyway, with multiple monitors, negative
coordinates are perfectly normal.
(gdk_window_new): Adjust the window size for decorations after
_gdk_window_init_position() has done its job. (But the big window
code currently is presumably broken on Win32 anyway.)
(gdk_window_move): The position passed in is supposed to be that
of the window border, so don't need to adjust for decorations.
(gdk_window_resize, gdk_window_move_resize): Simplify somewhat.
2003-07-29 23:35:40 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("... MAX_SIZE: %dx%d\n",
|
|
|
|
geometry->max_width, geometry->max_height));
|
1999-11-11 22:12:27 +00:00
|
|
|
}
|
2001-11-09 21:52:52 +00:00
|
|
|
|
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
|
|
|
if (geom_mask & GDK_HINT_BASE_SIZE)
|
2000-11-11 18:39:57 +00:00
|
|
|
{
|
Fix for #108007, #112402, #117042: There was confusion in gdk/win32 at
2003-07-29 Tor Lillqvist <tml@iki.fi>
Fix for #108007, #112402, #117042: There was confusion in
gdk/win32 at various places whether a window position refers to
the decoration position or the client area position. Also whether
window size includes decorations or not.
The correct interpretation apparently is that in GDK (like in
X11), a top-level window position means the decoration's position,
but size means the window's inner size (client area size). In the
Win32 API, the window size usually includes the decorations,
though.
* gdk/win32/gdkevents-win32.c (decode_key_lparam): Move inside
#ifdef G_ENABLE_DEBUG.
(handle_configure_event): New function, generates GDK_CONFIGURE
events from WM_SIZE and WM_MOVE messages. Even if no event is
generated because of the event mask, still set the private
position and size fields. Calculate position and size correctly.
(gdk_event_translate): Call handle_configure_event().
* gdk/win32/gdkgeometry-win32.c: Cosmetics.
* gdk/win32/gdkwindow-win32.c: Use GDI_CALL() and API_CALL()
macros. Cosmetic debugging output changes.
(SafeAdjustWindowRectEx): Remove. If an application wants to
locate a window outside of the screen, it's not GDK's business to
prevent it. And anyway, with multiple monitors, negative
coordinates are perfectly normal.
(gdk_window_new): Adjust the window size for decorations after
_gdk_window_init_position() has done its job. (But the big window
code currently is presumably broken on Win32 anyway.)
(gdk_window_move): The position passed in is supposed to be that
of the window border, so don't need to adjust for decorations.
(gdk_window_resize, gdk_window_move_resize): Simplify somewhat.
2003-07-29 23:35:40 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("... BASE_SIZE: %dx%d\n",
|
|
|
|
geometry->base_width, geometry->base_height));
|
2000-11-11 18:39:57 +00:00
|
|
|
}
|
2015-04-29 07:31:08 +00:00
|
|
|
|
1999-11-11 22:12:27 +00:00
|
|
|
if (geom_mask & GDK_HINT_RESIZE_INC)
|
|
|
|
{
|
2003-08-02 02:05:12 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("... RESIZE_INC: (%d,%d)\n",
|
|
|
|
geometry->width_inc, geometry->height_inc));
|
1999-11-11 22:12:27 +00:00
|
|
|
}
|
2015-04-29 07:31:08 +00:00
|
|
|
|
1999-11-11 22:12:27 +00:00
|
|
|
if (geom_mask & GDK_HINT_ASPECT)
|
|
|
|
{
|
2003-08-02 02:05:12 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("... ASPECT: %g--%g\n",
|
|
|
|
geometry->min_aspect, geometry->max_aspect));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (geom_mask & GDK_HINT_WIN_GRAVITY)
|
|
|
|
{
|
|
|
|
GDK_NOTE (MISC, g_print ("... GRAVITY: %d\n", geometry->win_gravity));
|
1999-11-11 22:12:27 +00:00
|
|
|
}
|
2005-11-27 02:58:09 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
_gdk_win32_surface_update_style_bits (window);
|
1999-11-11 22:12:27 +00:00
|
|
|
}
|
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_set_title (GdkSurface *window,
|
1999-11-11 22:12:27 +00:00
|
|
|
const gchar *title)
|
|
|
|
{
|
2006-08-30 00:39:01 +00:00
|
|
|
wchar_t *wtitle;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (window));
|
Large changes to the Win32 backend, partially made necessary by the
2000-05-02 Tor Lillqvist <tml@iki.fi>
Large changes to the Win32 backend, partially made necessary by
the changes to the backend-independent internal
structures. Attempts to implement similar backing store stuff as
on X11. The current (CVS) version of the Win32 backend is *not* as
stable as it was before the no-flicker branch was merged. A
zipfile with that version is available from
http://www.gimp.org/win32/. That should be use by "production"
code until this CVS version is usable. (But note, the Win32
backend has never been claimed to be "production quality".)
* README.win32: Add the above comment about versions.
* gdk/gdkwindow.c: Don't use backing store for now on Win32.
* gdk/gdk.def: Update.
* gdk/gdkfont.h: Declare temporary Win32-only functions. Will
presumably be replaced by some more better mechanism as 1.4 gets
closer to release shape.
* gdk/makefile.{cygwin,msc}: Update.
* gdk/win32/*.c: Correct inclusions of the backend-specific and
internal headers. Change code according to changes in these. Use
gdk_drawable_*, not gdk_window_* where necessary.
* gdk/win32/gdkdnd-win32.c: Use MISC selector for GDK_NOTE, not
our old DND.
* gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_text): Don't try
to interpret single characters as UTF-8. Thanks to Hans Breuer.
Use correct function name in warning messages.
* gdk/win32/gdkevents-win32.c: Use correct parameter lists for the
GSourceFuncs gdk_event_prepare and gdk_event_check.
(gdk_event_get_graphics_expose): Do implement, use
PeekMessage. Thanks to Hans Breuer.
(event_mask_string): Debugging function to print an GdkEventMask.
(gdk_pointer_grab): Use it.
* gdk/win32/gdkfont-win32.c: The Unicode subrange that the
(old) book I used claimed was Hangul actually is CJK Unified
Ideographs Extension A. Also, Hangul Syllables were missing.
Improve logging.
* gdk/win32/gdkgc-win32.c: Largish changes.
* gdk/win32/gdkim-win32.c (gdk_set_locale): Use
g_win32_getlocale() from GLib, and not setlocale() to get current
locale name.
* gdk/win32/gdkprivate-win32.h
* gdk/win32/gdkwin32.h: Move stuff from gdkprivate-win32.h to
gdkwin32.h, similarily as in the X11 backend.
* gdk/win32/gdkwindow-win32.c (gdk_propagate_shapes): Bugfix,
assignment was used instead of equals in if test. Thanks to Hans
Breuer.
* gdk/win32/makefile.{cygwin,msc}
* gtk/makefile.{cygwin,msc}: Updates. Better kludge to get the
path to the Win32 headers that works also with the mingw compiler.
* gtk/gtkstyle.c: Include <string.h>.
2000-05-01 22:06:49 +00:00
|
|
|
g_return_if_fail (title != NULL);
|
2000-10-22 17:16:42 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (window))
|
2005-07-21 07:29:36 +00:00
|
|
|
return;
|
|
|
|
|
2000-10-22 17:16:42 +00:00
|
|
|
/* Empty window titles not allowed, so set it to just a period. */
|
|
|
|
if (!title[0])
|
|
|
|
title = ".";
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("gdk_surface_set_title: %p: %s\n",
|
|
|
|
GDK_SURFACE_HWND (window), title));
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
GDK_NOTE (MISC_OR_EVENTS, title = g_strdup_printf ("%p %s", GDK_SURFACE_HWND (window), title));
|
2008-10-05 00:00:10 +00:00
|
|
|
|
2006-08-30 00:39:01 +00:00
|
|
|
wtitle = g_utf8_to_utf16 (title, -1, NULL, NULL, NULL);
|
2018-03-20 10:40:08 +00:00
|
|
|
API_CALL (SetWindowTextW, (GDK_SURFACE_HWND (window), wtitle));
|
2006-08-30 00:39:01 +00:00
|
|
|
g_free (wtitle);
|
2008-10-05 00:00:10 +00:00
|
|
|
|
|
|
|
GDK_NOTE (MISC_OR_EVENTS, g_free ((char *) title));
|
1999-11-11 22:12:27 +00:00
|
|
|
}
|
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_set_transient_for (GdkSurface *window,
|
|
|
|
GdkSurface *parent)
|
1999-11-11 22:12:27 +00:00
|
|
|
{
|
2001-08-04 13:17:33 +00:00
|
|
|
HWND window_id, parent_id;
|
2014-08-02 15:48:03 +00:00
|
|
|
LONG_PTR old_ptr;
|
|
|
|
DWORD w32_error;
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *surface = GDK_WIN32_SURFACE (window);
|
|
|
|
GdkWin32Surface *parent_impl = NULL;
|
2007-10-18 00:31:22 +00:00
|
|
|
GSList *item;
|
2001-08-04 13:17:33 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (window));
|
2001-08-04 13:17:33 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
window_id = GDK_SURFACE_HWND (window);
|
|
|
|
parent_id = parent != NULL ? GDK_SURFACE_HWND (parent) : NULL;
|
2007-07-12 23:38:30 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("gdk_surface_set_transient_for: %p: %p\n", window_id, parent_id));
|
2008-10-05 00:00:10 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (window) || (parent && GDK_SURFACE_DESTROYED (parent)))
|
2007-07-12 23:38:30 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (window))
|
2007-07-12 23:38:30 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("... destroyed!\n"));
|
|
|
|
else
|
|
|
|
GDK_NOTE (MISC, g_print ("... owner destroyed!\n"));
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2001-08-04 13:17:33 +00:00
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
if (surface->transient_owner == parent)
|
2018-07-31 08:50:06 +00:00
|
|
|
return;
|
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
if (GDK_IS_SURFACE (surface->transient_owner))
|
2007-10-18 00:31:22 +00:00
|
|
|
{
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *trans_impl = GDK_WIN32_SURFACE (surface->transient_owner);
|
2018-07-31 08:50:06 +00:00
|
|
|
item = g_slist_find (trans_impl->transient_children, window);
|
|
|
|
item->data = NULL;
|
|
|
|
trans_impl->transient_children = g_slist_delete_link (trans_impl->transient_children, item);
|
|
|
|
trans_impl->num_transients--;
|
2007-10-18 00:31:22 +00:00
|
|
|
|
2018-07-31 08:50:06 +00:00
|
|
|
if (!trans_impl->num_transients)
|
|
|
|
{
|
|
|
|
trans_impl->transient_children = NULL;
|
2007-10-18 00:31:22 +00:00
|
|
|
}
|
2018-07-31 08:50:06 +00:00
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
g_object_unref (G_OBJECT (surface->transient_owner));
|
2008-01-10 20:58:40 +00:00
|
|
|
g_object_unref (G_OBJECT (window));
|
2007-10-18 00:31:22 +00:00
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
surface->transient_owner = NULL;
|
2007-10-18 00:31:22 +00:00
|
|
|
}
|
2018-07-31 08:50:06 +00:00
|
|
|
|
|
|
|
if (parent)
|
2007-10-18 00:31:22 +00:00
|
|
|
{
|
2019-05-19 03:09:05 +00:00
|
|
|
parent_impl = GDK_WIN32_SURFACE (parent);
|
2007-10-18 00:31:22 +00:00
|
|
|
|
|
|
|
parent_impl->transient_children = g_slist_append (parent_impl->transient_children, window);
|
2008-01-10 20:58:40 +00:00
|
|
|
g_object_ref (G_OBJECT (window));
|
2007-10-18 00:31:22 +00:00
|
|
|
parent_impl->num_transients++;
|
2019-05-19 03:09:05 +00:00
|
|
|
surface->transient_owner = parent;
|
2008-01-10 20:58:40 +00:00
|
|
|
g_object_ref (G_OBJECT (parent));
|
2007-10-18 00:31:22 +00:00
|
|
|
}
|
2001-08-04 13:17:33 +00:00
|
|
|
|
2014-08-02 15:48:03 +00:00
|
|
|
SetLastError (0);
|
|
|
|
old_ptr = GetWindowLongPtr (window_id, GWLP_HWNDPARENT);
|
|
|
|
w32_error = GetLastError ();
|
|
|
|
|
|
|
|
/* Don't re-set GWLP_HWNDPARENT to the same value */
|
2014-08-06 05:06:35 +00:00
|
|
|
if ((HWND) old_ptr == parent_id && w32_error == NO_ERROR)
|
2014-08-02 15:48:03 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
/* Don't return if it failed, try SetWindowLongPtr() anyway */
|
|
|
|
if (old_ptr == 0 && w32_error != NO_ERROR)
|
|
|
|
WIN32_API_FAILED ("GetWindowLongPtr");
|
|
|
|
|
Merge from stable:
2002-12-09 Tor Lillqvist <tml@iki.fi>
Merge from stable:
* gdk/win32/gdkdrawable-win32.c (generic_draw): Don't leak
stipple_gc. More checks for errors. Use correct ternary ROP when
blitting the foreground into the tile pixmap onto those pixels
where the stipple is set. (I didn't notice that I had used the
wrong one, as it didn't matter on Win2k, where DIB sections
apparently are zeroed upon creation. But on Win98 they have random
initial contents. Thanks to Hans Breuer for reporting this.)
(gdk_win32_draw_rectangle, gdk_win32_draw_arc,
gdk_win32_draw_polygon): Don't pass the LINE_ATTRIBUTES bits to
generic_draw() if drawing a filled figure.
* gdk/win32/gdkmain-win32.c (_gdk_win32_print_dc): Minor cosmetics.
(_gdk_win32_gcvalues_mask_to_string): Initialize buffer as empty.
(_gdk_win32_window_state_to_string): New debugging output helper
function.
* gdk/win32/gdkevents-win32.c: Minor debugging output changes.
(gdk_event_translate): Ignore the WM_SHOWWINDOW/SW_OTHERUNZOOM or
SW_OTHERZOOM messages. Do not generate a GDK_UNMAP event for
WM_SIZE/SIZE_MINIMIZED messages, they do not really corrspond to
unmapping on X11. Set window state correctly for all three of
SIZE_{MINIMIZED,MAXIMIZED,RESTORED}. A maximized and then iconified
("minimized" in Windows terminology) window still has the
"maximized" property, i.e. when deiconified, it will reappear as
maximized. (#10557)
* gdk/win32/gdkprivate-win32.h: Declare new function.
(WIN32_API_FAILED, WIN32_GDI_FAILED, OTHER_API_FAILED): Don't use
__PRETTY_FUNCTION__ if __GNUC__ >= 3, to avoid warning message.
* gdk/win32/gdkwindow-win32.c (show_window_internal): Handle more
situations. Add parameter to tell whether deiconifying. Code
reorg: Return early when appropriate instead of using nested if
statements. If just deiconifying without raising, restore active
window. (#10557)
(gdk_window_hide, gdk_window_withdraw, gdk_window_iconify,
gdk_window_deiconify, gdk_window_maximize, gdk_window_unmaximize,
gdk_window_focus): Use _gdk_win32_window_state_to_string() in
debugging output.
(gdk_window_iconify): Restore active window after calling
ShowWindow(). Otherwise the "next" window gets activated.
(gdk_window_stick, gdk_window_unstick): Don't output any warnings.
(gdk_window_set_transient_for): Rewrite. Just call SetWindowLong()
with GWL_HWNDPARENT, which despite its name sets the *owner*
window, which should be exactly what we want. The PSDK
documentation is said to be misleading. testgtk's modal window
test now works much better. (#50586)
2002-12-09 00:43:42 +00:00
|
|
|
/* This changes the *owner* of the window, despite the misleading
|
|
|
|
* name. (Owner and parent are unrelated concepts.) At least that's
|
|
|
|
* what people who seem to know what they talk about say on
|
|
|
|
* USENET. Search on Google.
|
|
|
|
*/
|
|
|
|
SetLastError (0);
|
2014-08-02 15:48:03 +00:00
|
|
|
old_ptr = SetWindowLongPtr (window_id, GWLP_HWNDPARENT, (LONG_PTR) parent_id);
|
|
|
|
w32_error = GetLastError ();
|
|
|
|
|
|
|
|
if (old_ptr == 0 && w32_error != NO_ERROR)
|
2008-08-04 23:21:36 +00:00
|
|
|
WIN32_API_FAILED ("SetWindowLongPtr");
|
1999-11-11 22:12:27 +00:00
|
|
|
}
|
|
|
|
|
2008-02-05 16:47:24 +00:00
|
|
|
void
|
2018-03-20 10:40:08 +00:00
|
|
|
_gdk_push_modal_window (GdkSurface *window)
|
2008-02-05 16:47:24 +00:00
|
|
|
{
|
2019-05-19 03:09:05 +00:00
|
|
|
modal_window_stack = g_slist_prepend (modal_window_stack, window);
|
2008-02-05 16:47:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2018-03-20 10:40:08 +00:00
|
|
|
_gdk_remove_modal_window (GdkSurface *window)
|
2008-02-05 16:47:24 +00:00
|
|
|
{
|
2008-02-07 19:25:07 +00:00
|
|
|
GSList *tmp;
|
|
|
|
|
2008-02-05 16:47:24 +00:00
|
|
|
g_return_if_fail (window != NULL);
|
|
|
|
|
|
|
|
/* It's possible to be NULL here if someone sets the modal hint of the window
|
|
|
|
* to FALSE before a modal window stack has ever been created. */
|
|
|
|
if (modal_window_stack == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Find the requested window in the stack and remove it. Yeah, I realize this
|
|
|
|
* means we're not a 'real stack', strictly speaking. Sue me. :) */
|
2008-02-07 19:25:07 +00:00
|
|
|
tmp = g_slist_find (modal_window_stack, window);
|
2008-02-05 16:47:24 +00:00
|
|
|
if (tmp != NULL)
|
|
|
|
{
|
|
|
|
modal_window_stack = g_slist_delete_link (modal_window_stack, tmp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-27 20:13:54 +00:00
|
|
|
gboolean
|
2018-03-20 10:40:08 +00:00
|
|
|
_gdk_modal_blocked (GdkSurface *window)
|
2008-02-05 16:47:24 +00:00
|
|
|
{
|
2011-10-27 20:13:54 +00:00
|
|
|
GSList *l;
|
|
|
|
gboolean found_any = FALSE;
|
|
|
|
|
|
|
|
for (l = modal_window_stack; l != NULL; l = l->next)
|
2008-02-05 23:46:35 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurface *modal = l->data;
|
2008-02-05 23:46:35 +00:00
|
|
|
|
2011-10-27 20:13:54 +00:00
|
|
|
if (modal == window)
|
|
|
|
return FALSE;
|
2008-02-05 23:46:35 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_IS_MAPPED (modal))
|
2011-10-27 20:13:54 +00:00
|
|
|
found_any = TRUE;
|
2008-02-05 23:46:35 +00:00
|
|
|
}
|
2011-10-27 20:13:54 +00:00
|
|
|
|
|
|
|
return found_any;
|
|
|
|
}
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurface *
|
2011-10-27 20:13:54 +00:00
|
|
|
_gdk_modal_current (void)
|
|
|
|
{
|
|
|
|
GSList *l;
|
|
|
|
|
|
|
|
for (l = modal_window_stack; l != NULL; l = l->next)
|
2008-02-05 23:46:35 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurface *modal = l->data;
|
2011-10-27 20:13:54 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_IS_MAPPED (modal))
|
2011-10-27 20:13:54 +00:00
|
|
|
return modal;
|
2008-02-05 23:46:35 +00:00
|
|
|
}
|
2011-10-27 20:13:54 +00:00
|
|
|
|
|
|
|
return NULL;
|
2008-02-05 16:47:24 +00:00
|
|
|
}
|
|
|
|
|
2008-07-02 13:58:28 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_get_geometry (GdkSurface *window,
|
2008-07-02 06:06:29 +00:00
|
|
|
gint *x,
|
|
|
|
gint *y,
|
|
|
|
gint *width,
|
2010-12-05 13:40:35 +00:00
|
|
|
gint *height)
|
1999-11-11 22:12:27 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
if (!GDK_SURFACE_DESTROYED (window))
|
1999-11-11 22:12:27 +00:00
|
|
|
{
|
|
|
|
RECT rect;
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl = GDK_WIN32_SURFACE (window);
|
1999-11-11 22:12:27 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
API_CALL (GetClientRect, (GDK_SURFACE_HWND (window), &rect));
|
1999-11-11 22:12:27 +00:00
|
|
|
|
gdk/win32/gdkprivate-win32.h Rename all global variables and functions to
2002-11-12 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkprivate-win32.h
* gdk/win32/*.c: Rename all global variables and functions to
start with underscore.
Merge from stable:
More work on the Win32 backend. The cause of some scrolling
problems was that SetWindowPos() and ScrollWindowEx() don't blit
those parts of the window they think are invalid. As we didn't
keep Windows's update region in synch with GDK's, Windows thought
those areas that in fact had been updated were invalid. Calling
ValidateRgn() in _gdk_windowing_window_queue_antiexpose() seems to
be an elegant and efficient solution, removing from Windows's
update region those areas we are about to repaint proactively.
In some cases garbage leftover values were used for the clip
origin in GdkGCWin32. This showed up as odd blank areas around the
pixmaps included in the Text Widget in gtk-demo.
Having the clip region either as a GdkRegion or a HRGN in
GdkGCWin32 was unnecessary, it's better to just use a HRGN.
The translation and antiexpose queue handling in
gdkgeometry-win32.c seems unnecessary (and not implementable in
the same way as on X11 anyway, no serial numbers) on Windows,
ifdeffed out.
Don't (try to) do guffaw scrolling as there is no static window
gravity on Windows. Guffaw scrolling would be unnecessary anyway,
as there is the ScrollWindow() API. This improves the behaviour of
the Text Widget demo in gtk-demo a lot. But I have no idea how the
lack of static win gravity should be handled in other places where
the X11 code uses it. Especially _gdk_window_move_resize_child().
There is still some problem in expose handling. By moving an
obscuring window back and forth over testgtk's main window, for
instance, every now and then you typically get narrow vertical or
horizontal strips of pixels that haven't been properly redrawn
after being exposed. A fencepost error somewhere?
Otherwise, all of testgtk and gtk-demo except "big windows" now
seem to work pretty well.
Bug #79720 should be fixed now.
* gdk/win32/gdkcolor-win32.c (gdk_win32_color_to_string,
gdk_win32_print_paletteentries, gdk_win32_print_system_palette,
gdk_win32_print_hpalette)
* gdk/win32/gdkdrawable-win32.c (gdk_win32_drawable_description)
* gdk/win32/gdkevents-win32.c (gdk_win32_message_name):
Move all debugging helper functions to gdkmain-win32.c.
* gdk/win32/gdkdrawable-win32.c (_gdk_win32_draw_tiles):
Rewrite. Make static. Must take tile origin parameters, too.
(gdk_win32_draw_rectangle): Pass the tile/stipple origin to
_gdk_win32_draw_tiles(). Remove #if 0 code.
(blit_inside_window): Don't call ScrollDC(), that didn't work at
all like I thought. A simple call to BitBlt() is enough.
* gdk/win32/gdkevents-win32.c (gdk_event_translate) Remove unused
latin_locale_loaded variable.
(_gdk_win32_get_next_tick): New function. Used to make sure
timestamps of events are always increasing, both in events
generated from the window procedure and in events gotten via
PeekMessage(). Not sure whether this is actually useful, but it
seemed as a good idea.
(real_window_procedure): Don't use a local GdkEventPrivate
variable. Don't attempt any compression of configure or expose
events here, handled elsewhere.
(erase_background): Accumulate window offsets when traversing up
the parent chain for GDK_PARENT_RELATIVE_BG, in order to get
correct alignment of background pixmaps. Don't fill with
BLACK_BRUSH if GDK_NO_BG.
(gdk_event_get_graphics_expose): A bit more verbose debugging output.
(gdk_event_translate): Use _gdk_win32_get_next_tick(). In the
WM_PAINT handler, don't check for empty update rect. When we get a
WM_PAINT, the update region isn't empty. And if it for some
strange reason is, that will be handled later anyway. Call
GetUpdateRgn() before calling BeginPaint() and EndPaint() (which
empty the update region).
* gdk/win32/gdkdnd-win32.c
* gdk/win32/gdkinput-win32.c:
Use _gdk_win32_get_next_tick().
* gdk/win32/gdkfont-win32.c: Use %p to print HFONTs.
(gdk_text_size): Remove, unused.
* gdk/win32/gdkgc-win32.c: Set clip origins to zero
when appropriate.
(gdk_gc_copy): Increase refcount on colormap if present.
(gdk_win32_hdc_get): Handle just hcliprgn. If we have a stipple,
combine it with clip region after selecting into the DC.
(_gdk_win32_bitmap_to_hrgn): Rename from _gdk_win32_bitmap_to_region.
(_gdk_win3_gdkregion_to_hrgn): New function, code snippet
extracted from gdk_win32_hdc_get().
* gdk/win32/gdkgeometry-win32.c: Ifdef out the translate_queue
handling.
(gdk_window_copy_area_scroll): Increase clipRect to avoid
ScrollWindowEx() not scrolling pixels it thinks are invalid.
Scroll also children with the ScrollWindowEx() call. No need to
call gdk_window_move() on the children.
(gdk_window_scroll): Don't do guffaw scrolling.
(gdk_window_compute_position): Fix typo, used win32_y where x was
intended.
(gdk_window_premove, gdk_window_postmove,
gdk_window_clip_changed): Add debugging output.
(_gdk_windowing_window_queue_antiexpose): Just call ValidateRgn()
on the region.
(_gdk_window_process_expose): No use for the serial number
parameter now. Instead of a rectangle, take a region parameter, as
Windows gives us one in WM_PAINT.
* gdk/win32/gdkmain-win32.c (_gdk_win32_lbstyle_to_string,
_gdk_win32_pstype_to_string, _gdk_win32_psstyle_to_string,
_gdk_win32_psendcap_to_string, _gdk_win32_psjoin_to_string,
_gdk_win32_rect_to_string, _gdk_win32_gdkrectangle_to_string,
_gdk_win32_gdkregion_to_string): New debugging functions.
(static_printf): Helper function for the above. sprintfs into a
static circular buffer, return value should be used "soon".
* gdk/win32/gdkwindow-win32.c (gdk_propagate_shapes): Plug memory
leak, free list after use.
(gdk_window_gravity_works): Remove, we know that there is no such
thing on Windows.
(gdk_window_set_static_bit_gravity,
gdk_window_set_static_win_gravity): Ditto, remove, they didn't do
anything anyway.
(_gdk_windowing_window_init, gdk_window_foreign_new): Call
_gdk_window_init_position() like in the X11 backend.
(gdk_window_reparent): Don't call the now nonexistent
gdk_window_set_static_win_gravity(). No idea what should be done
instead.
(gdk_window_get_geometry): The returned x and y should be relative
to parent. Used to be always zero..
(gdk_window_set_static_gravities): Return FALSE if trying to set
static gravity.
* gdk/win32/gdkprivate-win32.h: Drop the clip_region field from
GdkGCWin32. Only use the HRGN hcliprgn. Declare new
functions.
* gdk/win32/*.c: Use new debugging functions.
* gdk/win32/rc/gdk.rc.in: Update copyright year.
2002-11-12 22:17:48 +00:00
|
|
|
POINT pt;
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurface *parent = gdk_surface_get_parent (window);
|
gdk/win32/gdkprivate-win32.h Rename all global variables and functions to
2002-11-12 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkprivate-win32.h
* gdk/win32/*.c: Rename all global variables and functions to
start with underscore.
Merge from stable:
More work on the Win32 backend. The cause of some scrolling
problems was that SetWindowPos() and ScrollWindowEx() don't blit
those parts of the window they think are invalid. As we didn't
keep Windows's update region in synch with GDK's, Windows thought
those areas that in fact had been updated were invalid. Calling
ValidateRgn() in _gdk_windowing_window_queue_antiexpose() seems to
be an elegant and efficient solution, removing from Windows's
update region those areas we are about to repaint proactively.
In some cases garbage leftover values were used for the clip
origin in GdkGCWin32. This showed up as odd blank areas around the
pixmaps included in the Text Widget in gtk-demo.
Having the clip region either as a GdkRegion or a HRGN in
GdkGCWin32 was unnecessary, it's better to just use a HRGN.
The translation and antiexpose queue handling in
gdkgeometry-win32.c seems unnecessary (and not implementable in
the same way as on X11 anyway, no serial numbers) on Windows,
ifdeffed out.
Don't (try to) do guffaw scrolling as there is no static window
gravity on Windows. Guffaw scrolling would be unnecessary anyway,
as there is the ScrollWindow() API. This improves the behaviour of
the Text Widget demo in gtk-demo a lot. But I have no idea how the
lack of static win gravity should be handled in other places where
the X11 code uses it. Especially _gdk_window_move_resize_child().
There is still some problem in expose handling. By moving an
obscuring window back and forth over testgtk's main window, for
instance, every now and then you typically get narrow vertical or
horizontal strips of pixels that haven't been properly redrawn
after being exposed. A fencepost error somewhere?
Otherwise, all of testgtk and gtk-demo except "big windows" now
seem to work pretty well.
Bug #79720 should be fixed now.
* gdk/win32/gdkcolor-win32.c (gdk_win32_color_to_string,
gdk_win32_print_paletteentries, gdk_win32_print_system_palette,
gdk_win32_print_hpalette)
* gdk/win32/gdkdrawable-win32.c (gdk_win32_drawable_description)
* gdk/win32/gdkevents-win32.c (gdk_win32_message_name):
Move all debugging helper functions to gdkmain-win32.c.
* gdk/win32/gdkdrawable-win32.c (_gdk_win32_draw_tiles):
Rewrite. Make static. Must take tile origin parameters, too.
(gdk_win32_draw_rectangle): Pass the tile/stipple origin to
_gdk_win32_draw_tiles(). Remove #if 0 code.
(blit_inside_window): Don't call ScrollDC(), that didn't work at
all like I thought. A simple call to BitBlt() is enough.
* gdk/win32/gdkevents-win32.c (gdk_event_translate) Remove unused
latin_locale_loaded variable.
(_gdk_win32_get_next_tick): New function. Used to make sure
timestamps of events are always increasing, both in events
generated from the window procedure and in events gotten via
PeekMessage(). Not sure whether this is actually useful, but it
seemed as a good idea.
(real_window_procedure): Don't use a local GdkEventPrivate
variable. Don't attempt any compression of configure or expose
events here, handled elsewhere.
(erase_background): Accumulate window offsets when traversing up
the parent chain for GDK_PARENT_RELATIVE_BG, in order to get
correct alignment of background pixmaps. Don't fill with
BLACK_BRUSH if GDK_NO_BG.
(gdk_event_get_graphics_expose): A bit more verbose debugging output.
(gdk_event_translate): Use _gdk_win32_get_next_tick(). In the
WM_PAINT handler, don't check for empty update rect. When we get a
WM_PAINT, the update region isn't empty. And if it for some
strange reason is, that will be handled later anyway. Call
GetUpdateRgn() before calling BeginPaint() and EndPaint() (which
empty the update region).
* gdk/win32/gdkdnd-win32.c
* gdk/win32/gdkinput-win32.c:
Use _gdk_win32_get_next_tick().
* gdk/win32/gdkfont-win32.c: Use %p to print HFONTs.
(gdk_text_size): Remove, unused.
* gdk/win32/gdkgc-win32.c: Set clip origins to zero
when appropriate.
(gdk_gc_copy): Increase refcount on colormap if present.
(gdk_win32_hdc_get): Handle just hcliprgn. If we have a stipple,
combine it with clip region after selecting into the DC.
(_gdk_win32_bitmap_to_hrgn): Rename from _gdk_win32_bitmap_to_region.
(_gdk_win3_gdkregion_to_hrgn): New function, code snippet
extracted from gdk_win32_hdc_get().
* gdk/win32/gdkgeometry-win32.c: Ifdef out the translate_queue
handling.
(gdk_window_copy_area_scroll): Increase clipRect to avoid
ScrollWindowEx() not scrolling pixels it thinks are invalid.
Scroll also children with the ScrollWindowEx() call. No need to
call gdk_window_move() on the children.
(gdk_window_scroll): Don't do guffaw scrolling.
(gdk_window_compute_position): Fix typo, used win32_y where x was
intended.
(gdk_window_premove, gdk_window_postmove,
gdk_window_clip_changed): Add debugging output.
(_gdk_windowing_window_queue_antiexpose): Just call ValidateRgn()
on the region.
(_gdk_window_process_expose): No use for the serial number
parameter now. Instead of a rectangle, take a region parameter, as
Windows gives us one in WM_PAINT.
* gdk/win32/gdkmain-win32.c (_gdk_win32_lbstyle_to_string,
_gdk_win32_pstype_to_string, _gdk_win32_psstyle_to_string,
_gdk_win32_psendcap_to_string, _gdk_win32_psjoin_to_string,
_gdk_win32_rect_to_string, _gdk_win32_gdkrectangle_to_string,
_gdk_win32_gdkregion_to_string): New debugging functions.
(static_printf): Helper function for the above. sprintfs into a
static circular buffer, return value should be used "soon".
* gdk/win32/gdkwindow-win32.c (gdk_propagate_shapes): Plug memory
leak, free list after use.
(gdk_window_gravity_works): Remove, we know that there is no such
thing on Windows.
(gdk_window_set_static_bit_gravity,
gdk_window_set_static_win_gravity): Ditto, remove, they didn't do
anything anyway.
(_gdk_windowing_window_init, gdk_window_foreign_new): Call
_gdk_window_init_position() like in the X11 backend.
(gdk_window_reparent): Don't call the now nonexistent
gdk_window_set_static_win_gravity(). No idea what should be done
instead.
(gdk_window_get_geometry): The returned x and y should be relative
to parent. Used to be always zero..
(gdk_window_set_static_gravities): Return FALSE if trying to set
static gravity.
* gdk/win32/gdkprivate-win32.h: Drop the clip_region field from
GdkGCWin32. Only use the HRGN hcliprgn. Declare new
functions.
* gdk/win32/*.c: Use new debugging functions.
* gdk/win32/rc/gdk.rc.in: Update copyright year.
2002-11-12 22:17:48 +00:00
|
|
|
|
|
|
|
pt.x = rect.left;
|
|
|
|
pt.y = rect.top;
|
2018-03-20 10:40:08 +00:00
|
|
|
ClientToScreen (GDK_SURFACE_HWND (window), &pt);
|
2017-11-06 02:00:04 +00:00
|
|
|
if (parent)
|
2018-03-20 10:40:08 +00:00
|
|
|
ScreenToClient (GDK_SURFACE_HWND (parent), &pt);
|
gdk/win32/gdkprivate-win32.h Rename all global variables and functions to
2002-11-12 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkprivate-win32.h
* gdk/win32/*.c: Rename all global variables and functions to
start with underscore.
Merge from stable:
More work on the Win32 backend. The cause of some scrolling
problems was that SetWindowPos() and ScrollWindowEx() don't blit
those parts of the window they think are invalid. As we didn't
keep Windows's update region in synch with GDK's, Windows thought
those areas that in fact had been updated were invalid. Calling
ValidateRgn() in _gdk_windowing_window_queue_antiexpose() seems to
be an elegant and efficient solution, removing from Windows's
update region those areas we are about to repaint proactively.
In some cases garbage leftover values were used for the clip
origin in GdkGCWin32. This showed up as odd blank areas around the
pixmaps included in the Text Widget in gtk-demo.
Having the clip region either as a GdkRegion or a HRGN in
GdkGCWin32 was unnecessary, it's better to just use a HRGN.
The translation and antiexpose queue handling in
gdkgeometry-win32.c seems unnecessary (and not implementable in
the same way as on X11 anyway, no serial numbers) on Windows,
ifdeffed out.
Don't (try to) do guffaw scrolling as there is no static window
gravity on Windows. Guffaw scrolling would be unnecessary anyway,
as there is the ScrollWindow() API. This improves the behaviour of
the Text Widget demo in gtk-demo a lot. But I have no idea how the
lack of static win gravity should be handled in other places where
the X11 code uses it. Especially _gdk_window_move_resize_child().
There is still some problem in expose handling. By moving an
obscuring window back and forth over testgtk's main window, for
instance, every now and then you typically get narrow vertical or
horizontal strips of pixels that haven't been properly redrawn
after being exposed. A fencepost error somewhere?
Otherwise, all of testgtk and gtk-demo except "big windows" now
seem to work pretty well.
Bug #79720 should be fixed now.
* gdk/win32/gdkcolor-win32.c (gdk_win32_color_to_string,
gdk_win32_print_paletteentries, gdk_win32_print_system_palette,
gdk_win32_print_hpalette)
* gdk/win32/gdkdrawable-win32.c (gdk_win32_drawable_description)
* gdk/win32/gdkevents-win32.c (gdk_win32_message_name):
Move all debugging helper functions to gdkmain-win32.c.
* gdk/win32/gdkdrawable-win32.c (_gdk_win32_draw_tiles):
Rewrite. Make static. Must take tile origin parameters, too.
(gdk_win32_draw_rectangle): Pass the tile/stipple origin to
_gdk_win32_draw_tiles(). Remove #if 0 code.
(blit_inside_window): Don't call ScrollDC(), that didn't work at
all like I thought. A simple call to BitBlt() is enough.
* gdk/win32/gdkevents-win32.c (gdk_event_translate) Remove unused
latin_locale_loaded variable.
(_gdk_win32_get_next_tick): New function. Used to make sure
timestamps of events are always increasing, both in events
generated from the window procedure and in events gotten via
PeekMessage(). Not sure whether this is actually useful, but it
seemed as a good idea.
(real_window_procedure): Don't use a local GdkEventPrivate
variable. Don't attempt any compression of configure or expose
events here, handled elsewhere.
(erase_background): Accumulate window offsets when traversing up
the parent chain for GDK_PARENT_RELATIVE_BG, in order to get
correct alignment of background pixmaps. Don't fill with
BLACK_BRUSH if GDK_NO_BG.
(gdk_event_get_graphics_expose): A bit more verbose debugging output.
(gdk_event_translate): Use _gdk_win32_get_next_tick(). In the
WM_PAINT handler, don't check for empty update rect. When we get a
WM_PAINT, the update region isn't empty. And if it for some
strange reason is, that will be handled later anyway. Call
GetUpdateRgn() before calling BeginPaint() and EndPaint() (which
empty the update region).
* gdk/win32/gdkdnd-win32.c
* gdk/win32/gdkinput-win32.c:
Use _gdk_win32_get_next_tick().
* gdk/win32/gdkfont-win32.c: Use %p to print HFONTs.
(gdk_text_size): Remove, unused.
* gdk/win32/gdkgc-win32.c: Set clip origins to zero
when appropriate.
(gdk_gc_copy): Increase refcount on colormap if present.
(gdk_win32_hdc_get): Handle just hcliprgn. If we have a stipple,
combine it with clip region after selecting into the DC.
(_gdk_win32_bitmap_to_hrgn): Rename from _gdk_win32_bitmap_to_region.
(_gdk_win3_gdkregion_to_hrgn): New function, code snippet
extracted from gdk_win32_hdc_get().
* gdk/win32/gdkgeometry-win32.c: Ifdef out the translate_queue
handling.
(gdk_window_copy_area_scroll): Increase clipRect to avoid
ScrollWindowEx() not scrolling pixels it thinks are invalid.
Scroll also children with the ScrollWindowEx() call. No need to
call gdk_window_move() on the children.
(gdk_window_scroll): Don't do guffaw scrolling.
(gdk_window_compute_position): Fix typo, used win32_y where x was
intended.
(gdk_window_premove, gdk_window_postmove,
gdk_window_clip_changed): Add debugging output.
(_gdk_windowing_window_queue_antiexpose): Just call ValidateRgn()
on the region.
(_gdk_window_process_expose): No use for the serial number
parameter now. Instead of a rectangle, take a region parameter, as
Windows gives us one in WM_PAINT.
* gdk/win32/gdkmain-win32.c (_gdk_win32_lbstyle_to_string,
_gdk_win32_pstype_to_string, _gdk_win32_psstyle_to_string,
_gdk_win32_psendcap_to_string, _gdk_win32_psjoin_to_string,
_gdk_win32_rect_to_string, _gdk_win32_gdkrectangle_to_string,
_gdk_win32_gdkregion_to_string): New debugging functions.
(static_printf): Helper function for the above. sprintfs into a
static circular buffer, return value should be used "soon".
* gdk/win32/gdkwindow-win32.c (gdk_propagate_shapes): Plug memory
leak, free list after use.
(gdk_window_gravity_works): Remove, we know that there is no such
thing on Windows.
(gdk_window_set_static_bit_gravity,
gdk_window_set_static_win_gravity): Ditto, remove, they didn't do
anything anyway.
(_gdk_windowing_window_init, gdk_window_foreign_new): Call
_gdk_window_init_position() like in the X11 backend.
(gdk_window_reparent): Don't call the now nonexistent
gdk_window_set_static_win_gravity(). No idea what should be done
instead.
(gdk_window_get_geometry): The returned x and y should be relative
to parent. Used to be always zero..
(gdk_window_set_static_gravities): Return FALSE if trying to set
static gravity.
* gdk/win32/gdkprivate-win32.h: Drop the clip_region field from
GdkGCWin32. Only use the HRGN hcliprgn. Declare new
functions.
* gdk/win32/*.c: Use new debugging functions.
* gdk/win32/rc/gdk.rc.in: Update copyright year.
2002-11-12 22:17:48 +00:00
|
|
|
rect.left = pt.x;
|
|
|
|
rect.top = pt.y;
|
|
|
|
|
|
|
|
pt.x = rect.right;
|
|
|
|
pt.y = rect.bottom;
|
2018-03-20 10:40:08 +00:00
|
|
|
ClientToScreen (GDK_SURFACE_HWND (window), &pt);
|
2017-11-06 02:00:04 +00:00
|
|
|
if (parent)
|
2018-03-20 10:40:08 +00:00
|
|
|
ScreenToClient (GDK_SURFACE_HWND (parent), &pt);
|
gdk/win32/gdkprivate-win32.h Rename all global variables and functions to
2002-11-12 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkprivate-win32.h
* gdk/win32/*.c: Rename all global variables and functions to
start with underscore.
Merge from stable:
More work on the Win32 backend. The cause of some scrolling
problems was that SetWindowPos() and ScrollWindowEx() don't blit
those parts of the window they think are invalid. As we didn't
keep Windows's update region in synch with GDK's, Windows thought
those areas that in fact had been updated were invalid. Calling
ValidateRgn() in _gdk_windowing_window_queue_antiexpose() seems to
be an elegant and efficient solution, removing from Windows's
update region those areas we are about to repaint proactively.
In some cases garbage leftover values were used for the clip
origin in GdkGCWin32. This showed up as odd blank areas around the
pixmaps included in the Text Widget in gtk-demo.
Having the clip region either as a GdkRegion or a HRGN in
GdkGCWin32 was unnecessary, it's better to just use a HRGN.
The translation and antiexpose queue handling in
gdkgeometry-win32.c seems unnecessary (and not implementable in
the same way as on X11 anyway, no serial numbers) on Windows,
ifdeffed out.
Don't (try to) do guffaw scrolling as there is no static window
gravity on Windows. Guffaw scrolling would be unnecessary anyway,
as there is the ScrollWindow() API. This improves the behaviour of
the Text Widget demo in gtk-demo a lot. But I have no idea how the
lack of static win gravity should be handled in other places where
the X11 code uses it. Especially _gdk_window_move_resize_child().
There is still some problem in expose handling. By moving an
obscuring window back and forth over testgtk's main window, for
instance, every now and then you typically get narrow vertical or
horizontal strips of pixels that haven't been properly redrawn
after being exposed. A fencepost error somewhere?
Otherwise, all of testgtk and gtk-demo except "big windows" now
seem to work pretty well.
Bug #79720 should be fixed now.
* gdk/win32/gdkcolor-win32.c (gdk_win32_color_to_string,
gdk_win32_print_paletteentries, gdk_win32_print_system_palette,
gdk_win32_print_hpalette)
* gdk/win32/gdkdrawable-win32.c (gdk_win32_drawable_description)
* gdk/win32/gdkevents-win32.c (gdk_win32_message_name):
Move all debugging helper functions to gdkmain-win32.c.
* gdk/win32/gdkdrawable-win32.c (_gdk_win32_draw_tiles):
Rewrite. Make static. Must take tile origin parameters, too.
(gdk_win32_draw_rectangle): Pass the tile/stipple origin to
_gdk_win32_draw_tiles(). Remove #if 0 code.
(blit_inside_window): Don't call ScrollDC(), that didn't work at
all like I thought. A simple call to BitBlt() is enough.
* gdk/win32/gdkevents-win32.c (gdk_event_translate) Remove unused
latin_locale_loaded variable.
(_gdk_win32_get_next_tick): New function. Used to make sure
timestamps of events are always increasing, both in events
generated from the window procedure and in events gotten via
PeekMessage(). Not sure whether this is actually useful, but it
seemed as a good idea.
(real_window_procedure): Don't use a local GdkEventPrivate
variable. Don't attempt any compression of configure or expose
events here, handled elsewhere.
(erase_background): Accumulate window offsets when traversing up
the parent chain for GDK_PARENT_RELATIVE_BG, in order to get
correct alignment of background pixmaps. Don't fill with
BLACK_BRUSH if GDK_NO_BG.
(gdk_event_get_graphics_expose): A bit more verbose debugging output.
(gdk_event_translate): Use _gdk_win32_get_next_tick(). In the
WM_PAINT handler, don't check for empty update rect. When we get a
WM_PAINT, the update region isn't empty. And if it for some
strange reason is, that will be handled later anyway. Call
GetUpdateRgn() before calling BeginPaint() and EndPaint() (which
empty the update region).
* gdk/win32/gdkdnd-win32.c
* gdk/win32/gdkinput-win32.c:
Use _gdk_win32_get_next_tick().
* gdk/win32/gdkfont-win32.c: Use %p to print HFONTs.
(gdk_text_size): Remove, unused.
* gdk/win32/gdkgc-win32.c: Set clip origins to zero
when appropriate.
(gdk_gc_copy): Increase refcount on colormap if present.
(gdk_win32_hdc_get): Handle just hcliprgn. If we have a stipple,
combine it with clip region after selecting into the DC.
(_gdk_win32_bitmap_to_hrgn): Rename from _gdk_win32_bitmap_to_region.
(_gdk_win3_gdkregion_to_hrgn): New function, code snippet
extracted from gdk_win32_hdc_get().
* gdk/win32/gdkgeometry-win32.c: Ifdef out the translate_queue
handling.
(gdk_window_copy_area_scroll): Increase clipRect to avoid
ScrollWindowEx() not scrolling pixels it thinks are invalid.
Scroll also children with the ScrollWindowEx() call. No need to
call gdk_window_move() on the children.
(gdk_window_scroll): Don't do guffaw scrolling.
(gdk_window_compute_position): Fix typo, used win32_y where x was
intended.
(gdk_window_premove, gdk_window_postmove,
gdk_window_clip_changed): Add debugging output.
(_gdk_windowing_window_queue_antiexpose): Just call ValidateRgn()
on the region.
(_gdk_window_process_expose): No use for the serial number
parameter now. Instead of a rectangle, take a region parameter, as
Windows gives us one in WM_PAINT.
* gdk/win32/gdkmain-win32.c (_gdk_win32_lbstyle_to_string,
_gdk_win32_pstype_to_string, _gdk_win32_psstyle_to_string,
_gdk_win32_psendcap_to_string, _gdk_win32_psjoin_to_string,
_gdk_win32_rect_to_string, _gdk_win32_gdkrectangle_to_string,
_gdk_win32_gdkregion_to_string): New debugging functions.
(static_printf): Helper function for the above. sprintfs into a
static circular buffer, return value should be used "soon".
* gdk/win32/gdkwindow-win32.c (gdk_propagate_shapes): Plug memory
leak, free list after use.
(gdk_window_gravity_works): Remove, we know that there is no such
thing on Windows.
(gdk_window_set_static_bit_gravity,
gdk_window_set_static_win_gravity): Ditto, remove, they didn't do
anything anyway.
(_gdk_windowing_window_init, gdk_window_foreign_new): Call
_gdk_window_init_position() like in the X11 backend.
(gdk_window_reparent): Don't call the now nonexistent
gdk_window_set_static_win_gravity(). No idea what should be done
instead.
(gdk_window_get_geometry): The returned x and y should be relative
to parent. Used to be always zero..
(gdk_window_set_static_gravities): Return FALSE if trying to set
static gravity.
* gdk/win32/gdkprivate-win32.h: Drop the clip_region field from
GdkGCWin32. Only use the HRGN hcliprgn. Declare new
functions.
* gdk/win32/*.c: Use new debugging functions.
* gdk/win32/rc/gdk.rc.in: Update copyright year.
2002-11-12 22:17:48 +00:00
|
|
|
rect.right = pt.x;
|
|
|
|
rect.bottom = pt.y;
|
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
|
|
|
|
2017-11-06 02:00:04 +00:00
|
|
|
if (parent == NULL)
|
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
|
|
|
{
|
2018-03-20 11:05:26 +00:00
|
|
|
rect.left += _gdk_offset_x * impl->surface_scale;
|
|
|
|
rect.top += _gdk_offset_y * impl->surface_scale;
|
|
|
|
rect.right += _gdk_offset_x * impl->surface_scale;
|
|
|
|
rect.bottom += _gdk_offset_y * impl->surface_scale;
|
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
|
|
|
}
|
gdk/win32/gdkprivate-win32.h Rename all global variables and functions to
2002-11-12 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkprivate-win32.h
* gdk/win32/*.c: Rename all global variables and functions to
start with underscore.
Merge from stable:
More work on the Win32 backend. The cause of some scrolling
problems was that SetWindowPos() and ScrollWindowEx() don't blit
those parts of the window they think are invalid. As we didn't
keep Windows's update region in synch with GDK's, Windows thought
those areas that in fact had been updated were invalid. Calling
ValidateRgn() in _gdk_windowing_window_queue_antiexpose() seems to
be an elegant and efficient solution, removing from Windows's
update region those areas we are about to repaint proactively.
In some cases garbage leftover values were used for the clip
origin in GdkGCWin32. This showed up as odd blank areas around the
pixmaps included in the Text Widget in gtk-demo.
Having the clip region either as a GdkRegion or a HRGN in
GdkGCWin32 was unnecessary, it's better to just use a HRGN.
The translation and antiexpose queue handling in
gdkgeometry-win32.c seems unnecessary (and not implementable in
the same way as on X11 anyway, no serial numbers) on Windows,
ifdeffed out.
Don't (try to) do guffaw scrolling as there is no static window
gravity on Windows. Guffaw scrolling would be unnecessary anyway,
as there is the ScrollWindow() API. This improves the behaviour of
the Text Widget demo in gtk-demo a lot. But I have no idea how the
lack of static win gravity should be handled in other places where
the X11 code uses it. Especially _gdk_window_move_resize_child().
There is still some problem in expose handling. By moving an
obscuring window back and forth over testgtk's main window, for
instance, every now and then you typically get narrow vertical or
horizontal strips of pixels that haven't been properly redrawn
after being exposed. A fencepost error somewhere?
Otherwise, all of testgtk and gtk-demo except "big windows" now
seem to work pretty well.
Bug #79720 should be fixed now.
* gdk/win32/gdkcolor-win32.c (gdk_win32_color_to_string,
gdk_win32_print_paletteentries, gdk_win32_print_system_palette,
gdk_win32_print_hpalette)
* gdk/win32/gdkdrawable-win32.c (gdk_win32_drawable_description)
* gdk/win32/gdkevents-win32.c (gdk_win32_message_name):
Move all debugging helper functions to gdkmain-win32.c.
* gdk/win32/gdkdrawable-win32.c (_gdk_win32_draw_tiles):
Rewrite. Make static. Must take tile origin parameters, too.
(gdk_win32_draw_rectangle): Pass the tile/stipple origin to
_gdk_win32_draw_tiles(). Remove #if 0 code.
(blit_inside_window): Don't call ScrollDC(), that didn't work at
all like I thought. A simple call to BitBlt() is enough.
* gdk/win32/gdkevents-win32.c (gdk_event_translate) Remove unused
latin_locale_loaded variable.
(_gdk_win32_get_next_tick): New function. Used to make sure
timestamps of events are always increasing, both in events
generated from the window procedure and in events gotten via
PeekMessage(). Not sure whether this is actually useful, but it
seemed as a good idea.
(real_window_procedure): Don't use a local GdkEventPrivate
variable. Don't attempt any compression of configure or expose
events here, handled elsewhere.
(erase_background): Accumulate window offsets when traversing up
the parent chain for GDK_PARENT_RELATIVE_BG, in order to get
correct alignment of background pixmaps. Don't fill with
BLACK_BRUSH if GDK_NO_BG.
(gdk_event_get_graphics_expose): A bit more verbose debugging output.
(gdk_event_translate): Use _gdk_win32_get_next_tick(). In the
WM_PAINT handler, don't check for empty update rect. When we get a
WM_PAINT, the update region isn't empty. And if it for some
strange reason is, that will be handled later anyway. Call
GetUpdateRgn() before calling BeginPaint() and EndPaint() (which
empty the update region).
* gdk/win32/gdkdnd-win32.c
* gdk/win32/gdkinput-win32.c:
Use _gdk_win32_get_next_tick().
* gdk/win32/gdkfont-win32.c: Use %p to print HFONTs.
(gdk_text_size): Remove, unused.
* gdk/win32/gdkgc-win32.c: Set clip origins to zero
when appropriate.
(gdk_gc_copy): Increase refcount on colormap if present.
(gdk_win32_hdc_get): Handle just hcliprgn. If we have a stipple,
combine it with clip region after selecting into the DC.
(_gdk_win32_bitmap_to_hrgn): Rename from _gdk_win32_bitmap_to_region.
(_gdk_win3_gdkregion_to_hrgn): New function, code snippet
extracted from gdk_win32_hdc_get().
* gdk/win32/gdkgeometry-win32.c: Ifdef out the translate_queue
handling.
(gdk_window_copy_area_scroll): Increase clipRect to avoid
ScrollWindowEx() not scrolling pixels it thinks are invalid.
Scroll also children with the ScrollWindowEx() call. No need to
call gdk_window_move() on the children.
(gdk_window_scroll): Don't do guffaw scrolling.
(gdk_window_compute_position): Fix typo, used win32_y where x was
intended.
(gdk_window_premove, gdk_window_postmove,
gdk_window_clip_changed): Add debugging output.
(_gdk_windowing_window_queue_antiexpose): Just call ValidateRgn()
on the region.
(_gdk_window_process_expose): No use for the serial number
parameter now. Instead of a rectangle, take a region parameter, as
Windows gives us one in WM_PAINT.
* gdk/win32/gdkmain-win32.c (_gdk_win32_lbstyle_to_string,
_gdk_win32_pstype_to_string, _gdk_win32_psstyle_to_string,
_gdk_win32_psendcap_to_string, _gdk_win32_psjoin_to_string,
_gdk_win32_rect_to_string, _gdk_win32_gdkrectangle_to_string,
_gdk_win32_gdkregion_to_string): New debugging functions.
(static_printf): Helper function for the above. sprintfs into a
static circular buffer, return value should be used "soon".
* gdk/win32/gdkwindow-win32.c (gdk_propagate_shapes): Plug memory
leak, free list after use.
(gdk_window_gravity_works): Remove, we know that there is no such
thing on Windows.
(gdk_window_set_static_bit_gravity,
gdk_window_set_static_win_gravity): Ditto, remove, they didn't do
anything anyway.
(_gdk_windowing_window_init, gdk_window_foreign_new): Call
_gdk_window_init_position() like in the X11 backend.
(gdk_window_reparent): Don't call the now nonexistent
gdk_window_set_static_win_gravity(). No idea what should be done
instead.
(gdk_window_get_geometry): The returned x and y should be relative
to parent. Used to be always zero..
(gdk_window_set_static_gravities): Return FALSE if trying to set
static gravity.
* gdk/win32/gdkprivate-win32.h: Drop the clip_region field from
GdkGCWin32. Only use the HRGN hcliprgn. Declare new
functions.
* gdk/win32/*.c: Use new debugging functions.
* gdk/win32/rc/gdk.rc.in: Update copyright year.
2002-11-12 22:17:48 +00:00
|
|
|
|
1999-11-11 22:12:27 +00:00
|
|
|
if (x)
|
2018-03-20 11:05:26 +00:00
|
|
|
*x = rect.left / impl->surface_scale;
|
1999-11-11 22:12:27 +00:00
|
|
|
if (y)
|
2018-03-20 11:05:26 +00:00
|
|
|
*y = rect.top / impl->surface_scale;
|
1999-11-11 22:12:27 +00:00
|
|
|
if (width)
|
2018-03-20 11:05:26 +00:00
|
|
|
*width = (rect.right - rect.left) / impl->surface_scale;
|
1999-11-11 22:12:27 +00:00
|
|
|
if (height)
|
2018-03-20 11:05:26 +00:00
|
|
|
*height = (rect.bottom - rect.top) / impl->surface_scale;
|
Fix for #108007, #112402, #117042: There was confusion in gdk/win32 at
2003-07-29 Tor Lillqvist <tml@iki.fi>
Fix for #108007, #112402, #117042: There was confusion in
gdk/win32 at various places whether a window position refers to
the decoration position or the client area position. Also whether
window size includes decorations or not.
The correct interpretation apparently is that in GDK (like in
X11), a top-level window position means the decoration's position,
but size means the window's inner size (client area size). In the
Win32 API, the window size usually includes the decorations,
though.
* gdk/win32/gdkevents-win32.c (decode_key_lparam): Move inside
#ifdef G_ENABLE_DEBUG.
(handle_configure_event): New function, generates GDK_CONFIGURE
events from WM_SIZE and WM_MOVE messages. Even if no event is
generated because of the event mask, still set the private
position and size fields. Calculate position and size correctly.
(gdk_event_translate): Call handle_configure_event().
* gdk/win32/gdkgeometry-win32.c: Cosmetics.
* gdk/win32/gdkwindow-win32.c: Use GDI_CALL() and API_CALL()
macros. Cosmetic debugging output changes.
(SafeAdjustWindowRectEx): Remove. If an application wants to
locate a window outside of the screen, it's not GDK's business to
prevent it. And anyway, with multiple monitors, negative
coordinates are perfectly normal.
(gdk_window_new): Adjust the window size for decorations after
_gdk_window_init_position() has done its job. (But the big window
code currently is presumably broken on Win32 anyway.)
(gdk_window_move): The position passed in is supposed to be that
of the window border, so don't need to adjust for decorations.
(gdk_window_resize, gdk_window_move_resize): Simplify somewhat.
2003-07-29 23:35:40 +00:00
|
|
|
|
2018-06-10 20:49:47 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("gdk_win32_surface_get_geometry: %p: %ldx%ld@%+ld%+ld\n",
|
2018-03-20 10:40:08 +00:00
|
|
|
GDK_SURFACE_HWND (window),
|
2018-03-20 11:05:26 +00:00
|
|
|
(rect.right - rect.left) / impl->surface_scale,
|
|
|
|
(rect.bottom - rect.top) / impl->surface_scale,
|
Fix for #108007, #112402, #117042: There was confusion in gdk/win32 at
2003-07-29 Tor Lillqvist <tml@iki.fi>
Fix for #108007, #112402, #117042: There was confusion in
gdk/win32 at various places whether a window position refers to
the decoration position or the client area position. Also whether
window size includes decorations or not.
The correct interpretation apparently is that in GDK (like in
X11), a top-level window position means the decoration's position,
but size means the window's inner size (client area size). In the
Win32 API, the window size usually includes the decorations,
though.
* gdk/win32/gdkevents-win32.c (decode_key_lparam): Move inside
#ifdef G_ENABLE_DEBUG.
(handle_configure_event): New function, generates GDK_CONFIGURE
events from WM_SIZE and WM_MOVE messages. Even if no event is
generated because of the event mask, still set the private
position and size fields. Calculate position and size correctly.
(gdk_event_translate): Call handle_configure_event().
* gdk/win32/gdkgeometry-win32.c: Cosmetics.
* gdk/win32/gdkwindow-win32.c: Use GDI_CALL() and API_CALL()
macros. Cosmetic debugging output changes.
(SafeAdjustWindowRectEx): Remove. If an application wants to
locate a window outside of the screen, it's not GDK's business to
prevent it. And anyway, with multiple monitors, negative
coordinates are perfectly normal.
(gdk_window_new): Adjust the window size for decorations after
_gdk_window_init_position() has done its job. (But the big window
code currently is presumably broken on Win32 anyway.)
(gdk_window_move): The position passed in is supposed to be that
of the window border, so don't need to adjust for decorations.
(gdk_window_resize, gdk_window_move_resize): Simplify somewhat.
2003-07-29 23:35:40 +00:00
|
|
|
rect.left, rect.top));
|
1999-11-11 22:12:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-28 01:58:13 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_get_root_coords (GdkSurface *window,
|
2009-07-01 08:26:37 +00:00
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint *root_x,
|
|
|
|
gint *root_y)
|
|
|
|
{
|
|
|
|
gint tx;
|
|
|
|
gint ty;
|
|
|
|
POINT pt;
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl = GDK_WIN32_SURFACE (window);
|
2009-07-01 08:26:37 +00:00
|
|
|
|
2018-03-20 11:05:26 +00:00
|
|
|
pt.x = x * impl->surface_scale;
|
|
|
|
pt.y = y * impl->surface_scale;
|
2018-03-20 10:40:08 +00:00
|
|
|
ClientToScreen (GDK_SURFACE_HWND (window), &pt);
|
2009-07-01 08:26:37 +00:00
|
|
|
tx = pt.x;
|
|
|
|
ty = pt.y;
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2009-07-04 10:10:57 +00:00
|
|
|
if (root_x)
|
2018-03-20 11:05:26 +00:00
|
|
|
*root_x = (tx + _gdk_offset_x) / impl->surface_scale;
|
2009-07-04 10:10:57 +00:00
|
|
|
if (root_y)
|
2018-03-20 11:05:26 +00:00
|
|
|
*root_y = (ty + _gdk_offset_y) / impl->surface_scale;
|
1999-11-11 22:12:27 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("gdk_win32_surface_get_root_coords: %p: %+d%+d %+d%+d\n",
|
|
|
|
GDK_SURFACE_HWND (window),
|
2018-03-20 11:05:26 +00:00
|
|
|
x * impl->surface_scale,
|
|
|
|
y * impl->surface_scale,
|
|
|
|
(tx + _gdk_offset_x) / impl->surface_scale,
|
|
|
|
(ty + _gdk_offset_y) / impl->surface_scale));
|
1999-11-11 22:12:27 +00:00
|
|
|
}
|
|
|
|
|
2009-09-02 21:38:55 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_restack_toplevel (GdkSurface *window,
|
|
|
|
GdkSurface *sibling,
|
2009-09-02 21:38:55 +00:00
|
|
|
gboolean above)
|
|
|
|
{
|
|
|
|
// ### TODO
|
|
|
|
}
|
|
|
|
|
2009-07-01 08:26:37 +00:00
|
|
|
static gboolean
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_surface_win32_get_device_state (GdkSurface *window,
|
2010-05-25 22:38:44 +00:00
|
|
|
GdkDevice *device,
|
2013-07-03 09:52:58 +00:00
|
|
|
gdouble *x,
|
|
|
|
gdouble *y,
|
2010-05-25 22:38:44 +00:00
|
|
|
GdkModifierType *mask)
|
2009-07-01 08:26:37 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurface *child;
|
2009-07-01 08:26:37 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
g_return_val_if_fail (window == NULL || GDK_IS_SURFACE (window), FALSE);
|
1999-11-11 22:12:27 +00:00
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
GDK_DEVICE_GET_CLASS (device)->query_state (device, window,
|
2017-08-08 19:43:03 +00:00
|
|
|
&child,
|
2010-05-25 22:38:44 +00:00
|
|
|
NULL, NULL,
|
|
|
|
x, y, mask);
|
|
|
|
return (child != NULL);
|
1999-11-11 22:12:27 +00:00
|
|
|
}
|
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_set_accept_focus (GdkSurface *window,
|
2003-12-10 23:58:23 +00:00
|
|
|
gboolean accept_focus)
|
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (window));
|
2003-12-10 23:58:23 +00:00
|
|
|
|
|
|
|
accept_focus = accept_focus != FALSE;
|
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
if (window->accept_focus != accept_focus)
|
|
|
|
window->accept_focus = accept_focus;
|
2003-12-10 23:58:23 +00:00
|
|
|
}
|
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_set_focus_on_map (GdkSurface *window,
|
2004-05-06 02:57:01 +00:00
|
|
|
gboolean focus_on_map)
|
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (window));
|
2004-05-06 02:57:01 +00:00
|
|
|
|
|
|
|
focus_on_map = focus_on_map != FALSE;
|
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
if (window->focus_on_map != focus_on_map)
|
|
|
|
window->focus_on_map = focus_on_map;
|
2004-05-06 02:57:01 +00:00
|
|
|
}
|
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_set_icon_list (GdkSurface *window,
|
2017-11-04 19:23:33 +00:00
|
|
|
GList *textures)
|
2003-12-14 01:06:56 +00:00
|
|
|
{
|
2017-11-04 19:23:33 +00:00
|
|
|
GdkTexture *big_texture, *small_texture;
|
2003-12-14 01:06:56 +00:00
|
|
|
gint big_diff, small_diff;
|
|
|
|
gint big_w, big_h, small_w, small_h;
|
|
|
|
gint w, h;
|
|
|
|
gint dw, dh, diff;
|
|
|
|
HICON small_hicon, big_hicon;
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl;
|
2003-12-14 01:06:56 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (window));
|
2003-12-14 01:06:56 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (window) || textures == NULL)
|
2003-12-14 01:06:56 +00:00
|
|
|
return;
|
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
impl = GDK_WIN32_SURFACE (window);
|
2003-12-14 01:06:56 +00:00
|
|
|
|
|
|
|
/* ideal sizes for small and large icons */
|
|
|
|
big_w = GetSystemMetrics (SM_CXICON);
|
|
|
|
big_h = GetSystemMetrics (SM_CYICON);
|
|
|
|
small_w = GetSystemMetrics (SM_CXSMICON);
|
|
|
|
small_h = GetSystemMetrics (SM_CYSMICON);
|
|
|
|
|
|
|
|
/* find closest sized icons in the list */
|
2017-11-04 19:23:33 +00:00
|
|
|
big_texture = NULL;
|
|
|
|
small_texture = NULL;
|
2003-12-14 01:06:56 +00:00
|
|
|
big_diff = 0;
|
|
|
|
small_diff = 0;
|
2017-10-24 08:09:17 +00:00
|
|
|
|
2017-11-07 07:39:48 +00:00
|
|
|
for (GList *l = textures; l; l = l->next)
|
2003-08-05 22:24:35 +00:00
|
|
|
{
|
2017-11-07 07:39:48 +00:00
|
|
|
GdkTexture *texture = l->data;
|
2017-11-04 19:23:33 +00:00
|
|
|
w = gdk_texture_get_width (texture);
|
|
|
|
h = gdk_texture_get_height (texture);
|
2003-12-14 01:06:56 +00:00
|
|
|
|
|
|
|
dw = ABS (w - big_w);
|
|
|
|
dh = ABS (h - big_h);
|
|
|
|
diff = dw*dw + dh*dh;
|
2017-11-04 19:23:33 +00:00
|
|
|
if (big_texture == NULL || diff < big_diff)
|
2017-10-23 11:43:50 +00:00
|
|
|
{
|
2017-11-04 19:23:33 +00:00
|
|
|
big_texture = texture;
|
2017-10-23 11:43:50 +00:00
|
|
|
big_diff = diff;
|
|
|
|
}
|
2003-12-14 01:06:56 +00:00
|
|
|
|
2005-11-02 13:33:27 +00:00
|
|
|
dw = ABS (w - small_w);
|
|
|
|
dh = ABS (h - small_h);
|
2003-12-14 01:06:56 +00:00
|
|
|
diff = dw*dw + dh*dh;
|
2017-11-04 19:23:33 +00:00
|
|
|
if (small_texture == NULL || diff < small_diff)
|
2017-10-23 11:43:50 +00:00
|
|
|
{
|
2017-11-04 19:23:33 +00:00
|
|
|
small_texture = texture;
|
2017-10-23 11:43:50 +00:00
|
|
|
small_diff = diff;
|
|
|
|
}
|
2003-12-14 01:06:56 +00:00
|
|
|
|
2017-11-04 19:23:33 +00:00
|
|
|
textures = textures->next;
|
2003-08-05 22:24:35 +00:00
|
|
|
}
|
|
|
|
|
2003-12-14 01:06:56 +00:00
|
|
|
/* Create the icons */
|
2017-11-07 07:39:48 +00:00
|
|
|
big_hicon = _gdk_win32_texture_to_hicon (big_texture);
|
2017-11-04 19:23:33 +00:00
|
|
|
small_hicon = _gdk_win32_texture_to_hicon (small_texture);
|
2003-12-14 01:06:56 +00:00
|
|
|
|
|
|
|
/* Set the icons */
|
2018-03-20 10:40:08 +00:00
|
|
|
SendMessageW (GDK_SURFACE_HWND (window), WM_SETICON, ICON_BIG,
|
2006-09-03 22:50:00 +00:00
|
|
|
(LPARAM)big_hicon);
|
2018-03-20 10:40:08 +00:00
|
|
|
SendMessageW (GDK_SURFACE_HWND (window), WM_SETICON, ICON_SMALL,
|
2006-09-03 22:50:00 +00:00
|
|
|
(LPARAM)small_hicon);
|
2003-12-14 01:06:56 +00:00
|
|
|
|
|
|
|
/* Store the icons, destroying any previous icons */
|
|
|
|
if (impl->hicon_big)
|
|
|
|
GDI_CALL (DestroyIcon, (impl->hicon_big));
|
|
|
|
impl->hicon_big = big_hicon;
|
|
|
|
if (impl->hicon_small)
|
|
|
|
GDI_CALL (DestroyIcon, (impl->hicon_small));
|
|
|
|
impl->hicon_small = small_hicon;
|
|
|
|
}
|
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_set_icon_name (GdkSurface *window,
|
2017-11-04 19:23:33 +00:00
|
|
|
const gchar *name)
|
1999-11-11 22:12:27 +00:00
|
|
|
{
|
2007-02-26 13:48:01 +00:00
|
|
|
/* In case I manage to confuse this again (or somebody else does):
|
|
|
|
* Please note that "icon name" here really *does* mean the name or
|
2019-08-25 12:52:24 +00:00
|
|
|
* title of a window minimized as an icon on the desktop, or in the
|
2007-02-26 13:48:01 +00:00
|
|
|
* taskbar. It has nothing to do with the freedesktop.org icon
|
|
|
|
* naming stuff.
|
|
|
|
*/
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (window));
|
1999-11-11 22:12:27 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (window))
|
1999-11-11 22:12:27 +00:00
|
|
|
return;
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2005-11-02 13:33:27 +00:00
|
|
|
#if 0
|
|
|
|
/* This is not the correct thing to do. We should keep both the
|
|
|
|
* "normal" window title, and the icon name. When the window is
|
|
|
|
* minimized, call SetWindowText() with the icon name, and when the
|
|
|
|
* window is restored, with the normal window title. Also, the name
|
|
|
|
* is in UTF-8, so we should do the normal conversion to either wide
|
|
|
|
* chars or system codepage, and use either the W or A version of
|
|
|
|
* SetWindowText(), depending on Windows version.
|
|
|
|
*/
|
2018-03-20 10:40:08 +00:00
|
|
|
API_CALL (SetWindowText, (GDK_SURFACE_HWND (window), name));
|
2005-11-02 13:33:27 +00:00
|
|
|
#endif
|
1999-11-11 22:12:27 +00:00
|
|
|
}
|
|
|
|
|
2005-11-09 12:35:56 +00:00
|
|
|
static void
|
2008-03-10 15:48:06 +00:00
|
|
|
update_single_bit (LONG *style,
|
|
|
|
gboolean all,
|
|
|
|
int gdk_bit,
|
|
|
|
int style_bit)
|
|
|
|
{
|
|
|
|
/* all controls the interpretation of gdk_bit -- if all is TRUE,
|
|
|
|
* gdk_bit indicates whether style_bit is off; if all is FALSE, gdk
|
|
|
|
* bit indicate whether style_bit is on
|
|
|
|
*/
|
2006-02-09 02:58:45 +00:00
|
|
|
if ((!all && gdk_bit) || (all && !gdk_bit))
|
|
|
|
*style |= style_bit;
|
|
|
|
else
|
|
|
|
*style &= ~style_bit;
|
|
|
|
}
|
|
|
|
|
2016-02-23 09:20:55 +00:00
|
|
|
/*
|
|
|
|
* Returns TRUE if window has no decorations.
|
|
|
|
* Usually it means CSD windows, because GTK
|
2018-03-20 10:40:08 +00:00
|
|
|
* calls gdk_surface_set_decorations (window, 0);
|
2016-02-23 09:20:55 +00:00
|
|
|
* This is used to decide whether a toplevel should
|
|
|
|
* be made layered, thus it
|
|
|
|
* only returns TRUE for toplevels (until GTK minimal
|
|
|
|
* system requirements are lifted to Windows 8 or newer,
|
|
|
|
* because only toplevels can be layered).
|
|
|
|
*/
|
|
|
|
gboolean
|
2018-03-20 10:40:08 +00:00
|
|
|
_gdk_win32_surface_lacks_wm_decorations (GdkSurface *window)
|
2016-02-23 09:20:55 +00:00
|
|
|
{
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl;
|
2016-02-23 09:20:55 +00:00
|
|
|
LONG style;
|
|
|
|
gboolean has_any_decorations;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (window))
|
2016-02-23 09:20:55 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
impl = GDK_WIN32_SURFACE (window);
|
2016-02-23 09:20:55 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
/* This is because GTK calls gdk_surface_set_decorations (window, 0),
|
2016-02-23 09:20:55 +00:00
|
|
|
* even though GdkWMDecoration docs indicate that 0 does NOT mean
|
|
|
|
* "no decorations".
|
|
|
|
*/
|
|
|
|
if (impl->decorations &&
|
|
|
|
*impl->decorations == 0)
|
|
|
|
return TRUE;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_HWND (window) == 0)
|
2016-02-23 09:20:55 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
style = GetWindowLong (GDK_SURFACE_HWND (window), GWL_STYLE);
|
2016-02-23 09:20:55 +00:00
|
|
|
|
|
|
|
if (style == 0)
|
|
|
|
{
|
|
|
|
DWORD w32_error = GetLastError ();
|
|
|
|
|
|
|
|
GDK_NOTE (MISC, g_print ("Failed to get style of window %p (handle %p): %lu\n",
|
2018-03-20 10:40:08 +00:00
|
|
|
window, GDK_SURFACE_HWND (window), w32_error));
|
2016-02-23 09:20:55 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
/* Keep this in sync with _gdk_win32_surface_update_style_bits() */
|
2016-02-23 09:20:55 +00:00
|
|
|
/* We don't check what get_effective_window_decorations()
|
|
|
|
* has to say, because it gives suggestions based on
|
|
|
|
* various hints, while we want *actual* decorations,
|
|
|
|
* or their absence.
|
|
|
|
*/
|
|
|
|
has_any_decorations = FALSE;
|
|
|
|
|
|
|
|
if (style & (WS_BORDER | WS_THICKFRAME | WS_CAPTION |
|
|
|
|
WS_SYSMENU | WS_MINIMIZEBOX | WS_MAXIMIZEBOX))
|
|
|
|
has_any_decorations = TRUE;
|
|
|
|
else
|
|
|
|
GDK_NOTE (MISC, g_print ("Window %p (handle %p): has no decorations (style %lx)\n",
|
2018-03-20 10:40:08 +00:00
|
|
|
window, GDK_SURFACE_HWND (window), style));
|
2016-02-23 09:20:55 +00:00
|
|
|
|
|
|
|
return !has_any_decorations;
|
|
|
|
}
|
|
|
|
|
2016-03-08 05:00:49 +00:00
|
|
|
void
|
2018-03-20 10:40:08 +00:00
|
|
|
_gdk_win32_surface_update_style_bits (GdkSurface *window)
|
2005-11-09 12:35:56 +00:00
|
|
|
{
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl = (GdkWin32Surface *)window;
|
2006-02-09 02:58:45 +00:00
|
|
|
GdkWMDecoration decorations;
|
2008-10-05 00:00:10 +00:00
|
|
|
LONG old_style, new_style, old_exstyle, new_exstyle;
|
2008-03-10 15:48:06 +00:00
|
|
|
gboolean all;
|
2005-11-09 12:35:56 +00:00
|
|
|
RECT rect, before, after;
|
2015-11-21 03:48:55 +00:00
|
|
|
gboolean was_topmost;
|
|
|
|
gboolean will_be_topmost;
|
|
|
|
HWND insert_after;
|
|
|
|
UINT flags;
|
2005-11-09 12:35:56 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (window->state & GDK_SURFACE_STATE_FULLSCREEN)
|
2011-10-26 10:43:24 +00:00
|
|
|
return;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
old_style = GetWindowLong (GDK_SURFACE_HWND (window), GWL_STYLE);
|
|
|
|
old_exstyle = GetWindowLong (GDK_SURFACE_HWND (window), GWL_EXSTYLE);
|
2005-11-09 12:35:56 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
GetClientRect (GDK_SURFACE_HWND (window), &before);
|
2005-11-09 12:35:56 +00:00
|
|
|
after = before;
|
2008-10-05 00:00:10 +00:00
|
|
|
AdjustWindowRectEx (&before, old_style, FALSE, old_exstyle);
|
2008-03-10 15:48:06 +00:00
|
|
|
|
2015-11-21 03:48:55 +00:00
|
|
|
was_topmost = (old_exstyle & WS_EX_TOPMOST) ? TRUE : FALSE;
|
|
|
|
will_be_topmost = was_topmost;
|
|
|
|
|
|
|
|
old_exstyle &= ~WS_EX_TOPMOST;
|
|
|
|
|
2008-05-23 18:25:12 +00:00
|
|
|
new_style = old_style;
|
2008-10-05 00:00:10 +00:00
|
|
|
new_exstyle = old_exstyle;
|
|
|
|
|
2018-03-20 11:05:26 +00:00
|
|
|
if (window->surface_type == GDK_SURFACE_TEMP)
|
2015-11-21 03:48:55 +00:00
|
|
|
{
|
|
|
|
new_exstyle |= WS_EX_TOOLWINDOW;
|
|
|
|
will_be_topmost = TRUE;
|
|
|
|
}
|
2018-03-20 10:40:08 +00:00
|
|
|
else if (impl->type_hint == GDK_SURFACE_TYPE_HINT_UTILITY)
|
2015-11-21 03:48:55 +00:00
|
|
|
{
|
|
|
|
new_exstyle |= WS_EX_TOOLWINDOW;
|
|
|
|
}
|
2008-10-05 00:00:10 +00:00
|
|
|
else
|
2015-11-21 03:48:55 +00:00
|
|
|
{
|
|
|
|
new_exstyle &= ~WS_EX_TOOLWINDOW;
|
|
|
|
}
|
2008-10-05 00:00:10 +00:00
|
|
|
|
2016-02-23 09:20:55 +00:00
|
|
|
/* We can get away with using layered windows
|
|
|
|
* only when no decorations are needed. It can mean
|
|
|
|
* CSD or borderless non-CSD windows (tooltips?).
|
2016-03-05 03:34:16 +00:00
|
|
|
*
|
|
|
|
* If this window cannot use layered windows, disable it always.
|
|
|
|
* This currently applies to windows using OpenGL, which
|
|
|
|
* does not work with layered windows.
|
2016-02-23 09:20:55 +00:00
|
|
|
*/
|
2016-03-05 03:34:16 +00:00
|
|
|
if (impl->suppress_layered == 0)
|
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
if (_gdk_win32_surface_lacks_wm_decorations (window))
|
2016-03-05 03:34:16 +00:00
|
|
|
impl->layered = g_strcmp0 (g_getenv ("GDK_WIN32_LAYERED"), "0") != 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
impl->layered = FALSE;
|
2016-02-23 09:20:55 +00:00
|
|
|
|
|
|
|
if (impl->layered)
|
|
|
|
new_exstyle |= WS_EX_LAYERED;
|
|
|
|
else
|
|
|
|
new_exstyle &= ~WS_EX_LAYERED;
|
|
|
|
|
2006-02-09 02:58:45 +00:00
|
|
|
if (get_effective_window_decorations (window, &decorations))
|
|
|
|
{
|
|
|
|
all = (decorations & GDK_DECOR_ALL);
|
2018-03-20 10:40:08 +00:00
|
|
|
/* Keep this in sync with the test in _gdk_win32_surface_lacks_wm_decorations() */
|
2008-05-23 18:25:12 +00:00
|
|
|
update_single_bit (&new_style, all, decorations & GDK_DECOR_BORDER, WS_BORDER);
|
|
|
|
update_single_bit (&new_style, all, decorations & GDK_DECOR_RESIZEH, WS_THICKFRAME);
|
|
|
|
update_single_bit (&new_style, all, decorations & GDK_DECOR_TITLE, WS_CAPTION);
|
|
|
|
update_single_bit (&new_style, all, decorations & GDK_DECOR_MENU, WS_SYSMENU);
|
|
|
|
update_single_bit (&new_style, all, decorations & GDK_DECOR_MINIMIZE, WS_MINIMIZEBOX);
|
|
|
|
update_single_bit (&new_style, all, decorations & GDK_DECOR_MAXIMIZE, WS_MAXIMIZEBOX);
|
2006-02-09 02:58:45 +00:00
|
|
|
}
|
2005-11-09 12:35:56 +00:00
|
|
|
|
2008-10-05 00:00:10 +00:00
|
|
|
if (old_style == new_style && old_exstyle == new_exstyle )
|
2008-05-23 18:25:12 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("_gdk_win32_surface_update_style_bits: %p: no change\n",
|
|
|
|
GDK_SURFACE_HWND (window)));
|
2008-05-23 18:25:12 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-10-05 00:00:10 +00:00
|
|
|
if (old_style != new_style)
|
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("_gdk_win32_surface_update_style_bits: %p: STYLE: %s => %s\n",
|
|
|
|
GDK_SURFACE_HWND (window),
|
|
|
|
_gdk_win32_surface_style_to_string (old_style),
|
|
|
|
_gdk_win32_surface_style_to_string (new_style)));
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
SetWindowLong (GDK_SURFACE_HWND (window), GWL_STYLE, new_style);
|
2008-10-05 00:00:10 +00:00
|
|
|
}
|
2008-03-10 15:48:06 +00:00
|
|
|
|
2008-10-05 00:00:10 +00:00
|
|
|
if (old_exstyle != new_exstyle)
|
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("_gdk_win32_surface_update_style_bits: %p: EXSTYLE: %s => %s\n",
|
|
|
|
GDK_SURFACE_HWND (window),
|
|
|
|
_gdk_win32_surface_exstyle_to_string (old_exstyle),
|
|
|
|
_gdk_win32_surface_exstyle_to_string (new_exstyle)));
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
SetWindowLong (GDK_SURFACE_HWND (window), GWL_EXSTYLE, new_exstyle);
|
2008-10-05 00:00:10 +00:00
|
|
|
}
|
2005-11-09 12:35:56 +00:00
|
|
|
|
2008-10-05 00:00:10 +00:00
|
|
|
AdjustWindowRectEx (&after, new_style, FALSE, new_exstyle);
|
2005-11-09 12:35:56 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
GetWindowRect (GDK_SURFACE_HWND (window), &rect);
|
2005-11-09 12:35:56 +00:00
|
|
|
rect.left += after.left - before.left;
|
|
|
|
rect.top += after.top - before.top;
|
|
|
|
rect.right += after.right - before.right;
|
|
|
|
rect.bottom += after.bottom - before.bottom;
|
|
|
|
|
2018-06-17 10:58:16 +00:00
|
|
|
flags = SWP_FRAMECHANGED | SWP_NOACTIVATE | SWP_NOREPOSITION | SWP_NOOWNERZORDER;
|
2008-03-10 15:48:06 +00:00
|
|
|
|
2015-11-21 03:48:55 +00:00
|
|
|
if (will_be_topmost && !was_topmost)
|
|
|
|
{
|
|
|
|
insert_after = HWND_TOPMOST;
|
|
|
|
}
|
|
|
|
else if (was_topmost && !will_be_topmost)
|
|
|
|
{
|
|
|
|
insert_after = HWND_NOTOPMOST;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
flags |= SWP_NOZORDER;
|
2015-11-21 03:58:22 +00:00
|
|
|
insert_after = SWP_NOZORDER_SPECIFIED;
|
2015-11-21 03:48:55 +00:00
|
|
|
}
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
SetWindowPos (GDK_SURFACE_HWND (window), insert_after,
|
2016-04-06 10:22:15 +00:00
|
|
|
rect.left, rect.top,
|
2015-11-21 03:48:55 +00:00
|
|
|
rect.right - rect.left, rect.bottom - rect.top,
|
|
|
|
flags);
|
2008-03-10 15:48:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
update_single_system_menu_entry (HMENU hmenu,
|
|
|
|
gboolean all,
|
|
|
|
int gdk_bit,
|
|
|
|
int menu_entry)
|
|
|
|
{
|
|
|
|
/* all controls the interpretation of gdk_bit -- if all is TRUE,
|
|
|
|
* gdk_bit indicates whether menu entry is disabled; if all is
|
|
|
|
* FALSE, gdk bit indicate whether menu entry is enabled
|
|
|
|
*/
|
|
|
|
if ((!all && gdk_bit) || (all && !gdk_bit))
|
|
|
|
EnableMenuItem (hmenu, menu_entry, MF_BYCOMMAND | MF_ENABLED);
|
|
|
|
else
|
|
|
|
EnableMenuItem (hmenu, menu_entry, MF_BYCOMMAND | MF_GRAYED);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
update_system_menu (GdkSurface *window)
|
2008-03-10 15:48:06 +00:00
|
|
|
{
|
|
|
|
GdkWMFunction functions;
|
|
|
|
BOOL all;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (_gdk_surface_get_functions (window, &functions))
|
2008-03-10 15:48:06 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
HMENU hmenu = GetSystemMenu (GDK_SURFACE_HWND (window), FALSE);
|
2008-03-10 15:48:06 +00:00
|
|
|
|
2008-09-26 16:47:58 +00:00
|
|
|
all = (functions & GDK_FUNC_ALL);
|
2008-03-10 15:48:06 +00:00
|
|
|
update_single_system_menu_entry (hmenu, all, functions & GDK_FUNC_RESIZE, SC_SIZE);
|
|
|
|
update_single_system_menu_entry (hmenu, all, functions & GDK_FUNC_MOVE, SC_MOVE);
|
|
|
|
update_single_system_menu_entry (hmenu, all, functions & GDK_FUNC_MINIMIZE, SC_MINIMIZE);
|
|
|
|
update_single_system_menu_entry (hmenu, all, functions & GDK_FUNC_MAXIMIZE, SC_MAXIMIZE);
|
|
|
|
update_single_system_menu_entry (hmenu, all, functions & GDK_FUNC_CLOSE, SC_CLOSE);
|
|
|
|
}
|
2005-11-09 12:35:56 +00:00
|
|
|
}
|
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_set_decorations (GdkSurface *window,
|
2016-02-23 09:20:55 +00:00
|
|
|
GdkWMDecoration decorations)
|
1999-11-11 22:12:27 +00:00
|
|
|
{
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl;
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (window));
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
impl = GDK_WIN32_SURFACE (window);
|
2016-02-23 09:20:55 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("gdk_surface_set_decorations: %p: %s %s%s%s%s%s%s\n",
|
|
|
|
GDK_SURFACE_HWND (window),
|
2005-11-09 12:35:56 +00:00
|
|
|
(decorations & GDK_DECOR_ALL ? "clearing" : "setting"),
|
2002-10-28 20:48:40 +00:00
|
|
|
(decorations & GDK_DECOR_BORDER ? "BORDER " : ""),
|
|
|
|
(decorations & GDK_DECOR_RESIZEH ? "RESIZEH " : ""),
|
|
|
|
(decorations & GDK_DECOR_TITLE ? "TITLE " : ""),
|
|
|
|
(decorations & GDK_DECOR_MENU ? "MENU " : ""),
|
|
|
|
(decorations & GDK_DECOR_MINIMIZE ? "MINIMIZE " : ""),
|
|
|
|
(decorations & GDK_DECOR_MAXIMIZE ? "MAXIMIZE " : "")));
|
|
|
|
|
2016-02-23 09:20:55 +00:00
|
|
|
if (!impl->decorations)
|
|
|
|
impl->decorations = g_malloc (sizeof (GdkWMDecoration));
|
|
|
|
|
|
|
|
*impl->decorations = decorations;
|
Move the code that sets the window style and extended window style, and
2002-12-21 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkwindow-win32.c (gdk_window_new): Move the code that
sets the window style and extended window style, and adjusts the
width and height to take the window decorations into account
earlier. The adjusted width and height used to be ignored. Remove
the local x, y, width and height variables, no need to further
confuse the code by having local copies. (Partial fix, I hope, for
#101588)
(gdk_window_move): When moving top-level windows, take title bar
and border width into account, offsetting the coordinates before
calling SetWindowPos().
(gdk_window_set_decorations, gdk_window_set_functions):
Reimplement, taking into account the peculiar semantics of
GDK_DECOR_ALL and GDK_FUNC_ALL. (#79036)
(gdk_window_get_decorations): Implement. (#98981)
(gdk_window_set_type_hint): When setting
GDK_WINDOW_TYPE_HINT_MENU, call gdk_window_set_decorations().
(#79036)
* gdk/gdk.def: Add gdk_window_get_decorations. (#98981)
2002-12-21 23:32:20 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
_gdk_win32_surface_update_style_bits (window);
|
1999-11-11 22:12:27 +00:00
|
|
|
}
|
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
static gboolean
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_get_decorations (GdkSurface *window,
|
2016-02-23 09:20:55 +00:00
|
|
|
GdkWMDecoration *decorations)
|
Move the code that sets the window style and extended window style, and
2002-12-21 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkwindow-win32.c (gdk_window_new): Move the code that
sets the window style and extended window style, and adjusts the
width and height to take the window decorations into account
earlier. The adjusted width and height used to be ignored. Remove
the local x, y, width and height variables, no need to further
confuse the code by having local copies. (Partial fix, I hope, for
#101588)
(gdk_window_move): When moving top-level windows, take title bar
and border width into account, offsetting the coordinates before
calling SetWindowPos().
(gdk_window_set_decorations, gdk_window_set_functions):
Reimplement, taking into account the peculiar semantics of
GDK_DECOR_ALL and GDK_FUNC_ALL. (#79036)
(gdk_window_get_decorations): Implement. (#98981)
(gdk_window_set_type_hint): When setting
GDK_WINDOW_TYPE_HINT_MENU, call gdk_window_set_decorations().
(#79036)
* gdk/gdk.def: Add gdk_window_get_decorations. (#98981)
2002-12-21 23:32:20 +00:00
|
|
|
{
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl;
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
g_return_val_if_fail (GDK_IS_SURFACE (window), FALSE);
|
2005-11-02 13:33:27 +00:00
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
impl = GDK_WIN32_SURFACE (window);
|
2016-02-23 09:20:55 +00:00
|
|
|
|
|
|
|
if (impl->decorations == NULL)
|
|
|
|
return FALSE;
|
Move the code that sets the window style and extended window style, and
2002-12-21 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkwindow-win32.c (gdk_window_new): Move the code that
sets the window style and extended window style, and adjusts the
width and height to take the window decorations into account
earlier. The adjusted width and height used to be ignored. Remove
the local x, y, width and height variables, no need to further
confuse the code by having local copies. (Partial fix, I hope, for
#101588)
(gdk_window_move): When moving top-level windows, take title bar
and border width into account, offsetting the coordinates before
calling SetWindowPos().
(gdk_window_set_decorations, gdk_window_set_functions):
Reimplement, taking into account the peculiar semantics of
GDK_DECOR_ALL and GDK_FUNC_ALL. (#79036)
(gdk_window_get_decorations): Implement. (#98981)
(gdk_window_set_type_hint): When setting
GDK_WINDOW_TYPE_HINT_MENU, call gdk_window_set_decorations().
(#79036)
* gdk/gdk.def: Add gdk_window_get_decorations. (#98981)
2002-12-21 23:32:20 +00:00
|
|
|
|
2016-02-23 09:20:55 +00:00
|
|
|
*decorations = *impl->decorations;
|
|
|
|
|
|
|
|
return TRUE;
|
2006-02-09 02:58:45 +00:00
|
|
|
}
|
Move the code that sets the window style and extended window style, and
2002-12-21 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkwindow-win32.c (gdk_window_new): Move the code that
sets the window style and extended window style, and adjusts the
width and height to take the window decorations into account
earlier. The adjusted width and height used to be ignored. Remove
the local x, y, width and height variables, no need to further
confuse the code by having local copies. (Partial fix, I hope, for
#101588)
(gdk_window_move): When moving top-level windows, take title bar
and border width into account, offsetting the coordinates before
calling SetWindowPos().
(gdk_window_set_decorations, gdk_window_set_functions):
Reimplement, taking into account the peculiar semantics of
GDK_DECOR_ALL and GDK_FUNC_ALL. (#79036)
(gdk_window_get_decorations): Implement. (#98981)
(gdk_window_set_type_hint): When setting
GDK_WINDOW_TYPE_HINT_MENU, call gdk_window_set_decorations().
(#79036)
* gdk/gdk.def: Add gdk_window_get_decorations. (#98981)
2002-12-21 23:32:20 +00:00
|
|
|
|
2006-02-09 02:58:45 +00:00
|
|
|
static GQuark
|
|
|
|
get_functions_quark ()
|
|
|
|
{
|
|
|
|
static GQuark quark = 0;
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2006-02-09 02:58:45 +00:00
|
|
|
if (!quark)
|
2018-03-21 10:49:14 +00:00
|
|
|
quark = g_quark_from_static_string ("gdk-surface-functions");
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2006-02-09 02:58:45 +00:00
|
|
|
return quark;
|
Move the code that sets the window style and extended window style, and
2002-12-21 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkwindow-win32.c (gdk_window_new): Move the code that
sets the window style and extended window style, and adjusts the
width and height to take the window decorations into account
earlier. The adjusted width and height used to be ignored. Remove
the local x, y, width and height variables, no need to further
confuse the code by having local copies. (Partial fix, I hope, for
#101588)
(gdk_window_move): When moving top-level windows, take title bar
and border width into account, offsetting the coordinates before
calling SetWindowPos().
(gdk_window_set_decorations, gdk_window_set_functions):
Reimplement, taking into account the peculiar semantics of
GDK_DECOR_ALL and GDK_FUNC_ALL. (#79036)
(gdk_window_get_decorations): Implement. (#98981)
(gdk_window_set_type_hint): When setting
GDK_WINDOW_TYPE_HINT_MENU, call gdk_window_set_decorations().
(#79036)
* gdk/gdk.def: Add gdk_window_get_decorations. (#98981)
2002-12-21 23:32:20 +00:00
|
|
|
}
|
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_set_functions (GdkSurface *window,
|
1999-11-11 22:12:27 +00:00
|
|
|
GdkWMFunction functions)
|
|
|
|
{
|
2006-02-09 02:58:45 +00:00
|
|
|
GdkWMFunction* functions_copy;
|
1999-11-11 22:12:27 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (window));
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("gdk_surface_set_functions: %p: %s %s%s%s%s%s\n",
|
|
|
|
GDK_SURFACE_HWND (window),
|
2005-11-09 12:35:56 +00:00
|
|
|
(functions & GDK_FUNC_ALL ? "clearing" : "setting"),
|
2002-10-28 20:48:40 +00:00
|
|
|
(functions & GDK_FUNC_RESIZE ? "RESIZE " : ""),
|
|
|
|
(functions & GDK_FUNC_MOVE ? "MOVE " : ""),
|
|
|
|
(functions & GDK_FUNC_MINIMIZE ? "MINIMIZE " : ""),
|
|
|
|
(functions & GDK_FUNC_MAXIMIZE ? "MAXIMIZE " : ""),
|
|
|
|
(functions & GDK_FUNC_CLOSE ? "CLOSE " : "")));
|
|
|
|
|
2006-02-09 02:58:45 +00:00
|
|
|
functions_copy = g_malloc (sizeof (GdkWMFunction));
|
|
|
|
*functions_copy = functions;
|
|
|
|
g_object_set_qdata_full (G_OBJECT (window), get_functions_quark (), functions_copy, g_free);
|
|
|
|
|
2008-03-10 15:48:06 +00:00
|
|
|
update_system_menu (window);
|
2006-02-09 02:58:45 +00:00
|
|
|
}
|
1999-11-11 22:12:27 +00:00
|
|
|
|
2006-02-09 02:58:45 +00:00
|
|
|
gboolean
|
2018-03-20 10:40:08 +00:00
|
|
|
_gdk_surface_get_functions (GdkSurface *window,
|
2006-02-09 02:58:45 +00:00
|
|
|
GdkWMFunction *functions)
|
|
|
|
{
|
2011-10-26 10:43:24 +00:00
|
|
|
GdkWMFunction* functions_set;
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2006-02-09 02:58:45 +00:00
|
|
|
functions_set = g_object_get_qdata (G_OBJECT (window), get_functions_quark ());
|
|
|
|
if (functions_set)
|
|
|
|
*functions = *functions_set;
|
|
|
|
|
|
|
|
return (functions_set != NULL);
|
1999-11-11 22:12:27 +00:00
|
|
|
}
|
|
|
|
|
2016-03-12 16:26:19 +00:00
|
|
|
#if defined(MORE_AEROSNAP_DEBUGGING)
|
2016-03-08 05:03:29 +00:00
|
|
|
static void
|
|
|
|
log_region (gchar *prefix, AeroSnapEdgeRegion *region)
|
|
|
|
{
|
|
|
|
GDK_NOTE (MISC, g_print ("Region %s:\n"
|
|
|
|
"edge %d x %d @ %d x %d\n"
|
|
|
|
"trig %d x %d @ %d x %d\n",
|
|
|
|
prefix,
|
|
|
|
region->edge.width,
|
|
|
|
region->edge.height,
|
|
|
|
region->edge.x,
|
|
|
|
region->edge.y,
|
|
|
|
region->trigger.width,
|
|
|
|
region->trigger.height,
|
|
|
|
region->trigger.x,
|
|
|
|
region->trigger.y));
|
|
|
|
}
|
2016-03-12 16:26:19 +00:00
|
|
|
#endif
|
2016-03-08 05:03:29 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
calculate_aerosnap_regions (GdkW32DragMoveResizeContext *context)
|
|
|
|
{
|
|
|
|
GdkDisplay *display;
|
2016-10-21 05:40:49 +00:00
|
|
|
gint n_monitors, monitor_idx, other_monitor_idx;
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl = GDK_WIN32_SURFACE (context->window);
|
2016-03-12 16:26:19 +00:00
|
|
|
#if defined(MORE_AEROSNAP_DEBUGGING)
|
|
|
|
gint i;
|
|
|
|
#endif
|
2016-03-08 05:03:29 +00:00
|
|
|
|
|
|
|
display = gdk_display_get_default ();
|
2016-10-21 05:40:49 +00:00
|
|
|
n_monitors = gdk_display_get_n_monitors (display);
|
2016-03-08 05:03:29 +00:00
|
|
|
|
|
|
|
#define _M_UP 0
|
|
|
|
#define _M_DOWN 1
|
|
|
|
#define _M_LEFT 2
|
|
|
|
#define _M_RIGHT 3
|
|
|
|
|
2016-10-21 05:40:49 +00:00
|
|
|
for (monitor_idx = 0; monitor_idx < n_monitors; monitor_idx++)
|
2016-03-08 05:03:29 +00:00
|
|
|
{
|
|
|
|
GdkRectangle wa;
|
|
|
|
GdkRectangle geometry;
|
|
|
|
AeroSnapEdgeRegion snap_region;
|
|
|
|
gboolean move_edge[4] = { TRUE, FALSE, TRUE, TRUE };
|
|
|
|
gboolean resize_edge[2] = { TRUE, TRUE };
|
|
|
|
gint diff;
|
|
|
|
gint thickness, trigger_thickness;
|
2016-10-21 05:40:49 +00:00
|
|
|
GdkMonitor *monitor;
|
2016-03-08 05:03:29 +00:00
|
|
|
|
2016-10-21 05:40:49 +00:00
|
|
|
monitor = gdk_display_get_monitor (display, monitor_idx);
|
|
|
|
gdk_monitor_get_workarea (monitor, &wa);
|
|
|
|
gdk_monitor_get_geometry (monitor, &geometry);
|
2016-03-08 05:03:29 +00:00
|
|
|
|
2016-10-21 05:40:49 +00:00
|
|
|
for (other_monitor_idx = 0;
|
|
|
|
other_monitor_idx < n_monitors &&
|
2016-03-08 05:03:29 +00:00
|
|
|
(move_edge[_M_UP] || move_edge[_M_LEFT] ||
|
|
|
|
move_edge[_M_RIGHT] || resize_edge[_M_DOWN]);
|
2016-10-21 05:40:49 +00:00
|
|
|
other_monitor_idx++)
|
2016-03-08 05:03:29 +00:00
|
|
|
{
|
|
|
|
GdkRectangle other_wa;
|
2016-10-21 05:40:49 +00:00
|
|
|
GdkMonitor *other_monitor;
|
2016-03-08 05:03:29 +00:00
|
|
|
|
2016-10-21 05:40:49 +00:00
|
|
|
if (other_monitor_idx == monitor_idx)
|
2016-03-08 05:03:29 +00:00
|
|
|
continue;
|
|
|
|
|
2016-10-21 05:40:49 +00:00
|
|
|
other_monitor = gdk_display_get_monitor (display, other_monitor_idx);
|
|
|
|
gdk_monitor_get_workarea (other_monitor, &other_wa);
|
2016-03-08 05:03:29 +00:00
|
|
|
|
|
|
|
/* An edge triggers AeroSnap only if there are no
|
|
|
|
* monitors beyond that edge.
|
|
|
|
* Even if there's another monitor, but it does not cover
|
|
|
|
* the whole edge (it's smaller or is not aligned to
|
|
|
|
* the corner of current monitor), that edge is still
|
|
|
|
* removed from the trigger list.
|
|
|
|
*/
|
|
|
|
if (other_wa.x >= wa.x + wa.width)
|
|
|
|
move_edge[_M_RIGHT] = FALSE;
|
|
|
|
|
|
|
|
if (other_wa.x + other_wa.width <= wa.x)
|
|
|
|
move_edge[_M_LEFT] = FALSE;
|
|
|
|
|
|
|
|
if (other_wa.y + other_wa.height <= wa.y)
|
|
|
|
{
|
|
|
|
move_edge[_M_UP] = FALSE;
|
|
|
|
resize_edge[_M_UP] = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (other_wa.y >= wa.y + wa.height)
|
|
|
|
{
|
|
|
|
/* no move_edge for the bottom edge, just resize_edge */
|
|
|
|
resize_edge[_M_DOWN] = FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-20 11:05:26 +00:00
|
|
|
thickness = AEROSNAP_REGION_THICKNESS * impl->surface_scale;
|
|
|
|
trigger_thickness = AEROSNAP_REGION_TRIGGER_THICKNESS * impl->surface_scale;
|
2016-03-08 05:03:29 +00:00
|
|
|
|
|
|
|
snap_region.edge = wa;
|
|
|
|
snap_region.trigger = wa;
|
|
|
|
snap_region.edge.height = thickness;
|
|
|
|
snap_region.trigger.height = trigger_thickness;
|
|
|
|
|
|
|
|
/* Extend both regions into toolbar space.
|
|
|
|
* When there's no toolbar, diff == 0.
|
|
|
|
*/
|
|
|
|
diff = wa.y - geometry.y;
|
|
|
|
snap_region.edge.height += diff;
|
|
|
|
snap_region.edge.y -= diff;
|
|
|
|
snap_region.trigger.height += diff;
|
|
|
|
snap_region.trigger.y -= diff;
|
|
|
|
|
|
|
|
if (move_edge[_M_UP])
|
|
|
|
g_array_append_val (context->maximize_regions, snap_region);
|
|
|
|
|
|
|
|
if (resize_edge[_M_UP])
|
|
|
|
g_array_append_val (context->fullup_regions, snap_region);
|
|
|
|
|
|
|
|
snap_region.edge = wa;
|
|
|
|
snap_region.trigger = wa;
|
|
|
|
snap_region.edge.width = thickness;
|
|
|
|
snap_region.trigger.width = trigger_thickness;
|
|
|
|
|
|
|
|
diff = wa.x - geometry.x;
|
|
|
|
snap_region.edge.width += diff;
|
|
|
|
snap_region.edge.x -= diff;
|
|
|
|
snap_region.trigger.width += diff;
|
|
|
|
snap_region.trigger.x -= diff;
|
|
|
|
|
|
|
|
if (move_edge[_M_LEFT])
|
|
|
|
g_array_append_val (context->halfleft_regions, snap_region);
|
|
|
|
|
|
|
|
snap_region.edge = wa;
|
|
|
|
snap_region.trigger = wa;
|
|
|
|
snap_region.edge.x += wa.width - thickness;
|
|
|
|
snap_region.edge.width = thickness;
|
|
|
|
snap_region.trigger.x += wa.width - trigger_thickness;
|
|
|
|
snap_region.trigger.width = trigger_thickness;
|
|
|
|
|
|
|
|
diff = (geometry.x + geometry.width) - (wa.x + wa.width);
|
|
|
|
snap_region.edge.width += diff;
|
|
|
|
snap_region.trigger.width += diff;
|
|
|
|
|
|
|
|
if (move_edge[_M_RIGHT])
|
|
|
|
g_array_append_val (context->halfright_regions, snap_region);
|
|
|
|
|
|
|
|
snap_region.edge = wa;
|
|
|
|
snap_region.trigger = wa;
|
|
|
|
snap_region.edge.y += wa.height - thickness;
|
|
|
|
snap_region.edge.height = thickness;
|
|
|
|
snap_region.trigger.y += wa.height - trigger_thickness;
|
|
|
|
snap_region.trigger.height = trigger_thickness;
|
|
|
|
|
|
|
|
diff = (geometry.y + geometry.height) - (wa.y + wa.height);
|
|
|
|
snap_region.edge.height += diff;
|
|
|
|
snap_region.trigger.height += diff;
|
|
|
|
|
|
|
|
if (resize_edge[_M_DOWN])
|
|
|
|
g_array_append_val (context->fullup_regions, snap_region);
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef _M_UP
|
|
|
|
#undef _M_DOWN
|
|
|
|
#undef _M_LEFT
|
|
|
|
#undef _M_RIGHT
|
|
|
|
|
2016-03-12 16:26:19 +00:00
|
|
|
#if defined(MORE_AEROSNAP_DEBUGGING)
|
2016-03-08 05:03:29 +00:00
|
|
|
for (i = 0; i < context->maximize_regions->len; i++)
|
|
|
|
log_region ("maximize", &g_array_index (context->maximize_regions, AeroSnapEdgeRegion, i));
|
|
|
|
|
|
|
|
for (i = 0; i < context->halfleft_regions->len; i++)
|
|
|
|
log_region ("halfleft", &g_array_index (context->halfleft_regions, AeroSnapEdgeRegion, i));
|
|
|
|
|
|
|
|
for (i = 0; i < context->halfright_regions->len; i++)
|
|
|
|
log_region ("halfright", &g_array_index (context->halfright_regions, AeroSnapEdgeRegion, i));
|
|
|
|
|
|
|
|
for (i = 0; i < context->fullup_regions->len; i++)
|
|
|
|
log_region ("fullup", &g_array_index (context->fullup_regions, AeroSnapEdgeRegion, i));
|
2016-03-12 16:26:19 +00:00
|
|
|
#endif
|
2016-03-08 05:03:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
discard_snapinfo (GdkSurface *window)
|
2016-03-08 05:03:29 +00:00
|
|
|
{
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl;
|
2016-03-08 05:03:29 +00:00
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
impl = GDK_WIN32_SURFACE (window);
|
2016-03-08 05:03:29 +00:00
|
|
|
|
|
|
|
impl->snap_state = GDK_WIN32_AEROSNAP_STATE_UNDETERMINED;
|
|
|
|
|
|
|
|
if (impl->snap_stash == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
g_clear_pointer (&impl->snap_stash, g_free);
|
|
|
|
g_clear_pointer (&impl->snap_stash_int, g_free);
|
|
|
|
}
|
|
|
|
|
2016-03-08 02:33:47 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
unsnap (GdkSurface *window,
|
2016-10-21 05:40:49 +00:00
|
|
|
GdkMonitor *monitor)
|
2016-03-08 02:33:47 +00:00
|
|
|
{
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl;
|
2016-03-08 02:33:47 +00:00
|
|
|
GdkRectangle rect;
|
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
impl = GDK_WIN32_SURFACE (window);
|
2016-03-08 02:33:47 +00:00
|
|
|
|
|
|
|
impl->snap_state = GDK_WIN32_AEROSNAP_STATE_UNDETERMINED;
|
|
|
|
|
|
|
|
if (impl->snap_stash == NULL)
|
|
|
|
return;
|
|
|
|
|
2016-10-21 05:40:49 +00:00
|
|
|
gdk_monitor_get_workarea (monitor, &rect);
|
2016-03-08 02:33:47 +00:00
|
|
|
|
|
|
|
GDK_NOTE (MISC, g_print ("Monitor work area %d x %d @ %d : %d\n", rect.width, rect.height, rect.x, rect.y));
|
|
|
|
|
2016-03-08 03:17:09 +00:00
|
|
|
if (rect.width >= impl->snap_stash_int->width &&
|
|
|
|
rect.height >= impl->snap_stash_int->height)
|
|
|
|
{
|
|
|
|
/* If the window fits into new work area without resizing it,
|
|
|
|
* place it into new work area without resizing it.
|
|
|
|
*/
|
|
|
|
gdouble left, right, up, down, hratio, vratio;
|
|
|
|
gdouble hscale, vscale;
|
|
|
|
gdouble new_left, new_up;
|
|
|
|
|
|
|
|
left = impl->snap_stash->x;
|
|
|
|
right = 1.0 - (impl->snap_stash->x + impl->snap_stash->width);
|
|
|
|
up = impl->snap_stash->y;
|
|
|
|
down = 1.0 - (impl->snap_stash->y + impl->snap_stash->height);
|
|
|
|
hscale = 1.0;
|
|
|
|
|
|
|
|
if (right > 0.001)
|
|
|
|
{
|
|
|
|
hratio = left / right;
|
|
|
|
hscale = hratio / (1.0 + hratio);
|
|
|
|
}
|
|
|
|
|
|
|
|
new_left = (gdouble) (rect.width - impl->snap_stash_int->width) * hscale;
|
|
|
|
|
|
|
|
vscale = 1.0;
|
|
|
|
|
|
|
|
if (down > 0.001)
|
|
|
|
{
|
|
|
|
vratio = up / down;
|
|
|
|
vscale = vratio / (1.0 + vratio);
|
|
|
|
}
|
|
|
|
|
|
|
|
new_up = (gdouble) (rect.height - impl->snap_stash_int->height) * vscale;
|
|
|
|
|
|
|
|
rect.x = round (rect.x + new_left);
|
|
|
|
rect.y = round (rect.y + new_up);
|
|
|
|
rect.width = impl->snap_stash_int->width;
|
|
|
|
rect.height = impl->snap_stash_int->height;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Calculate actual unsnapped window size based on its
|
|
|
|
* old relative size. Same for position.
|
|
|
|
*/
|
|
|
|
rect.x += round (rect.width * impl->snap_stash->x);
|
|
|
|
rect.y += round (rect.height * impl->snap_stash->y);
|
|
|
|
rect.width = round (rect.width * impl->snap_stash->width);
|
|
|
|
rect.height = round (rect.height * impl->snap_stash->height);
|
|
|
|
}
|
2016-03-08 02:33:47 +00:00
|
|
|
|
|
|
|
GDK_NOTE (MISC, g_print ("Unsnapped window size %d x %d @ %d : %d\n", rect.width, rect.height, rect.x, rect.y));
|
|
|
|
|
2019-07-15 13:47:12 +00:00
|
|
|
gdk_win32_surface_move_resize (window, rect.x, rect.y,
|
|
|
|
rect.width, rect.height);
|
2016-03-08 02:33:47 +00:00
|
|
|
|
|
|
|
g_clear_pointer (&impl->snap_stash, g_free);
|
2016-03-08 03:17:09 +00:00
|
|
|
g_clear_pointer (&impl->snap_stash_int, g_free);
|
2016-03-08 02:33:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
stash_window (GdkSurface *window,
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl)
|
2016-03-08 02:33:47 +00:00
|
|
|
{
|
|
|
|
gint x, y;
|
2017-08-08 14:19:45 +00:00
|
|
|
gint width, wwidth;
|
|
|
|
gint height, wheight;
|
2016-03-08 02:33:47 +00:00
|
|
|
WINDOWPLACEMENT placement;
|
|
|
|
HMONITOR hmonitor;
|
|
|
|
MONITORINFO hmonitor_info;
|
|
|
|
|
|
|
|
placement.length = sizeof(WINDOWPLACEMENT);
|
|
|
|
|
|
|
|
/* Use W32 API to get unmaximized window size, which GDK doesn't remember */
|
2018-03-20 10:40:08 +00:00
|
|
|
if (!GetWindowPlacement (GDK_SURFACE_HWND (window), &placement))
|
2016-03-08 02:33:47 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
/* MSDN is very vague, but in practice rcNormalPosition is the same as GetWindowRect(),
|
|
|
|
* only with adjustments for toolbars (which creates rather weird coodinate space issues).
|
|
|
|
* We need to get monitor info and apply workarea vs monitorarea diff to turn
|
|
|
|
* these into screen coordinates proper.
|
|
|
|
*/
|
2018-03-20 10:40:08 +00:00
|
|
|
hmonitor = MonitorFromWindow (GDK_SURFACE_HWND (window), MONITOR_DEFAULTTONEAREST);
|
2016-03-08 02:33:47 +00:00
|
|
|
hmonitor_info.cbSize = sizeof (hmonitor_info);
|
|
|
|
|
|
|
|
if (!GetMonitorInfoA (hmonitor, &hmonitor_info))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (impl->snap_stash == NULL)
|
|
|
|
impl->snap_stash = g_new0 (GdkRectangleDouble, 1);
|
|
|
|
|
2016-03-08 03:17:09 +00:00
|
|
|
if (impl->snap_stash_int == NULL)
|
|
|
|
impl->snap_stash_int = g_new0 (GdkRectangle, 1);
|
|
|
|
|
2016-03-08 02:33:47 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("monitor work area %ld x %ld @ %ld : %ld\n",
|
2018-03-20 11:05:26 +00:00
|
|
|
(hmonitor_info.rcWork.right - hmonitor_info.rcWork.left) / impl->surface_scale,
|
|
|
|
(hmonitor_info.rcWork.bottom - hmonitor_info.rcWork.top) / impl->surface_scale,
|
2016-03-08 02:33:47 +00:00
|
|
|
hmonitor_info.rcWork.left,
|
|
|
|
hmonitor_info.rcWork.top));
|
|
|
|
GDK_NOTE (MISC, g_print ("monitor area %ld x %ld @ %ld : %ld\n",
|
2018-03-20 11:05:26 +00:00
|
|
|
(hmonitor_info.rcMonitor.right - hmonitor_info.rcMonitor.left) / impl->surface_scale,
|
|
|
|
(hmonitor_info.rcMonitor.bottom - hmonitor_info.rcMonitor.top) / impl->surface_scale,
|
2016-03-08 02:33:47 +00:00
|
|
|
hmonitor_info.rcMonitor.left,
|
|
|
|
hmonitor_info.rcMonitor.top));
|
|
|
|
GDK_NOTE (MISC, g_print ("window work place %ld x %ld @ %ld : %ld\n",
|
2018-03-20 11:05:26 +00:00
|
|
|
(placement.rcNormalPosition.right - placement.rcNormalPosition.left) / impl->surface_scale,
|
|
|
|
(placement.rcNormalPosition.bottom - placement.rcNormalPosition.top) / impl->surface_scale,
|
2016-03-08 02:33:47 +00:00
|
|
|
placement.rcNormalPosition.left,
|
|
|
|
placement.rcNormalPosition.top));
|
|
|
|
|
2018-03-20 11:05:26 +00:00
|
|
|
width = (placement.rcNormalPosition.right - placement.rcNormalPosition.left) / impl->surface_scale;
|
|
|
|
height = (placement.rcNormalPosition.bottom - placement.rcNormalPosition.top) / impl->surface_scale;
|
|
|
|
x = (placement.rcNormalPosition.left - hmonitor_info.rcMonitor.left) / impl->surface_scale;
|
|
|
|
y = (placement.rcNormalPosition.top - hmonitor_info.rcMonitor.top) / impl->surface_scale;
|
2017-08-08 14:19:45 +00:00
|
|
|
|
2018-03-20 11:05:26 +00:00
|
|
|
wwidth = (hmonitor_info.rcWork.right - hmonitor_info.rcWork.left) / impl->surface_scale;
|
|
|
|
wheight = (hmonitor_info.rcWork.bottom - hmonitor_info.rcWork.top) / impl->surface_scale;
|
2016-03-08 02:33:47 +00:00
|
|
|
|
2017-08-08 14:19:45 +00:00
|
|
|
impl->snap_stash->x = (gdouble) (x) / (gdouble) (wwidth);
|
|
|
|
impl->snap_stash->y = (gdouble) (y) / (gdouble) (wheight);
|
|
|
|
impl->snap_stash->width = (gdouble) width / (gdouble) (wwidth);
|
|
|
|
impl->snap_stash->height = (gdouble) height / (gdouble) (wheight);
|
2016-03-08 02:33:47 +00:00
|
|
|
|
2017-08-08 14:19:45 +00:00
|
|
|
impl->snap_stash_int->x = x;
|
|
|
|
impl->snap_stash_int->y = y;
|
|
|
|
impl->snap_stash_int->width = width;
|
|
|
|
impl->snap_stash_int->height = height;
|
2016-03-08 03:17:09 +00:00
|
|
|
|
2016-03-08 02:33:47 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("Stashed window %d x %d @ %d : %d as %f x %f @ %f : %f\n",
|
|
|
|
width, height, x, y,
|
|
|
|
impl->snap_stash->width, impl->snap_stash->height, impl->snap_stash->x, impl->snap_stash->y));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
snap_up (GdkSurface *window)
|
2016-03-08 02:33:47 +00:00
|
|
|
{
|
|
|
|
SHORT maxysize;
|
|
|
|
gint x, y;
|
2016-03-15 10:17:45 +00:00
|
|
|
gint width, height;
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl;
|
2016-03-08 02:33:47 +00:00
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
impl = GDK_WIN32_SURFACE (window);
|
2016-03-08 02:33:47 +00:00
|
|
|
|
|
|
|
impl->snap_state = GDK_WIN32_AEROSNAP_STATE_FULLUP;
|
|
|
|
|
2016-10-21 05:40:49 +00:00
|
|
|
stash_window (window, impl);
|
2016-03-15 10:17:45 +00:00
|
|
|
|
2018-03-20 11:05:26 +00:00
|
|
|
maxysize = GetSystemMetrics (SM_CYVIRTUALSCREEN) / impl->surface_scale;
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_surface_get_position (window, &x, &y);
|
|
|
|
width = gdk_surface_get_width (window);
|
2016-03-08 02:33:47 +00:00
|
|
|
|
2016-03-15 10:17:45 +00:00
|
|
|
y = 0;
|
|
|
|
height = maxysize;
|
2016-03-08 02:33:47 +00:00
|
|
|
|
2017-08-08 14:19:45 +00:00
|
|
|
x = x - impl->margins.left;
|
|
|
|
y = y - impl->margins.top;
|
2016-03-15 10:17:45 +00:00
|
|
|
width += impl->margins_x;
|
|
|
|
height += impl->margins_y;
|
|
|
|
|
2019-07-15 13:47:12 +00:00
|
|
|
gdk_win32_surface_move_resize (window, x, y, width, height);
|
2016-03-08 02:33:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
snap_left (GdkSurface *window,
|
2016-10-21 05:40:49 +00:00
|
|
|
GdkMonitor *monitor,
|
|
|
|
GdkMonitor *snap_monitor)
|
2016-03-08 02:33:47 +00:00
|
|
|
{
|
|
|
|
GdkRectangle rect;
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl;
|
2016-03-08 02:33:47 +00:00
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
impl = GDK_WIN32_SURFACE (window);
|
2016-03-08 02:33:47 +00:00
|
|
|
|
|
|
|
impl->snap_state = GDK_WIN32_AEROSNAP_STATE_HALFLEFT;
|
|
|
|
|
2016-10-21 05:40:49 +00:00
|
|
|
gdk_monitor_get_workarea (snap_monitor, &rect);
|
2016-03-08 02:33:47 +00:00
|
|
|
|
2016-10-21 05:40:49 +00:00
|
|
|
stash_window (window, impl);
|
2016-03-08 02:33:47 +00:00
|
|
|
|
2017-08-08 14:19:45 +00:00
|
|
|
rect.width = rect.width / 2;
|
2016-03-08 02:33:47 +00:00
|
|
|
|
2017-08-08 14:19:45 +00:00
|
|
|
rect.x = rect.x - impl->margins.left;
|
|
|
|
rect.y = rect.y - impl->margins.top;
|
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
|
|
|
rect.width = rect.width + impl->margins_x;
|
|
|
|
rect.height = rect.height + impl->margins_y;
|
2016-03-15 10:17:45 +00:00
|
|
|
|
2019-07-15 13:47:12 +00:00
|
|
|
gdk_win32_surface_move_resize (window,
|
|
|
|
rect.x, rect.y,
|
|
|
|
rect.width, rect.height);
|
2016-03-08 02:33:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
snap_right (GdkSurface *window,
|
2016-10-21 05:40:49 +00:00
|
|
|
GdkMonitor *monitor,
|
|
|
|
GdkMonitor *snap_monitor)
|
2016-03-08 02:33:47 +00:00
|
|
|
{
|
|
|
|
GdkRectangle rect;
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl;
|
2016-03-08 02:33:47 +00:00
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
impl = GDK_WIN32_SURFACE (window);
|
2016-03-08 02:33:47 +00:00
|
|
|
|
|
|
|
impl->snap_state = GDK_WIN32_AEROSNAP_STATE_HALFRIGHT;
|
|
|
|
|
2016-10-21 05:40:49 +00:00
|
|
|
gdk_monitor_get_workarea (snap_monitor, &rect);
|
2016-03-08 02:33:47 +00:00
|
|
|
|
2016-10-21 05:40:49 +00:00
|
|
|
stash_window (window, impl);
|
2016-03-08 02:33:47 +00:00
|
|
|
|
2017-08-08 14:19:45 +00:00
|
|
|
rect.width = rect.width / 2;
|
2016-03-08 02:33:47 +00:00
|
|
|
rect.x += rect.width;
|
|
|
|
|
2017-08-08 14:19:45 +00:00
|
|
|
rect.x = rect.x - impl->margins.left;
|
|
|
|
rect.y = rect.y - impl->margins.top;
|
|
|
|
rect.width = rect.width + impl->margins_x;
|
|
|
|
rect.height = rect.height + impl->margins_y;
|
2016-03-15 10:17:45 +00:00
|
|
|
|
2019-07-15 13:47:12 +00:00
|
|
|
gdk_win32_surface_move_resize (window,
|
|
|
|
rect.x, rect.y,
|
|
|
|
rect.width, rect.height);
|
2016-03-08 02:33:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2018-03-20 10:40:08 +00:00
|
|
|
_gdk_win32_surface_handle_aerosnap (GdkSurface *window,
|
2016-03-08 02:33:47 +00:00
|
|
|
GdkWin32AeroSnapCombo combo)
|
|
|
|
{
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl;
|
2016-03-08 02:33:47 +00:00
|
|
|
GdkDisplay *display;
|
2016-10-21 05:40:49 +00:00
|
|
|
gint n_monitors;
|
2018-03-20 11:05:26 +00:00
|
|
|
GdkSurfaceState surface_state = gdk_surface_get_state (window);
|
2019-11-16 19:50:57 +00:00
|
|
|
gboolean minimized = surface_state & GDK_SURFACE_STATE_MINIMIZED;
|
2018-03-20 11:05:26 +00:00
|
|
|
gboolean maximized = surface_state & GDK_SURFACE_STATE_MAXIMIZED;
|
2016-03-08 02:33:47 +00:00
|
|
|
gboolean halfsnapped;
|
2016-10-21 05:40:49 +00:00
|
|
|
GdkMonitor *monitor;
|
2016-03-08 02:33:47 +00:00
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
impl = GDK_WIN32_SURFACE (window);
|
2018-03-20 10:40:08 +00:00
|
|
|
display = gdk_surface_get_display (window);
|
2016-10-21 05:40:49 +00:00
|
|
|
n_monitors = gdk_display_get_n_monitors (display);
|
2018-03-20 11:05:26 +00:00
|
|
|
monitor = gdk_display_get_monitor_at_surface (display, window);
|
2016-03-08 02:33:47 +00:00
|
|
|
|
|
|
|
if (minimized && maximized)
|
|
|
|
minimized = FALSE;
|
|
|
|
|
|
|
|
halfsnapped = (impl->snap_state == GDK_WIN32_AEROSNAP_STATE_HALFRIGHT ||
|
|
|
|
impl->snap_state == GDK_WIN32_AEROSNAP_STATE_HALFLEFT ||
|
|
|
|
impl->snap_state == GDK_WIN32_AEROSNAP_STATE_FULLUP);
|
|
|
|
|
|
|
|
switch (combo)
|
|
|
|
{
|
|
|
|
case GDK_WIN32_AEROSNAP_COMBO_NOTHING:
|
|
|
|
/* Do nothing */
|
|
|
|
break;
|
|
|
|
case GDK_WIN32_AEROSNAP_COMBO_UP:
|
|
|
|
if (!maximized)
|
|
|
|
{
|
2016-10-21 05:40:49 +00:00
|
|
|
unsnap (window, monitor);
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_surface_maximize (window);
|
2016-03-08 02:33:47 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case GDK_WIN32_AEROSNAP_COMBO_DOWN:
|
|
|
|
case GDK_WIN32_AEROSNAP_COMBO_SHIFTDOWN:
|
|
|
|
if (maximized)
|
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_surface_unmaximize (window);
|
2016-10-21 05:40:49 +00:00
|
|
|
unsnap (window, monitor);
|
2016-03-08 02:33:47 +00:00
|
|
|
}
|
|
|
|
else if (halfsnapped)
|
2016-10-21 05:40:49 +00:00
|
|
|
unsnap (window, monitor);
|
2016-03-08 02:33:47 +00:00
|
|
|
else if (!minimized)
|
2019-11-16 19:50:57 +00:00
|
|
|
gdk_surface_minimize (window);
|
2016-03-08 02:33:47 +00:00
|
|
|
break;
|
|
|
|
case GDK_WIN32_AEROSNAP_COMBO_LEFT:
|
|
|
|
if (maximized)
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_surface_unmaximize (window);
|
2016-03-08 02:33:47 +00:00
|
|
|
|
|
|
|
if (impl->snap_state == GDK_WIN32_AEROSNAP_STATE_UNDETERMINED ||
|
|
|
|
impl->snap_state == GDK_WIN32_AEROSNAP_STATE_FULLUP)
|
|
|
|
{
|
2016-10-21 05:40:49 +00:00
|
|
|
unsnap (window, monitor);
|
|
|
|
snap_left (window, monitor, monitor);
|
2016-03-08 02:33:47 +00:00
|
|
|
}
|
|
|
|
else if (impl->snap_state == GDK_WIN32_AEROSNAP_STATE_HALFLEFT)
|
|
|
|
{
|
2016-10-21 05:40:49 +00:00
|
|
|
unsnap (window, monitor);
|
|
|
|
snap_right (window,
|
|
|
|
monitor,
|
2020-01-30 20:01:24 +00:00
|
|
|
(gdk_win32_display_get_primary_monitor (monitor->display) == monitor) ? monitor : gdk_display_get_monitor (display, n_monitors - 1));
|
2016-03-08 02:33:47 +00:00
|
|
|
}
|
|
|
|
else if (impl->snap_state == GDK_WIN32_AEROSNAP_STATE_HALFRIGHT)
|
|
|
|
{
|
2016-10-21 05:40:49 +00:00
|
|
|
unsnap (window, monitor);
|
2016-03-08 02:33:47 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case GDK_WIN32_AEROSNAP_COMBO_RIGHT:
|
|
|
|
if (maximized)
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_surface_unmaximize (window);
|
2016-03-08 02:33:47 +00:00
|
|
|
|
|
|
|
if (impl->snap_state == GDK_WIN32_AEROSNAP_STATE_UNDETERMINED ||
|
|
|
|
impl->snap_state == GDK_WIN32_AEROSNAP_STATE_FULLUP)
|
|
|
|
{
|
2016-10-21 05:40:49 +00:00
|
|
|
unsnap (window, monitor);
|
|
|
|
snap_right (window, monitor, monitor);
|
2016-03-08 02:33:47 +00:00
|
|
|
}
|
|
|
|
else if (impl->snap_state == GDK_WIN32_AEROSNAP_STATE_HALFLEFT)
|
|
|
|
{
|
2016-10-21 05:40:49 +00:00
|
|
|
unsnap (window, monitor);
|
2016-03-08 02:33:47 +00:00
|
|
|
}
|
|
|
|
else if (impl->snap_state == GDK_WIN32_AEROSNAP_STATE_HALFRIGHT)
|
|
|
|
{
|
2016-10-21 05:40:49 +00:00
|
|
|
gint i;
|
|
|
|
|
|
|
|
unsnap (window, monitor);
|
|
|
|
if (n_monitors == 1 ||
|
|
|
|
monitor == gdk_display_get_monitor (display, n_monitors - 1))
|
|
|
|
{
|
|
|
|
snap_left (window, monitor, monitor);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (i = 0; i < n_monitors; i++)
|
|
|
|
{
|
|
|
|
if (monitor == gdk_display_get_monitor (display, i))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
snap_left (window, monitor, gdk_display_get_monitor (display, i + 1));
|
|
|
|
}
|
2016-03-08 02:33:47 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case GDK_WIN32_AEROSNAP_COMBO_SHIFTUP:
|
|
|
|
if (!maximized &&
|
|
|
|
impl->snap_state == GDK_WIN32_AEROSNAP_STATE_UNDETERMINED)
|
|
|
|
{
|
2016-10-21 05:40:49 +00:00
|
|
|
snap_up (window);
|
2016-03-08 02:33:47 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case GDK_WIN32_AEROSNAP_COMBO_SHIFTLEFT:
|
|
|
|
case GDK_WIN32_AEROSNAP_COMBO_SHIFTRIGHT:
|
|
|
|
/* No implementation needed at the moment */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-08 05:03:29 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
apply_snap (GdkSurface *window,
|
2016-03-08 05:03:29 +00:00
|
|
|
GdkWin32AeroSnapState snap)
|
|
|
|
{
|
2016-10-21 05:40:49 +00:00
|
|
|
GdkMonitor *monitor;
|
|
|
|
GdkDisplay *display;
|
2016-03-08 05:03:29 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
display = gdk_surface_get_display (window);
|
2018-03-20 11:05:26 +00:00
|
|
|
monitor = gdk_display_get_monitor_at_surface (display, window);
|
2016-03-08 05:03:29 +00:00
|
|
|
|
|
|
|
switch (snap)
|
|
|
|
{
|
|
|
|
case GDK_WIN32_AEROSNAP_STATE_UNDETERMINED:
|
|
|
|
break;
|
|
|
|
case GDK_WIN32_AEROSNAP_STATE_MAXIMIZE:
|
2016-10-21 05:40:49 +00:00
|
|
|
unsnap (window, monitor);
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_surface_maximize (window);
|
2016-03-08 05:03:29 +00:00
|
|
|
break;
|
|
|
|
case GDK_WIN32_AEROSNAP_STATE_HALFLEFT:
|
2016-10-21 05:40:49 +00:00
|
|
|
unsnap (window, monitor);
|
|
|
|
snap_left (window, monitor, monitor);
|
2016-03-08 05:03:29 +00:00
|
|
|
break;
|
|
|
|
case GDK_WIN32_AEROSNAP_STATE_HALFRIGHT:
|
2016-10-21 05:40:49 +00:00
|
|
|
unsnap (window, monitor);
|
|
|
|
snap_right (window, monitor, monitor);
|
2016-03-08 05:03:29 +00:00
|
|
|
break;
|
|
|
|
case GDK_WIN32_AEROSNAP_STATE_FULLUP:
|
2016-10-21 05:40:49 +00:00
|
|
|
snap_up (window);
|
2016-03-08 05:03:29 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-15 16:10:34 +00:00
|
|
|
/* Registers a dumb window class. This window
|
|
|
|
* has DefWindowProc() for a window procedure and
|
2018-03-20 10:40:08 +00:00
|
|
|
* does not do anything that GdkSurface-bound HWNDs do.
|
2016-03-15 16:10:34 +00:00
|
|
|
*/
|
|
|
|
static ATOM
|
|
|
|
RegisterGdkDumbClass ()
|
|
|
|
{
|
|
|
|
static ATOM klassDUMB = 0;
|
|
|
|
static WNDCLASSEXW wcl;
|
|
|
|
ATOM klass = 0;
|
|
|
|
|
|
|
|
wcl.cbSize = sizeof (WNDCLASSEX);
|
|
|
|
wcl.style = 0; /* DON'T set CS_<H,V>REDRAW. It causes total redraw
|
|
|
|
* on WM_SIZE and WM_MOVE. Flicker, Performance!
|
|
|
|
*/
|
|
|
|
wcl.lpfnWndProc = DefWindowProcW;
|
|
|
|
wcl.cbClsExtra = 0;
|
|
|
|
wcl.cbWndExtra = 0;
|
2018-06-16 18:24:56 +00:00
|
|
|
wcl.hInstance = _gdk_dll_hinstance;
|
2016-03-15 16:10:34 +00:00
|
|
|
wcl.hIcon = 0;
|
|
|
|
wcl.hIconSm = 0;
|
|
|
|
wcl.lpszMenuName = NULL;
|
|
|
|
wcl.hbrBackground = NULL;
|
|
|
|
wcl.hCursor = LoadCursor (NULL, IDC_ARROW);
|
|
|
|
wcl.style |= CS_OWNDC;
|
2018-03-21 10:49:14 +00:00
|
|
|
wcl.lpszClassName = L"gdkSurfaceDumb";
|
2016-03-15 16:10:34 +00:00
|
|
|
|
|
|
|
if (klassDUMB == 0)
|
|
|
|
klassDUMB = RegisterClassExW (&wcl);
|
|
|
|
|
|
|
|
klass = klassDUMB;
|
|
|
|
|
|
|
|
if (klass == 0)
|
|
|
|
{
|
|
|
|
WIN32_API_FAILED ("RegisterClassExW");
|
|
|
|
g_error ("That is a fatal error");
|
|
|
|
}
|
|
|
|
|
|
|
|
return klass;
|
|
|
|
}
|
|
|
|
|
2016-03-12 16:26:19 +00:00
|
|
|
static gboolean
|
|
|
|
ensure_snap_indicator_exists (GdkW32DragMoveResizeContext *context)
|
|
|
|
{
|
|
|
|
if (context->shape_indicator == NULL)
|
|
|
|
{
|
|
|
|
HWND handle;
|
|
|
|
ATOM klass;
|
2016-03-15 16:10:34 +00:00
|
|
|
klass = RegisterGdkDumbClass ();
|
2016-03-12 16:26:19 +00:00
|
|
|
|
|
|
|
handle = CreateWindowExW (WS_EX_TRANSPARENT | WS_EX_LAYERED | WS_EX_NOACTIVATE,
|
|
|
|
MAKEINTRESOURCEW (klass),
|
|
|
|
L"",
|
|
|
|
WS_POPUP,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0, 0,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2018-06-16 18:24:56 +00:00
|
|
|
_gdk_dll_hinstance,
|
2016-03-12 16:26:19 +00:00
|
|
|
NULL);
|
|
|
|
|
|
|
|
context->shape_indicator = handle;
|
|
|
|
}
|
|
|
|
|
|
|
|
return context->shape_indicator != NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
ensure_snap_indicator_surface (GdkW32DragMoveResizeContext *context,
|
|
|
|
gint width,
|
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
|
|
|
gint height,
|
|
|
|
guint scale)
|
2016-03-12 16:26:19 +00:00
|
|
|
{
|
|
|
|
if (context->indicator_surface != NULL &&
|
|
|
|
(context->indicator_surface_width < width ||
|
|
|
|
context->indicator_surface_height < height))
|
|
|
|
{
|
|
|
|
cairo_surface_destroy (context->indicator_surface);
|
|
|
|
context->indicator_surface = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (context->indicator_surface == 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
|
|
|
context->indicator_surface = cairo_win32_surface_create_with_dib (CAIRO_FORMAT_ARGB32,
|
|
|
|
width * scale,
|
|
|
|
height * scale);
|
2016-03-12 16:26:19 +00:00
|
|
|
|
|
|
|
if (cairo_surface_status (context->indicator_surface) != CAIRO_STATUS_SUCCESS)
|
|
|
|
{
|
|
|
|
cairo_surface_destroy (context->indicator_surface);
|
|
|
|
context->indicator_surface = NULL;
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Indicator is drawn with some inward offset, so that it does
|
|
|
|
* not hug screen edges.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
adjust_indicator_rectangle (GdkRectangle *rect,
|
2017-08-08 14:19:45 +00:00
|
|
|
gboolean inward)
|
2016-03-12 16:26:19 +00:00
|
|
|
{
|
|
|
|
gdouble inverter;
|
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 gint gap = AEROSNAP_INDICATOR_EDGE_GAP;
|
2016-03-12 16:26:19 +00:00
|
|
|
#if defined(MORE_AEROSNAP_DEBUGGING)
|
|
|
|
GdkRectangle cache = *rect;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (inward)
|
|
|
|
inverter = 1.0;
|
|
|
|
else
|
|
|
|
inverter = -1.0;
|
|
|
|
|
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
|
|
|
rect->x += (gap * inverter);
|
|
|
|
rect->y += (gap * inverter);
|
2017-08-08 14:19:45 +00:00
|
|
|
rect->width -= (gap * 2 * inverter);
|
|
|
|
rect->height -= (gap * 2 * inverter);
|
2016-03-12 16:26:19 +00:00
|
|
|
|
|
|
|
#if defined(MORE_AEROSNAP_DEBUGGING)
|
|
|
|
GDK_NOTE (MISC, g_print ("Adjusted %d x %d @ %d : %d -> %d x %d @ %d : %d\n",
|
|
|
|
cache.width, cache.height, cache.x, cache.y,
|
|
|
|
rect->width, rect->height, rect->x, rect->y));
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
rounded_rectangle (cairo_t *cr,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height,
|
|
|
|
gdouble radius,
|
|
|
|
gdouble line_width,
|
|
|
|
GdkRGBA *fill,
|
2017-08-08 14:19:45 +00:00
|
|
|
GdkRGBA *outline)
|
2016-03-12 16:26:19 +00:00
|
|
|
{
|
|
|
|
gdouble degrees = M_PI / 180.0;
|
|
|
|
|
|
|
|
if (fill == NULL && outline == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
cairo_save (cr);
|
|
|
|
cairo_new_sub_path (cr);
|
2017-08-08 14:19:45 +00:00
|
|
|
cairo_arc (cr, x + width - radius, y + radius, radius, -90 * degrees, 0 * degrees);
|
|
|
|
cairo_arc (cr, x + width - radius, y + height - radius, radius, 0 * degrees, 90 * degrees);
|
|
|
|
cairo_arc (cr, (x + radius), y + height - radius, radius, 90 * degrees, 180 * degrees);
|
|
|
|
cairo_arc (cr, (x + radius), (y + radius), radius, 180 * degrees, 270 * degrees);
|
2016-03-12 16:26:19 +00:00
|
|
|
cairo_close_path (cr);
|
|
|
|
|
|
|
|
if (fill)
|
|
|
|
{
|
|
|
|
cairo_set_source_rgba (cr, fill->red, fill->green, fill->blue, fill->alpha);
|
|
|
|
|
|
|
|
if (outline)
|
|
|
|
cairo_fill_preserve (cr);
|
|
|
|
else
|
|
|
|
cairo_fill (cr);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (outline)
|
|
|
|
{
|
|
|
|
cairo_set_source_rgba (cr, outline->red, outline->green, outline->blue, outline->alpha);
|
|
|
|
cairo_set_line_width (cr, line_width);
|
|
|
|
cairo_stroke (cr);
|
|
|
|
}
|
|
|
|
|
|
|
|
cairo_restore (cr);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Translates linear animation scale into some kind of curve */
|
|
|
|
static gdouble
|
|
|
|
curve (gdouble val)
|
|
|
|
{
|
|
|
|
/* TODO: try different curves. For now it's just linear */
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
draw_indicator (GdkW32DragMoveResizeContext *context,
|
|
|
|
gint64 timestamp)
|
|
|
|
{
|
|
|
|
cairo_t *cr;
|
|
|
|
GdkRGBA outline = {0, 0, 1.0, 1.0};
|
|
|
|
GdkRGBA fill = {0, 0, 1.0, 0.8};
|
|
|
|
GdkRectangle current_rect;
|
|
|
|
gint64 current_time = g_get_monotonic_time ();
|
|
|
|
gdouble animation_progress;
|
|
|
|
gboolean last_draw;
|
|
|
|
gdouble line_width;
|
|
|
|
gdouble corner_radius;
|
|
|
|
gint64 animation_duration;
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl = GDK_WIN32_SURFACE (context->window);
|
2016-03-12 16:26:19 +00:00
|
|
|
|
2018-03-20 11:05:26 +00:00
|
|
|
line_width = AEROSNAP_INDICATOR_LINE_WIDTH * impl->surface_scale;
|
2016-03-12 16:26:19 +00:00
|
|
|
corner_radius = AEROSNAP_INDICATOR_CORNER_RADIUS;
|
|
|
|
animation_duration = AEROSNAP_INDICATOR_ANIMATION_DURATION;
|
|
|
|
last_draw = FALSE;
|
|
|
|
|
|
|
|
if (timestamp == 0 &&
|
|
|
|
current_time - context->indicator_start_time > animation_duration)
|
|
|
|
{
|
|
|
|
timestamp = context->indicator_start_time + animation_duration;
|
|
|
|
last_draw = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (timestamp != 0)
|
|
|
|
current_time = timestamp;
|
|
|
|
|
|
|
|
animation_progress = (gdouble) (current_time - context->indicator_start_time) / animation_duration;
|
|
|
|
|
|
|
|
if (animation_progress > 1.0)
|
|
|
|
animation_progress = 1.0;
|
|
|
|
|
|
|
|
if (animation_progress < 0)
|
|
|
|
animation_progress = 0;
|
|
|
|
|
|
|
|
animation_progress = curve (animation_progress);
|
|
|
|
|
|
|
|
current_rect = context->indicator_start;
|
|
|
|
current_rect.x += (context->indicator_target.x - context->indicator_start.x) * animation_progress;
|
|
|
|
current_rect.y += (context->indicator_target.y - context->indicator_start.y) * animation_progress;
|
|
|
|
current_rect.width += (context->indicator_target.width - context->indicator_start.width) * animation_progress;
|
|
|
|
current_rect.height += (context->indicator_target.height - context->indicator_start.height) * animation_progress;
|
|
|
|
|
|
|
|
if (context->op == GDK_WIN32_DRAGOP_RESIZE && last_draw)
|
|
|
|
{
|
|
|
|
switch (context->edge)
|
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_NORTH_WEST:
|
2016-03-12 16:26:19 +00:00
|
|
|
current_rect.x = context->indicator_target.x + (context->indicator_target.width - current_rect.width);
|
|
|
|
current_rect.y = context->indicator_target.y + (context->indicator_target.height - current_rect.height);
|
|
|
|
break;
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_NORTH:
|
2016-03-12 16:26:19 +00:00
|
|
|
current_rect.y = context->indicator_target.y + (context->indicator_target.height - current_rect.height);
|
|
|
|
break;
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_WEST:
|
2016-03-12 16:26:19 +00:00
|
|
|
current_rect.x = context->indicator_target.x + (context->indicator_target.width - current_rect.width);
|
|
|
|
break;
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_SOUTH_WEST:
|
2016-03-12 16:26:19 +00:00
|
|
|
current_rect.x = context->indicator_target.x + (context->indicator_target.width - current_rect.width);
|
|
|
|
current_rect.y = context->indicator_target.y;
|
|
|
|
break;
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_NORTH_EAST:
|
2016-03-12 16:26:19 +00:00
|
|
|
current_rect.x = context->indicator_target.x;
|
|
|
|
current_rect.y = context->indicator_target.y + (context->indicator_target.height - current_rect.height);
|
|
|
|
break;
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_SOUTH_EAST:
|
2016-03-12 16:26:19 +00:00
|
|
|
current_rect.x = context->indicator_target.x;
|
|
|
|
current_rect.y = context->indicator_target.y;
|
|
|
|
break;
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_SOUTH:
|
2016-03-12 16:26:19 +00:00
|
|
|
current_rect.y = context->indicator_target.y;
|
|
|
|
break;
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_EAST:
|
2016-03-12 16:26:19 +00:00
|
|
|
current_rect.x = context->indicator_target.x;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cr = cairo_create (context->indicator_surface);
|
|
|
|
rounded_rectangle (cr,
|
2018-03-20 11:05:26 +00:00
|
|
|
(current_rect.x - context->indicator_window_rect.x) * impl->surface_scale,
|
|
|
|
(current_rect.y - context->indicator_window_rect.y) * impl->surface_scale,
|
|
|
|
current_rect.width * impl->surface_scale,
|
|
|
|
current_rect.height * impl->surface_scale,
|
2016-03-12 16:26:19 +00:00
|
|
|
corner_radius,
|
|
|
|
line_width,
|
2017-08-08 14:19:45 +00:00
|
|
|
&fill, &outline);
|
2016-03-12 16:26:19 +00:00
|
|
|
cairo_destroy (cr);
|
|
|
|
|
|
|
|
#if defined(MORE_AEROSNAP_DEBUGGING)
|
|
|
|
GDK_NOTE (MISC, g_print ("Indicator is %d x %d @ %d : %d; current time is %" G_GINT64_FORMAT "\n",
|
|
|
|
current_rect.width, current_rect.height,
|
|
|
|
current_rect.x - context->indicator_window_rect.x,
|
|
|
|
current_rect.y - context->indicator_window_rect.y,
|
|
|
|
current_time));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return last_draw;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
redraw_indicator (gpointer user_data)
|
|
|
|
{
|
|
|
|
GdkW32DragMoveResizeContext *context = user_data;
|
|
|
|
POINT window_position;
|
|
|
|
SIZE window_size;
|
|
|
|
BLENDFUNCTION blender;
|
|
|
|
HDC hdc;
|
|
|
|
POINT source_point = { 0, 0 };
|
|
|
|
gboolean last_draw;
|
|
|
|
gdouble indicator_opacity;
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl;
|
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
|
|
|
gboolean do_source_remove = FALSE;
|
2016-03-12 16:26:19 +00:00
|
|
|
|
|
|
|
indicator_opacity = AEROSNAP_INDICATOR_OPACITY;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (context->window) ||
|
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
|
|
|
!ensure_snap_indicator_exists (context))
|
|
|
|
{
|
|
|
|
do_source_remove = TRUE;
|
|
|
|
}
|
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
impl = GDK_WIN32_SURFACE (context->window);
|
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 (!ensure_snap_indicator_surface (context,
|
|
|
|
context->indicator_window_rect.width,
|
|
|
|
context->indicator_window_rect.height,
|
2018-03-20 11:05:26 +00:00
|
|
|
impl->surface_scale))
|
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
|
|
|
{
|
|
|
|
do_source_remove = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (do_source_remove)
|
2016-03-12 16:26:19 +00:00
|
|
|
{
|
|
|
|
context->timer = 0;
|
|
|
|
return G_SOURCE_REMOVE;
|
|
|
|
}
|
|
|
|
|
|
|
|
last_draw = draw_indicator (context, context->draw_timestamp);
|
|
|
|
|
2018-03-20 11:05:26 +00:00
|
|
|
window_position.x = (context->indicator_window_rect.x - _gdk_offset_x) * impl->surface_scale;
|
|
|
|
window_position.y = (context->indicator_window_rect.y - _gdk_offset_y) * impl->surface_scale;
|
|
|
|
window_size.cx = context->indicator_window_rect.width * impl->surface_scale;
|
|
|
|
window_size.cy = context->indicator_window_rect.height * impl->surface_scale;
|
2016-03-12 16:26:19 +00:00
|
|
|
|
|
|
|
blender.BlendOp = AC_SRC_OVER;
|
|
|
|
blender.BlendFlags = 0;
|
|
|
|
blender.AlphaFormat = AC_SRC_ALPHA;
|
|
|
|
blender.SourceConstantAlpha = 255 * indicator_opacity;
|
|
|
|
|
|
|
|
hdc = cairo_win32_surface_get_dc (context->indicator_surface);
|
|
|
|
|
|
|
|
API_CALL (SetWindowPos, (context->shape_indicator,
|
2018-03-20 10:40:08 +00:00
|
|
|
GDK_SURFACE_HWND (context->window),
|
2016-03-12 16:26:19 +00:00
|
|
|
0, 0, 0, 0,
|
|
|
|
SWP_NOMOVE | SWP_NOSIZE | SWP_NOREDRAW | SWP_SHOWWINDOW | SWP_NOACTIVATE));
|
|
|
|
|
|
|
|
#if defined(MORE_AEROSNAP_DEBUGGING)
|
|
|
|
GDK_NOTE (MISC, g_print ("Indicator window position is %ld x %ld @ %ld : %ld\n",
|
|
|
|
window_size.cx, window_size.cy,
|
|
|
|
window_position.x, window_position.y));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
API_CALL (UpdateLayeredWindow, (context->shape_indicator, NULL,
|
|
|
|
&window_position, &window_size,
|
|
|
|
hdc, &source_point,
|
|
|
|
0, &blender, ULW_ALPHA));
|
|
|
|
|
|
|
|
if (last_draw)
|
|
|
|
context->timer = 0;
|
|
|
|
|
|
|
|
return last_draw ? G_SOURCE_REMOVE : G_SOURCE_CONTINUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GdkRectangle
|
|
|
|
unity_of_rects (GdkRectangle a,
|
|
|
|
GdkRectangle b)
|
|
|
|
{
|
|
|
|
GdkRectangle u = b;
|
|
|
|
|
|
|
|
if (a.x < u.x)
|
|
|
|
{
|
|
|
|
u.width += u.x - a.x;
|
|
|
|
u.x = a.x;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (a.y < u.y)
|
|
|
|
{
|
|
|
|
u.height += (u.y - a.y);
|
|
|
|
u.y = a.y;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (a.x + a.width > u.x + u.width)
|
|
|
|
u.width += (a.x + a.width) - (u.x + u.width);
|
|
|
|
|
|
|
|
if (a.y + a.height > u.y + u.height)
|
|
|
|
u.height += (a.y + a.height) - (u.y + u.height);
|
|
|
|
|
|
|
|
#if defined(MORE_AEROSNAP_DEBUGGING)
|
|
|
|
GDK_NOTE (MISC, g_print ("Unified 2 rects into %d x %d @ %d : %d\n",
|
|
|
|
u.width, u.height, u.x, u.y));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return u;
|
|
|
|
}
|
|
|
|
|
2016-03-08 05:03:29 +00:00
|
|
|
static void
|
|
|
|
start_indicator_drawing (GdkW32DragMoveResizeContext *context,
|
|
|
|
GdkRectangle from,
|
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
|
|
|
GdkRectangle to,
|
|
|
|
guint scale)
|
2016-03-08 05:03:29 +00:00
|
|
|
{
|
2016-03-12 16:26:19 +00:00
|
|
|
GdkRectangle to_adjusted, from_adjusted, from_or_to;
|
|
|
|
gint64 indicator_animation_tick = AEROSNAP_INDICATOR_ANIMATION_TICK;
|
2016-03-08 05:03:29 +00:00
|
|
|
|
|
|
|
GDK_NOTE (MISC, g_print ("Start drawing snap indicator %d x %d @ %d : %d -> %d x %d @ %d : %d\n",
|
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
|
|
|
from.width * scale, from.height * scale, from.x, from.y, to.width * scale, to.height * scale, to.x, to.y));
|
2016-03-12 16:26:19 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (context->window))
|
2016-03-12 16:26:19 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (!ensure_snap_indicator_exists (context))
|
|
|
|
return;
|
|
|
|
|
|
|
|
from_or_to = unity_of_rects (from, to);
|
|
|
|
|
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 (!ensure_snap_indicator_surface (context, from_or_to.width, from_or_to.height, scale))
|
2016-03-12 16:26:19 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
to_adjusted = to;
|
2017-08-08 14:19:45 +00:00
|
|
|
adjust_indicator_rectangle (&to_adjusted, 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
|
|
|
|
2016-03-12 16:26:19 +00:00
|
|
|
from_adjusted = from;
|
2017-08-08 14:19:45 +00:00
|
|
|
adjust_indicator_rectangle (&from_adjusted, TRUE);
|
2016-03-12 16:26:19 +00:00
|
|
|
|
|
|
|
context->draw_timestamp = 0;
|
|
|
|
context->indicator_start = from_adjusted;
|
|
|
|
context->indicator_target = to_adjusted;
|
|
|
|
context->indicator_window_rect = from_or_to;
|
|
|
|
context->indicator_start_time = g_get_monotonic_time ();
|
|
|
|
|
|
|
|
if (context->timer)
|
|
|
|
{
|
|
|
|
g_source_remove (context->timer);
|
|
|
|
context->timer = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
context->timer = g_timeout_add_full (G_PRIORITY_DEFAULT,
|
|
|
|
indicator_animation_tick,
|
|
|
|
redraw_indicator,
|
|
|
|
context,
|
|
|
|
NULL);
|
2016-03-08 05:03:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
update_fullup_indicator (GdkSurface *window,
|
2016-03-08 05:03:29 +00:00
|
|
|
GdkW32DragMoveResizeContext *context)
|
|
|
|
{
|
2016-03-12 16:26:19 +00:00
|
|
|
SHORT maxysize;
|
|
|
|
GdkRectangle from, to;
|
|
|
|
GdkRectangle to_adjusted, from_adjusted, from_or_to;
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl;
|
2016-03-08 05:03:29 +00:00
|
|
|
|
|
|
|
GDK_NOTE (MISC, g_print ("Update fullup indicator\n"));
|
2016-03-12 16:26:19 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (context->window))
|
2016-03-12 16:26:19 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (context->shape_indicator == NULL)
|
|
|
|
return;
|
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
impl = GDK_WIN32_SURFACE (window);
|
2016-03-12 16:26:19 +00:00
|
|
|
maxysize = GetSystemMetrics (SM_CYVIRTUALSCREEN);
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_surface_get_position (window, &to.x, &to.y);
|
|
|
|
to.width = gdk_surface_get_width (window);
|
|
|
|
to.height = gdk_surface_get_height (window);
|
2016-03-12 16:26:19 +00:00
|
|
|
|
|
|
|
to.y = 0;
|
|
|
|
to.height = maxysize;
|
|
|
|
from = context->indicator_target;
|
|
|
|
|
|
|
|
if (context->timer == 0)
|
|
|
|
{
|
|
|
|
from_adjusted = from;
|
2017-08-08 14:19:45 +00:00
|
|
|
adjust_indicator_rectangle (&from_adjusted, FALSE);
|
2016-03-12 16:26:19 +00:00
|
|
|
|
|
|
|
GDK_NOTE (MISC, g_print ("Restart fullup animation from %d x %d @ %d : %d -> %d x %d @ %d x %d\n",
|
|
|
|
context->indicator_target.width, context->indicator_target.height,
|
|
|
|
context->indicator_target.x, context->indicator_target.y,
|
|
|
|
to.width, to.height, to.x, to.y));
|
2018-03-20 11:05:26 +00:00
|
|
|
start_indicator_drawing (context, from_adjusted, to, impl->surface_scale);
|
2016-03-12 16:26:19 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
from_or_to = unity_of_rects (from, to);
|
|
|
|
|
|
|
|
to_adjusted = to;
|
2017-08-08 14:19:45 +00:00
|
|
|
adjust_indicator_rectangle (&to_adjusted, TRUE);
|
2016-03-12 16:26:19 +00:00
|
|
|
|
|
|
|
GDK_NOTE (MISC, g_print ("Retarget fullup animation %d x %d @ %d : %d -> %d x %d @ %d x %d\n",
|
|
|
|
context->indicator_target.width, context->indicator_target.height,
|
|
|
|
context->indicator_target.x, context->indicator_target.y,
|
|
|
|
to_adjusted.width, to_adjusted.height, to_adjusted.x, to_adjusted.y));
|
|
|
|
|
|
|
|
context->indicator_target = to_adjusted;
|
|
|
|
context->indicator_window_rect = from_or_to;
|
|
|
|
|
2018-03-20 11:05:26 +00:00
|
|
|
ensure_snap_indicator_surface (context, from_or_to.width, from_or_to.height, impl->surface_scale);
|
2016-03-08 05:03:29 +00:00
|
|
|
}
|
|
|
|
|
2019-05-29 17:31:37 +00:00
|
|
|
static GdkMonitor *
|
|
|
|
get_monitor_at_point (GdkDisplay *display,
|
|
|
|
int x,
|
|
|
|
int y)
|
|
|
|
{
|
|
|
|
GdkMonitor *nearest = NULL;
|
|
|
|
int nearest_dist = G_MAXINT;
|
|
|
|
int n_monitors, i;
|
|
|
|
|
|
|
|
n_monitors = gdk_display_get_n_monitors (display);
|
|
|
|
for (i = 0; i < n_monitors; i++)
|
|
|
|
{
|
|
|
|
GdkMonitor *monitor;
|
|
|
|
GdkRectangle geometry;
|
|
|
|
int dist_x, dist_y, dist;
|
|
|
|
|
|
|
|
monitor = gdk_display_get_monitor (display, i);
|
|
|
|
gdk_monitor_get_geometry (monitor, &geometry);
|
|
|
|
|
|
|
|
if (x < geometry.x)
|
|
|
|
dist_x = geometry.x - x;
|
|
|
|
else if (geometry.x + geometry.width <= x)
|
|
|
|
dist_x = x - (geometry.x + geometry.width) + 1;
|
|
|
|
else
|
|
|
|
dist_x = 0;
|
|
|
|
|
|
|
|
if (y < geometry.y)
|
|
|
|
dist_y = geometry.y - y;
|
|
|
|
else if (geometry.y + geometry.height <= y)
|
|
|
|
dist_y = y - (geometry.y + geometry.height) + 1;
|
|
|
|
else
|
|
|
|
dist_y = 0;
|
|
|
|
|
|
|
|
dist = dist_x + dist_y;
|
|
|
|
if (dist < nearest_dist)
|
|
|
|
{
|
|
|
|
nearest_dist = dist;
|
|
|
|
nearest = monitor;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (x < geometry.x)
|
|
|
|
dist_x = geometry.x - x;
|
|
|
|
else if (geometry.x + geometry.width <= x)
|
|
|
|
dist_x = x - (geometry.x + geometry.width) + 1;
|
|
|
|
else
|
|
|
|
dist_x = 0;
|
|
|
|
|
|
|
|
if (y < geometry.y)
|
|
|
|
dist_y = geometry.y - y;
|
|
|
|
else if (geometry.y + geometry.height <= y)
|
|
|
|
dist_y = y - (geometry.y + geometry.height) + 1;
|
|
|
|
else
|
|
|
|
dist_y = 0;
|
|
|
|
|
|
|
|
dist = dist_x + dist_y;
|
|
|
|
if (dist < nearest_dist)
|
|
|
|
{
|
|
|
|
nearest_dist = dist;
|
|
|
|
nearest = monitor;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nearest_dist == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return nearest;
|
|
|
|
}
|
|
|
|
|
2016-03-08 05:03:29 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
start_indicator (GdkSurface *window,
|
2016-03-08 05:03:29 +00:00
|
|
|
GdkW32DragMoveResizeContext *context,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
GdkWin32AeroSnapState state)
|
|
|
|
{
|
2016-10-21 05:40:49 +00:00
|
|
|
GdkMonitor *monitor;
|
2016-03-08 05:03:29 +00:00
|
|
|
GdkRectangle workarea;
|
|
|
|
SHORT maxysize;
|
|
|
|
GdkRectangle start_size, end_size;
|
2016-10-21 05:40:49 +00:00
|
|
|
GdkDisplay *display;
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl = GDK_WIN32_SURFACE (window);
|
2016-03-08 05:03:29 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
display = gdk_surface_get_display (window);
|
2019-05-29 17:31:37 +00:00
|
|
|
monitor = get_monitor_at_point (display, x, y);
|
2016-10-21 05:40:49 +00:00
|
|
|
gdk_monitor_get_workarea (monitor, &workarea);
|
2016-03-08 05:03:29 +00:00
|
|
|
|
2018-03-20 11:05:26 +00:00
|
|
|
maxysize = GetSystemMetrics (SM_CYVIRTUALSCREEN) / impl->surface_scale;
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_surface_get_position (window, &start_size.x, &start_size.y);
|
|
|
|
start_size.width = gdk_surface_get_width (window);
|
|
|
|
start_size.height = gdk_surface_get_height (window);
|
2016-03-08 05:03:29 +00:00
|
|
|
|
|
|
|
end_size = start_size;
|
|
|
|
|
|
|
|
switch (state)
|
|
|
|
{
|
|
|
|
case GDK_WIN32_AEROSNAP_STATE_UNDETERMINED:
|
|
|
|
return;
|
|
|
|
case GDK_WIN32_AEROSNAP_STATE_MAXIMIZE:
|
|
|
|
end_size.x = workarea.x;
|
|
|
|
end_size.y = workarea.y;
|
|
|
|
end_size.width = workarea.width;
|
|
|
|
end_size.height = workarea.height;
|
|
|
|
break;
|
|
|
|
case GDK_WIN32_AEROSNAP_STATE_HALFLEFT:
|
|
|
|
end_size.x = workarea.x;
|
|
|
|
end_size.y = workarea.y;
|
|
|
|
end_size.width = workarea.width / 2;
|
|
|
|
end_size.height = workarea.height;
|
|
|
|
break;
|
|
|
|
case GDK_WIN32_AEROSNAP_STATE_HALFRIGHT:
|
2017-08-08 14:19:45 +00:00
|
|
|
end_size.x = (workarea.x + workarea.width / 2);
|
2016-03-08 05:03:29 +00:00
|
|
|
end_size.y = workarea.y;
|
|
|
|
end_size.width = workarea.width / 2;
|
|
|
|
end_size.height = workarea.height;
|
|
|
|
break;
|
|
|
|
case GDK_WIN32_AEROSNAP_STATE_FULLUP:
|
2016-03-12 16:26:19 +00:00
|
|
|
end_size.y = 0;
|
2016-03-08 05:03:29 +00:00
|
|
|
end_size.height = maxysize;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-03-20 11:05:26 +00:00
|
|
|
start_indicator_drawing (context, start_size, end_size, impl->surface_scale);
|
2016-03-08 05:03:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
stop_indicator (GdkSurface *window,
|
2016-03-08 05:03:29 +00:00
|
|
|
GdkW32DragMoveResizeContext *context)
|
|
|
|
{
|
|
|
|
GDK_NOTE (MISC, g_print ("Stop drawing snap indicator\n"));
|
2016-03-12 16:26:19 +00:00
|
|
|
|
|
|
|
if (context->timer)
|
|
|
|
{
|
|
|
|
g_source_remove (context->timer);
|
|
|
|
context->timer = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
API_CALL (SetWindowPos, (context->shape_indicator,
|
|
|
|
SWP_NOZORDER_SPECIFIED,
|
|
|
|
0, 0, 0, 0,
|
|
|
|
SWP_NOZORDER | SWP_NOMOVE |
|
|
|
|
SWP_NOSIZE | SWP_NOREDRAW | SWP_HIDEWINDOW | SWP_NOACTIVATE));
|
2016-03-08 05:03:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gint
|
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
|
|
|
point_in_aerosnap_region (gint x,
|
|
|
|
gint y,
|
2017-08-08 14:19:45 +00:00
|
|
|
AeroSnapEdgeRegion *region)
|
2016-03-08 05:03:29 +00:00
|
|
|
{
|
|
|
|
gint edge, trigger;
|
2017-08-08 14:19:45 +00:00
|
|
|
|
|
|
|
edge = (x >= region->edge.x &&
|
|
|
|
y >= region->edge.y &&
|
|
|
|
x <= region->edge.x + region->edge.width &&
|
|
|
|
y <= region->edge.y + region->edge.height) ? 1 : 0;
|
|
|
|
trigger = (x >= region->trigger.x &&
|
|
|
|
y >= region->trigger.y &&
|
|
|
|
x <= region->trigger.x + region->trigger.width &&
|
|
|
|
y <= region->trigger.y + region->trigger.height) ? 1 : 0;
|
2016-03-08 05:03:29 +00:00
|
|
|
return edge + trigger;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
handle_aerosnap_move_resize (GdkSurface *window,
|
2016-03-08 05:03:29 +00:00
|
|
|
GdkW32DragMoveResizeContext *context,
|
|
|
|
gint x,
|
|
|
|
gint y)
|
|
|
|
{
|
|
|
|
gint i;
|
|
|
|
AeroSnapEdgeRegion *reg;
|
|
|
|
gint maximize = 0;
|
|
|
|
gint halfleft = 0;
|
|
|
|
gint halfright = 0;
|
|
|
|
gint fullup = 0;
|
2016-03-12 16:26:19 +00:00
|
|
|
gboolean fullup_edge = FALSE;
|
|
|
|
|
|
|
|
if (context->op == GDK_WIN32_DRAGOP_RESIZE)
|
|
|
|
switch (context->edge)
|
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_NORTH_WEST:
|
|
|
|
case GDK_SURFACE_EDGE_NORTH_EAST:
|
|
|
|
case GDK_SURFACE_EDGE_WEST:
|
|
|
|
case GDK_SURFACE_EDGE_EAST:
|
|
|
|
case GDK_SURFACE_EDGE_SOUTH_WEST:
|
|
|
|
case GDK_SURFACE_EDGE_SOUTH_EAST:
|
2016-03-12 16:26:19 +00:00
|
|
|
break;
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_SOUTH:
|
|
|
|
case GDK_SURFACE_EDGE_NORTH:
|
2016-03-12 16:26:19 +00:00
|
|
|
fullup_edge = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
2016-03-08 05:03:29 +00:00
|
|
|
|
|
|
|
for (i = 0; i < context->maximize_regions->len && maximize == 0; i++)
|
|
|
|
{
|
|
|
|
reg = &g_array_index (context->maximize_regions, AeroSnapEdgeRegion, i);
|
2017-08-08 14:19:45 +00:00
|
|
|
maximize = point_in_aerosnap_region (x, y, reg);
|
2016-03-08 05:03:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < context->halfleft_regions->len && halfleft == 0; i++)
|
|
|
|
{
|
|
|
|
reg = &g_array_index (context->halfleft_regions, AeroSnapEdgeRegion, i);
|
2017-08-08 14:19:45 +00:00
|
|
|
halfleft = point_in_aerosnap_region (x, y, reg);
|
2016-03-08 05:03:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < context->halfright_regions->len && halfright == 0; i++)
|
|
|
|
{
|
|
|
|
reg = &g_array_index (context->halfright_regions, AeroSnapEdgeRegion, i);
|
2017-08-08 14:19:45 +00:00
|
|
|
halfright = point_in_aerosnap_region (x, y, reg);
|
2016-03-08 05:03:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < context->fullup_regions->len && fullup == 0; i++)
|
|
|
|
{
|
|
|
|
reg = &g_array_index (context->fullup_regions, AeroSnapEdgeRegion, i);
|
2017-08-08 14:19:45 +00:00
|
|
|
fullup = point_in_aerosnap_region (x, y, reg);
|
2016-03-08 05:03:29 +00:00
|
|
|
}
|
|
|
|
|
2016-03-12 16:26:19 +00:00
|
|
|
#if defined(MORE_AEROSNAP_DEBUGGING)
|
2016-03-08 05:03:29 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("AeroSnap: point %d : %d - max: %d, left %d, right %d, up %d\n",
|
|
|
|
x, y, maximize, halfleft, halfright, fullup));
|
2016-03-12 16:26:19 +00:00
|
|
|
#endif
|
2016-03-08 05:03:29 +00:00
|
|
|
|
|
|
|
if (!context->revealed)
|
|
|
|
{
|
|
|
|
if (context->op == GDK_WIN32_DRAGOP_MOVE && maximize == 2)
|
|
|
|
{
|
|
|
|
context->revealed = TRUE;
|
|
|
|
context->current_snap = GDK_WIN32_AEROSNAP_STATE_MAXIMIZE;
|
|
|
|
start_indicator (window, context, x, y, context->current_snap);
|
|
|
|
}
|
|
|
|
else if (context->op == GDK_WIN32_DRAGOP_MOVE && halfleft == 2)
|
|
|
|
{
|
|
|
|
context->revealed = TRUE;
|
|
|
|
context->current_snap = GDK_WIN32_AEROSNAP_STATE_HALFLEFT;
|
|
|
|
start_indicator (window, context, x, y, context->current_snap);
|
|
|
|
}
|
|
|
|
else if (context->op == GDK_WIN32_DRAGOP_MOVE && halfright == 2)
|
|
|
|
{
|
|
|
|
context->revealed = TRUE;
|
|
|
|
context->current_snap = GDK_WIN32_AEROSNAP_STATE_HALFRIGHT;
|
|
|
|
start_indicator (window, context, x, y, context->current_snap);
|
|
|
|
}
|
2016-03-12 16:26:19 +00:00
|
|
|
else if (context->op == GDK_WIN32_DRAGOP_RESIZE && fullup == 2 && fullup_edge)
|
2016-03-08 05:03:29 +00:00
|
|
|
{
|
|
|
|
context->revealed = TRUE;
|
|
|
|
context->current_snap = GDK_WIN32_AEROSNAP_STATE_FULLUP;
|
|
|
|
start_indicator (window, context, x, y, context->current_snap);
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (context->current_snap)
|
|
|
|
{
|
|
|
|
case GDK_WIN32_AEROSNAP_STATE_UNDETERMINED:
|
|
|
|
if (context->op == GDK_WIN32_DRAGOP_RESIZE && fullup > 0)
|
|
|
|
{
|
|
|
|
context->current_snap = GDK_WIN32_AEROSNAP_STATE_FULLUP;
|
|
|
|
start_indicator (window, context, x, y, context->current_snap);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case GDK_WIN32_AEROSNAP_STATE_MAXIMIZE:
|
|
|
|
if (context->op == GDK_WIN32_DRAGOP_MOVE && maximize > 0)
|
|
|
|
break;
|
|
|
|
if (context->op == GDK_WIN32_DRAGOP_MOVE && halfleft > 0)
|
|
|
|
{
|
|
|
|
context->current_snap = GDK_WIN32_AEROSNAP_STATE_HALFLEFT;
|
|
|
|
start_indicator (window, context, x, y, context->current_snap);
|
|
|
|
}
|
|
|
|
else if (context->op == GDK_WIN32_DRAGOP_MOVE && halfright > 0)
|
|
|
|
{
|
|
|
|
context->current_snap = GDK_WIN32_AEROSNAP_STATE_HALFRIGHT;
|
|
|
|
start_indicator (window, context, x, y, context->current_snap);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
context->current_snap = GDK_WIN32_AEROSNAP_STATE_UNDETERMINED;
|
|
|
|
stop_indicator (window, context);
|
|
|
|
context->revealed = FALSE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case GDK_WIN32_AEROSNAP_STATE_HALFLEFT:
|
|
|
|
if (context->op == GDK_WIN32_DRAGOP_MOVE && halfleft > 0)
|
|
|
|
break;
|
|
|
|
if (context->op == GDK_WIN32_DRAGOP_MOVE && maximize > 0)
|
|
|
|
{
|
|
|
|
context->current_snap = GDK_WIN32_AEROSNAP_STATE_MAXIMIZE;
|
|
|
|
start_indicator (window, context, x, y, context->current_snap);
|
|
|
|
}
|
|
|
|
else if (context->op == GDK_WIN32_DRAGOP_MOVE && halfright > 0)
|
|
|
|
{
|
|
|
|
context->current_snap = GDK_WIN32_AEROSNAP_STATE_HALFRIGHT;
|
|
|
|
start_indicator (window, context, x, y, context->current_snap);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
context->current_snap = GDK_WIN32_AEROSNAP_STATE_UNDETERMINED;
|
|
|
|
stop_indicator (window, context);
|
|
|
|
context->revealed = FALSE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case GDK_WIN32_AEROSNAP_STATE_HALFRIGHT:
|
|
|
|
if (context->op == GDK_WIN32_DRAGOP_MOVE && halfright > 0)
|
|
|
|
break;
|
|
|
|
if (context->op == GDK_WIN32_DRAGOP_MOVE && maximize > 0)
|
|
|
|
{
|
|
|
|
context->current_snap = GDK_WIN32_AEROSNAP_STATE_MAXIMIZE;
|
|
|
|
start_indicator (window, context, x, y, context->current_snap);
|
|
|
|
}
|
|
|
|
else if (context->op == GDK_WIN32_DRAGOP_MOVE && halfleft > 0)
|
|
|
|
{
|
|
|
|
context->current_snap = GDK_WIN32_AEROSNAP_STATE_HALFLEFT;
|
|
|
|
start_indicator (window, context, x, y, context->current_snap);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
context->current_snap = GDK_WIN32_AEROSNAP_STATE_UNDETERMINED;
|
|
|
|
stop_indicator (window, context);
|
|
|
|
context->revealed = FALSE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case GDK_WIN32_AEROSNAP_STATE_FULLUP:
|
2016-03-12 16:26:19 +00:00
|
|
|
if (context->op == GDK_WIN32_DRAGOP_RESIZE && fullup > 0 && fullup_edge)
|
2016-03-08 05:03:29 +00:00
|
|
|
{
|
|
|
|
update_fullup_indicator (window, context);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
context->current_snap = GDK_WIN32_AEROSNAP_STATE_UNDETERMINED;
|
|
|
|
stop_indicator (window, context);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-02-27 00:10:12 +00:00
|
|
|
static const gchar *
|
|
|
|
get_cursor_name_from_op (GdkW32WindowDragOp op,
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurfaceEdge edge)
|
2016-02-27 00:10:12 +00:00
|
|
|
{
|
|
|
|
switch (op)
|
|
|
|
{
|
|
|
|
case GDK_WIN32_DRAGOP_MOVE:
|
|
|
|
return "move";
|
|
|
|
case GDK_WIN32_DRAGOP_RESIZE:
|
|
|
|
switch (edge)
|
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_NORTH_WEST:
|
2016-02-27 00:10:12 +00:00
|
|
|
return "nw-resize";
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_NORTH:
|
2016-02-27 00:10:12 +00:00
|
|
|
return "n-resize";
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_NORTH_EAST:
|
2016-02-27 00:10:12 +00:00
|
|
|
return "ne-resize";
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_WEST:
|
2016-02-27 00:10:12 +00:00
|
|
|
return "w-resize";
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_EAST:
|
2016-02-27 00:10:12 +00:00
|
|
|
return "e-resize";
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_SOUTH_WEST:
|
2016-02-27 00:10:12 +00:00
|
|
|
return "sw-resize";
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_SOUTH:
|
2016-02-27 00:10:12 +00:00
|
|
|
return "s-resize";
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_SOUTH_EAST:
|
2016-03-12 12:14:04 +00:00
|
|
|
return "se-resize";
|
2016-02-27 00:10:12 +00:00
|
|
|
}
|
|
|
|
/* default: warn about unhandled enum values,
|
|
|
|
* fallthrough to GDK_WIN32_DRAGOP_NONE case
|
|
|
|
*/
|
|
|
|
case GDK_WIN32_DRAGOP_COUNT:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
case GDK_WIN32_DRAGOP_NONE:
|
|
|
|
return "default";
|
|
|
|
/* default: warn about unhandled enum values */
|
|
|
|
}
|
|
|
|
|
|
|
|
g_assert_not_reached ();
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
setup_drag_move_resize_context (GdkSurface *window,
|
2016-02-06 12:06:41 +00:00
|
|
|
GdkW32DragMoveResizeContext *context,
|
|
|
|
GdkW32WindowDragOp op,
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurfaceEdge edge,
|
2016-02-06 12:06:41 +00:00
|
|
|
GdkDevice *device,
|
|
|
|
gint button,
|
2019-04-01 06:18:30 +00:00
|
|
|
gint x,
|
|
|
|
gint y,
|
2016-02-06 12:06:41 +00:00
|
|
|
guint32 timestamp)
|
2004-08-06 19:20:42 +00:00
|
|
|
{
|
2016-02-06 12:06:41 +00:00
|
|
|
RECT rect;
|
2016-02-27 00:10:12 +00:00
|
|
|
const gchar *cursor_name;
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurface *pointer_window;
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl = GDK_WIN32_SURFACE (window);
|
2018-03-20 10:40:08 +00:00
|
|
|
gboolean maximized = gdk_surface_get_state (window) & GDK_SURFACE_STATE_MAXIMIZED;
|
2019-04-01 06:18:30 +00:00
|
|
|
gint root_x, root_y;
|
|
|
|
|
|
|
|
gdk_win32_surface_get_root_coords (window, x, y, &root_x, &root_y);
|
2016-03-08 05:03:29 +00:00
|
|
|
|
|
|
|
/* Before we drag, we need to undo any maximization or snapping.
|
2016-03-15 10:17:45 +00:00
|
|
|
* AeroSnap behaviour:
|
|
|
|
* If snapped halfleft/halfright:
|
|
|
|
* horizontal resize:
|
|
|
|
* resize
|
|
|
|
* don't unsnap
|
|
|
|
* keep stashed unsnapped size intact
|
|
|
|
* vertical resize:
|
|
|
|
* resize
|
|
|
|
* unsnap to new size (merge cached unsnapped state with current
|
|
|
|
* snapped state in such a way that the gripped edge
|
|
|
|
* does not move)
|
|
|
|
* diagonal resize:
|
|
|
|
* difficult to test (first move is usually either purely
|
|
|
|
* horizontal or purely vertical, in which
|
|
|
|
* case the above behaviour applies)
|
|
|
|
* If snapped up:
|
|
|
|
* horizontal resize:
|
|
|
|
* resize
|
|
|
|
* don't unsnap
|
|
|
|
* apply new width and x position to unsnapped cache,
|
|
|
|
* so that unsnapped window only regains its height
|
|
|
|
* and y position, but inherits x and width from
|
|
|
|
* the fullup snapped state
|
|
|
|
* vertical resize:
|
|
|
|
* unsnap to new size (merge cached unsnapped state with current
|
|
|
|
* snapped state in such a way that the gripped edge
|
|
|
|
* does not move)
|
|
|
|
*
|
|
|
|
* This implementation behaviour:
|
|
|
|
* If snapped halfleft/halfright/fullup:
|
|
|
|
* any resize:
|
|
|
|
* unsnap to current size, discard cached pre-snap state
|
|
|
|
*
|
|
|
|
* TODO: make this implementation behave as AeroSnap on resizes?
|
|
|
|
* There's also the case where
|
2016-03-08 05:03:29 +00:00
|
|
|
* a halfleft/halfright window isn't unsnapped when it's
|
|
|
|
* being moved horizontally, but it's more difficult to implement.
|
|
|
|
*/
|
2016-03-15 10:17:45 +00:00
|
|
|
if (op == GDK_WIN32_DRAGOP_RESIZE &&
|
2016-03-08 05:03:29 +00:00
|
|
|
(impl->snap_state == GDK_WIN32_AEROSNAP_STATE_HALFRIGHT ||
|
|
|
|
impl->snap_state == GDK_WIN32_AEROSNAP_STATE_HALFLEFT ||
|
|
|
|
impl->snap_state == GDK_WIN32_AEROSNAP_STATE_FULLUP))
|
2016-03-15 10:17:45 +00:00
|
|
|
{
|
|
|
|
discard_snapinfo (window);
|
|
|
|
}
|
|
|
|
else if (maximized ||
|
|
|
|
(impl->snap_state == GDK_WIN32_AEROSNAP_STATE_HALFRIGHT ||
|
|
|
|
impl->snap_state == GDK_WIN32_AEROSNAP_STATE_HALFLEFT ||
|
|
|
|
impl->snap_state == GDK_WIN32_AEROSNAP_STATE_FULLUP))
|
2016-03-08 05:03:29 +00:00
|
|
|
{
|
2016-10-21 05:40:49 +00:00
|
|
|
GdkMonitor *monitor;
|
2016-03-08 05:03:29 +00:00
|
|
|
gint wx, wy, wwidth, wheight;
|
2016-03-15 10:17:45 +00:00
|
|
|
gint swx, swy, swwidth, swheight;
|
2016-03-08 05:03:29 +00:00
|
|
|
gboolean pointer_outside_of_window;
|
|
|
|
gint offsetx, offsety;
|
|
|
|
gboolean left_half;
|
2016-10-21 05:40:49 +00:00
|
|
|
GdkDisplay *display;
|
2016-03-08 05:03:29 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
display = gdk_surface_get_display (window);
|
2018-03-20 11:05:26 +00:00
|
|
|
monitor = gdk_display_get_monitor_at_surface (display, window);
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_surface_get_geometry (window, &wx, &wy, &wwidth, &wheight);
|
2016-03-08 05:03:29 +00:00
|
|
|
|
2016-03-15 10:17:45 +00:00
|
|
|
swx = wx;
|
|
|
|
swy = wy;
|
|
|
|
swwidth = wwidth;
|
|
|
|
swheight = wheight;
|
|
|
|
|
|
|
|
/* Subtract window shadow. We don't want pointer to go outside of
|
|
|
|
* the visible window during drag-move. For drag-resize it's OK.
|
|
|
|
* Don't take shadow into account if the window is maximized -
|
|
|
|
* maximized windows don't have shadows.
|
|
|
|
*/
|
|
|
|
if (op == GDK_WIN32_DRAGOP_MOVE && !maximized)
|
|
|
|
{
|
2018-03-20 11:05:26 +00:00
|
|
|
swx += impl->margins.left / impl->surface_scale;
|
|
|
|
swy += impl->margins.top / impl->surface_scale;
|
2016-03-15 10:17:45 +00:00
|
|
|
swwidth -= impl->margins_x;
|
|
|
|
swheight -= impl->margins_y;
|
|
|
|
}
|
|
|
|
|
|
|
|
pointer_outside_of_window = root_x < swx || root_x > swx + swwidth ||
|
|
|
|
root_y < swy || root_y > swy + swheight;
|
2016-03-08 05:03:29 +00:00
|
|
|
/* Calculate the offset of the pointer relative to the window */
|
2016-03-15 10:17:45 +00:00
|
|
|
offsetx = root_x - swx;
|
|
|
|
offsety = root_y - swy;
|
2016-03-08 05:03:29 +00:00
|
|
|
|
|
|
|
/* Figure out in which half of the window the pointer is.
|
|
|
|
* The code currently only concerns itself with horizontal
|
|
|
|
* dimension (left/right halves).
|
|
|
|
* There's no upper/lower half, because usually window
|
|
|
|
* is dragged by its upper half anyway. If that changes, adjust
|
|
|
|
* accordingly.
|
|
|
|
*/
|
2016-03-15 10:17:45 +00:00
|
|
|
left_half = (offsetx < swwidth / 2);
|
2016-03-08 05:03:29 +00:00
|
|
|
|
|
|
|
/* Inverse the offset for it to be from the right edge */
|
|
|
|
if (!left_half)
|
2016-03-15 10:17:45 +00:00
|
|
|
offsetx = swwidth - offsetx;
|
2016-03-08 05:03:29 +00:00
|
|
|
|
|
|
|
GDK_NOTE (MISC, g_print ("Pointer at %d : %d, this is %d : %d relative to the window's %s\n",
|
|
|
|
root_x, root_y, offsetx, offsety,
|
|
|
|
left_half ? "left half" : "right half"));
|
|
|
|
|
|
|
|
/* Move window in such a way that on unmaximization/unsnapping the pointer
|
|
|
|
* is still pointing at the appropriate half of the window,
|
|
|
|
* with the same offset from the left or right edge. If the new
|
|
|
|
* window size is too small, and adding that offset puts the pointer
|
|
|
|
* into the other half or even beyond, move the pointer to the middle.
|
|
|
|
*/
|
|
|
|
if (!pointer_outside_of_window && maximized)
|
|
|
|
{
|
|
|
|
WINDOWPLACEMENT placement;
|
|
|
|
gint unmax_width, unmax_height;
|
2016-03-15 10:17:45 +00:00
|
|
|
gint shadow_unmax_width, shadow_unmax_height;
|
2016-03-08 05:03:29 +00:00
|
|
|
|
|
|
|
placement.length = sizeof (placement);
|
2018-03-20 10:40:08 +00:00
|
|
|
API_CALL (GetWindowPlacement, (GDK_SURFACE_HWND (window), &placement));
|
2016-03-08 05:03:29 +00:00
|
|
|
|
|
|
|
GDK_NOTE (MISC, g_print ("W32 WM unmaximized window placement is %ld x %ld @ %ld : %ld\n",
|
|
|
|
placement.rcNormalPosition.right - placement.rcNormalPosition.left,
|
|
|
|
placement.rcNormalPosition.bottom - placement.rcNormalPosition.top,
|
2018-03-20 11:05:26 +00:00
|
|
|
placement.rcNormalPosition.left + _gdk_offset_x * impl->surface_scale,
|
|
|
|
placement.rcNormalPosition.top + _gdk_offset_y * impl->surface_scale));
|
2016-03-08 05:03:29 +00:00
|
|
|
|
|
|
|
unmax_width = placement.rcNormalPosition.right - placement.rcNormalPosition.left;
|
|
|
|
unmax_height = placement.rcNormalPosition.bottom - placement.rcNormalPosition.top;
|
|
|
|
|
2018-03-20 11:05:26 +00:00
|
|
|
shadow_unmax_width = unmax_width - impl->margins_x * impl->surface_scale;
|
|
|
|
shadow_unmax_height = unmax_height - impl->margins_y * impl->surface_scale;
|
2016-03-15 10:17:45 +00:00
|
|
|
|
2018-03-20 11:05:26 +00:00
|
|
|
if (offsetx * impl->surface_scale < (shadow_unmax_width / 2) &&
|
|
|
|
offsety * impl->surface_scale < (shadow_unmax_height / 2))
|
2016-03-08 05:03:29 +00:00
|
|
|
{
|
2018-03-20 11:05:26 +00:00
|
|
|
placement.rcNormalPosition.top = (root_y - offsety + impl->margins.top - _gdk_offset_y) * impl->surface_scale;
|
2016-03-08 05:03:29 +00:00
|
|
|
placement.rcNormalPosition.bottom = placement.rcNormalPosition.top + unmax_height;
|
|
|
|
|
|
|
|
if (left_half)
|
|
|
|
{
|
2018-03-20 11:05:26 +00:00
|
|
|
placement.rcNormalPosition.left = (root_x - offsetx + impl->margins.left - _gdk_offset_x) * impl->surface_scale;
|
2016-03-08 05:03:29 +00:00
|
|
|
placement.rcNormalPosition.right = placement.rcNormalPosition.left + unmax_width;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-03-20 11:05:26 +00:00
|
|
|
placement.rcNormalPosition.right = (root_x + offsetx + impl->margins.right - _gdk_offset_x) * impl->surface_scale;
|
2016-03-08 05:03:29 +00:00
|
|
|
placement.rcNormalPosition.left = placement.rcNormalPosition.right - unmax_width;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-03-20 11:05:26 +00:00
|
|
|
placement.rcNormalPosition.left = (root_x * impl->surface_scale) -
|
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
|
|
|
(unmax_width / 2) -
|
2018-03-20 11:05:26 +00:00
|
|
|
(_gdk_offset_x * impl->surface_scale);
|
2016-03-15 10:17:45 +00:00
|
|
|
|
2018-03-20 11:05:26 +00:00
|
|
|
if (offsety * impl->surface_scale < shadow_unmax_height / 2)
|
|
|
|
placement.rcNormalPosition.top = (root_y - offsety + impl->margins.top - _gdk_offset_y) * impl->surface_scale;
|
2016-03-15 10:17:45 +00:00
|
|
|
else
|
2018-03-20 11:05:26 +00:00
|
|
|
placement.rcNormalPosition.top = (root_y * impl->surface_scale) -
|
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
|
|
|
(unmax_height / 2) -
|
2018-03-20 11:05:26 +00:00
|
|
|
(_gdk_offset_y * impl->surface_scale);
|
2016-03-15 10:17:45 +00:00
|
|
|
|
2016-03-08 05:03:29 +00:00
|
|
|
placement.rcNormalPosition.right = placement.rcNormalPosition.left + unmax_width;
|
|
|
|
placement.rcNormalPosition.bottom = placement.rcNormalPosition.top + unmax_height;
|
|
|
|
}
|
|
|
|
|
|
|
|
GDK_NOTE (MISC, g_print ("Unmaximized window will be at %ld : %ld\n",
|
2018-03-20 11:05:26 +00:00
|
|
|
placement.rcNormalPosition.left + _gdk_offset_x * impl->surface_scale,
|
|
|
|
placement.rcNormalPosition.top + _gdk_offset_y * impl->surface_scale));
|
2016-03-08 05:03:29 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
API_CALL (SetWindowPlacement, (GDK_SURFACE_HWND (window), &placement));
|
2016-03-08 05:03:29 +00:00
|
|
|
}
|
|
|
|
else if (!pointer_outside_of_window && impl->snap_stash_int)
|
|
|
|
{
|
|
|
|
GdkRectangle new_pos;
|
2016-03-15 10:17:45 +00:00
|
|
|
GdkRectangle snew_pos;
|
2016-03-08 05:03:29 +00:00
|
|
|
|
|
|
|
new_pos.width = impl->snap_stash_int->width;
|
|
|
|
new_pos.height = impl->snap_stash_int->height;
|
2016-03-15 10:17:45 +00:00
|
|
|
snew_pos = new_pos;
|
2016-03-08 05:03:29 +00:00
|
|
|
|
2016-03-15 10:17:45 +00:00
|
|
|
if (op == GDK_WIN32_DRAGOP_MOVE)
|
2016-03-08 05:03:29 +00:00
|
|
|
{
|
2016-03-15 10:17:45 +00:00
|
|
|
snew_pos.width -= impl->margins_x;
|
|
|
|
snew_pos.height -= impl->margins_y;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (offsetx < snew_pos.width / 2 && offsety < snew_pos.height / 2)
|
|
|
|
{
|
2018-03-20 11:05:26 +00:00
|
|
|
new_pos.y = root_y - offsety + impl->margins.top / impl->surface_scale;
|
2016-03-08 05:03:29 +00:00
|
|
|
|
|
|
|
if (left_half)
|
2018-03-20 11:05:26 +00:00
|
|
|
new_pos.x = root_x - offsetx + impl->margins.left / impl->surface_scale;
|
2016-03-08 05:03:29 +00:00
|
|
|
else
|
2018-03-20 11:05:26 +00:00
|
|
|
new_pos.x = root_x + offsetx + impl->margins.left / impl->surface_scale - new_pos.width;
|
2016-03-08 05:03:29 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
new_pos.x = root_x - new_pos.width / 2;
|
|
|
|
new_pos.y = root_y - new_pos.height / 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
GDK_NOTE (MISC, g_print ("Unsnapped window to %d : %d\n",
|
|
|
|
new_pos.x, new_pos.y));
|
|
|
|
discard_snapinfo (window);
|
2019-07-15 13:47:12 +00:00
|
|
|
gdk_win32_surface_move_resize (window, new_pos.x, new_pos.y,
|
|
|
|
new_pos.width, new_pos.height);
|
2016-03-08 05:03:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (maximized)
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_surface_unmaximize (window);
|
2016-03-08 05:03:29 +00:00
|
|
|
else
|
2016-10-21 05:40:49 +00:00
|
|
|
unsnap (window, monitor);
|
2016-03-08 05:03:29 +00:00
|
|
|
|
|
|
|
if (pointer_outside_of_window)
|
|
|
|
{
|
|
|
|
/* Pointer outside of the window, move pointer into window */
|
|
|
|
GDK_NOTE (MISC, g_print ("Pointer at %d : %d is outside of %d x %d @ %d : %d, move it to %d : %d\n",
|
|
|
|
root_x, root_y, wwidth, wheight, wx, wy, wx + wwidth / 2, wy + wheight / 2));
|
|
|
|
root_x = wx + wwidth / 2;
|
|
|
|
/* This is Gnome behaviour. Windows WM would put the pointer
|
|
|
|
* in the middle of the titlebar, but GDK doesn't know where
|
|
|
|
* the titlebar is, if any.
|
|
|
|
*/
|
|
|
|
root_y = wy + wheight / 2;
|
2019-03-26 07:19:42 +00:00
|
|
|
SetCursorPos (root_x - _gdk_offset_x, root_y - _gdk_offset_y);
|
2016-03-08 05:03:29 +00:00
|
|
|
}
|
|
|
|
}
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2016-02-06 12:06:41 +00:00
|
|
|
_gdk_win32_get_window_rect (window, &rect);
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2016-02-27 00:10:12 +00:00
|
|
|
cursor_name = get_cursor_name_from_op (op, edge);
|
|
|
|
|
2017-11-07 07:39:48 +00:00
|
|
|
context->cursor = gdk_cursor_new_from_name (cursor_name, NULL);
|
2016-02-27 00:10:12 +00:00
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
pointer_window = window;
|
2016-02-27 00:10:12 +00:00
|
|
|
|
|
|
|
/* Note: This triggers a WM_CAPTURECHANGED, which will trigger
|
2018-03-20 10:40:08 +00:00
|
|
|
* gdk_win32_surface_end_move_resize_drag(), which will end
|
2016-02-27 00:10:12 +00:00
|
|
|
* our op before it even begins, but only if context->op is not NONE.
|
|
|
|
* This is why we first do the grab, *then* set the op.
|
|
|
|
*/
|
|
|
|
gdk_device_grab (device, pointer_window,
|
|
|
|
GDK_OWNERSHIP_NONE, FALSE,
|
|
|
|
GDK_ALL_EVENTS_MASK,
|
|
|
|
context->cursor,
|
|
|
|
timestamp);
|
|
|
|
|
2016-03-12 16:26:19 +00:00
|
|
|
context->window = g_object_ref (window);
|
2016-02-06 12:06:41 +00:00
|
|
|
context->op = op;
|
|
|
|
context->edge = edge;
|
|
|
|
context->device = device;
|
|
|
|
context->button = button;
|
|
|
|
context->start_root_x = root_x;
|
|
|
|
context->start_root_y = root_y;
|
|
|
|
context->timestamp = timestamp;
|
|
|
|
context->start_rect = rect;
|
2004-08-06 19:20:42 +00:00
|
|
|
|
2016-03-08 05:03:29 +00:00
|
|
|
context->shape_indicator = NULL;
|
|
|
|
context->revealed = FALSE;
|
|
|
|
context->halfleft_regions = g_array_new (FALSE, FALSE, sizeof (AeroSnapEdgeRegion));
|
|
|
|
context->halfright_regions = g_array_new (FALSE, FALSE, sizeof (AeroSnapEdgeRegion));
|
|
|
|
context->maximize_regions = g_array_new (FALSE, FALSE, sizeof (AeroSnapEdgeRegion));
|
|
|
|
context->fullup_regions = g_array_new (FALSE, FALSE, sizeof (AeroSnapEdgeRegion));
|
|
|
|
|
|
|
|
calculate_aerosnap_regions (context);
|
|
|
|
|
2016-02-06 12:06:41 +00:00
|
|
|
GDK_NOTE (EVENTS,
|
2016-02-27 00:10:12 +00:00
|
|
|
g_print ("begin drag moveresize: window %p, toplevel %p, "
|
2016-02-06 12:06:41 +00:00
|
|
|
"op %u, edge %d, device %p, "
|
|
|
|
"button %d, coord %d:%d, time %u\n",
|
2019-05-19 03:09:05 +00:00
|
|
|
pointer_window, window,
|
2016-02-06 12:06:41 +00:00
|
|
|
context->op, context->edge, context->device,
|
|
|
|
context->button, context->start_root_x,
|
|
|
|
context->start_root_y, context->timestamp));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_end_move_resize_drag (GdkSurface *window)
|
2016-02-06 12:06:41 +00:00
|
|
|
{
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl = GDK_WIN32_SURFACE (window);
|
2016-02-06 12:06:41 +00:00
|
|
|
GdkW32DragMoveResizeContext *context = &impl->drag_move_resize_context;
|
|
|
|
|
|
|
|
context->op = GDK_WIN32_DRAGOP_NONE;
|
2016-02-27 00:10:12 +00:00
|
|
|
|
|
|
|
gdk_device_ungrab (context->device, GDK_CURRENT_TIME);
|
|
|
|
|
|
|
|
g_clear_object (&context->cursor);
|
|
|
|
|
2016-03-08 05:03:29 +00:00
|
|
|
context->revealed = FALSE;
|
2016-03-12 16:26:19 +00:00
|
|
|
|
|
|
|
if (context->timer)
|
|
|
|
{
|
|
|
|
g_source_remove (context->timer);
|
|
|
|
context->timer = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_clear_object (&context->window);
|
|
|
|
|
|
|
|
if (context->indicator_surface)
|
|
|
|
{
|
|
|
|
cairo_surface_destroy (context->indicator_surface);
|
|
|
|
context->indicator_surface = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (context->shape_indicator)
|
|
|
|
{
|
|
|
|
stop_indicator (window, context);
|
|
|
|
DestroyWindow (context->shape_indicator);
|
|
|
|
context->shape_indicator = NULL;
|
|
|
|
}
|
|
|
|
|
2016-03-08 05:03:29 +00:00
|
|
|
g_clear_pointer (&context->halfleft_regions, g_array_unref);
|
|
|
|
g_clear_pointer (&context->halfright_regions, g_array_unref);
|
|
|
|
g_clear_pointer (&context->maximize_regions, g_array_unref);
|
|
|
|
g_clear_pointer (&context->fullup_regions, g_array_unref);
|
|
|
|
|
2016-02-06 12:06:41 +00:00
|
|
|
GDK_NOTE (EVENTS,
|
2016-02-27 00:10:12 +00:00
|
|
|
g_print ("end drag moveresize: window %p, toplevel %p,"
|
2016-02-06 12:06:41 +00:00
|
|
|
"op %u, edge %d, device %p, "
|
|
|
|
"button %d, coord %d:%d, time %u\n",
|
2019-05-19 03:09:05 +00:00
|
|
|
window, window,
|
2016-02-06 12:06:41 +00:00
|
|
|
context->op, context->edge, context->device,
|
|
|
|
context->button, context->start_root_x,
|
|
|
|
context->start_root_y, context->timestamp));
|
2016-06-05 07:37:02 +00:00
|
|
|
|
|
|
|
if (context->current_snap != GDK_WIN32_AEROSNAP_STATE_UNDETERMINED)
|
|
|
|
apply_snap (window, context->current_snap);
|
|
|
|
|
|
|
|
context->current_snap = GDK_WIN32_AEROSNAP_STATE_UNDETERMINED;
|
2016-02-06 12:06:41 +00:00
|
|
|
}
|
|
|
|
|
2017-09-02 15:25:36 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_get_window_size_and_position_from_client_rect (GdkSurface *window,
|
2017-09-02 15:25:36 +00:00
|
|
|
RECT *window_rect,
|
|
|
|
SIZE *window_size,
|
|
|
|
POINT *window_position)
|
|
|
|
{
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl = GDK_WIN32_SURFACE (window);
|
2017-09-02 15:25:36 +00:00
|
|
|
|
|
|
|
/* Turn client area into window area */
|
|
|
|
_gdk_win32_adjust_client_rect (window, window_rect);
|
|
|
|
|
|
|
|
/* Convert GDK screen coordinates to W32 desktop coordinates */
|
2018-03-20 11:05:26 +00:00
|
|
|
window_rect->left -= _gdk_offset_x * impl->surface_scale;
|
|
|
|
window_rect->right -= _gdk_offset_x * impl->surface_scale;
|
|
|
|
window_rect->top -= _gdk_offset_y * impl->surface_scale;
|
|
|
|
window_rect->bottom -= _gdk_offset_y * impl->surface_scale;
|
2017-09-02 15:25:36 +00:00
|
|
|
|
|
|
|
window_position->x = window_rect->left;
|
|
|
|
window_position->y = window_rect->top;
|
|
|
|
window_size->cx = window_rect->right - window_rect->left;
|
|
|
|
window_size->cy = window_rect->bottom - window_rect->top;
|
|
|
|
}
|
|
|
|
|
2018-04-24 15:14:23 +00:00
|
|
|
void
|
|
|
|
_gdk_win32_update_layered_window_from_cache (GdkSurface *surface,
|
|
|
|
RECT *client_rect,
|
|
|
|
gboolean do_move,
|
|
|
|
gboolean do_resize,
|
|
|
|
gboolean do_paint)
|
2017-09-02 15:25:36 +00:00
|
|
|
{
|
|
|
|
POINT window_position;
|
|
|
|
SIZE window_size;
|
|
|
|
BLENDFUNCTION blender;
|
|
|
|
HDC hdc;
|
|
|
|
SIZE *window_size_ptr;
|
|
|
|
POINT source_point = { 0, 0 };
|
|
|
|
POINT *source_point_ptr;
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl = GDK_WIN32_SURFACE (surface);
|
2017-09-02 15:25:36 +00:00
|
|
|
|
2018-04-24 15:14:23 +00:00
|
|
|
gdk_win32_get_window_size_and_position_from_client_rect (surface,
|
2017-09-02 15:25:36 +00:00
|
|
|
client_rect,
|
|
|
|
&window_size,
|
|
|
|
&window_position);
|
|
|
|
|
|
|
|
blender.BlendOp = AC_SRC_OVER;
|
|
|
|
blender.BlendFlags = 0;
|
|
|
|
blender.AlphaFormat = AC_SRC_ALPHA;
|
|
|
|
blender.SourceConstantAlpha = impl->layered_opacity * 255;
|
|
|
|
|
|
|
|
/* Strictly speaking, we don't need to supply hdc, source_point and
|
2018-04-24 15:14:23 +00:00
|
|
|
* window_size to just move the window. However, without these arguments
|
2017-09-02 15:25:36 +00:00
|
|
|
* the window moves but does not update its contents on Windows 7 when
|
|
|
|
* desktop composition is off. This forces us to provide hdc and
|
|
|
|
* source_point. window_size is here to avoid the function
|
|
|
|
* inexplicably failing with error 317.
|
|
|
|
*/
|
2018-04-24 15:14:23 +00:00
|
|
|
hdc = cairo_win32_surface_get_dc (impl->cache_surface);
|
|
|
|
window_size_ptr = &window_size;
|
|
|
|
source_point_ptr = &source_point;
|
|
|
|
|
|
|
|
if (gdk_display_is_composited (gdk_surface_get_display (surface)))
|
2017-09-02 15:25:36 +00:00
|
|
|
{
|
2018-04-24 15:14:23 +00:00
|
|
|
if (!do_paint)
|
|
|
|
hdc = NULL;
|
|
|
|
if (!do_resize)
|
|
|
|
window_size_ptr = NULL;
|
|
|
|
if (!do_move)
|
|
|
|
source_point_ptr = NULL;
|
2017-09-02 15:25:36 +00:00
|
|
|
}
|
|
|
|
|
2018-04-24 15:14:23 +00:00
|
|
|
/* Don't use UpdateLayeredWindow on minimized windows */
|
|
|
|
if (IsIconic (GDK_SURFACE_HWND (surface)))
|
|
|
|
API_CALL (SetWindowPos, (GDK_SURFACE_HWND (surface),
|
|
|
|
SWP_NOZORDER_SPECIFIED,
|
|
|
|
window_position.x, window_position.y,
|
|
|
|
window_size.cx, window_size.cy,
|
|
|
|
SWP_NOACTIVATE | SWP_NOZORDER | SWP_NOREDRAW));
|
|
|
|
else
|
|
|
|
API_CALL (UpdateLayeredWindow, (GDK_SURFACE_HWND (surface), NULL,
|
|
|
|
&window_position, window_size_ptr,
|
|
|
|
hdc, source_point_ptr,
|
|
|
|
0, &blender, ULW_ALPHA));
|
2017-09-02 15:25:36 +00:00
|
|
|
}
|
|
|
|
|
2016-02-06 12:06:41 +00:00
|
|
|
void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_do_move_resize_drag (GdkSurface *window,
|
2016-02-06 12:06:41 +00:00
|
|
|
gint x,
|
|
|
|
gint y)
|
|
|
|
{
|
|
|
|
RECT rect;
|
|
|
|
RECT new_rect;
|
|
|
|
gint diffy, diffx;
|
|
|
|
MINMAXINFO mmi;
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl;
|
2016-02-06 12:06:41 +00:00
|
|
|
GdkW32DragMoveResizeContext *context;
|
|
|
|
gint width;
|
|
|
|
gint height;
|
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
impl = GDK_WIN32_SURFACE (window);
|
2016-02-06 12:06:41 +00:00
|
|
|
context = &impl->drag_move_resize_context;
|
|
|
|
|
|
|
|
if (!_gdk_win32_get_window_rect (window, &rect))
|
2004-10-30 18:04:49 +00:00
|
|
|
return;
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2016-02-06 12:06:41 +00:00
|
|
|
new_rect = context->start_rect;
|
2018-03-20 11:05:26 +00:00
|
|
|
diffx = (x - context->start_root_x) * impl->surface_scale;
|
|
|
|
diffy = (y - context->start_root_y) * impl->surface_scale;
|
2004-10-30 18:04:49 +00:00
|
|
|
|
2016-02-06 12:06:41 +00:00
|
|
|
switch (context->op)
|
2004-10-30 18:04:49 +00:00
|
|
|
{
|
2016-02-06 12:06:41 +00:00
|
|
|
case GDK_WIN32_DRAGOP_RESIZE:
|
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
|
|
|
|
2016-02-06 12:06:41 +00:00
|
|
|
switch (context->edge)
|
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_NORTH_WEST:
|
2016-02-06 12:06:41 +00:00
|
|
|
new_rect.left += diffx;
|
|
|
|
new_rect.top += diffy;
|
|
|
|
break;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_NORTH:
|
2016-02-06 12:06:41 +00:00
|
|
|
new_rect.top += diffy;
|
|
|
|
break;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_NORTH_EAST:
|
2016-02-06 12:06:41 +00:00
|
|
|
new_rect.right += diffx;
|
|
|
|
new_rect.top += diffy;
|
|
|
|
break;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_WEST:
|
2016-02-06 12:06:41 +00:00
|
|
|
new_rect.left += diffx;
|
|
|
|
break;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_EAST:
|
2016-02-06 12:06:41 +00:00
|
|
|
new_rect.right += diffx;
|
|
|
|
break;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_SOUTH_WEST:
|
2016-02-06 12:06:41 +00:00
|
|
|
new_rect.left += diffx;
|
|
|
|
new_rect.bottom += diffy;
|
|
|
|
break;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_SOUTH:
|
2016-02-06 12:06:41 +00:00
|
|
|
new_rect.bottom += diffy;
|
|
|
|
break;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_SOUTH_EAST:
|
2016-02-06 12:06:41 +00:00
|
|
|
default:
|
|
|
|
new_rect.right += diffx;
|
|
|
|
new_rect.bottom += diffy;
|
|
|
|
break;
|
|
|
|
}
|
2004-10-30 18:04:49 +00:00
|
|
|
|
2016-02-06 12:06:41 +00:00
|
|
|
/* When handling WM_GETMINMAXINFO, mmi is already populated
|
|
|
|
* by W32 WM and we apply our stuff on top of that.
|
|
|
|
* Here it isn't, so we should at least clear it.
|
|
|
|
*/
|
|
|
|
memset (&mmi, 0, sizeof (mmi));
|
2004-10-30 18:04:49 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (!_gdk_win32_surface_fill_min_max_info (window, &mmi))
|
2016-02-06 12:06:41 +00:00
|
|
|
break;
|
2004-10-30 18:04:49 +00:00
|
|
|
|
2016-02-06 12:06:41 +00:00
|
|
|
width = new_rect.right - new_rect.left;
|
|
|
|
height = new_rect.bottom - new_rect.top;
|
2004-10-30 18:04:49 +00:00
|
|
|
|
2016-02-06 12:06:41 +00:00
|
|
|
if (width > mmi.ptMaxTrackSize.x)
|
|
|
|
{
|
|
|
|
switch (context->edge)
|
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_NORTH_WEST:
|
|
|
|
case GDK_SURFACE_EDGE_WEST:
|
|
|
|
case GDK_SURFACE_EDGE_SOUTH_WEST:
|
2016-02-06 12:06:41 +00:00
|
|
|
new_rect.left = new_rect.right - mmi.ptMaxTrackSize.x;
|
|
|
|
break;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_NORTH_EAST:
|
|
|
|
case GDK_SURFACE_EDGE_EAST:
|
|
|
|
case GDK_SURFACE_EDGE_SOUTH_EAST:
|
2016-02-06 12:06:41 +00:00
|
|
|
default:
|
|
|
|
new_rect.right = new_rect.left + mmi.ptMaxTrackSize.x;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (width < mmi.ptMinTrackSize.x)
|
|
|
|
{
|
|
|
|
switch (context->edge)
|
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_NORTH_WEST:
|
|
|
|
case GDK_SURFACE_EDGE_WEST:
|
|
|
|
case GDK_SURFACE_EDGE_SOUTH_WEST:
|
2016-02-06 12:06:41 +00:00
|
|
|
new_rect.left = new_rect.right - mmi.ptMinTrackSize.x;
|
|
|
|
break;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_NORTH_EAST:
|
|
|
|
case GDK_SURFACE_EDGE_EAST:
|
|
|
|
case GDK_SURFACE_EDGE_SOUTH_EAST:
|
2016-02-06 12:06:41 +00:00
|
|
|
default:
|
|
|
|
new_rect.right = new_rect.left + mmi.ptMinTrackSize.x;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2004-10-30 18:04:49 +00:00
|
|
|
|
2016-02-06 12:06:41 +00:00
|
|
|
if (height > mmi.ptMaxTrackSize.y)
|
|
|
|
{
|
|
|
|
switch (context->edge)
|
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_NORTH_WEST:
|
|
|
|
case GDK_SURFACE_EDGE_NORTH:
|
|
|
|
case GDK_SURFACE_EDGE_NORTH_EAST:
|
2016-02-06 12:06:41 +00:00
|
|
|
new_rect.top = new_rect.bottom - mmi.ptMaxTrackSize.y;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_SOUTH_WEST:
|
|
|
|
case GDK_SURFACE_EDGE_SOUTH:
|
|
|
|
case GDK_SURFACE_EDGE_SOUTH_EAST:
|
2016-02-06 12:06:41 +00:00
|
|
|
default:
|
|
|
|
new_rect.bottom = new_rect.top + mmi.ptMaxTrackSize.y;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (height < mmi.ptMinTrackSize.y)
|
|
|
|
{
|
|
|
|
switch (context->edge)
|
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_NORTH_WEST:
|
|
|
|
case GDK_SURFACE_EDGE_NORTH:
|
|
|
|
case GDK_SURFACE_EDGE_NORTH_EAST:
|
2016-02-06 12:06:41 +00:00
|
|
|
new_rect.top = new_rect.bottom - mmi.ptMinTrackSize.y;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_SOUTH_WEST:
|
|
|
|
case GDK_SURFACE_EDGE_SOUTH:
|
|
|
|
case GDK_SURFACE_EDGE_SOUTH_EAST:
|
2016-02-06 12:06:41 +00:00
|
|
|
default:
|
|
|
|
new_rect.bottom = new_rect.top + mmi.ptMinTrackSize.y;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2004-10-30 18:04:49 +00:00
|
|
|
|
|
|
|
break;
|
2016-02-06 12:06:41 +00:00
|
|
|
case GDK_WIN32_DRAGOP_MOVE:
|
|
|
|
new_rect.left += diffx;
|
|
|
|
new_rect.top += diffy;
|
|
|
|
new_rect.right += diffx;
|
|
|
|
new_rect.bottom += diffy;
|
|
|
|
break;
|
2004-10-30 18:04:49 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2016-02-06 12:06:41 +00:00
|
|
|
if (context->op == GDK_WIN32_DRAGOP_RESIZE &&
|
|
|
|
(rect.left != new_rect.left ||
|
|
|
|
rect.right != new_rect.right ||
|
|
|
|
rect.top != new_rect.top ||
|
|
|
|
rect.bottom != new_rect.bottom))
|
|
|
|
{
|
|
|
|
context->native_move_resize_pending = TRUE;
|
|
|
|
_gdk_win32_do_emit_configure_event (window, new_rect);
|
|
|
|
}
|
|
|
|
else if (context->op == GDK_WIN32_DRAGOP_MOVE &&
|
|
|
|
(rect.left != new_rect.left ||
|
|
|
|
rect.top != new_rect.top))
|
|
|
|
{
|
|
|
|
context->native_move_resize_pending = FALSE;
|
|
|
|
|
|
|
|
_gdk_win32_do_emit_configure_event (window, new_rect);
|
|
|
|
|
2016-02-23 09:20:55 +00:00
|
|
|
if (impl->layered)
|
2016-03-03 17:17:25 +00:00
|
|
|
{
|
2018-04-24 15:14:23 +00:00
|
|
|
_gdk_win32_update_layered_window_from_cache (window, &new_rect, TRUE, FALSE, FALSE);
|
2016-03-03 17:17:25 +00:00
|
|
|
}
|
2016-02-23 09:20:55 +00:00
|
|
|
else
|
2016-03-03 17:17:25 +00:00
|
|
|
{
|
2017-09-02 15:25:36 +00:00
|
|
|
SIZE window_size;
|
|
|
|
POINT window_position;
|
|
|
|
|
|
|
|
gdk_win32_get_window_size_and_position_from_client_rect (window,
|
|
|
|
&new_rect,
|
|
|
|
&window_size,
|
|
|
|
&window_position);
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
API_CALL (SetWindowPos, (GDK_SURFACE_HWND (window),
|
2016-03-03 17:17:25 +00:00
|
|
|
SWP_NOZORDER_SPECIFIED,
|
|
|
|
window_position.x, window_position.y,
|
|
|
|
0, 0,
|
|
|
|
SWP_NOACTIVATE | SWP_NOZORDER | SWP_NOSIZE));
|
|
|
|
}
|
2016-02-06 12:06:41 +00:00
|
|
|
}
|
2016-03-08 05:03:29 +00:00
|
|
|
|
|
|
|
if (context->op == GDK_WIN32_DRAGOP_RESIZE ||
|
|
|
|
context->op == GDK_WIN32_DRAGOP_MOVE)
|
|
|
|
handle_aerosnap_move_resize (window, context, x, y);
|
2016-02-06 12:06:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_begin_resize_drag (GdkSurface *window,
|
|
|
|
GdkSurfaceEdge edge,
|
2016-02-06 12:06:41 +00:00
|
|
|
GdkDevice *device,
|
|
|
|
gint button,
|
2019-04-01 06:18:30 +00:00
|
|
|
gint x,
|
|
|
|
gint y,
|
2016-02-06 12:06:41 +00:00
|
|
|
guint32 timestamp)
|
|
|
|
{
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl;
|
2016-02-06 12:06:41 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (window));
|
2016-02-06 12:06:41 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (window) ||
|
|
|
|
IsIconic (GDK_SURFACE_HWND (window)))
|
2016-02-06 12:06:41 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
/* Tell Windows to start interactively resizing the window by pretending that
|
|
|
|
* the left pointer button was clicked in the suitable edge or corner. This
|
|
|
|
* will only work if the button is down when this function is called, and
|
|
|
|
* will only work with button 1 (left), since Windows only allows window
|
|
|
|
* dragging using the left mouse button.
|
|
|
|
*/
|
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
|
|
|
|
2016-02-06 12:06:41 +00:00
|
|
|
if (button != 1)
|
|
|
|
return;
|
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
impl = GDK_WIN32_SURFACE (window);
|
2016-02-06 12:06:41 +00:00
|
|
|
|
|
|
|
if (impl->drag_move_resize_context.op != GDK_WIN32_DRAGOP_NONE)
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_end_move_resize_drag (window);
|
2016-02-06 12:06:41 +00:00
|
|
|
|
|
|
|
setup_drag_move_resize_context (window, &impl->drag_move_resize_context,
|
|
|
|
GDK_WIN32_DRAGOP_RESIZE, edge, device,
|
2019-04-01 06:18:30 +00:00
|
|
|
button, x, y, timestamp);
|
2004-08-06 19:20:42 +00:00
|
|
|
}
|
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_begin_move_drag (GdkSurface *window,
|
2016-02-06 12:06:41 +00:00
|
|
|
GdkDevice *device,
|
|
|
|
gint button,
|
2019-04-01 06:18:30 +00:00
|
|
|
gint x,
|
|
|
|
gint y,
|
2016-02-06 12:06:41 +00:00
|
|
|
guint32 timestamp)
|
2004-08-06 19:20:42 +00:00
|
|
|
{
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl;
|
2016-02-06 12:06:41 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (window));
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (window) ||
|
|
|
|
IsIconic (GDK_SURFACE_HWND (window)))
|
2004-08-06 19:20:42 +00:00
|
|
|
return;
|
|
|
|
|
2004-10-30 18:04:49 +00:00
|
|
|
/* Tell Windows to start interactively moving the window by pretending that
|
|
|
|
* the left pointer button was clicked in the titlebar. This will only work
|
|
|
|
* if the button is down when this function is called, and will only work
|
|
|
|
* with button 1 (left), since Windows only allows window dragging using the
|
2005-11-02 13:33:27 +00:00
|
|
|
* left mouse button.
|
|
|
|
*/
|
2004-10-30 18:04:49 +00:00
|
|
|
if (button != 1)
|
|
|
|
return;
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
impl = GDK_WIN32_SURFACE (window);
|
2016-02-06 12:06:41 +00:00
|
|
|
|
|
|
|
if (impl->drag_move_resize_context.op != GDK_WIN32_DRAGOP_NONE)
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_end_move_resize_drag (window);
|
2004-10-30 18:04:49 +00:00
|
|
|
|
2016-02-06 12:06:41 +00:00
|
|
|
setup_drag_move_resize_context (window, &impl->drag_move_resize_context,
|
2018-03-20 10:40:08 +00:00
|
|
|
GDK_WIN32_DRAGOP_MOVE, GDK_SURFACE_EDGE_NORTH_WEST,
|
2019-04-01 06:18:30 +00:00
|
|
|
device, button, x, y, timestamp);
|
2004-08-06 19:20:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-03-09 16:43:19 +00:00
|
|
|
/*
|
|
|
|
* Setting window states
|
|
|
|
*/
|
2011-01-02 10:51:25 +00:00
|
|
|
static void
|
2019-11-16 19:50:57 +00:00
|
|
|
gdk_win32_surface_minimize (GdkSurface *window)
|
2001-03-09 16:43:19 +00:00
|
|
|
{
|
Merge from stable:
2002-12-09 Tor Lillqvist <tml@iki.fi>
Merge from stable:
* gdk/win32/gdkdrawable-win32.c (generic_draw): Don't leak
stipple_gc. More checks for errors. Use correct ternary ROP when
blitting the foreground into the tile pixmap onto those pixels
where the stipple is set. (I didn't notice that I had used the
wrong one, as it didn't matter on Win2k, where DIB sections
apparently are zeroed upon creation. But on Win98 they have random
initial contents. Thanks to Hans Breuer for reporting this.)
(gdk_win32_draw_rectangle, gdk_win32_draw_arc,
gdk_win32_draw_polygon): Don't pass the LINE_ATTRIBUTES bits to
generic_draw() if drawing a filled figure.
* gdk/win32/gdkmain-win32.c (_gdk_win32_print_dc): Minor cosmetics.
(_gdk_win32_gcvalues_mask_to_string): Initialize buffer as empty.
(_gdk_win32_window_state_to_string): New debugging output helper
function.
* gdk/win32/gdkevents-win32.c: Minor debugging output changes.
(gdk_event_translate): Ignore the WM_SHOWWINDOW/SW_OTHERUNZOOM or
SW_OTHERZOOM messages. Do not generate a GDK_UNMAP event for
WM_SIZE/SIZE_MINIMIZED messages, they do not really corrspond to
unmapping on X11. Set window state correctly for all three of
SIZE_{MINIMIZED,MAXIMIZED,RESTORED}. A maximized and then iconified
("minimized" in Windows terminology) window still has the
"maximized" property, i.e. when deiconified, it will reappear as
maximized. (#10557)
* gdk/win32/gdkprivate-win32.h: Declare new function.
(WIN32_API_FAILED, WIN32_GDI_FAILED, OTHER_API_FAILED): Don't use
__PRETTY_FUNCTION__ if __GNUC__ >= 3, to avoid warning message.
* gdk/win32/gdkwindow-win32.c (show_window_internal): Handle more
situations. Add parameter to tell whether deiconifying. Code
reorg: Return early when appropriate instead of using nested if
statements. If just deiconifying without raising, restore active
window. (#10557)
(gdk_window_hide, gdk_window_withdraw, gdk_window_iconify,
gdk_window_deiconify, gdk_window_maximize, gdk_window_unmaximize,
gdk_window_focus): Use _gdk_win32_window_state_to_string() in
debugging output.
(gdk_window_iconify): Restore active window after calling
ShowWindow(). Otherwise the "next" window gets activated.
(gdk_window_stick, gdk_window_unstick): Don't output any warnings.
(gdk_window_set_transient_for): Rewrite. Just call SetWindowLong()
with GWL_HWNDPARENT, which despite its name sets the *owner*
window, which should be exactly what we want. The PSDK
documentation is said to be misleading. testgtk's modal window
test now works much better. (#50586)
2002-12-09 00:43:42 +00:00
|
|
|
HWND old_active_window;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (window));
|
2001-03-09 16:43:19 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (window))
|
2001-03-09 16:43:19 +00:00
|
|
|
return;
|
|
|
|
|
2019-11-16 19:50:57 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("gdk_surface_minimize: %p: %s\n",
|
2018-03-20 10:40:08 +00:00
|
|
|
GDK_SURFACE_HWND (window),
|
|
|
|
_gdk_win32_surface_state_to_string (window->state)));
|
Merge from stable:
2002-12-09 Tor Lillqvist <tml@iki.fi>
Merge from stable:
* gdk/win32/gdkdrawable-win32.c (generic_draw): Don't leak
stipple_gc. More checks for errors. Use correct ternary ROP when
blitting the foreground into the tile pixmap onto those pixels
where the stipple is set. (I didn't notice that I had used the
wrong one, as it didn't matter on Win2k, where DIB sections
apparently are zeroed upon creation. But on Win98 they have random
initial contents. Thanks to Hans Breuer for reporting this.)
(gdk_win32_draw_rectangle, gdk_win32_draw_arc,
gdk_win32_draw_polygon): Don't pass the LINE_ATTRIBUTES bits to
generic_draw() if drawing a filled figure.
* gdk/win32/gdkmain-win32.c (_gdk_win32_print_dc): Minor cosmetics.
(_gdk_win32_gcvalues_mask_to_string): Initialize buffer as empty.
(_gdk_win32_window_state_to_string): New debugging output helper
function.
* gdk/win32/gdkevents-win32.c: Minor debugging output changes.
(gdk_event_translate): Ignore the WM_SHOWWINDOW/SW_OTHERUNZOOM or
SW_OTHERZOOM messages. Do not generate a GDK_UNMAP event for
WM_SIZE/SIZE_MINIMIZED messages, they do not really corrspond to
unmapping on X11. Set window state correctly for all three of
SIZE_{MINIMIZED,MAXIMIZED,RESTORED}. A maximized and then iconified
("minimized" in Windows terminology) window still has the
"maximized" property, i.e. when deiconified, it will reappear as
maximized. (#10557)
* gdk/win32/gdkprivate-win32.h: Declare new function.
(WIN32_API_FAILED, WIN32_GDI_FAILED, OTHER_API_FAILED): Don't use
__PRETTY_FUNCTION__ if __GNUC__ >= 3, to avoid warning message.
* gdk/win32/gdkwindow-win32.c (show_window_internal): Handle more
situations. Add parameter to tell whether deiconifying. Code
reorg: Return early when appropriate instead of using nested if
statements. If just deiconifying without raising, restore active
window. (#10557)
(gdk_window_hide, gdk_window_withdraw, gdk_window_iconify,
gdk_window_deiconify, gdk_window_maximize, gdk_window_unmaximize,
gdk_window_focus): Use _gdk_win32_window_state_to_string() in
debugging output.
(gdk_window_iconify): Restore active window after calling
ShowWindow(). Otherwise the "next" window gets activated.
(gdk_window_stick, gdk_window_unstick): Don't output any warnings.
(gdk_window_set_transient_for): Rewrite. Just call SetWindowLong()
with GWL_HWNDPARENT, which despite its name sets the *owner*
window, which should be exactly what we want. The PSDK
documentation is said to be misleading. testgtk's modal window
test now works much better. (#50586)
2002-12-09 00:43:42 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_IS_MAPPED (window))
|
2001-03-09 16:43:19 +00:00
|
|
|
{
|
Merge from stable:
2002-12-09 Tor Lillqvist <tml@iki.fi>
Merge from stable:
* gdk/win32/gdkdrawable-win32.c (generic_draw): Don't leak
stipple_gc. More checks for errors. Use correct ternary ROP when
blitting the foreground into the tile pixmap onto those pixels
where the stipple is set. (I didn't notice that I had used the
wrong one, as it didn't matter on Win2k, where DIB sections
apparently are zeroed upon creation. But on Win98 they have random
initial contents. Thanks to Hans Breuer for reporting this.)
(gdk_win32_draw_rectangle, gdk_win32_draw_arc,
gdk_win32_draw_polygon): Don't pass the LINE_ATTRIBUTES bits to
generic_draw() if drawing a filled figure.
* gdk/win32/gdkmain-win32.c (_gdk_win32_print_dc): Minor cosmetics.
(_gdk_win32_gcvalues_mask_to_string): Initialize buffer as empty.
(_gdk_win32_window_state_to_string): New debugging output helper
function.
* gdk/win32/gdkevents-win32.c: Minor debugging output changes.
(gdk_event_translate): Ignore the WM_SHOWWINDOW/SW_OTHERUNZOOM or
SW_OTHERZOOM messages. Do not generate a GDK_UNMAP event for
WM_SIZE/SIZE_MINIMIZED messages, they do not really corrspond to
unmapping on X11. Set window state correctly for all three of
SIZE_{MINIMIZED,MAXIMIZED,RESTORED}. A maximized and then iconified
("minimized" in Windows terminology) window still has the
"maximized" property, i.e. when deiconified, it will reappear as
maximized. (#10557)
* gdk/win32/gdkprivate-win32.h: Declare new function.
(WIN32_API_FAILED, WIN32_GDI_FAILED, OTHER_API_FAILED): Don't use
__PRETTY_FUNCTION__ if __GNUC__ >= 3, to avoid warning message.
* gdk/win32/gdkwindow-win32.c (show_window_internal): Handle more
situations. Add parameter to tell whether deiconifying. Code
reorg: Return early when appropriate instead of using nested if
statements. If just deiconifying without raising, restore active
window. (#10557)
(gdk_window_hide, gdk_window_withdraw, gdk_window_iconify,
gdk_window_deiconify, gdk_window_maximize, gdk_window_unmaximize,
gdk_window_focus): Use _gdk_win32_window_state_to_string() in
debugging output.
(gdk_window_iconify): Restore active window after calling
ShowWindow(). Otherwise the "next" window gets activated.
(gdk_window_stick, gdk_window_unstick): Don't output any warnings.
(gdk_window_set_transient_for): Rewrite. Just call SetWindowLong()
with GWL_HWNDPARENT, which despite its name sets the *owner*
window, which should be exactly what we want. The PSDK
documentation is said to be misleading. testgtk's modal window
test now works much better. (#50586)
2002-12-09 00:43:42 +00:00
|
|
|
old_active_window = GetActiveWindow ();
|
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
|
|
|
GtkShowWindow (window, SW_MINIMIZE);
|
2018-03-20 10:40:08 +00:00
|
|
|
if (old_active_window != GDK_SURFACE_HWND (window))
|
Merge from stable:
2002-12-09 Tor Lillqvist <tml@iki.fi>
Merge from stable:
* gdk/win32/gdkdrawable-win32.c (generic_draw): Don't leak
stipple_gc. More checks for errors. Use correct ternary ROP when
blitting the foreground into the tile pixmap onto those pixels
where the stipple is set. (I didn't notice that I had used the
wrong one, as it didn't matter on Win2k, where DIB sections
apparently are zeroed upon creation. But on Win98 they have random
initial contents. Thanks to Hans Breuer for reporting this.)
(gdk_win32_draw_rectangle, gdk_win32_draw_arc,
gdk_win32_draw_polygon): Don't pass the LINE_ATTRIBUTES bits to
generic_draw() if drawing a filled figure.
* gdk/win32/gdkmain-win32.c (_gdk_win32_print_dc): Minor cosmetics.
(_gdk_win32_gcvalues_mask_to_string): Initialize buffer as empty.
(_gdk_win32_window_state_to_string): New debugging output helper
function.
* gdk/win32/gdkevents-win32.c: Minor debugging output changes.
(gdk_event_translate): Ignore the WM_SHOWWINDOW/SW_OTHERUNZOOM or
SW_OTHERZOOM messages. Do not generate a GDK_UNMAP event for
WM_SIZE/SIZE_MINIMIZED messages, they do not really corrspond to
unmapping on X11. Set window state correctly for all three of
SIZE_{MINIMIZED,MAXIMIZED,RESTORED}. A maximized and then iconified
("minimized" in Windows terminology) window still has the
"maximized" property, i.e. when deiconified, it will reappear as
maximized. (#10557)
* gdk/win32/gdkprivate-win32.h: Declare new function.
(WIN32_API_FAILED, WIN32_GDI_FAILED, OTHER_API_FAILED): Don't use
__PRETTY_FUNCTION__ if __GNUC__ >= 3, to avoid warning message.
* gdk/win32/gdkwindow-win32.c (show_window_internal): Handle more
situations. Add parameter to tell whether deiconifying. Code
reorg: Return early when appropriate instead of using nested if
statements. If just deiconifying without raising, restore active
window. (#10557)
(gdk_window_hide, gdk_window_withdraw, gdk_window_iconify,
gdk_window_deiconify, gdk_window_maximize, gdk_window_unmaximize,
gdk_window_focus): Use _gdk_win32_window_state_to_string() in
debugging output.
(gdk_window_iconify): Restore active window after calling
ShowWindow(). Otherwise the "next" window gets activated.
(gdk_window_stick, gdk_window_unstick): Don't output any warnings.
(gdk_window_set_transient_for): Rewrite. Just call SetWindowLong()
with GWL_HWNDPARENT, which despite its name sets the *owner*
window, which should be exactly what we want. The PSDK
documentation is said to be misleading. testgtk's modal window
test now works much better. (#50586)
2002-12-09 00:43:42 +00:00
|
|
|
SetActiveWindow (old_active_window);
|
2001-03-09 16:43:19 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-03-20 11:05:26 +00:00
|
|
|
gdk_synthesize_surface_state (window,
|
2019-11-16 19:50:57 +00:00
|
|
|
0,
|
|
|
|
GDK_SURFACE_STATE_MINIMIZED);
|
2001-03-09 16:43:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
static void
|
2019-11-16 19:50:57 +00:00
|
|
|
gdk_win32_surface_unminimize (GdkSurface *window)
|
2001-03-09 16:43:19 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (window));
|
2001-03-09 16:43:19 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (window))
|
2001-03-09 16:43:19 +00:00
|
|
|
return;
|
|
|
|
|
2019-11-16 19:50:57 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("gdk_surface_unminimize: %p: %s\n",
|
2018-03-20 10:40:08 +00:00
|
|
|
GDK_SURFACE_HWND (window),
|
|
|
|
_gdk_win32_surface_state_to_string (window->state)));
|
Merge from stable:
2002-12-09 Tor Lillqvist <tml@iki.fi>
Merge from stable:
* gdk/win32/gdkdrawable-win32.c (generic_draw): Don't leak
stipple_gc. More checks for errors. Use correct ternary ROP when
blitting the foreground into the tile pixmap onto those pixels
where the stipple is set. (I didn't notice that I had used the
wrong one, as it didn't matter on Win2k, where DIB sections
apparently are zeroed upon creation. But on Win98 they have random
initial contents. Thanks to Hans Breuer for reporting this.)
(gdk_win32_draw_rectangle, gdk_win32_draw_arc,
gdk_win32_draw_polygon): Don't pass the LINE_ATTRIBUTES bits to
generic_draw() if drawing a filled figure.
* gdk/win32/gdkmain-win32.c (_gdk_win32_print_dc): Minor cosmetics.
(_gdk_win32_gcvalues_mask_to_string): Initialize buffer as empty.
(_gdk_win32_window_state_to_string): New debugging output helper
function.
* gdk/win32/gdkevents-win32.c: Minor debugging output changes.
(gdk_event_translate): Ignore the WM_SHOWWINDOW/SW_OTHERUNZOOM or
SW_OTHERZOOM messages. Do not generate a GDK_UNMAP event for
WM_SIZE/SIZE_MINIMIZED messages, they do not really corrspond to
unmapping on X11. Set window state correctly for all three of
SIZE_{MINIMIZED,MAXIMIZED,RESTORED}. A maximized and then iconified
("minimized" in Windows terminology) window still has the
"maximized" property, i.e. when deiconified, it will reappear as
maximized. (#10557)
* gdk/win32/gdkprivate-win32.h: Declare new function.
(WIN32_API_FAILED, WIN32_GDI_FAILED, OTHER_API_FAILED): Don't use
__PRETTY_FUNCTION__ if __GNUC__ >= 3, to avoid warning message.
* gdk/win32/gdkwindow-win32.c (show_window_internal): Handle more
situations. Add parameter to tell whether deiconifying. Code
reorg: Return early when appropriate instead of using nested if
statements. If just deiconifying without raising, restore active
window. (#10557)
(gdk_window_hide, gdk_window_withdraw, gdk_window_iconify,
gdk_window_deiconify, gdk_window_maximize, gdk_window_unmaximize,
gdk_window_focus): Use _gdk_win32_window_state_to_string() in
debugging output.
(gdk_window_iconify): Restore active window after calling
ShowWindow(). Otherwise the "next" window gets activated.
(gdk_window_stick, gdk_window_unstick): Don't output any warnings.
(gdk_window_set_transient_for): Rewrite. Just call SetWindowLong()
with GWL_HWNDPARENT, which despite its name sets the *owner*
window, which should be exactly what we want. The PSDK
documentation is said to be misleading. testgtk's modal window
test now works much better. (#50586)
2002-12-09 00:43:42 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_IS_MAPPED (window))
|
2015-04-29 07:31:08 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
show_window_internal (window, GDK_SURFACE_IS_MAPPED (window), TRUE);
|
2001-03-09 16:43:19 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-03-20 11:05:26 +00:00
|
|
|
gdk_synthesize_surface_state (window,
|
2019-11-16 19:50:57 +00:00
|
|
|
GDK_SURFACE_STATE_MINIMIZED,
|
|
|
|
0);
|
2001-03-09 16:43:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_stick (GdkSurface *window)
|
2001-03-09 16:43:19 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (window));
|
2001-03-09 16:43:19 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (window))
|
2001-03-09 16:43:19 +00:00
|
|
|
return;
|
|
|
|
|
Merge from stable:
2002-12-09 Tor Lillqvist <tml@iki.fi>
Merge from stable:
* gdk/win32/gdkdrawable-win32.c (generic_draw): Don't leak
stipple_gc. More checks for errors. Use correct ternary ROP when
blitting the foreground into the tile pixmap onto those pixels
where the stipple is set. (I didn't notice that I had used the
wrong one, as it didn't matter on Win2k, where DIB sections
apparently are zeroed upon creation. But on Win98 they have random
initial contents. Thanks to Hans Breuer for reporting this.)
(gdk_win32_draw_rectangle, gdk_win32_draw_arc,
gdk_win32_draw_polygon): Don't pass the LINE_ATTRIBUTES bits to
generic_draw() if drawing a filled figure.
* gdk/win32/gdkmain-win32.c (_gdk_win32_print_dc): Minor cosmetics.
(_gdk_win32_gcvalues_mask_to_string): Initialize buffer as empty.
(_gdk_win32_window_state_to_string): New debugging output helper
function.
* gdk/win32/gdkevents-win32.c: Minor debugging output changes.
(gdk_event_translate): Ignore the WM_SHOWWINDOW/SW_OTHERUNZOOM or
SW_OTHERZOOM messages. Do not generate a GDK_UNMAP event for
WM_SIZE/SIZE_MINIMIZED messages, they do not really corrspond to
unmapping on X11. Set window state correctly for all three of
SIZE_{MINIMIZED,MAXIMIZED,RESTORED}. A maximized and then iconified
("minimized" in Windows terminology) window still has the
"maximized" property, i.e. when deiconified, it will reappear as
maximized. (#10557)
* gdk/win32/gdkprivate-win32.h: Declare new function.
(WIN32_API_FAILED, WIN32_GDI_FAILED, OTHER_API_FAILED): Don't use
__PRETTY_FUNCTION__ if __GNUC__ >= 3, to avoid warning message.
* gdk/win32/gdkwindow-win32.c (show_window_internal): Handle more
situations. Add parameter to tell whether deiconifying. Code
reorg: Return early when appropriate instead of using nested if
statements. If just deiconifying without raising, restore active
window. (#10557)
(gdk_window_hide, gdk_window_withdraw, gdk_window_iconify,
gdk_window_deiconify, gdk_window_maximize, gdk_window_unmaximize,
gdk_window_focus): Use _gdk_win32_window_state_to_string() in
debugging output.
(gdk_window_iconify): Restore active window after calling
ShowWindow(). Otherwise the "next" window gets activated.
(gdk_window_stick, gdk_window_unstick): Don't output any warnings.
(gdk_window_set_transient_for): Rewrite. Just call SetWindowLong()
with GWL_HWNDPARENT, which despite its name sets the *owner*
window, which should be exactly what we want. The PSDK
documentation is said to be misleading. testgtk's modal window
test now works much better. (#50586)
2002-12-09 00:43:42 +00:00
|
|
|
/* FIXME: Do something? */
|
2001-03-09 16:43:19 +00:00
|
|
|
}
|
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_unstick (GdkSurface *window)
|
2001-03-09 16:43:19 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (window));
|
2001-03-09 16:43:19 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (window))
|
2001-03-09 16:43:19 +00:00
|
|
|
return;
|
|
|
|
|
Merge from stable:
2002-12-09 Tor Lillqvist <tml@iki.fi>
Merge from stable:
* gdk/win32/gdkdrawable-win32.c (generic_draw): Don't leak
stipple_gc. More checks for errors. Use correct ternary ROP when
blitting the foreground into the tile pixmap onto those pixels
where the stipple is set. (I didn't notice that I had used the
wrong one, as it didn't matter on Win2k, where DIB sections
apparently are zeroed upon creation. But on Win98 they have random
initial contents. Thanks to Hans Breuer for reporting this.)
(gdk_win32_draw_rectangle, gdk_win32_draw_arc,
gdk_win32_draw_polygon): Don't pass the LINE_ATTRIBUTES bits to
generic_draw() if drawing a filled figure.
* gdk/win32/gdkmain-win32.c (_gdk_win32_print_dc): Minor cosmetics.
(_gdk_win32_gcvalues_mask_to_string): Initialize buffer as empty.
(_gdk_win32_window_state_to_string): New debugging output helper
function.
* gdk/win32/gdkevents-win32.c: Minor debugging output changes.
(gdk_event_translate): Ignore the WM_SHOWWINDOW/SW_OTHERUNZOOM or
SW_OTHERZOOM messages. Do not generate a GDK_UNMAP event for
WM_SIZE/SIZE_MINIMIZED messages, they do not really corrspond to
unmapping on X11. Set window state correctly for all three of
SIZE_{MINIMIZED,MAXIMIZED,RESTORED}. A maximized and then iconified
("minimized" in Windows terminology) window still has the
"maximized" property, i.e. when deiconified, it will reappear as
maximized. (#10557)
* gdk/win32/gdkprivate-win32.h: Declare new function.
(WIN32_API_FAILED, WIN32_GDI_FAILED, OTHER_API_FAILED): Don't use
__PRETTY_FUNCTION__ if __GNUC__ >= 3, to avoid warning message.
* gdk/win32/gdkwindow-win32.c (show_window_internal): Handle more
situations. Add parameter to tell whether deiconifying. Code
reorg: Return early when appropriate instead of using nested if
statements. If just deiconifying without raising, restore active
window. (#10557)
(gdk_window_hide, gdk_window_withdraw, gdk_window_iconify,
gdk_window_deiconify, gdk_window_maximize, gdk_window_unmaximize,
gdk_window_focus): Use _gdk_win32_window_state_to_string() in
debugging output.
(gdk_window_iconify): Restore active window after calling
ShowWindow(). Otherwise the "next" window gets activated.
(gdk_window_stick, gdk_window_unstick): Don't output any warnings.
(gdk_window_set_transient_for): Rewrite. Just call SetWindowLong()
with GWL_HWNDPARENT, which despite its name sets the *owner*
window, which should be exactly what we want. The PSDK
documentation is said to be misleading. testgtk's modal window
test now works much better. (#50586)
2002-12-09 00:43:42 +00:00
|
|
|
/* FIXME: Do something? */
|
2001-03-09 16:43:19 +00:00
|
|
|
}
|
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_maximize (GdkSurface *window)
|
2001-03-09 16:43:19 +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
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (window));
|
2001-03-09 16:43:19 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (window))
|
2001-03-09 16:43:19 +00:00
|
|
|
return;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("gdk_surface_maximize: %p: %s\n",
|
|
|
|
GDK_SURFACE_HWND (window),
|
|
|
|
_gdk_win32_surface_state_to_string (window->state)));
|
Merge from stable:
2002-12-09 Tor Lillqvist <tml@iki.fi>
Merge from stable:
* gdk/win32/gdkdrawable-win32.c (generic_draw): Don't leak
stipple_gc. More checks for errors. Use correct ternary ROP when
blitting the foreground into the tile pixmap onto those pixels
where the stipple is set. (I didn't notice that I had used the
wrong one, as it didn't matter on Win2k, where DIB sections
apparently are zeroed upon creation. But on Win98 they have random
initial contents. Thanks to Hans Breuer for reporting this.)
(gdk_win32_draw_rectangle, gdk_win32_draw_arc,
gdk_win32_draw_polygon): Don't pass the LINE_ATTRIBUTES bits to
generic_draw() if drawing a filled figure.
* gdk/win32/gdkmain-win32.c (_gdk_win32_print_dc): Minor cosmetics.
(_gdk_win32_gcvalues_mask_to_string): Initialize buffer as empty.
(_gdk_win32_window_state_to_string): New debugging output helper
function.
* gdk/win32/gdkevents-win32.c: Minor debugging output changes.
(gdk_event_translate): Ignore the WM_SHOWWINDOW/SW_OTHERUNZOOM or
SW_OTHERZOOM messages. Do not generate a GDK_UNMAP event for
WM_SIZE/SIZE_MINIMIZED messages, they do not really corrspond to
unmapping on X11. Set window state correctly for all three of
SIZE_{MINIMIZED,MAXIMIZED,RESTORED}. A maximized and then iconified
("minimized" in Windows terminology) window still has the
"maximized" property, i.e. when deiconified, it will reappear as
maximized. (#10557)
* gdk/win32/gdkprivate-win32.h: Declare new function.
(WIN32_API_FAILED, WIN32_GDI_FAILED, OTHER_API_FAILED): Don't use
__PRETTY_FUNCTION__ if __GNUC__ >= 3, to avoid warning message.
* gdk/win32/gdkwindow-win32.c (show_window_internal): Handle more
situations. Add parameter to tell whether deiconifying. Code
reorg: Return early when appropriate instead of using nested if
statements. If just deiconifying without raising, restore active
window. (#10557)
(gdk_window_hide, gdk_window_withdraw, gdk_window_iconify,
gdk_window_deiconify, gdk_window_maximize, gdk_window_unmaximize,
gdk_window_focus): Use _gdk_win32_window_state_to_string() in
debugging output.
(gdk_window_iconify): Restore active window after calling
ShowWindow(). Otherwise the "next" window gets activated.
(gdk_window_stick, gdk_window_unstick): Don't output any warnings.
(gdk_window_set_transient_for): Rewrite. Just call SetWindowLong()
with GWL_HWNDPARENT, which despite its name sets the *owner*
window, which should be exactly what we want. The PSDK
documentation is said to be misleading. testgtk's modal window
test now works much better. (#50586)
2002-12-09 00:43:42 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_IS_MAPPED (window))
|
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
|
|
|
GtkShowWindow (window, SW_MAXIMIZE);
|
2001-03-09 16:43:19 +00:00
|
|
|
else
|
2018-03-20 11:05:26 +00:00
|
|
|
gdk_synthesize_surface_state (window,
|
2001-03-09 16:43:19 +00:00
|
|
|
0,
|
2018-03-20 10:40:08 +00:00
|
|
|
GDK_SURFACE_STATE_MAXIMIZED);
|
2001-03-09 16:43:19 +00:00
|
|
|
}
|
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_unmaximize (GdkSurface *window)
|
2001-03-09 16:43:19 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (window));
|
2001-03-09 16:43:19 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (window))
|
2001-03-09 16:43:19 +00:00
|
|
|
return;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("gdk_surface_unmaximize: %p: %s\n",
|
|
|
|
GDK_SURFACE_HWND (window),
|
|
|
|
_gdk_win32_surface_state_to_string (window->state)));
|
Merge from stable:
2002-12-09 Tor Lillqvist <tml@iki.fi>
Merge from stable:
* gdk/win32/gdkdrawable-win32.c (generic_draw): Don't leak
stipple_gc. More checks for errors. Use correct ternary ROP when
blitting the foreground into the tile pixmap onto those pixels
where the stipple is set. (I didn't notice that I had used the
wrong one, as it didn't matter on Win2k, where DIB sections
apparently are zeroed upon creation. But on Win98 they have random
initial contents. Thanks to Hans Breuer for reporting this.)
(gdk_win32_draw_rectangle, gdk_win32_draw_arc,
gdk_win32_draw_polygon): Don't pass the LINE_ATTRIBUTES bits to
generic_draw() if drawing a filled figure.
* gdk/win32/gdkmain-win32.c (_gdk_win32_print_dc): Minor cosmetics.
(_gdk_win32_gcvalues_mask_to_string): Initialize buffer as empty.
(_gdk_win32_window_state_to_string): New debugging output helper
function.
* gdk/win32/gdkevents-win32.c: Minor debugging output changes.
(gdk_event_translate): Ignore the WM_SHOWWINDOW/SW_OTHERUNZOOM or
SW_OTHERZOOM messages. Do not generate a GDK_UNMAP event for
WM_SIZE/SIZE_MINIMIZED messages, they do not really corrspond to
unmapping on X11. Set window state correctly for all three of
SIZE_{MINIMIZED,MAXIMIZED,RESTORED}. A maximized and then iconified
("minimized" in Windows terminology) window still has the
"maximized" property, i.e. when deiconified, it will reappear as
maximized. (#10557)
* gdk/win32/gdkprivate-win32.h: Declare new function.
(WIN32_API_FAILED, WIN32_GDI_FAILED, OTHER_API_FAILED): Don't use
__PRETTY_FUNCTION__ if __GNUC__ >= 3, to avoid warning message.
* gdk/win32/gdkwindow-win32.c (show_window_internal): Handle more
situations. Add parameter to tell whether deiconifying. Code
reorg: Return early when appropriate instead of using nested if
statements. If just deiconifying without raising, restore active
window. (#10557)
(gdk_window_hide, gdk_window_withdraw, gdk_window_iconify,
gdk_window_deiconify, gdk_window_maximize, gdk_window_unmaximize,
gdk_window_focus): Use _gdk_win32_window_state_to_string() in
debugging output.
(gdk_window_iconify): Restore active window after calling
ShowWindow(). Otherwise the "next" window gets activated.
(gdk_window_stick, gdk_window_unstick): Don't output any warnings.
(gdk_window_set_transient_for): Rewrite. Just call SetWindowLong()
with GWL_HWNDPARENT, which despite its name sets the *owner*
window, which should be exactly what we want. The PSDK
documentation is said to be misleading. testgtk's modal window
test now works much better. (#50586)
2002-12-09 00:43:42 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_IS_MAPPED (window))
|
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
|
|
|
GtkShowWindow (window, SW_RESTORE);
|
2001-03-09 16:43:19 +00:00
|
|
|
else
|
2018-03-20 11:05:26 +00:00
|
|
|
gdk_synthesize_surface_state (window,
|
2018-03-20 10:40:08 +00:00
|
|
|
GDK_SURFACE_STATE_MAXIMIZED,
|
2001-03-09 16:43:19 +00:00
|
|
|
0);
|
|
|
|
}
|
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_fullscreen (GdkSurface *window)
|
2002-11-16 21:51:47 +00:00
|
|
|
{
|
2007-11-25 22:59:50 +00:00
|
|
|
gint x, y, width, height;
|
2003-08-05 22:24:35 +00:00
|
|
|
FullscreenInfo *fi;
|
2007-11-25 22:59:50 +00:00
|
|
|
HMONITOR monitor;
|
|
|
|
MONITORINFO mi;
|
2003-08-05 22:24:35 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (window));
|
2002-11-16 21:51:47 +00:00
|
|
|
|
2003-08-05 22:24:35 +00:00
|
|
|
fi = g_new (FullscreenInfo, 1);
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (!GetWindowRect (GDK_SURFACE_HWND (window), &(fi->r)))
|
2003-08-05 22:24:35 +00:00
|
|
|
g_free (fi);
|
|
|
|
else
|
|
|
|
{
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl = GDK_WIN32_SURFACE (window);
|
2003-08-05 22:24:35 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
monitor = MonitorFromWindow (GDK_SURFACE_HWND (window), MONITOR_DEFAULTTONEAREST);
|
2007-11-25 22:59:50 +00:00
|
|
|
mi.cbSize = sizeof (mi);
|
|
|
|
if (monitor && GetMonitorInfo (monitor, &mi))
|
|
|
|
{
|
|
|
|
x = mi.rcMonitor.left;
|
|
|
|
y = mi.rcMonitor.top;
|
|
|
|
width = mi.rcMonitor.right - x;
|
|
|
|
height = mi.rcMonitor.bottom - y;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
x = y = 0;
|
|
|
|
width = GetSystemMetrics (SM_CXSCREEN);
|
|
|
|
height = GetSystemMetrics (SM_CYSCREEN);
|
|
|
|
}
|
|
|
|
|
2003-08-05 22:24:35 +00:00
|
|
|
/* remember for restoring */
|
|
|
|
fi->hint_flags = impl->hint_flags;
|
|
|
|
impl->hint_flags &= ~GDK_HINT_MAX_SIZE;
|
|
|
|
g_object_set_data (G_OBJECT (window), "fullscreen-info", fi);
|
2018-03-20 10:40:08 +00:00
|
|
|
fi->style = GetWindowLong (GDK_SURFACE_HWND (window), GWL_STYLE);
|
2003-08-05 22:24:35 +00:00
|
|
|
|
2011-10-26 08:21:10 +00:00
|
|
|
/* Send state change before configure event */
|
2018-03-20 11:05:26 +00:00
|
|
|
gdk_synthesize_surface_state (window, 0, GDK_SURFACE_STATE_FULLSCREEN);
|
2011-10-26 08:21:10 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
SetWindowLong (GDK_SURFACE_HWND (window), GWL_STYLE,
|
2003-08-05 22:24:35 +00:00
|
|
|
(fi->style & ~WS_OVERLAPPEDWINDOW) | WS_POPUP);
|
2005-03-16 01:38:57 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
API_CALL (SetWindowPos, (GDK_SURFACE_HWND (window), HWND_TOP,
|
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
|
|
|
x, y, width, height,
|
2018-06-17 10:58:16 +00:00
|
|
|
SWP_NOCOPYBITS | SWP_SHOWWINDOW | SWP_NOOWNERZORDER));
|
2003-08-05 22:24:35 +00:00
|
|
|
}
|
2002-11-16 21:51:47 +00:00
|
|
|
}
|
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_unfullscreen (GdkSurface *window)
|
2002-11-16 21:51:47 +00:00
|
|
|
{
|
2003-08-05 22:24:35 +00:00
|
|
|
FullscreenInfo *fi;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (window));
|
2003-08-05 22:24:35 +00:00
|
|
|
|
2005-11-02 13:33:27 +00:00
|
|
|
fi = g_object_get_data (G_OBJECT (window), "fullscreen-info");
|
2003-08-05 22:24:35 +00:00
|
|
|
if (fi)
|
|
|
|
{
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl = GDK_WIN32_SURFACE (window);
|
2003-08-05 22:24:35 +00:00
|
|
|
|
2018-03-20 11:05:26 +00:00
|
|
|
gdk_synthesize_surface_state (window, GDK_SURFACE_STATE_FULLSCREEN, 0);
|
2011-10-26 08:21:10 +00:00
|
|
|
|
2003-08-05 22:24:35 +00:00
|
|
|
impl->hint_flags = fi->hint_flags;
|
2018-03-20 10:40:08 +00:00
|
|
|
SetWindowLong (GDK_SURFACE_HWND (window), GWL_STYLE, fi->style);
|
|
|
|
API_CALL (SetWindowPos, (GDK_SURFACE_HWND (window), HWND_NOTOPMOST,
|
2005-03-16 01:38:57 +00:00
|
|
|
fi->r.left, fi->r.top,
|
|
|
|
fi->r.right - fi->r.left, fi->r.bottom - fi->r.top,
|
2018-06-17 10:58:16 +00:00
|
|
|
SWP_NOCOPYBITS | SWP_SHOWWINDOW | SWP_NOOWNERZORDER));
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2003-08-05 22:24:35 +00:00
|
|
|
g_object_set_data (G_OBJECT (window), "fullscreen-info", NULL);
|
|
|
|
g_free (fi);
|
2018-03-20 10:40:08 +00:00
|
|
|
_gdk_win32_surface_update_style_bits (window);
|
2003-08-05 22:24:35 +00:00
|
|
|
}
|
2002-11-16 21:51:47 +00:00
|
|
|
}
|
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_set_keep_above (GdkSurface *window,
|
2008-10-05 00:00:10 +00:00
|
|
|
gboolean setting)
|
2003-11-15 20:35:55 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (window));
|
2003-11-15 20:35:55 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (window))
|
2003-11-15 20:35:55 +00:00
|
|
|
return;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("gdk_surface_set_keep_above: %p: %s\n",
|
|
|
|
GDK_SURFACE_HWND (window),
|
2008-10-05 00:00:10 +00:00
|
|
|
setting ? "YES" : "NO"));
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_IS_MAPPED (window))
|
2003-11-15 20:35:55 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
API_CALL (SetWindowPos, (GDK_SURFACE_HWND (window),
|
2005-03-16 01:38:57 +00:00
|
|
|
setting ? HWND_TOPMOST : HWND_NOTOPMOST,
|
|
|
|
0, 0, 0, 0,
|
2018-06-17 10:58:16 +00:00
|
|
|
SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE | SWP_NOOWNERZORDER));
|
2003-11-15 20:35:55 +00:00
|
|
|
}
|
2011-10-26 09:08:33 +00:00
|
|
|
|
2018-03-20 11:05:26 +00:00
|
|
|
gdk_synthesize_surface_state (window,
|
2018-03-20 10:40:08 +00:00
|
|
|
setting ? GDK_SURFACE_STATE_BELOW : GDK_SURFACE_STATE_ABOVE,
|
|
|
|
setting ? GDK_SURFACE_STATE_ABOVE : 0);
|
2003-11-15 20:35:55 +00:00
|
|
|
}
|
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_set_keep_below (GdkSurface *window,
|
2008-10-05 00:00:10 +00:00
|
|
|
gboolean setting)
|
2003-11-15 20:35:55 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (window));
|
2003-11-15 20:35:55 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (window))
|
2003-11-15 20:35:55 +00:00
|
|
|
return;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("gdk_surface_set_keep_below: %p: %s\n",
|
|
|
|
GDK_SURFACE_HWND (window),
|
2008-10-05 00:00:10 +00:00
|
|
|
setting ? "YES" : "NO"));
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_IS_MAPPED (window))
|
2003-11-15 20:35:55 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
API_CALL (SetWindowPos, (GDK_SURFACE_HWND (window),
|
2005-03-16 01:38:57 +00:00
|
|
|
setting ? HWND_BOTTOM : HWND_NOTOPMOST,
|
|
|
|
0, 0, 0, 0,
|
2018-06-17 10:58:16 +00:00
|
|
|
SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE | SWP_NOOWNERZORDER));
|
2003-11-15 20:35:55 +00:00
|
|
|
}
|
2011-10-26 09:08:33 +00:00
|
|
|
|
2018-03-20 11:05:26 +00:00
|
|
|
gdk_synthesize_surface_state (window,
|
2018-03-20 10:40:08 +00:00
|
|
|
setting ? GDK_SURFACE_STATE_ABOVE : GDK_SURFACE_STATE_BELOW,
|
|
|
|
setting ? GDK_SURFACE_STATE_BELOW : 0);
|
2003-11-15 20:35:55 +00:00
|
|
|
}
|
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_focus (GdkSurface *window,
|
2011-01-02 10:51:25 +00:00
|
|
|
guint32 timestamp)
|
2001-03-09 16:43:19 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (window));
|
2001-03-09 16:43:19 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (window))
|
2001-03-09 16:43:19 +00:00
|
|
|
return;
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("gdk_surface_focus: %p: %s\n",
|
|
|
|
GDK_SURFACE_HWND (window),
|
|
|
|
_gdk_win32_surface_state_to_string (window->state)));
|
2002-03-06 00:36:08 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (window->state & GDK_SURFACE_STATE_MAXIMIZED)
|
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
|
|
|
GtkShowWindow (window, SW_SHOWMAXIMIZED);
|
2019-11-16 19:50:57 +00:00
|
|
|
else if (window->state & GDK_SURFACE_STATE_MINIMIZED)
|
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
|
|
|
GtkShowWindow (window, SW_RESTORE);
|
2018-03-20 10:40:08 +00:00
|
|
|
else if (!IsWindowVisible (GDK_SURFACE_HWND (window)))
|
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
|
|
|
GtkShowWindow (window, SW_SHOWNORMAL);
|
2016-02-08 12:20:02 +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
|
|
|
GtkShowWindow (window, SW_SHOW);
|
2016-02-08 08:24:12 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
SetFocus (GDK_SURFACE_HWND (window));
|
2001-03-09 16:43:19 +00:00
|
|
|
}
|
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_set_modal_hint (GdkSurface *window,
|
2001-03-09 16:43:19 +00:00
|
|
|
gboolean modal)
|
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (window));
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (window))
|
2001-03-09 16:43:19 +00:00
|
|
|
return;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("gdk_surface_set_modal_hint: %p: %s\n",
|
|
|
|
GDK_SURFACE_HWND (window),
|
2008-10-05 00:00:10 +00:00
|
|
|
modal ? "YES" : "NO"));
|
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
if (modal == window->modal_hint)
|
2008-07-07 22:26:35 +00:00
|
|
|
return;
|
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
window->modal_hint = modal;
|
2001-03-09 16:43:19 +00:00
|
|
|
|
2008-02-05 16:47:24 +00:00
|
|
|
#if 0
|
2007-07-12 23:38:30 +00:00
|
|
|
/* Not sure about this one.. -- Cody */
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_IS_MAPPED (window))
|
|
|
|
API_CALL (SetWindowPos, (GDK_SURFACE_HWND (window),
|
2003-08-05 22:24:35 +00:00
|
|
|
modal ? HWND_TOPMOST : HWND_NOTOPMOST,
|
2005-03-16 01:38:57 +00:00
|
|
|
0, 0, 0, 0,
|
|
|
|
SWP_NOMOVE | SWP_NOSIZE));
|
2008-02-05 16:47:24 +00:00
|
|
|
#else
|
|
|
|
|
|
|
|
if (modal)
|
2008-07-02 20:22:30 +00:00
|
|
|
{
|
|
|
|
_gdk_push_modal_window (window);
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_surface_raise (window);
|
2008-07-02 20:22:30 +00:00
|
|
|
}
|
2008-02-05 16:47:24 +00:00
|
|
|
else
|
2008-07-02 20:22:30 +00:00
|
|
|
{
|
|
|
|
_gdk_remove_modal_window (window);
|
|
|
|
}
|
2008-02-05 16:47:24 +00:00
|
|
|
|
2007-07-12 23:38:30 +00:00
|
|
|
#endif
|
2001-03-09 16:43:19 +00:00
|
|
|
}
|
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_set_type_hint (GdkSurface *window,
|
|
|
|
GdkSurfaceTypeHint hint)
|
2001-03-09 16:43:19 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (window));
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (window))
|
2001-03-09 16:43:19 +00:00
|
|
|
return;
|
|
|
|
|
2008-10-05 00:00:10 +00:00
|
|
|
GDK_NOTE (MISC,
|
|
|
|
G_STMT_START{
|
|
|
|
static GEnumClass *class = NULL;
|
|
|
|
if (!class)
|
2018-03-20 10:40:08 +00:00
|
|
|
class = g_type_class_ref (GDK_TYPE_SURFACE_TYPE_HINT);
|
|
|
|
g_print ("gdk_surface_set_type_hint: %p: %s\n",
|
|
|
|
GDK_SURFACE_HWND (window),
|
2008-10-05 00:00:10 +00:00
|
|
|
g_enum_get_value (class, hint)->value_name);
|
|
|
|
}G_STMT_END);
|
2005-11-09 02:13:35 +00:00
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
GDK_WIN32_SURFACE (window)->type_hint = hint;
|
2005-11-09 02:13:35 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
_gdk_win32_surface_update_style_bits (window);
|
2001-03-09 16:43:19 +00:00
|
|
|
}
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
static GdkSurfaceTypeHint
|
|
|
|
gdk_win32_surface_get_type_hint (GdkSurface *window)
|
2005-11-09 02:13:35 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
g_return_val_if_fail (GDK_IS_SURFACE (window), GDK_SURFACE_TYPE_HINT_NORMAL);
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (window))
|
|
|
|
return GDK_SURFACE_TYPE_HINT_NORMAL;
|
2005-11-09 02:13:35 +00:00
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
return GDK_WIN32_SURFACE (window)->type_hint;
|
2005-11-09 02:13:35 +00:00
|
|
|
}
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurface *
|
|
|
|
gdk_win32_surface_lookup_for_display (GdkDisplay *display,
|
2011-02-06 14:03:32 +00:00
|
|
|
HWND anid)
|
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-02-22 16:55:16 +00:00
|
|
|
g_return_val_if_fail (display == gdk_display_get_default (), NULL);
|
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
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
return (GdkSurface*) gdk_win32_handle_table_lookup (anid);
|
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
|
|
|
}
|
2004-07-11 13:26:57 +00:00
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_set_opacity (GdkSurface *window,
|
2007-04-30 07:27:22 +00:00
|
|
|
gdouble opacity)
|
|
|
|
{
|
|
|
|
LONG exstyle;
|
2012-11-23 20:38:34 +00:00
|
|
|
typedef BOOL (WINAPI *PFN_SetLayeredWindowAttributes) (HWND, COLORREF, BYTE, DWORD);
|
2007-06-15 15:25:50 +00:00
|
|
|
PFN_SetLayeredWindowAttributes setLayeredWindowAttributes = NULL;
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl;
|
2007-04-30 07:27:22 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (window));
|
2007-04-30 07:27:22 +00:00
|
|
|
|
2018-06-25 22:47:40 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (window))
|
2007-04-30 07:27:22 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (opacity < 0)
|
|
|
|
opacity = 0;
|
|
|
|
else if (opacity > 1)
|
|
|
|
opacity = 1;
|
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
impl = GDK_WIN32_SURFACE (window);
|
2016-02-23 09:20:55 +00:00
|
|
|
|
|
|
|
if (impl->layered)
|
2017-09-02 15:25:36 +00:00
|
|
|
{
|
|
|
|
if (impl->layered_opacity != opacity)
|
|
|
|
{
|
|
|
|
RECT window_rect;
|
|
|
|
|
|
|
|
impl->layered_opacity = opacity;
|
|
|
|
|
2018-04-24 15:14:23 +00:00
|
|
|
_gdk_win32_get_window_client_area_rect (window, impl->surface_scale, &window_rect);
|
|
|
|
_gdk_win32_update_layered_window_from_cache (window, &window_rect, TRUE, TRUE, TRUE);
|
2017-09-02 15:25:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2016-02-23 09:20:55 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
exstyle = GetWindowLong (GDK_SURFACE_HWND (window), GWL_EXSTYLE);
|
2007-04-30 07:27:22 +00:00
|
|
|
|
|
|
|
if (!(exstyle & WS_EX_LAYERED))
|
2018-03-20 10:40:08 +00:00
|
|
|
SetWindowLong (GDK_SURFACE_HWND (window),
|
2011-10-27 15:16:46 +00:00
|
|
|
GWL_EXSTYLE,
|
|
|
|
exstyle | WS_EX_LAYERED);
|
2007-04-30 07:27:22 +00:00
|
|
|
|
2015-04-29 07:31:08 +00:00
|
|
|
setLayeredWindowAttributes =
|
2007-06-15 15:25:50 +00:00
|
|
|
(PFN_SetLayeredWindowAttributes)GetProcAddress (GetModuleHandle ("user32.dll"), "SetLayeredWindowAttributes");
|
|
|
|
|
|
|
|
if (setLayeredWindowAttributes)
|
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
API_CALL (setLayeredWindowAttributes, (GDK_SURFACE_HWND (window),
|
2007-06-15 15:25:50 +00:00
|
|
|
0,
|
|
|
|
opacity * 0xff,
|
|
|
|
LWA_ALPHA));
|
|
|
|
}
|
2007-04-30 07:27:22 +00:00
|
|
|
}
|
2007-06-01 12:16:12 +00:00
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
gboolean
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_is_win32 (GdkSurface *window)
|
2009-02-14 18:23:54 +00:00
|
|
|
{
|
2019-05-19 03:09:05 +00:00
|
|
|
return GDK_IS_WIN32_SURFACE (window);
|
2009-02-14 18:23:54 +00:00
|
|
|
}
|
|
|
|
|
2016-03-18 04:51:52 +00:00
|
|
|
static gboolean
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_show_window_menu (GdkSurface *window,
|
2016-03-18 04:51:52 +00:00
|
|
|
GdkEvent *event)
|
|
|
|
{
|
|
|
|
double event_x, event_y;
|
|
|
|
gint x, y;
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl = GDK_WIN32_SURFACE (window);
|
2016-03-18 04:51:52 +00:00
|
|
|
|
2018-03-24 10:04:38 +00:00
|
|
|
switch (event->any.type)
|
2016-03-18 04:51:52 +00:00
|
|
|
{
|
|
|
|
case GDK_BUTTON_PRESS:
|
|
|
|
case GDK_BUTTON_RELEASE:
|
|
|
|
case GDK_TOUCH_BEGIN:
|
|
|
|
case GDK_TOUCH_END:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2020-02-18 03:11:56 +00:00
|
|
|
gdk_event_get_position (event, &event_x, &event_y);
|
2019-05-29 21:49:27 +00:00
|
|
|
x = round (event_x);
|
|
|
|
y = round (event_y);
|
2016-03-18 04:51:52 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
SendMessage (GDK_SURFACE_HWND (window),
|
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
|
|
|
WM_SYSMENU,
|
|
|
|
0,
|
2018-03-20 11:05:26 +00:00
|
|
|
MAKELPARAM (x * impl->surface_scale, y * impl->surface_scale));
|
2016-03-18 04:51:52 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2011-10-28 09:05:53 +00:00
|
|
|
HWND
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_get_impl_hwnd (GdkSurface *window)
|
2011-10-28 09:05:53 +00:00
|
|
|
{
|
2019-05-19 03:09:05 +00:00
|
|
|
if (GDK_IS_WIN32_SURFACE (window))
|
2018-03-20 10:40:08 +00:00
|
|
|
return GDK_SURFACE_HWND (window);
|
2011-10-28 09:05:53 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2016-03-16 18:16:33 +00:00
|
|
|
BOOL WINAPI
|
2018-03-20 10:40:08 +00:00
|
|
|
GtkShowWindow (GdkSurface *window,
|
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
|
|
|
int cmd_show)
|
2016-03-16 18:16:33 +00:00
|
|
|
{
|
|
|
|
cairo_t *cr;
|
|
|
|
cairo_surface_t *surface;
|
|
|
|
RECT window_rect;
|
|
|
|
HDC hdc;
|
|
|
|
POINT window_position;
|
|
|
|
SIZE window_size;
|
|
|
|
POINT source_point;
|
|
|
|
BLENDFUNCTION blender;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
HWND hwnd = GDK_SURFACE_HWND (window);
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl = GDK_WIN32_SURFACE (window);
|
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
|
|
|
|
2016-03-16 18:16:33 +00:00
|
|
|
switch (cmd_show)
|
|
|
|
{
|
|
|
|
case SW_FORCEMINIMIZE:
|
|
|
|
case SW_HIDE:
|
|
|
|
case SW_MINIMIZE:
|
|
|
|
break;
|
|
|
|
case SW_MAXIMIZE:
|
|
|
|
case SW_RESTORE:
|
|
|
|
case SW_SHOW:
|
|
|
|
case SW_SHOWDEFAULT:
|
|
|
|
case SW_SHOWMINIMIZED:
|
|
|
|
case SW_SHOWMINNOACTIVE:
|
|
|
|
case SW_SHOWNA:
|
|
|
|
case SW_SHOWNOACTIVATE:
|
|
|
|
case SW_SHOWNORMAL:
|
|
|
|
if (IsWindowVisible (hwnd))
|
|
|
|
break;
|
|
|
|
|
|
|
|
if ((WS_EX_LAYERED & GetWindowLongPtr (hwnd, GWL_EXSTYLE)) != WS_EX_LAYERED)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Window was hidden, will be shown. Erase it, GDK will repaint soon,
|
|
|
|
* but not soon enough, so it's possible to see old content before
|
|
|
|
* the next redraw, unless we erase the window first.
|
|
|
|
*/
|
|
|
|
GetWindowRect (hwnd, &window_rect);
|
|
|
|
source_point.x = source_point.y = 0;
|
|
|
|
|
|
|
|
window_position.x = window_rect.left;
|
|
|
|
window_position.y = window_rect.top;
|
|
|
|
window_size.cx = window_rect.right - window_rect.left;
|
|
|
|
window_size.cy = window_rect.bottom - window_rect.top;
|
|
|
|
|
|
|
|
blender.BlendOp = AC_SRC_OVER;
|
|
|
|
blender.BlendFlags = 0;
|
|
|
|
blender.AlphaFormat = AC_SRC_ALPHA;
|
|
|
|
blender.SourceConstantAlpha = 255;
|
|
|
|
|
|
|
|
/* Create a surface of appropriate size and clear it */
|
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
|
|
|
surface = cairo_win32_surface_create_with_dib (CAIRO_FORMAT_ARGB32,
|
|
|
|
window_size.cx,
|
|
|
|
window_size.cy);
|
2018-03-20 11:05:26 +00:00
|
|
|
cairo_surface_set_device_scale (surface, impl->surface_scale, impl->surface_scale);
|
2016-03-16 18:16:33 +00:00
|
|
|
cr = cairo_create (surface);
|
|
|
|
cairo_set_operator (cr, CAIRO_OPERATOR_SOURCE);
|
|
|
|
cairo_set_source_rgba (cr, 1.0, 1.0, 1.0, 0.0);
|
|
|
|
cairo_paint (cr);
|
|
|
|
cairo_destroy (cr);
|
|
|
|
cairo_surface_flush (surface);
|
|
|
|
hdc = cairo_win32_surface_get_dc (surface);
|
|
|
|
|
|
|
|
/* No API_CALL() wrapper, don't check for errors */
|
|
|
|
UpdateLayeredWindow (hwnd, NULL,
|
|
|
|
&window_position, &window_size,
|
|
|
|
hdc, &source_point,
|
|
|
|
0, &blender, ULW_ALPHA);
|
|
|
|
|
|
|
|
cairo_surface_destroy (surface);
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2016-12-11 16:26:34 +00:00
|
|
|
/* Ensure that maximized window size is corrected later on */
|
|
|
|
if (cmd_show == SW_MAXIMIZE)
|
|
|
|
impl->maximizing = TRUE;
|
|
|
|
|
2016-03-16 18:16:33 +00:00
|
|
|
return ShowWindow (hwnd, cmd_show);
|
|
|
|
}
|
|
|
|
|
2016-03-15 10:15:14 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_set_shadow_width (GdkSurface *window,
|
2016-03-15 10:15:14 +00:00
|
|
|
gint left,
|
|
|
|
gint right,
|
|
|
|
gint top,
|
|
|
|
gint bottom)
|
|
|
|
{
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl = GDK_WIN32_SURFACE (window);
|
2016-03-15 10:15:14 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (window))
|
2016-03-15 10:15:14 +00:00
|
|
|
return;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("gdk_win32_surface_set_shadow_width: window %p, "
|
2016-03-15 10:17:45 +00:00
|
|
|
"left %d, top %d, right %d, bottom %d\n",
|
|
|
|
window, left, top, right, bottom));
|
|
|
|
|
|
|
|
impl->zero_margins = left == 0 && right == 0 && top == 0 && bottom == 0;
|
|
|
|
|
|
|
|
if (impl->zero_margins)
|
|
|
|
return;
|
|
|
|
|
2016-03-15 10:15:14 +00:00
|
|
|
impl->margins.left = left;
|
2018-03-20 11:05:26 +00:00
|
|
|
impl->margins.right = right * impl->surface_scale;
|
2016-03-15 10:15:14 +00:00
|
|
|
impl->margins.top = top;
|
2018-03-20 11:05:26 +00:00
|
|
|
impl->margins.bottom = bottom * impl->surface_scale;
|
2016-03-15 10:15:14 +00:00
|
|
|
impl->margins_x = left + right;
|
|
|
|
impl->margins_y = top + bottom;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
|
|
gint
|
2018-03-20 10:40:08 +00:00
|
|
|
_gdk_win32_surface_get_scale_factor (GdkSurface *window)
|
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
|
|
|
{
|
|
|
|
GdkDisplay *display;
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl;
|
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
|
|
|
GdkWin32Display *win32_display;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (window))
|
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
|
|
|
return 1;
|
|
|
|
|
|
|
|
g_return_val_if_fail (window != NULL, 1);
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
display = gdk_surface_get_display (window);
|
2019-05-19 03:09:05 +00:00
|
|
|
impl = GDK_WIN32_SURFACE (window);
|
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
|
|
|
|
|
|
|
win32_display = GDK_WIN32_DISPLAY (display);
|
|
|
|
|
|
|
|
if (win32_display->dpi_aware_type != PROCESS_DPI_UNAWARE)
|
|
|
|
{
|
|
|
|
if (win32_display->has_fixed_scale)
|
2018-03-20 11:05:26 +00:00
|
|
|
impl->surface_scale = win32_display->surface_scale;
|
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
|
2018-03-20 11:05:26 +00:00
|
|
|
impl->surface_scale = _gdk_win32_display_get_monitor_scale_factor (win32_display,
|
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
|
|
|
NULL,
|
2018-03-20 10:40:08 +00:00
|
|
|
GDK_SURFACE_HWND (window),
|
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
|
|
|
NULL);
|
|
|
|
|
2018-03-20 11:05:26 +00:00
|
|
|
return impl->surface_scale;
|
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
|
|
|
|
{
|
|
|
|
if (win32_display->has_fixed_scale)
|
|
|
|
{
|
|
|
|
static gsize hidpi_msg_displayed = 0;
|
|
|
|
|
|
|
|
if (g_once_init_enter (&hidpi_msg_displayed))
|
|
|
|
{
|
|
|
|
g_message ("Note: GDK_SCALE is ignored as HiDPI awareness is disabled.");
|
|
|
|
g_once_init_leave (&hidpi_msg_displayed, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Application is not DPI aware, don't bother */
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2018-03-20 10:40:08 +00:00
|
|
|
_gdk_win32_surface_get_unscaled_size (GdkSurface *window,
|
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
|
|
|
gint *unscaled_width,
|
|
|
|
gint *unscaled_height)
|
|
|
|
{
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkWin32Surface *impl = GDK_WIN32_SURFACE (window);
|
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 (unscaled_width)
|
|
|
|
*unscaled_width = impl->unscaled_width;
|
|
|
|
if (unscaled_height)
|
|
|
|
*unscaled_height = impl->unscaled_height;
|
|
|
|
}
|
|
|
|
|
2016-12-19 09:09:49 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_input_shape_combine_region (GdkSurface *window,
|
2016-12-19 09:09:49 +00:00
|
|
|
const cairo_region_t *shape_region,
|
|
|
|
gint offset_x,
|
|
|
|
gint offset_y)
|
|
|
|
{
|
|
|
|
/* Partial input shape support is implemented by handling the
|
|
|
|
* NC_NCHITTEST message
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
static void
|
2019-05-19 03:09:05 +00:00
|
|
|
gdk_win32_surface_class_init (GdkWin32SurfaceClass *klass)
|
2011-01-02 10:51:25 +00:00
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
2019-05-19 03:09:05 +00:00
|
|
|
GdkSurfaceClass *impl_class = GDK_SURFACE_CLASS (klass);
|
2011-01-02 10:51:25 +00:00
|
|
|
|
|
|
|
parent_class = g_type_class_peek_parent (klass);
|
|
|
|
|
2019-05-19 03:09:05 +00:00
|
|
|
object_class->dispose = gdk_surface_win32_dispose;
|
|
|
|
object_class->finalize = gdk_surface_win32_finalize;
|
2015-04-29 07:31:08 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
impl_class->show = gdk_win32_surface_show;
|
|
|
|
impl_class->hide = gdk_win32_surface_hide;
|
|
|
|
impl_class->withdraw = gdk_win32_surface_withdraw;
|
|
|
|
impl_class->raise = gdk_win32_surface_raise;
|
|
|
|
impl_class->lower = gdk_win32_surface_lower;
|
|
|
|
impl_class->restack_toplevel = gdk_win32_surface_restack_toplevel;
|
2019-07-15 08:54:44 +00:00
|
|
|
impl_class->toplevel_resize = gdk_win32_surface_toplevel_resize;
|
2020-02-16 11:59:24 +00:00
|
|
|
impl_class->present_popup = gdk_win32_surface_present_popup;
|
2018-03-20 10:40:08 +00:00
|
|
|
impl_class->get_geometry = gdk_win32_surface_get_geometry;
|
|
|
|
impl_class->get_device_state = gdk_surface_win32_get_device_state;
|
|
|
|
impl_class->get_root_coords = gdk_win32_surface_get_root_coords;
|
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
impl_class->input_shape_combine_region = gdk_win32_input_shape_combine_region;
|
2018-03-20 10:40:08 +00:00
|
|
|
impl_class->destroy = gdk_win32_surface_destroy;
|
|
|
|
|
|
|
|
//impl_class->beep = gdk_x11_surface_beep;
|
|
|
|
|
|
|
|
|
|
|
|
impl_class->show_window_menu = gdk_win32_surface_show_window_menu;
|
|
|
|
impl_class->focus = gdk_win32_surface_focus;
|
|
|
|
impl_class->set_type_hint = gdk_win32_surface_set_type_hint;
|
|
|
|
impl_class->get_type_hint = gdk_win32_surface_get_type_hint;
|
|
|
|
impl_class->set_modal_hint = gdk_win32_surface_set_modal_hint;
|
|
|
|
impl_class->set_geometry_hints = gdk_win32_surface_set_geometry_hints;
|
|
|
|
impl_class->set_title = gdk_win32_surface_set_title;
|
|
|
|
//impl_class->set_startup_id = gdk_x11_surface_set_startup_id;
|
|
|
|
impl_class->set_transient_for = gdk_win32_surface_set_transient_for;
|
|
|
|
impl_class->set_accept_focus = gdk_win32_surface_set_accept_focus;
|
|
|
|
impl_class->set_focus_on_map = gdk_win32_surface_set_focus_on_map;
|
|
|
|
impl_class->set_icon_list = gdk_win32_surface_set_icon_list;
|
|
|
|
impl_class->set_icon_name = gdk_win32_surface_set_icon_name;
|
2019-11-16 19:50:57 +00:00
|
|
|
impl_class->minimize = gdk_win32_surface_minimize;
|
|
|
|
impl_class->unminimize = gdk_win32_surface_unminimize;
|
2018-03-20 10:40:08 +00:00
|
|
|
impl_class->stick = gdk_win32_surface_stick;
|
|
|
|
impl_class->unstick = gdk_win32_surface_unstick;
|
|
|
|
impl_class->maximize = gdk_win32_surface_maximize;
|
|
|
|
impl_class->unmaximize = gdk_win32_surface_unmaximize;
|
|
|
|
impl_class->fullscreen = gdk_win32_surface_fullscreen;
|
|
|
|
impl_class->unfullscreen = gdk_win32_surface_unfullscreen;
|
|
|
|
impl_class->set_keep_above = gdk_win32_surface_set_keep_above;
|
|
|
|
impl_class->set_keep_below = gdk_win32_surface_set_keep_below;
|
|
|
|
impl_class->set_decorations = gdk_win32_surface_set_decorations;
|
|
|
|
impl_class->get_decorations = gdk_win32_surface_get_decorations;
|
|
|
|
impl_class->set_functions = gdk_win32_surface_set_functions;
|
|
|
|
|
|
|
|
impl_class->set_shadow_width = gdk_win32_surface_set_shadow_width;
|
|
|
|
impl_class->begin_resize_drag = gdk_win32_surface_begin_resize_drag;
|
|
|
|
impl_class->begin_move_drag = gdk_win32_surface_begin_move_drag;
|
|
|
|
impl_class->set_opacity = gdk_win32_surface_set_opacity;
|
|
|
|
impl_class->destroy_notify = gdk_win32_surface_destroy_notify;
|
|
|
|
impl_class->drag_begin = _gdk_win32_surface_drag_begin;
|
|
|
|
impl_class->create_gl_context = _gdk_win32_surface_create_gl_context;
|
|
|
|
impl_class->get_scale_factor = _gdk_win32_surface_get_scale_factor;
|
|
|
|
impl_class->get_unscaled_size = _gdk_win32_surface_get_unscaled_size;
|
2011-01-02 10:51:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
HGDIOBJ
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_win32_surface_get_handle (GdkSurface *window)
|
2011-01-02 10:51:25 +00:00
|
|
|
{
|
2019-05-19 03:09:05 +00:00
|
|
|
if (!GDK_IS_WIN32_SURFACE (window))
|
2011-09-09 14:17:29 +00:00
|
|
|
{
|
|
|
|
g_warning (G_STRLOC " window is not a native Win32 window");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
return GDK_SURFACE_HWND (window);
|
2011-01-02 10:51:25 +00:00
|
|
|
}
|