]> Pileus Git - ~andy/gtk/blobdiff - gdk/x11/gdkinput.c
Merge in Gdk-custom.c introspection annotations
[~andy/gtk] / gdk / x11 / gdkinput.c
index b4525987c19737eb84247f255a04e8ac819002ab..72eb5ab0e8a733e2615598b48beac988a934b008 100644 (file)
  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
  * file for a list of people on the GTK+ Team.  See the ChangeLog
  * files for a list of changes.  These files are distributed with
- * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
  */
 
+#include "config.h"
+
 #include <stdlib.h>
 #include <X11/Xlib.h>
 #include <X11/Xutil.h>
-#include "config.h"
 
 #include "gdkx.h"
 #include "gdkinput.h"
 #include "gdkprivate.h"
 #include "gdkinputprivate.h"
+#include "gdkscreen-x11.h"
+#include "gdkdisplay-x11.h"
+#include "gdkalias.h"
 
 static GdkDeviceAxis gdk_input_core_axes[] = {
   { GDK_AXIS_X, 0, 0 },
   { GDK_AXIS_Y, 0, 0 }
 };
 
-static const GdkDevice gdk_input_core_info =
+void
+_gdk_init_input_core (GdkDisplay *display)
 {
-  "Core Pointer",
-  GDK_SOURCE_MOUSE,
-  GDK_MODE_SCREEN,
-  TRUE,
-  
-  2,
-  gdk_input_core_axes,
-
-  0,
-  NULL
-};
+  GdkDevicePrivate *private;
+
+  display->core_pointer = g_object_new (GDK_TYPE_DEVICE, NULL);
+  private = (GdkDevicePrivate *)display->core_pointer;
+
+  display->core_pointer->name = "Core Pointer";
+  display->core_pointer->source = GDK_SOURCE_MOUSE;
+  display->core_pointer->mode = GDK_MODE_SCREEN;
+  display->core_pointer->has_cursor = TRUE;
+  display->core_pointer->num_axes = 2;
+  display->core_pointer->axes = gdk_input_core_axes;
+  display->core_pointer->num_keys = 0;
+  display->core_pointer->keys = NULL;
+
+  private->display = display;
+}
+
+static void gdk_device_class_init (GdkDeviceClass *klass);
+static void gdk_device_dispose    (GObject        *object);
+
+static gpointer gdk_device_parent_class = NULL;
+
+GType
+gdk_device_get_type (void)
+{
+  static GType object_type = 0;
+
+  if (!object_type)
+    {
+      const GTypeInfo object_info =
+       {
+         sizeof (GdkDeviceClass),
+         (GBaseInitFunc) NULL,
+         (GBaseFinalizeFunc) NULL,
+         (GClassInitFunc) gdk_device_class_init,
+         NULL,           /* class_finalize */
+         NULL,           /* class_data */
+         sizeof (GdkDevicePrivate),
+         0,              /* n_preallocs */
+         (GInstanceInitFunc) NULL,
+       };
+
+      object_type = g_type_register_static (G_TYPE_OBJECT,
+                                           g_intern_static_string ("GdkDevice"),
+                                           &object_info, 0);
+    }
+
+  return object_type;
+}
 
-GdkDevice *gdk_core_pointer = (GdkDevice *)&gdk_input_core_info;
-/* Global variables  */
+static void
+gdk_device_class_init (GdkDeviceClass *klass)
+{
+  GObjectClass *object_class = G_OBJECT_CLASS (klass);
+
+  gdk_device_parent_class = g_type_class_peek_parent (klass);
 
-/* information about network port and host for gxid daemon */
-gchar            *gdk_input_gxid_host;
-gint              gdk_input_gxid_port;
-gint              gdk_input_ignore_core;
+  object_class->dispose  = gdk_device_dispose;
+}
 
-GList            *gdk_input_devices;
-GList            *gdk_input_windows;
+static void
+gdk_device_dispose (GObject *object)
+{
+  GdkDevicePrivate *gdkdev = (GdkDevicePrivate *) object;
+
+  if (gdkdev->display && !GDK_IS_CORE (gdkdev))
+    {
+#ifndef XINPUT_NONE
+      if (gdkdev->xdevice)
+       {
+         XCloseDevice (GDK_DISPLAY_XDISPLAY (gdkdev->display), gdkdev->xdevice);
+         gdkdev->xdevice = NULL;
+       }
+      g_free (gdkdev->axes);
+      g_free (gdkdev->axis_data);
+      gdkdev->axes = NULL;
+      gdkdev->axis_data = NULL;
+#endif /* !XINPUT_NONE */
+
+      g_free (gdkdev->info.name);
+      g_free (gdkdev->info.keys);
+      g_free (gdkdev->info.axes);
+
+      gdkdev->info.name = NULL;
+      gdkdev->info.keys = NULL;
+      gdkdev->info.axes = NULL;
+    }
+
+  G_OBJECT_CLASS (gdk_device_parent_class)->dispose (object);
+}
 
+/**
+ * gdk_devices_list:
+ *
+ * Returns the list of available input devices for the default display.
+ * The list is statically allocated and should not be freed.
+ *
+ * Return value: a list of #GdkDevice
+ **/
 GList *
 gdk_devices_list (void)
 {
-  return gdk_input_devices;
+  return gdk_display_list_devices (gdk_display_get_default ());
+}
+
+/**
+ * gdk_display_list_devices:
+ * @display: a #GdkDisplay
+ *
+ * Returns the list of available input devices attached to @display.
+ * The list is statically allocated and should not be freed.
+ *
+ * Return value: a list of #GdkDevice
+ *
+ * Since: 2.2
+ **/
+GList *
+gdk_display_list_devices (GdkDisplay *display)
+{
+  g_return_val_if_fail (GDK_IS_DISPLAY (display), NULL);
+
+  return GDK_DISPLAY_X11 (display)->input_devices;
 }
 
 void
@@ -122,6 +221,41 @@ gdk_device_set_axis_use (GdkDevice   *device,
     }
 }
 
+static gboolean
+impl_coord_in_window (GdkWindow *window,
+                     int impl_x,
+                     int impl_y)
+{
+  GdkWindowObject *priv = (GdkWindowObject *)window;
+
+  if (impl_x < priv->abs_x ||
+      impl_x > priv->abs_x + priv->width)
+    return FALSE;
+  if (impl_y < priv->abs_y ||
+      impl_y > priv->abs_y + priv->height)
+    return FALSE;
+  return TRUE;
+}
+
+/**
+ * gdk_device_get_history:
+ * @device: a #GdkDevice
+ * @window: the window with respect to which which the event coordinates will be reported
+ * @start: starting timestamp for range of events to return
+ * @stop: ending timestamp for the range of events to return
+ * @events: (array length=n_events) (out) (transfer none): location to store a newly-allocated array of #GdkTimeCoord, or %NULL
+ * @n_events: location to store the length of @events, or %NULL
+ *
+ * Obtains the motion history for a device; given a starting and
+ * ending timestamp, return all events in the motion history for
+ * the device in the given range of time. Some windowing systems
+ * do not support motion history, in which case, %FALSE will
+ * be returned. (This is not distinguishable from the case where
+ * motion history is supported and no events were found.)
+ *
+ * Return value: %TRUE if the windowing system supports motion history and
+ *  at least one event was found.
+ **/
 gboolean
 gdk_device_get_history  (GdkDevice         *device,
                         GdkWindow         *window,
@@ -130,50 +264,80 @@ gdk_device_get_history  (GdkDevice         *device,
                         GdkTimeCoord    ***events,
                         gint              *n_events)
 {
-  GdkTimeCoord **coords;
-  int i;
+  GdkTimeCoord **coords = NULL;
+  GdkWindow *impl_window;
+  gboolean result = FALSE;
+  int tmp_n_events = 0;
 
-  g_return_val_if_fail (window != NULL, FALSE);
-  g_return_val_if_fail (GDK_IS_WINDOW (window), FALSE);
-  g_return_val_if_fail (events != NULL, FALSE);
-  g_return_val_if_fail (n_events != NULL, FALSE);
+  g_return_val_if_fail (GDK_WINDOW_IS_X11 (window), FALSE);
 
-  *n_events = 0;
-  *events = NULL;
+  impl_window = _gdk_window_get_impl_window (window);
 
   if (GDK_WINDOW_DESTROYED (window))
-    return FALSE;
-    
-  if (GDK_IS_CORE (device))
+    /* Nothing */ ;
+  else if (GDK_IS_CORE (device))
     {
       XTimeCoord *xcoords;
-      
+
       xcoords = XGetMotionEvents (GDK_DRAWABLE_XDISPLAY (window),
-                                 GDK_DRAWABLE_XID (window),
-                                 start, stop, n_events);
+                                 GDK_DRAWABLE_XID (impl_window),
+                                 start, stop, &tmp_n_events);
       if (xcoords)
        {
-         coords = _gdk_device_allocate_history (device, *n_events);
-         for (i=0; i<*n_events; i++)
+         GdkWindowObject *priv = (GdkWindowObject *)window;
+          int i, j;
+
+         coords = _gdk_device_allocate_history (device, tmp_n_events);
+         j = 0;
+
+         for (i = 0; i < tmp_n_events; i++)
            {
-             coords[i]->time = xcoords[i].time;
-             coords[i]->axes[0] = xcoords[i].x;
-             coords[i]->axes[1] = xcoords[i].y;
+             if (impl_coord_in_window (window, xcoords[i].x, xcoords[i].y))
+               {
+                 coords[j]->time = xcoords[i].time;
+                 coords[j]->axes[0] = xcoords[i].x - priv->abs_x;
+                 coords[j]->axes[1] = xcoords[i].y - priv->abs_y;
+                 j++;
+               }
            }
 
          XFree (xcoords);
 
-         *events = coords;
-         return TRUE;
+          /* free the events we allocated too much */
+          for (i = j; i < tmp_n_events; i++)
+            {
+              g_free (coords[i]);
+              coords[i] = NULL;
+            }
+
+          tmp_n_events = j;
+
+          if (tmp_n_events > 0)
+            {
+              result = TRUE;
+            }
+          else
+            {
+              gdk_device_free_history (coords, tmp_n_events);
+              coords = NULL;
+            }
        }
-      else
-       return FALSE;
     }
   else
-    return _gdk_device_get_history (device, window, start, stop, events, n_events);
+    result = _gdk_device_get_history (device, window, start, stop, &coords, &tmp_n_events);
+
+  if (n_events)
+    *n_events = tmp_n_events;
+
+  if (events)
+    *events = coords;
+  else if (coords)
+    gdk_device_free_history (coords, tmp_n_events);
+
+  return result;
 }
 
-GdkTimeCoord ** 
+GdkTimeCoord **
 _gdk_device_allocate_history (GdkDevice *device,
                              gint       n_events)
 {
@@ -187,142 +351,131 @@ _gdk_device_allocate_history (GdkDevice *device,
   return result;
 }
 
-void 
+/**
+ * gdk_device_free_history:
+ * @events: (inout) (transfer none): an array of #GdkTimeCoord.
+ * @n_events: the length of the array.
+ *
+ * Frees an array of #GdkTimeCoord that was returned by gdk_device_get_history().
+ */
+void
 gdk_device_free_history (GdkTimeCoord **events,
                         gint           n_events)
 {
   gint i;
-  
+
   for (i=0; i<n_events; i++)
     g_free (events[i]);
 
   g_free (events);
 }
 
-GdkInputWindow *
-gdk_input_window_find(GdkWindow *window)
+static void
+unset_extension_events (GdkWindow *window)
 {
-  GList *tmp_list;
+  GdkWindowObject *window_private;
+  GdkWindowObject *impl_window;
+  GdkDisplayX11 *display_x11;
+  GdkInputWindow *iw;
 
-  for (tmp_list=gdk_input_windows; tmp_list; tmp_list=tmp_list->next)
-    if (((GdkInputWindow *)(tmp_list->data))->window == window)
-      return (GdkInputWindow *)(tmp_list->data);
+  window_private = (GdkWindowObject*) window;
+  impl_window = (GdkWindowObject *)_gdk_window_get_impl_window (window);
+  iw = impl_window->input_window;
 
-  return NULL;      /* Not found */
-}
+  display_x11 = GDK_DISPLAY_X11 (GDK_WINDOW_DISPLAY (window));
 
-/* FIXME: this routine currently needs to be called between creation
-   and the corresponding configure event (because it doesn't get the
-   root_relative_geometry).  This should work with
-   gtk_window_set_extension_events, but will likely fail in other
-   cases */
+  if (window_private->extension_events != 0)
+    {
+      g_assert (iw != NULL);
+      g_assert (g_list_find (iw->windows, window) != NULL);
+
+      iw->windows = g_list_remove (iw->windows, window);
+      if (iw->windows == NULL)
+       {
+         impl_window->input_window = NULL;
+         display_x11->input_windows = g_list_remove (display_x11->input_windows, iw);
+         g_free (iw);
+       }
+    }
+
+  window_private->extension_events = 0;
+}
 
 void
 gdk_input_set_extension_events (GdkWindow *window, gint mask,
                                GdkExtensionMode mode)
 {
   GdkWindowObject *window_private;
-  GList *tmp_list;
+  GdkWindowObject *impl_window;
   GdkInputWindow *iw;
+  GdkDisplayX11 *display_x11;
+#ifndef XINPUT_NONE
+  GList *tmp_list;
+#endif
 
   g_return_if_fail (window != NULL);
-  g_return_if_fail (GDK_IS_WINDOW (window));
+  g_return_if_fail (GDK_WINDOW_IS_X11 (window));
 
   window_private = (GdkWindowObject*) window;
+  display_x11 = GDK_DISPLAY_X11 (GDK_WINDOW_DISPLAY (window));
   if (GDK_WINDOW_DESTROYED (window))
     return;
 
+  impl_window = (GdkWindowObject *)_gdk_window_get_impl_window (window);
+
+  if (mode == GDK_EXTENSION_EVENTS_ALL && mask != 0)
+    mask |= GDK_ALL_DEVICES_MASK;
+
   if (mode == GDK_EXTENSION_EVENTS_NONE)
     mask = 0;
 
+  iw = impl_window->input_window;
+
   if (mask != 0)
     {
-      iw = g_new(GdkInputWindow,1);
+      if (!iw)
+       {
+         iw = g_new0 (GdkInputWindow,1);
 
-      iw->window = window;
-      iw->mode = mode;
+         iw->impl_window = (GdkWindow *)impl_window;
 
-      iw->obscuring = NULL;
-      iw->num_obscuring = 0;
-      iw->grabbed = FALSE;
+         iw->windows = NULL;
+         iw->grabbed = FALSE;
 
-      gdk_input_windows = g_list_append(gdk_input_windows,iw);
-      window_private->extension_events = mask;
+         display_x11->input_windows = g_list_append (display_x11->input_windows, iw);
+
+#ifndef XINPUT_NONE
+         /* we might not receive ConfigureNotify so get the root_relative_geometry
+          * now, just in case */
+         _gdk_input_get_root_relative_geometry (window, &iw->root_x, &iw->root_y);
+#endif /* !XINPUT_NONE */
+         impl_window->input_window = iw;
+       }
 
-      /* Add enter window events to the event mask */
-      /* FIXME, this is not needed for XINPUT_NONE */
-      gdk_window_set_events (window,
-                            gdk_window_get_events (window) | 
-                            GDK_ENTER_NOTIFY_MASK);
+      if (window_private->extension_events == 0)
+       iw->windows = g_list_append (iw->windows, window);
+      window_private->extension_events = mask;
     }
   else
     {
-      iw = gdk_input_window_find (window);
-      if (iw)
-       {
-         gdk_input_windows = g_list_remove(gdk_input_windows,iw);
-         g_free(iw);
-       }
-
-      window_private->extension_events = 0;
+      unset_extension_events (window);
     }
 
-  for (tmp_list = gdk_input_devices; tmp_list; tmp_list = tmp_list->next)
+#ifndef XINPUT_NONE
+  for (tmp_list = display_x11->input_devices; tmp_list; tmp_list = tmp_list->next)
     {
       GdkDevicePrivate *gdkdev = tmp_list->data;
 
       if (!GDK_IS_CORE (gdkdev))
-       {
-         if (mask != 0 && gdkdev->info.mode != GDK_MODE_DISABLED
-             && (gdkdev->info.has_cursor || mode == GDK_EXTENSION_EVENTS_ALL))
-           _gdk_input_enable_window (window,gdkdev);
-         else
-           _gdk_input_disable_window (window,gdkdev);
-       }
+       _gdk_input_select_events ((GdkWindow *)impl_window, gdkdev);
     }
+#endif /* !XINPUT_NONE */
 }
 
 void
-gdk_input_window_destroy (GdkWindow *window)
+_gdk_input_window_destroy (GdkWindow *window)
 {
-  GdkInputWindow *input_window;
-
-  input_window = gdk_input_window_find (window);
-  g_return_if_fail (input_window != NULL);
-
-  gdk_input_windows = g_list_remove (gdk_input_windows,input_window);
-  g_free(input_window);
-}
-
-void
-gdk_input_exit (void)
-{
-  GList *tmp_list;
-  GdkDevicePrivate *gdkdev;
-
-  for (tmp_list = gdk_input_devices; tmp_list; tmp_list = tmp_list->next)
-    {
-      gdkdev = (GdkDevicePrivate *)(tmp_list->data);
-      if (!GDK_IS_CORE (gdkdev))
-       {
-         gdk_device_set_mode (&gdkdev->info, GDK_MODE_DISABLED);
-
-         g_free(gdkdev->info.name);
-#ifndef XINPUT_NONE      
-         g_free(gdkdev->axes);
-#endif   
-         g_free(gdkdev->info.axes);
-         g_free(gdkdev->info.keys);
-         g_free(gdkdev);
-       }
-    }
-
-  g_list_free(gdk_input_devices);
-
-  for (tmp_list = gdk_input_windows; tmp_list; tmp_list = tmp_list->next)
-    g_free(tmp_list->data);
-
-  g_list_free(gdk_input_windows);
+  unset_extension_events (window);
 }
 
 /**
@@ -331,11 +484,11 @@ gdk_input_exit (void)
  * @axes: pointer to an array of axes
  * @use: the use to look for
  * @value: location to store the found value.
- * 
+ *
  * Interprets an array of double as axis values for a given device,
  * and locates the value in the array for a given axis use.
- * 
- * Return value: %TRUE if the given axis use was found, otherwies %FALSE
+ *
+ * Return value: %TRUE if the given axis use was found, otherwise %FALSE
  **/
 gboolean
 gdk_device_get_axis (GdkDevice  *device,
@@ -344,12 +497,12 @@ gdk_device_get_axis (GdkDevice  *device,
                     gdouble    *value)
 {
   gint i;
-  
+
   g_return_val_if_fail (device != NULL, FALSE);
 
   if (axes == NULL)
     return FALSE;
-  
+
   for (i=0; i<device->num_axes; i++)
     if (device->axes[i].use == use)
       {
@@ -357,6 +510,9 @@ gdk_device_get_axis (GdkDevice  *device,
          *value = axes[i];
        return TRUE;
       }
-  
+
   return FALSE;
 }
+
+#define __GDK_INPUT_C__
+#include "gdkaliasdef.c"