Rename some Wintab-related functions

This commit is contained in:
Luca Bacci 2021-06-18 11:36:08 +02:00
parent fe280e578f
commit 7cec7054e2
No known key found for this signature in database
GPG Key ID: 8E3C8D989C98883D
3 changed files with 9 additions and 9 deletions

View File

@ -752,7 +752,7 @@ gdk_device_manager_win32_class_init (GdkDeviceManagerWin32Class *klass)
}
void
_gdk_input_set_tablet_active (void)
_gdk_wintab_set_tablet_active (void)
{
GList *tmp_list;
HCTX *hctx;
@ -763,7 +763,7 @@ _gdk_input_set_tablet_active (void)
if (!wintab_contexts)
return; /* No tablet devices found, or Wintab not initialized yet */
GDK_NOTE (INPUT, g_print ("_gdk_input_set_tablet_active: "
GDK_NOTE (INPUT, g_print ("_gdk_wintab_set_tablet_active: "
"Bringing Wintab contexts to the top of the overlap order\n"));
tmp_list = wintab_contexts;
@ -866,7 +866,7 @@ gdk_device_manager_find_wintab_device (GdkDeviceManagerWin32 *device_manager,
}
GdkEvent *
gdk_input_other_event (GdkDisplay *display,
gdk_wintab_make_event (GdkDisplay *display,
MSG *msg,
GdkSurface *window)
{
@ -894,7 +894,7 @@ gdk_input_other_event (GdkDisplay *display,
if (window != wintab_window)
{
g_warning ("gdk_input_other_event: not wintab_window?");
g_warning ("gdk_wintab_make_event: not wintab_window?");
return NULL;
}
@ -905,7 +905,7 @@ gdk_input_other_event (GdkDisplay *display,
g_object_ref (window);
GDK_NOTE (EVENTS_OR_INPUT,
g_print ("gdk_input_other_event: window=%p %+g%+g\n",
g_print ("gdk_wintab_make_event: window=%p %+g%+g\n",
window ? GDK_SURFACE_HWND (window) : NULL, x, y));
if (msg->message == WT_PACKET || msg->message == WT_CSRCHANGE)

View File

@ -56,8 +56,8 @@ struct _GdkDeviceManagerWin32Class
GType gdk_device_manager_win32_get_type (void) G_GNUC_CONST;
void _gdk_input_set_tablet_active (void);
GdkEvent * gdk_input_other_event (GdkDisplay *display,
void _gdk_wintab_set_tablet_active (void);
GdkEvent * gdk_wintab_make_event (GdkDisplay *display,
MSG *msg,
GdkSurface *window);

View File

@ -3061,7 +3061,7 @@ gdk_event_translate (MSG *msg,
* NOTE: It doesn't seem to work well if it is done in WM_ACTIVATEAPP
* instead
*/
_gdk_input_set_tablet_active ();
_gdk_wintab_set_tablet_active ();
}
break;
@ -3100,7 +3100,7 @@ gdk_event_translate (MSG *msg,
/* Fall through */
wintab:
event = gdk_input_other_event (display, msg, window);
event = gdk_wintab_make_event (display, msg, window);
if (event)
{
_gdk_win32_append_event (event);