WindowFromPoint() wants screen coordinates (#115422, Tim Evans).

2003-07-01  Tor Lillqvist  <tml@iki.fi>

	* gdk/win32/gdkwindow-win32.c (_gdk_windowing_window_get_pointer):
	WindowFromPoint() wants screen coordinates (#115422, Tim Evans).
This commit is contained in:
Tor Lillqvist
2003-07-01 11:14:46 +00:00
committed by Tor Lillqvist
parent 7de2603d95
commit f976beaf41
6 changed files with 27 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2003-07-01 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkwindow-win32.c (_gdk_windowing_window_get_pointer):
WindowFromPoint() wants screen coordinates (#115422, Tim Evans).
2003-07-01 Matthias Clasen <maclas@gmx.de>
* configure.in: Check for Xcursor.

View File

@@ -1,3 +1,8 @@
2003-07-01 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkwindow-win32.c (_gdk_windowing_window_get_pointer):
WindowFromPoint() wants screen coordinates (#115422, Tim Evans).
2003-07-01 Matthias Clasen <maclas@gmx.de>
* configure.in: Check for Xcursor.

View File

@@ -1,3 +1,8 @@
2003-07-01 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkwindow-win32.c (_gdk_windowing_window_get_pointer):
WindowFromPoint() wants screen coordinates (#115422, Tim Evans).
2003-07-01 Matthias Clasen <maclas@gmx.de>
* configure.in: Check for Xcursor.

View File

@@ -1,3 +1,8 @@
2003-07-01 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkwindow-win32.c (_gdk_windowing_window_get_pointer):
WindowFromPoint() wants screen coordinates (#115422, Tim Evans).
2003-07-01 Matthias Clasen <maclas@gmx.de>
* configure.in: Check for Xcursor.

View File

@@ -1,3 +1,8 @@
2003-07-01 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkwindow-win32.c (_gdk_windowing_window_get_pointer):
WindowFromPoint() wants screen coordinates (#115422, Tim Evans).
2003-07-01 Matthias Clasen <maclas@gmx.de>
* configure.in: Check for Xcursor.

View File

@@ -1907,7 +1907,7 @@ _gdk_windowing_window_get_pointer (GdkDisplay *display,
*x = point.x;
*y = point.y;
hwnd = WindowFromPoint (point);
hwnd = WindowFromPoint (screen_point);
if (hwnd != NULL)
{
gboolean done = FALSE;
@@ -2003,7 +2003,7 @@ _gdk_windowing_window_at_pointer (GdkDisplay *display,
*win_y = point.y - rect.top;
}
GDK_NOTE (MISC, g_print ("gdk_window_at_pointer: +%ld+%ld %p%s\n",
GDK_NOTE (MISC, g_print ("_gdk_windowing_window_at_pointer: +%ld+%ld %p%s\n",
point.x, point.y,
hwnd,
(window == NULL ? " NULL" : "")));