}
void
-_gdk_input_set_tablet_active (void)
+_gdk_wintab_set_tablet_active (void)
{
GList *tmp_list;
HCTX *hctx;
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;
}
GdkEvent *
-gdk_input_other_event (GdkDisplay *display,
+gdk_wintab_make_event (GdkDisplay *display,
MSG *msg,
GdkSurface *window)
{
if (window != wintab_window)
{
- g_warning ("gdk_input_other_event: not wintab_window?");
+ g_warning ("gdk_wintab_make_event: not wintab_window?");
return NULL;
}
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)
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);
* 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;
/* 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);