forked from AuroraMiddleware/gtk
9a7e721181
This is an automatic rename of various things related to the window->surface rename. Public symbols changed by this is: GDK_MODE_WINDOW gdk_device_get_window_at_position gdk_device_get_window_at_position_double gdk_device_get_last_event_window gdk_display_get_monitor_at_window gdk_drag_context_get_source_window gdk_drag_context_get_dest_window gdk_drag_context_get_drag_window gdk_draw_context_get_window gdk_drawing_context_get_window gdk_gl_context_get_window gdk_synthesize_window_state gdk_surface_get_window_type gdk_x11_display_set_window_scale gsk_renderer_new_for_window gsk_renderer_get_window gtk_text_view_buffer_to_window_coords gtk_tree_view_convert_widget_to_bin_window_coords gtk_tree_view_convert_tree_to_bin_window_coords The commands that generated this are: git sed -f g "GDK window" "GDK surface" git sed -f g window_impl surface_impl (cd gdk; git sed -f g impl_window impl_surface) git sed -f g WINDOW_IMPL SURFACE_IMPL git sed -f g GDK_MODE_WINDOW GDK_MODE_SURFACE git sed -f g gdk_draw_context_get_window gdk_draw_context_get_surface git sed -f g gdk_drawing_context_get_window gdk_drawing_context_get_surface git sed -f g gdk_gl_context_get_window gdk_gl_context_get_surface git sed -f g gsk_renderer_get_window gsk_renderer_get_surface git sed -f g gsk_renderer_new_for_window gsk_renderer_new_for_surface (cd gdk; git sed -f g window_type surface_type) git sed -f g gdk_surface_get_window_type gdk_surface_get_surface_type git sed -f g window_at_position surface_at_position git sed -f g event_window event_surface git sed -f g window_coord surface_coord git sed -f g window_state surface_state git sed -f g window_cursor surface_cursor git sed -f g window_scale surface_scale git sed -f g window_events surface_events git sed -f g monitor_at_window monitor_at_surface git sed -f g window_under_pointer surface_under_pointer (cd gdk; git sed -f g for_window for_surface) git sed -f g window_anchor surface_anchor git sed -f g WINDOW_IS_TOPLEVEL SURFACE_IS_TOPLEVEL git sed -f g native_window native_surface git sed -f g source_window source_surface git sed -f g dest_window dest_surface git sed -f g drag_window drag_surface git sed -f g input_window input_surface git checkout NEWS* po-properties po docs/reference/gtk/migrating-3to4.xml
315 lines
8.4 KiB
C
315 lines
8.4 KiB
C
/* GDK - The GIMP Drawing Kit
|
|
* Copyright (C) 2009 Carlos Garnacho <carlosg@gnome.org>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <gdk/gdksurface.h>
|
|
|
|
#include <windowsx.h>
|
|
#include <objbase.h>
|
|
|
|
#include "gdkdevice-win32.h"
|
|
#include "gdkwin32.h"
|
|
#include "gdkdisplay-win32.h"
|
|
|
|
G_DEFINE_TYPE (GdkDeviceWin32, gdk_device_win32, GDK_TYPE_DEVICE)
|
|
|
|
static gboolean
|
|
gdk_device_win32_get_history (GdkDevice *device,
|
|
GdkSurface *window,
|
|
guint32 start,
|
|
guint32 stop,
|
|
GdkTimeCoord ***events,
|
|
gint *n_events)
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
static void
|
|
gdk_device_win32_get_state (GdkDevice *device,
|
|
GdkSurface *window,
|
|
gdouble *axes,
|
|
GdkModifierType *mask)
|
|
{
|
|
gint x_int, y_int;
|
|
|
|
gdk_surface_get_device_position (window, device, &x_int, &y_int, mask);
|
|
|
|
if (axes)
|
|
{
|
|
axes[0] = x_int;
|
|
axes[1] = y_int;
|
|
}
|
|
}
|
|
|
|
static void
|
|
gdk_device_win32_set_surface_cursor (GdkDevice *device,
|
|
GdkSurface *window,
|
|
GdkCursor *cursor)
|
|
{
|
|
}
|
|
|
|
static void
|
|
gdk_device_win32_warp (GdkDevice *device,
|
|
gdouble x,
|
|
gdouble y)
|
|
{
|
|
}
|
|
|
|
static GdkModifierType
|
|
get_current_mask (void)
|
|
{
|
|
GdkModifierType mask;
|
|
BYTE kbd[256];
|
|
|
|
GetKeyboardState (kbd);
|
|
mask = 0;
|
|
if (kbd[VK_SHIFT] & 0x80)
|
|
mask |= GDK_SHIFT_MASK;
|
|
if (kbd[VK_CAPITAL] & 0x80)
|
|
mask |= GDK_LOCK_MASK;
|
|
if (kbd[VK_CONTROL] & 0x80)
|
|
mask |= GDK_CONTROL_MASK;
|
|
if (kbd[VK_MENU] & 0x80)
|
|
mask |= GDK_MOD1_MASK;
|
|
if (kbd[VK_LBUTTON] & 0x80)
|
|
mask |= GDK_BUTTON1_MASK;
|
|
if (kbd[VK_MBUTTON] & 0x80)
|
|
mask |= GDK_BUTTON2_MASK;
|
|
if (kbd[VK_RBUTTON] & 0x80)
|
|
mask |= GDK_BUTTON3_MASK;
|
|
|
|
return mask;
|
|
}
|
|
|
|
static void
|
|
gdk_device_win32_query_state (GdkDevice *device,
|
|
GdkSurface *window,
|
|
GdkSurface **child_window,
|
|
gdouble *root_x,
|
|
gdouble *root_y,
|
|
gdouble *win_x,
|
|
gdouble *win_y,
|
|
GdkModifierType *mask)
|
|
{
|
|
POINT point;
|
|
HWND hwnd, hwndc;
|
|
gint scale;
|
|
|
|
if (window)
|
|
{
|
|
scale = GDK_SURFACE_IMPL_WIN32 (window->impl)->surface_scale;
|
|
hwnd = GDK_SURFACE_HWND (window);
|
|
}
|
|
else
|
|
{
|
|
GdkDisplay *display = gdk_device_get_display (device);
|
|
|
|
scale = GDK_WIN32_DISPLAY (display)->surface_scale;
|
|
hwnd = NULL;
|
|
}
|
|
|
|
GetCursorPos (&point);
|
|
|
|
if (root_x)
|
|
*root_x = point.x / scale;
|
|
|
|
if (root_y)
|
|
*root_y = point.y / scale;
|
|
|
|
if (hwnd)
|
|
ScreenToClient (hwnd, &point);
|
|
|
|
if (win_x)
|
|
*win_x = point.x / scale;
|
|
|
|
if (win_y)
|
|
*win_y = point.y / scale;
|
|
|
|
if (window)
|
|
{
|
|
if (win_x)
|
|
*win_x += _gdk_offset_x;
|
|
|
|
if (win_y)
|
|
*win_y += _gdk_offset_y;
|
|
|
|
if (root_x)
|
|
*root_x += _gdk_offset_x;
|
|
|
|
if (root_y)
|
|
*root_y += _gdk_offset_y;
|
|
}
|
|
|
|
if (hwnd && child_window)
|
|
{
|
|
hwndc = ChildWindowFromPoint (hwnd, point);
|
|
|
|
if (hwndc && hwndc != hwnd)
|
|
*child_window = gdk_win32_handle_table_lookup (hwndc);
|
|
else
|
|
*child_window = NULL; /* Direct child unknown to gdk */
|
|
}
|
|
|
|
if (mask)
|
|
*mask = get_current_mask ();
|
|
}
|
|
|
|
static GdkGrabStatus
|
|
gdk_device_win32_grab (GdkDevice *device,
|
|
GdkSurface *window,
|
|
gboolean owner_events,
|
|
GdkEventMask event_mask,
|
|
GdkSurface *confine_to,
|
|
GdkCursor *cursor,
|
|
guint32 time_)
|
|
{
|
|
/* No support for grabbing the slave atm */
|
|
return GDK_GRAB_NOT_VIEWABLE;
|
|
}
|
|
|
|
static void
|
|
gdk_device_win32_ungrab (GdkDevice *device,
|
|
guint32 time_)
|
|
{
|
|
}
|
|
|
|
static void
|
|
screen_to_client (HWND hwnd, POINT screen_pt, POINT *client_pt)
|
|
{
|
|
*client_pt = screen_pt;
|
|
ScreenToClient (hwnd, client_pt);
|
|
}
|
|
|
|
GdkSurface *
|
|
_gdk_device_win32_surface_at_position (GdkDevice *device,
|
|
gdouble *win_x,
|
|
gdouble *win_y,
|
|
GdkModifierType *mask,
|
|
gboolean get_toplevel)
|
|
{
|
|
GdkSurface *window = NULL;
|
|
GdkSurfaceImplWin32 *impl = NULL;
|
|
POINT screen_pt, client_pt;
|
|
HWND hwnd, hwndc;
|
|
RECT rect;
|
|
|
|
GetCursorPos (&screen_pt);
|
|
|
|
if (get_toplevel)
|
|
{
|
|
/* Only consider visible children of the desktop to avoid the various
|
|
* non-visible windows you often find on a running Windows box. These
|
|
* might overlap our windows and cause our walk to fail. As we assume
|
|
* WindowFromPoint() can find our windows, we follow similar logic
|
|
* here, and ignore invisible and disabled windows.
|
|
*/
|
|
hwnd = GetDesktopWindow ();
|
|
do {
|
|
window = gdk_win32_handle_table_lookup (hwnd);
|
|
|
|
if (window != NULL &&
|
|
GDK_SURFACE_TYPE (window) != GDK_SURFACE_FOREIGN)
|
|
break;
|
|
|
|
screen_to_client (hwnd, screen_pt, &client_pt);
|
|
hwndc = ChildWindowFromPointEx (hwnd, client_pt, CWP_SKIPDISABLED |
|
|
CWP_SKIPINVISIBLE);
|
|
|
|
/* Verify that we're really inside the client area of the window */
|
|
if (hwndc != hwnd)
|
|
{
|
|
GetClientRect (hwndc, &rect);
|
|
screen_to_client (hwndc, screen_pt, &client_pt);
|
|
if (!PtInRect (&rect, client_pt))
|
|
hwndc = hwnd;
|
|
}
|
|
|
|
} while (hwndc != hwnd && (hwnd = hwndc, 1));
|
|
|
|
}
|
|
else
|
|
{
|
|
hwnd = WindowFromPoint (screen_pt);
|
|
|
|
/* Verify that we're really inside the client area of the window */
|
|
GetClientRect (hwnd, &rect);
|
|
screen_to_client (hwnd, screen_pt, &client_pt);
|
|
if (!PtInRect (&rect, client_pt))
|
|
hwnd = NULL;
|
|
|
|
/* If we didn't hit any window at that point, return the desktop */
|
|
if (hwnd == NULL)
|
|
{
|
|
if (win_x)
|
|
*win_x = screen_pt.x + _gdk_offset_x;
|
|
if (win_y)
|
|
*win_y = screen_pt.y + _gdk_offset_y;
|
|
|
|
return NULL;
|
|
}
|
|
|
|
window = gdk_win32_handle_table_lookup (hwnd);
|
|
}
|
|
|
|
if (window && (win_x || win_y))
|
|
{
|
|
impl = GDK_SURFACE_IMPL_WIN32 (window->impl);
|
|
|
|
if (win_x)
|
|
*win_x = client_pt.x / impl->surface_scale;
|
|
if (win_y)
|
|
*win_y = client_pt.y / impl->surface_scale;
|
|
}
|
|
|
|
return window;
|
|
}
|
|
|
|
static void
|
|
gdk_device_win32_select_surface_events (GdkDevice *device,
|
|
GdkSurface *window,
|
|
GdkEventMask event_mask)
|
|
{
|
|
}
|
|
|
|
static void
|
|
gdk_device_win32_class_init (GdkDeviceWin32Class *klass)
|
|
{
|
|
GdkDeviceClass *device_class = GDK_DEVICE_CLASS (klass);
|
|
|
|
device_class->get_history = gdk_device_win32_get_history;
|
|
device_class->get_state = gdk_device_win32_get_state;
|
|
device_class->set_surface_cursor = gdk_device_win32_set_surface_cursor;
|
|
device_class->warp = gdk_device_win32_warp;
|
|
device_class->query_state = gdk_device_win32_query_state;
|
|
device_class->grab = gdk_device_win32_grab;
|
|
device_class->ungrab = gdk_device_win32_ungrab;
|
|
device_class->surface_at_position = _gdk_device_win32_surface_at_position;
|
|
device_class->select_surface_events = gdk_device_win32_select_surface_events;
|
|
}
|
|
|
|
static void
|
|
gdk_device_win32_init (GdkDeviceWin32 *device_win32)
|
|
{
|
|
GdkDevice *device;
|
|
|
|
device = GDK_DEVICE (device_win32);
|
|
|
|
_gdk_device_add_axis (device, NULL, GDK_AXIS_X, 0, 0, 1);
|
|
_gdk_device_add_axis (device, NULL, GDK_AXIS_Y, 0, 0, 1);
|
|
}
|