1997-11-24 22:37:52 +00:00
|
|
|
/* GDK - The GIMP Drawing Kit
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
2000-07-26 11:33:08 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1997-11-24 22:37:52 +00:00
|
|
|
* 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
|
2000-07-26 11:33:08 +00:00
|
|
|
* Lesser General Public License for more details.
|
1997-11-24 22:37:52 +00:00
|
|
|
*
|
2000-07-26 11:33:08 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
1998-04-13 02:02:47 +00:00
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
1997-11-24 22:37:52 +00:00
|
|
|
*/
|
1999-02-24 07:37:18 +00:00
|
|
|
|
|
|
|
/*
|
2000-07-26 11:33:08 +00:00
|
|
|
* Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
|
1999-02-24 07:37:18 +00:00
|
|
|
* file for a list of people on the GTK+ Team. See the ChangeLog
|
|
|
|
* files for a list of changes. These files are distributed with
|
2009-05-29 14:39:12 +00:00
|
|
|
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
1999-02-24 07:37:18 +00:00
|
|
|
*/
|
|
|
|
|
2008-06-22 14:28:52 +00:00
|
|
|
#include "config.h"
|
2004-03-06 03:38:59 +00:00
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/Xutil.h>
|
|
|
|
|
1999-10-03 18:09:00 +00:00
|
|
|
#include "gdkx.h"
|
1999-10-01 23:18:30 +00:00
|
|
|
#include "gdkinput.h"
|
|
|
|
#include "gdkprivate.h"
|
|
|
|
#include "gdkinputprivate.h"
|
2002-04-25 22:29:14 +00:00
|
|
|
#include "gdkscreen-x11.h"
|
|
|
|
#include "gdkdisplay-x11.h"
|
2005-03-16 03:17:27 +00:00
|
|
|
#include "gdkalias.h"
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2000-07-03 19:00:23 +00:00
|
|
|
static GdkDeviceAxis gdk_input_core_axes[] = {
|
|
|
|
{ GDK_AXIS_X, 0, 0 },
|
|
|
|
{ GDK_AXIS_Y, 0, 0 }
|
|
|
|
};
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2001-06-30 02:56:50 +00:00
|
|
|
void
|
2002-06-18 23:23:30 +00:00
|
|
|
_gdk_init_input_core (GdkDisplay *display)
|
2001-06-30 02:56:50 +00:00
|
|
|
{
|
2002-06-18 23:37:05 +00:00
|
|
|
GdkDevicePrivate *private;
|
2009-05-29 14:39:12 +00:00
|
|
|
|
2002-06-18 23:23:30 +00:00
|
|
|
display->core_pointer = g_object_new (GDK_TYPE_DEVICE, NULL);
|
2002-06-18 23:37:05 +00:00
|
|
|
private = (GdkDevicePrivate *)display->core_pointer;
|
2009-05-29 14:39:12 +00:00
|
|
|
|
2002-06-18 23:23:30 +00:00
|
|
|
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;
|
2002-06-18 23:37:05 +00:00
|
|
|
|
|
|
|
private->display = display;
|
2001-06-30 02:56:50 +00:00
|
|
|
}
|
|
|
|
|
2008-09-27 00:47:45 +00:00
|
|
|
static void gdk_device_class_init (GdkDeviceClass *klass);
|
2008-11-30 05:33:57 +00:00
|
|
|
static void gdk_device_dispose (GObject *object);
|
2008-09-27 00:47:45 +00:00
|
|
|
|
2008-09-29 10:54:50 +00:00
|
|
|
static gpointer gdk_device_parent_class = NULL;
|
|
|
|
|
2001-06-30 02:56:50 +00:00
|
|
|
GType
|
|
|
|
gdk_device_get_type (void)
|
|
|
|
{
|
|
|
|
static GType object_type = 0;
|
|
|
|
|
|
|
|
if (!object_type)
|
|
|
|
{
|
2009-11-06 00:21:09 +00:00
|
|
|
const GTypeInfo object_info =
|
2006-04-04 14:02:03 +00:00
|
|
|
{
|
|
|
|
sizeof (GdkDeviceClass),
|
|
|
|
(GBaseInitFunc) NULL,
|
|
|
|
(GBaseFinalizeFunc) NULL,
|
2008-09-27 00:47:45 +00:00
|
|
|
(GClassInitFunc) gdk_device_class_init,
|
2006-04-04 14:02:03 +00:00
|
|
|
NULL, /* class_finalize */
|
|
|
|
NULL, /* class_data */
|
|
|
|
sizeof (GdkDevicePrivate),
|
|
|
|
0, /* n_preallocs */
|
|
|
|
(GInstanceInitFunc) NULL,
|
|
|
|
};
|
2009-05-29 14:39:12 +00:00
|
|
|
|
2001-06-30 02:56:50 +00:00
|
|
|
object_type = g_type_register_static (G_TYPE_OBJECT,
|
2009-05-29 14:39:12 +00:00
|
|
|
g_intern_static_string ("GdkDevice"),
|
|
|
|
&object_info, 0);
|
2001-06-30 02:56:50 +00:00
|
|
|
}
|
2009-05-29 14:39:12 +00:00
|
|
|
|
2001-06-30 02:56:50 +00:00
|
|
|
return object_type;
|
|
|
|
}
|
|
|
|
|
2008-09-27 00:47:45 +00:00
|
|
|
static void
|
|
|
|
gdk_device_class_init (GdkDeviceClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
|
2008-09-29 10:54:50 +00:00
|
|
|
gdk_device_parent_class = g_type_class_peek_parent (klass);
|
|
|
|
|
2008-11-30 05:33:57 +00:00
|
|
|
object_class->dispose = gdk_device_dispose;
|
2008-09-27 00:47:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2008-11-30 05:33:57 +00:00
|
|
|
gdk_device_dispose (GObject *object)
|
2008-09-27 00:47:45 +00:00
|
|
|
{
|
2008-11-30 05:33:57 +00:00
|
|
|
GdkDevicePrivate *gdkdev = (GdkDevicePrivate *) object;
|
2008-09-27 00:47:45 +00:00
|
|
|
|
2008-11-30 05:33:57 +00:00
|
|
|
if (gdkdev->display && !GDK_IS_CORE (gdkdev))
|
2008-09-29 10:54:50 +00:00
|
|
|
{
|
2008-09-27 00:47:45 +00:00
|
|
|
#ifndef XINPUT_NONE
|
2008-09-29 10:54:50 +00:00
|
|
|
if (gdkdev->xdevice)
|
2009-05-29 14:39:12 +00:00
|
|
|
{
|
|
|
|
XCloseDevice (GDK_DISPLAY_XDISPLAY (gdkdev->display), gdkdev->xdevice);
|
|
|
|
gdkdev->xdevice = NULL;
|
|
|
|
}
|
2008-09-29 10:54:50 +00:00
|
|
|
g_free (gdkdev->axes);
|
2009-09-29 15:57:50 +00:00
|
|
|
g_free (gdkdev->axis_data);
|
2008-11-30 05:33:57 +00:00
|
|
|
gdkdev->axes = NULL;
|
2009-09-29 15:57:50 +00:00
|
|
|
gdkdev->axis_data = NULL;
|
2008-09-27 00:47:45 +00:00
|
|
|
#endif /* !XINPUT_NONE */
|
|
|
|
|
2008-09-29 10:54:50 +00:00
|
|
|
g_free (gdkdev->info.name);
|
|
|
|
g_free (gdkdev->info.keys);
|
|
|
|
g_free (gdkdev->info.axes);
|
2008-11-30 05:33:57 +00:00
|
|
|
|
|
|
|
gdkdev->info.name = NULL;
|
|
|
|
gdkdev->info.keys = NULL;
|
|
|
|
gdkdev->info.axes = NULL;
|
2008-09-29 10:54:50 +00:00
|
|
|
}
|
|
|
|
|
2008-11-30 05:33:57 +00:00
|
|
|
G_OBJECT_CLASS (gdk_device_parent_class)->dispose (object);
|
2008-09-27 00:47:45 +00:00
|
|
|
}
|
|
|
|
|
2002-04-25 22:29:14 +00:00
|
|
|
/**
|
|
|
|
* gdk_devices_list:
|
|
|
|
*
|
|
|
|
* Returns the list of available input devices for the default display.
|
|
|
|
* The list is statically allocated and should not be freed.
|
2009-05-29 14:39:12 +00:00
|
|
|
*
|
2010-09-17 13:47:47 +00:00
|
|
|
* Return value: (transfer none) (element-type GdkDevice): a list of #GdkDevice
|
2002-04-25 22:29:14 +00:00
|
|
|
**/
|
1997-11-24 22:37:52 +00:00
|
|
|
GList *
|
2000-07-03 19:00:23 +00:00
|
|
|
gdk_devices_list (void)
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
2002-06-20 23:59:27 +00:00
|
|
|
return gdk_display_list_devices (gdk_display_get_default ());
|
2002-04-25 22:29:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_display_list_devices:
|
2002-11-28 00:33:17 +00:00
|
|
|
* @display: a #GdkDisplay
|
2002-04-25 22:29:14 +00:00
|
|
|
*
|
|
|
|
* Returns the list of available input devices attached to @display.
|
|
|
|
* The list is statically allocated and should not be freed.
|
2009-05-29 14:39:12 +00:00
|
|
|
*
|
2002-04-25 22:29:14 +00:00
|
|
|
* Return value: a list of #GdkDevice
|
2002-11-28 00:33:17 +00:00
|
|
|
*
|
|
|
|
* Since: 2.2
|
2002-04-25 22:29:14 +00:00
|
|
|
**/
|
2009-05-29 14:39:12 +00:00
|
|
|
GList *
|
2002-04-25 22:29:14 +00:00
|
|
|
gdk_display_list_devices (GdkDisplay *display)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_DISPLAY (display), NULL);
|
2009-05-29 14:39:12 +00:00
|
|
|
|
2002-04-25 22:29:14 +00:00
|
|
|
return GDK_DISPLAY_X11 (display)->input_devices;
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
2010-05-27 14:11:25 +00:00
|
|
|
/**
|
|
|
|
* gdk_device_get_name:
|
|
|
|
* @device: a #GdkDevice
|
|
|
|
*
|
|
|
|
* Determines the name of the device.
|
|
|
|
*
|
|
|
|
* Return value: a name
|
|
|
|
*
|
|
|
|
* Since: 2.22
|
|
|
|
**/
|
|
|
|
const gchar *
|
|
|
|
gdk_device_get_name (GdkDevice *device)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_DEVICE (device), NULL);
|
|
|
|
|
|
|
|
return device->name;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_device_get_source:
|
|
|
|
* @device: a #GdkDevice
|
|
|
|
*
|
|
|
|
* Determines the type of the device.
|
|
|
|
*
|
|
|
|
* Return value: a #GdkInputSource
|
|
|
|
*
|
|
|
|
* Since: 2.22
|
|
|
|
**/
|
|
|
|
GdkInputSource
|
|
|
|
gdk_device_get_source (GdkDevice *device)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_DEVICE (device), 0);
|
|
|
|
|
|
|
|
return device->source;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_device_get_mode:
|
|
|
|
* @device: a #GdkDevice
|
|
|
|
*
|
|
|
|
* Determines the mode of the device.
|
|
|
|
*
|
|
|
|
* Return value: a #GdkInputSource
|
|
|
|
*
|
|
|
|
* Since: 2.22
|
|
|
|
**/
|
|
|
|
GdkInputMode
|
|
|
|
gdk_device_get_mode (GdkDevice *device)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_DEVICE (device), 0);
|
|
|
|
|
|
|
|
return device->mode;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_device_get_has_cursor:
|
|
|
|
* @device: a #GdkDevice
|
|
|
|
*
|
|
|
|
* Determines whether the pointer follows device motion.
|
|
|
|
*
|
|
|
|
* Return value: %TRUE if the pointer follows device motion
|
|
|
|
*
|
|
|
|
* Since: 2.22
|
|
|
|
**/
|
|
|
|
gboolean
|
|
|
|
gdk_device_get_has_cursor (GdkDevice *device)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_DEVICE (device), FALSE);
|
|
|
|
|
|
|
|
return device->has_cursor;
|
|
|
|
}
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
void
|
2000-07-03 19:00:23 +00:00
|
|
|
gdk_device_set_source (GdkDevice *device,
|
|
|
|
GdkInputSource source)
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
2000-07-03 19:00:23 +00:00
|
|
|
g_return_if_fail (device != NULL);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2000-07-03 19:00:23 +00:00
|
|
|
device->source = source;
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
2010-05-27 14:11:25 +00:00
|
|
|
/**
|
|
|
|
* gdk_device_get_key:
|
|
|
|
* @device: a #GdkDevice.
|
|
|
|
* @index: the index of the macro button to get.
|
|
|
|
* @keyval: return value for the keyval.
|
|
|
|
* @modifiers: return value for modifiers.
|
|
|
|
*
|
|
|
|
* If @index has a valid keyval, this function will
|
|
|
|
* fill in @keyval and @modifiers with the keyval settings.
|
|
|
|
*
|
|
|
|
* Since: 2.22
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_device_get_key (GdkDevice *device,
|
|
|
|
guint index,
|
|
|
|
guint *keyval,
|
|
|
|
GdkModifierType *modifiers)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GDK_IS_DEVICE (device));
|
|
|
|
g_return_if_fail (index < device->num_keys);
|
|
|
|
|
|
|
|
if (!device->keys[index].keyval &&
|
|
|
|
!device->keys[index].modifiers)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (keyval)
|
|
|
|
*keyval = device->keys[index].keyval;
|
|
|
|
|
|
|
|
if (modifiers)
|
|
|
|
*modifiers = device->keys[index].modifiers;
|
|
|
|
}
|
|
|
|
|
2000-07-03 19:00:23 +00:00
|
|
|
void
|
|
|
|
gdk_device_set_key (GdkDevice *device,
|
|
|
|
guint index,
|
|
|
|
guint keyval,
|
|
|
|
GdkModifierType modifiers)
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
2000-07-03 19:00:23 +00:00
|
|
|
g_return_if_fail (device != NULL);
|
|
|
|
g_return_if_fail (index < device->num_keys);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2000-07-03 19:00:23 +00:00
|
|
|
device->keys[index].keyval = keyval;
|
|
|
|
device->keys[index].modifiers = modifiers;
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
2010-05-27 14:11:25 +00:00
|
|
|
/**
|
|
|
|
* gdk_device_get_axis_use:
|
|
|
|
* @device: a #GdkDevice.
|
|
|
|
* @index: the index of the axis.
|
|
|
|
*
|
|
|
|
* Returns the axis use for @index.
|
|
|
|
*
|
|
|
|
* Returns: a #GdkAxisUse specifying how the axis is used.
|
|
|
|
*
|
|
|
|
* Since: 2.22
|
|
|
|
**/
|
|
|
|
GdkAxisUse
|
|
|
|
gdk_device_get_axis_use (GdkDevice *device,
|
|
|
|
guint index)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_DEVICE (device), GDK_AXIS_IGNORE);
|
|
|
|
g_return_val_if_fail (index < device->num_axes, GDK_AXIS_IGNORE);
|
|
|
|
|
|
|
|
return device->axes[index].use;
|
|
|
|
}
|
|
|
|
|
2010-11-24 19:15:29 +00:00
|
|
|
/**
|
|
|
|
* gdk_device_get_n_keys:
|
|
|
|
* @device: a #GdkDevice.
|
|
|
|
*
|
|
|
|
* Gets the number of keys of a device.
|
|
|
|
*
|
|
|
|
* Returns: the number of keys of @device
|
|
|
|
*
|
|
|
|
* Since: 2.24
|
|
|
|
**/
|
|
|
|
gint
|
|
|
|
gdk_device_get_n_keys (GdkDevice *device)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_DEVICE (device), 0);
|
|
|
|
|
|
|
|
return device->num_keys;
|
|
|
|
}
|
|
|
|
|
2010-07-14 09:57:34 +00:00
|
|
|
/**
|
|
|
|
* gdk_device_get_n_axes:
|
|
|
|
* @device: a #GdkDevice.
|
|
|
|
*
|
2010-08-16 21:38:23 +00:00
|
|
|
* Gets the number of axes of a device.
|
|
|
|
*
|
|
|
|
* Returns: the number of axes of @device
|
2010-07-14 09:57:34 +00:00
|
|
|
*
|
|
|
|
* Since: 2.22
|
|
|
|
**/
|
|
|
|
gint
|
|
|
|
gdk_device_get_n_axes (GdkDevice *device)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_DEVICE (device), 0);
|
|
|
|
|
|
|
|
return device->num_axes;
|
|
|
|
}
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
void
|
2000-07-03 19:00:23 +00:00
|
|
|
gdk_device_set_axis_use (GdkDevice *device,
|
|
|
|
guint index,
|
|
|
|
GdkAxisUse use)
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
2000-07-03 19:00:23 +00:00
|
|
|
g_return_if_fail (device != NULL);
|
|
|
|
g_return_if_fail (index < device->num_axes);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2000-07-03 19:00:23 +00:00
|
|
|
device->axes[index].use = use;
|
|
|
|
|
|
|
|
switch (use)
|
|
|
|
{
|
|
|
|
case GDK_AXIS_X:
|
|
|
|
case GDK_AXIS_Y:
|
|
|
|
device->axes[index].min = 0.;
|
|
|
|
device->axes[index].max = 0.;
|
|
|
|
break;
|
|
|
|
case GDK_AXIS_XTILT:
|
|
|
|
case GDK_AXIS_YTILT:
|
|
|
|
device->axes[index].min = -1.;
|
|
|
|
device->axes[index].max = 1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
device->axes[index].min = 0.;
|
|
|
|
device->axes[index].max = 1;
|
|
|
|
break;
|
|
|
|
}
|
1997-12-18 02:17:14 +00:00
|
|
|
}
|
|
|
|
|
2009-05-29 14:39:12 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
Start implementing display/screen closing scheme; keep a flag for whether
Thu Aug 1 11:26:03 2002 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdisplay.[ch] gdk/gdkscreen.[ch] gdkinternals.h:
Start implementing display/screen closing scheme; keep a
flag for whether displays and screens are closed,
call g_object_run_dispose(). Remove public gdk_screen_close().
* gdk/x11/gdkdisplay-x11.c gdk/x11/gdkscreen-x11.c: Add
dispose() methods; move appropriate parts of the finalize
there.
* gdk/x11/gdkcolor-x11.c gdk/x11/gdkimage-x11.c
gdk/x11/gdkmain-x11.c gdk/x11/gdkpango-x11.c
gdk/x11/gdkpixmap-x11.c gdk/x11/gdkproperty-x11.c
gdk/x11/gdkselection-x11.c gdk/x11/gdkwindow-x11.c:
Start of making everything correctly ignore operations
when a display has been closed.
* gdk/x11/gdkwindow-x11.c (gdk_window_get_decorations):
Handle decorations == NULL.
* gdk/x11/gdkcolor-x11.c (gdk_colormap_remove):
Remove unnecessary hash table creation.
* gdk/x11/gdkinput.c gdk/x11/gdkinput-x11.c gdk/win32/gdkinput.c
Fix up gdk_device_get_history - handle events, n_events == NULL,
etc.
* gdk/x11/gdkproperty-x11.c (gdk_property_get):
Handle failure better.
* gdk/x11/gdkselection-x11.c (gdk_selection_property_get):
Handle failure better, handle data == NULL, move docs
here, remove an excess round trip by asking for
all selection data at once.
* gdk/gdkselection.c gdk/win32/{x11,win32}/gdkselection-{x11,win32}.c
gdk/{x11,win32}/gdkmain-{x11,win32}.c gdk/gdkdisplay.c: Move
gdk_text_property_to_text_list(), gdk_string_to_compound_text(),
gdk_display_set_sm_client_id() to display-independent part of GDK.
* gdk/Makefile.am (gdk_c_sources): Sort gdkdisplay/screen.[ch]
into the right place.
2002-08-01 15:28:40 +00:00
|
|
|
/**
|
|
|
|
* 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
|
2009-08-18 18:35:10 +00:00
|
|
|
* @events: (array length=n_events) (out) (transfer none): location to store a newly-allocated array of #GdkTimeCoord, or %NULL
|
Start implementing display/screen closing scheme; keep a flag for whether
Thu Aug 1 11:26:03 2002 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdisplay.[ch] gdk/gdkscreen.[ch] gdkinternals.h:
Start implementing display/screen closing scheme; keep a
flag for whether displays and screens are closed,
call g_object_run_dispose(). Remove public gdk_screen_close().
* gdk/x11/gdkdisplay-x11.c gdk/x11/gdkscreen-x11.c: Add
dispose() methods; move appropriate parts of the finalize
there.
* gdk/x11/gdkcolor-x11.c gdk/x11/gdkimage-x11.c
gdk/x11/gdkmain-x11.c gdk/x11/gdkpango-x11.c
gdk/x11/gdkpixmap-x11.c gdk/x11/gdkproperty-x11.c
gdk/x11/gdkselection-x11.c gdk/x11/gdkwindow-x11.c:
Start of making everything correctly ignore operations
when a display has been closed.
* gdk/x11/gdkwindow-x11.c (gdk_window_get_decorations):
Handle decorations == NULL.
* gdk/x11/gdkcolor-x11.c (gdk_colormap_remove):
Remove unnecessary hash table creation.
* gdk/x11/gdkinput.c gdk/x11/gdkinput-x11.c gdk/win32/gdkinput.c
Fix up gdk_device_get_history - handle events, n_events == NULL,
etc.
* gdk/x11/gdkproperty-x11.c (gdk_property_get):
Handle failure better.
* gdk/x11/gdkselection-x11.c (gdk_selection_property_get):
Handle failure better, handle data == NULL, move docs
here, remove an excess round trip by asking for
all selection data at once.
* gdk/gdkselection.c gdk/win32/{x11,win32}/gdkselection-{x11,win32}.c
gdk/{x11,win32}/gdkmain-{x11,win32}.c gdk/gdkdisplay.c: Move
gdk_text_property_to_text_list(), gdk_string_to_compound_text(),
gdk_display_set_sm_client_id() to display-independent part of GDK.
* gdk/Makefile.am (gdk_c_sources): Sort gdkdisplay/screen.[ch]
into the right place.
2002-08-01 15:28:40 +00:00
|
|
|
* @n_events: location to store the length of @events, or %NULL
|
2009-05-29 14:39:12 +00:00
|
|
|
*
|
Start implementing display/screen closing scheme; keep a flag for whether
Thu Aug 1 11:26:03 2002 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdisplay.[ch] gdk/gdkscreen.[ch] gdkinternals.h:
Start implementing display/screen closing scheme; keep a
flag for whether displays and screens are closed,
call g_object_run_dispose(). Remove public gdk_screen_close().
* gdk/x11/gdkdisplay-x11.c gdk/x11/gdkscreen-x11.c: Add
dispose() methods; move appropriate parts of the finalize
there.
* gdk/x11/gdkcolor-x11.c gdk/x11/gdkimage-x11.c
gdk/x11/gdkmain-x11.c gdk/x11/gdkpango-x11.c
gdk/x11/gdkpixmap-x11.c gdk/x11/gdkproperty-x11.c
gdk/x11/gdkselection-x11.c gdk/x11/gdkwindow-x11.c:
Start of making everything correctly ignore operations
when a display has been closed.
* gdk/x11/gdkwindow-x11.c (gdk_window_get_decorations):
Handle decorations == NULL.
* gdk/x11/gdkcolor-x11.c (gdk_colormap_remove):
Remove unnecessary hash table creation.
* gdk/x11/gdkinput.c gdk/x11/gdkinput-x11.c gdk/win32/gdkinput.c
Fix up gdk_device_get_history - handle events, n_events == NULL,
etc.
* gdk/x11/gdkproperty-x11.c (gdk_property_get):
Handle failure better.
* gdk/x11/gdkselection-x11.c (gdk_selection_property_get):
Handle failure better, handle data == NULL, move docs
here, remove an excess round trip by asking for
all selection data at once.
* gdk/gdkselection.c gdk/win32/{x11,win32}/gdkselection-{x11,win32}.c
gdk/{x11,win32}/gdkmain-{x11,win32}.c gdk/gdkdisplay.c: Move
gdk_text_property_to_text_list(), gdk_string_to_compound_text(),
gdk_display_set_sm_client_id() to display-independent part of GDK.
* gdk/Makefile.am (gdk_c_sources): Sort gdkdisplay/screen.[ch]
into the right place.
2002-08-01 15:28:40 +00:00
|
|
|
* 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.)
|
2009-05-29 14:39:12 +00:00
|
|
|
*
|
Start implementing display/screen closing scheme; keep a flag for whether
Thu Aug 1 11:26:03 2002 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdisplay.[ch] gdk/gdkscreen.[ch] gdkinternals.h:
Start implementing display/screen closing scheme; keep a
flag for whether displays and screens are closed,
call g_object_run_dispose(). Remove public gdk_screen_close().
* gdk/x11/gdkdisplay-x11.c gdk/x11/gdkscreen-x11.c: Add
dispose() methods; move appropriate parts of the finalize
there.
* gdk/x11/gdkcolor-x11.c gdk/x11/gdkimage-x11.c
gdk/x11/gdkmain-x11.c gdk/x11/gdkpango-x11.c
gdk/x11/gdkpixmap-x11.c gdk/x11/gdkproperty-x11.c
gdk/x11/gdkselection-x11.c gdk/x11/gdkwindow-x11.c:
Start of making everything correctly ignore operations
when a display has been closed.
* gdk/x11/gdkwindow-x11.c (gdk_window_get_decorations):
Handle decorations == NULL.
* gdk/x11/gdkcolor-x11.c (gdk_colormap_remove):
Remove unnecessary hash table creation.
* gdk/x11/gdkinput.c gdk/x11/gdkinput-x11.c gdk/win32/gdkinput.c
Fix up gdk_device_get_history - handle events, n_events == NULL,
etc.
* gdk/x11/gdkproperty-x11.c (gdk_property_get):
Handle failure better.
* gdk/x11/gdkselection-x11.c (gdk_selection_property_get):
Handle failure better, handle data == NULL, move docs
here, remove an excess round trip by asking for
all selection data at once.
* gdk/gdkselection.c gdk/win32/{x11,win32}/gdkselection-{x11,win32}.c
gdk/{x11,win32}/gdkmain-{x11,win32}.c gdk/gdkdisplay.c: Move
gdk_text_property_to_text_list(), gdk_string_to_compound_text(),
gdk_display_set_sm_client_id() to display-independent part of GDK.
* gdk/Makefile.am (gdk_c_sources): Sort gdkdisplay/screen.[ch]
into the right place.
2002-08-01 15:28:40 +00:00
|
|
|
* Return value: %TRUE if the windowing system supports motion history and
|
|
|
|
* at least one event was found.
|
|
|
|
**/
|
2000-07-03 19:00:23 +00:00
|
|
|
gboolean
|
|
|
|
gdk_device_get_history (GdkDevice *device,
|
|
|
|
GdkWindow *window,
|
|
|
|
guint32 start,
|
|
|
|
guint32 stop,
|
|
|
|
GdkTimeCoord ***events,
|
|
|
|
gint *n_events)
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
Start implementing display/screen closing scheme; keep a flag for whether
Thu Aug 1 11:26:03 2002 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdisplay.[ch] gdk/gdkscreen.[ch] gdkinternals.h:
Start implementing display/screen closing scheme; keep a
flag for whether displays and screens are closed,
call g_object_run_dispose(). Remove public gdk_screen_close().
* gdk/x11/gdkdisplay-x11.c gdk/x11/gdkscreen-x11.c: Add
dispose() methods; move appropriate parts of the finalize
there.
* gdk/x11/gdkcolor-x11.c gdk/x11/gdkimage-x11.c
gdk/x11/gdkmain-x11.c gdk/x11/gdkpango-x11.c
gdk/x11/gdkpixmap-x11.c gdk/x11/gdkproperty-x11.c
gdk/x11/gdkselection-x11.c gdk/x11/gdkwindow-x11.c:
Start of making everything correctly ignore operations
when a display has been closed.
* gdk/x11/gdkwindow-x11.c (gdk_window_get_decorations):
Handle decorations == NULL.
* gdk/x11/gdkcolor-x11.c (gdk_colormap_remove):
Remove unnecessary hash table creation.
* gdk/x11/gdkinput.c gdk/x11/gdkinput-x11.c gdk/win32/gdkinput.c
Fix up gdk_device_get_history - handle events, n_events == NULL,
etc.
* gdk/x11/gdkproperty-x11.c (gdk_property_get):
Handle failure better.
* gdk/x11/gdkselection-x11.c (gdk_selection_property_get):
Handle failure better, handle data == NULL, move docs
here, remove an excess round trip by asking for
all selection data at once.
* gdk/gdkselection.c gdk/win32/{x11,win32}/gdkselection-{x11,win32}.c
gdk/{x11,win32}/gdkmain-{x11,win32}.c gdk/gdkdisplay.c: Move
gdk_text_property_to_text_list(), gdk_string_to_compound_text(),
gdk_display_set_sm_client_id() to display-independent part of GDK.
* gdk/Makefile.am (gdk_c_sources): Sort gdkdisplay/screen.[ch]
into the right place.
2002-08-01 15:28:40 +00:00
|
|
|
GdkTimeCoord **coords = NULL;
|
2009-05-29 14:39:12 +00:00
|
|
|
GdkWindow *impl_window;
|
Start implementing display/screen closing scheme; keep a flag for whether
Thu Aug 1 11:26:03 2002 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdisplay.[ch] gdk/gdkscreen.[ch] gdkinternals.h:
Start implementing display/screen closing scheme; keep a
flag for whether displays and screens are closed,
call g_object_run_dispose(). Remove public gdk_screen_close().
* gdk/x11/gdkdisplay-x11.c gdk/x11/gdkscreen-x11.c: Add
dispose() methods; move appropriate parts of the finalize
there.
* gdk/x11/gdkcolor-x11.c gdk/x11/gdkimage-x11.c
gdk/x11/gdkmain-x11.c gdk/x11/gdkpango-x11.c
gdk/x11/gdkpixmap-x11.c gdk/x11/gdkproperty-x11.c
gdk/x11/gdkselection-x11.c gdk/x11/gdkwindow-x11.c:
Start of making everything correctly ignore operations
when a display has been closed.
* gdk/x11/gdkwindow-x11.c (gdk_window_get_decorations):
Handle decorations == NULL.
* gdk/x11/gdkcolor-x11.c (gdk_colormap_remove):
Remove unnecessary hash table creation.
* gdk/x11/gdkinput.c gdk/x11/gdkinput-x11.c gdk/win32/gdkinput.c
Fix up gdk_device_get_history - handle events, n_events == NULL,
etc.
* gdk/x11/gdkproperty-x11.c (gdk_property_get):
Handle failure better.
* gdk/x11/gdkselection-x11.c (gdk_selection_property_get):
Handle failure better, handle data == NULL, move docs
here, remove an excess round trip by asking for
all selection data at once.
* gdk/gdkselection.c gdk/win32/{x11,win32}/gdkselection-{x11,win32}.c
gdk/{x11,win32}/gdkmain-{x11,win32}.c gdk/gdkdisplay.c: Move
gdk_text_property_to_text_list(), gdk_string_to_compound_text(),
gdk_display_set_sm_client_id() to display-independent part of GDK.
* gdk/Makefile.am (gdk_c_sources): Sort gdkdisplay/screen.[ch]
into the right place.
2002-08-01 15:28:40 +00:00
|
|
|
gboolean result = FALSE;
|
|
|
|
int tmp_n_events = 0;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
g_return_val_if_fail (GDK_WINDOW_IS_X11 (window), FALSE);
|
1998-01-26 01:20:14 +00:00
|
|
|
|
2009-05-29 14:39:12 +00:00
|
|
|
impl_window = _gdk_window_get_impl_window (window);
|
|
|
|
|
2000-07-03 19:00:23 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window))
|
Start implementing display/screen closing scheme; keep a flag for whether
Thu Aug 1 11:26:03 2002 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdisplay.[ch] gdk/gdkscreen.[ch] gdkinternals.h:
Start implementing display/screen closing scheme; keep a
flag for whether displays and screens are closed,
call g_object_run_dispose(). Remove public gdk_screen_close().
* gdk/x11/gdkdisplay-x11.c gdk/x11/gdkscreen-x11.c: Add
dispose() methods; move appropriate parts of the finalize
there.
* gdk/x11/gdkcolor-x11.c gdk/x11/gdkimage-x11.c
gdk/x11/gdkmain-x11.c gdk/x11/gdkpango-x11.c
gdk/x11/gdkpixmap-x11.c gdk/x11/gdkproperty-x11.c
gdk/x11/gdkselection-x11.c gdk/x11/gdkwindow-x11.c:
Start of making everything correctly ignore operations
when a display has been closed.
* gdk/x11/gdkwindow-x11.c (gdk_window_get_decorations):
Handle decorations == NULL.
* gdk/x11/gdkcolor-x11.c (gdk_colormap_remove):
Remove unnecessary hash table creation.
* gdk/x11/gdkinput.c gdk/x11/gdkinput-x11.c gdk/win32/gdkinput.c
Fix up gdk_device_get_history - handle events, n_events == NULL,
etc.
* gdk/x11/gdkproperty-x11.c (gdk_property_get):
Handle failure better.
* gdk/x11/gdkselection-x11.c (gdk_selection_property_get):
Handle failure better, handle data == NULL, move docs
here, remove an excess round trip by asking for
all selection data at once.
* gdk/gdkselection.c gdk/win32/{x11,win32}/gdkselection-{x11,win32}.c
gdk/{x11,win32}/gdkmain-{x11,win32}.c gdk/gdkdisplay.c: Move
gdk_text_property_to_text_list(), gdk_string_to_compound_text(),
gdk_display_set_sm_client_id() to display-independent part of GDK.
* gdk/Makefile.am (gdk_c_sources): Sort gdkdisplay/screen.[ch]
into the right place.
2002-08-01 15:28:40 +00:00
|
|
|
/* Nothing */ ;
|
|
|
|
else if (GDK_IS_CORE (device))
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
2000-07-03 19:00:23 +00:00
|
|
|
XTimeCoord *xcoords;
|
2009-05-29 14:39:12 +00:00
|
|
|
|
1999-10-03 22:12:41 +00:00
|
|
|
xcoords = XGetMotionEvents (GDK_DRAWABLE_XDISPLAY (window),
|
2009-05-29 14:39:12 +00:00
|
|
|
GDK_DRAWABLE_XID (impl_window),
|
Start implementing display/screen closing scheme; keep a flag for whether
Thu Aug 1 11:26:03 2002 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdisplay.[ch] gdk/gdkscreen.[ch] gdkinternals.h:
Start implementing display/screen closing scheme; keep a
flag for whether displays and screens are closed,
call g_object_run_dispose(). Remove public gdk_screen_close().
* gdk/x11/gdkdisplay-x11.c gdk/x11/gdkscreen-x11.c: Add
dispose() methods; move appropriate parts of the finalize
there.
* gdk/x11/gdkcolor-x11.c gdk/x11/gdkimage-x11.c
gdk/x11/gdkmain-x11.c gdk/x11/gdkpango-x11.c
gdk/x11/gdkpixmap-x11.c gdk/x11/gdkproperty-x11.c
gdk/x11/gdkselection-x11.c gdk/x11/gdkwindow-x11.c:
Start of making everything correctly ignore operations
when a display has been closed.
* gdk/x11/gdkwindow-x11.c (gdk_window_get_decorations):
Handle decorations == NULL.
* gdk/x11/gdkcolor-x11.c (gdk_colormap_remove):
Remove unnecessary hash table creation.
* gdk/x11/gdkinput.c gdk/x11/gdkinput-x11.c gdk/win32/gdkinput.c
Fix up gdk_device_get_history - handle events, n_events == NULL,
etc.
* gdk/x11/gdkproperty-x11.c (gdk_property_get):
Handle failure better.
* gdk/x11/gdkselection-x11.c (gdk_selection_property_get):
Handle failure better, handle data == NULL, move docs
here, remove an excess round trip by asking for
all selection data at once.
* gdk/gdkselection.c gdk/win32/{x11,win32}/gdkselection-{x11,win32}.c
gdk/{x11,win32}/gdkmain-{x11,win32}.c gdk/gdkdisplay.c: Move
gdk_text_property_to_text_list(), gdk_string_to_compound_text(),
gdk_display_set_sm_client_id() to display-independent part of GDK.
* gdk/Makefile.am (gdk_c_sources): Sort gdkdisplay/screen.[ch]
into the right place.
2002-08-01 15:28:40 +00:00
|
|
|
start, stop, &tmp_n_events);
|
1997-11-24 22:37:52 +00:00
|
|
|
if (xcoords)
|
|
|
|
{
|
2009-05-29 14:39:12 +00:00
|
|
|
GdkWindowObject *priv = (GdkWindowObject *)window;
|
2009-09-17 09:38:14 +00:00
|
|
|
int i, j;
|
|
|
|
|
Start implementing display/screen closing scheme; keep a flag for whether
Thu Aug 1 11:26:03 2002 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdisplay.[ch] gdk/gdkscreen.[ch] gdkinternals.h:
Start implementing display/screen closing scheme; keep a
flag for whether displays and screens are closed,
call g_object_run_dispose(). Remove public gdk_screen_close().
* gdk/x11/gdkdisplay-x11.c gdk/x11/gdkscreen-x11.c: Add
dispose() methods; move appropriate parts of the finalize
there.
* gdk/x11/gdkcolor-x11.c gdk/x11/gdkimage-x11.c
gdk/x11/gdkmain-x11.c gdk/x11/gdkpango-x11.c
gdk/x11/gdkpixmap-x11.c gdk/x11/gdkproperty-x11.c
gdk/x11/gdkselection-x11.c gdk/x11/gdkwindow-x11.c:
Start of making everything correctly ignore operations
when a display has been closed.
* gdk/x11/gdkwindow-x11.c (gdk_window_get_decorations):
Handle decorations == NULL.
* gdk/x11/gdkcolor-x11.c (gdk_colormap_remove):
Remove unnecessary hash table creation.
* gdk/x11/gdkinput.c gdk/x11/gdkinput-x11.c gdk/win32/gdkinput.c
Fix up gdk_device_get_history - handle events, n_events == NULL,
etc.
* gdk/x11/gdkproperty-x11.c (gdk_property_get):
Handle failure better.
* gdk/x11/gdkselection-x11.c (gdk_selection_property_get):
Handle failure better, handle data == NULL, move docs
here, remove an excess round trip by asking for
all selection data at once.
* gdk/gdkselection.c gdk/win32/{x11,win32}/gdkselection-{x11,win32}.c
gdk/{x11,win32}/gdkmain-{x11,win32}.c gdk/gdkdisplay.c: Move
gdk_text_property_to_text_list(), gdk_string_to_compound_text(),
gdk_display_set_sm_client_id() to display-independent part of GDK.
* gdk/Makefile.am (gdk_c_sources): Sort gdkdisplay/screen.[ch]
into the right place.
2002-08-01 15:28:40 +00:00
|
|
|
coords = _gdk_device_allocate_history (device, tmp_n_events);
|
2009-05-29 14:39:12 +00:00
|
|
|
j = 0;
|
2009-09-17 09:38:14 +00:00
|
|
|
|
|
|
|
for (i = 0; i < tmp_n_events; i++)
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
2009-05-29 14:39:12 +00:00
|
|
|
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++;
|
|
|
|
}
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
1998-07-04 15:31:30 +00:00
|
|
|
XFree (xcoords);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2009-09-17 09:38:14 +00:00
|
|
|
/* 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;
|
|
|
|
}
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
Start implementing display/screen closing scheme; keep a flag for whether
Thu Aug 1 11:26:03 2002 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdisplay.[ch] gdk/gdkscreen.[ch] gdkinternals.h:
Start implementing display/screen closing scheme; keep a
flag for whether displays and screens are closed,
call g_object_run_dispose(). Remove public gdk_screen_close().
* gdk/x11/gdkdisplay-x11.c gdk/x11/gdkscreen-x11.c: Add
dispose() methods; move appropriate parts of the finalize
there.
* gdk/x11/gdkcolor-x11.c gdk/x11/gdkimage-x11.c
gdk/x11/gdkmain-x11.c gdk/x11/gdkpango-x11.c
gdk/x11/gdkpixmap-x11.c gdk/x11/gdkproperty-x11.c
gdk/x11/gdkselection-x11.c gdk/x11/gdkwindow-x11.c:
Start of making everything correctly ignore operations
when a display has been closed.
* gdk/x11/gdkwindow-x11.c (gdk_window_get_decorations):
Handle decorations == NULL.
* gdk/x11/gdkcolor-x11.c (gdk_colormap_remove):
Remove unnecessary hash table creation.
* gdk/x11/gdkinput.c gdk/x11/gdkinput-x11.c gdk/win32/gdkinput.c
Fix up gdk_device_get_history - handle events, n_events == NULL,
etc.
* gdk/x11/gdkproperty-x11.c (gdk_property_get):
Handle failure better.
* gdk/x11/gdkselection-x11.c (gdk_selection_property_get):
Handle failure better, handle data == NULL, move docs
here, remove an excess round trip by asking for
all selection data at once.
* gdk/gdkselection.c gdk/win32/{x11,win32}/gdkselection-{x11,win32}.c
gdk/{x11,win32}/gdkmain-{x11,win32}.c gdk/gdkdisplay.c: Move
gdk_text_property_to_text_list(), gdk_string_to_compound_text(),
gdk_display_set_sm_client_id() to display-independent part of GDK.
* gdk/Makefile.am (gdk_c_sources): Sort gdkdisplay/screen.[ch]
into the right place.
2002-08-01 15:28:40 +00:00
|
|
|
result = _gdk_device_get_history (device, window, start, stop, &coords, &tmp_n_events);
|
|
|
|
|
|
|
|
if (n_events)
|
|
|
|
*n_events = tmp_n_events;
|
2009-09-17 09:38:14 +00:00
|
|
|
|
Start implementing display/screen closing scheme; keep a flag for whether
Thu Aug 1 11:26:03 2002 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdisplay.[ch] gdk/gdkscreen.[ch] gdkinternals.h:
Start implementing display/screen closing scheme; keep a
flag for whether displays and screens are closed,
call g_object_run_dispose(). Remove public gdk_screen_close().
* gdk/x11/gdkdisplay-x11.c gdk/x11/gdkscreen-x11.c: Add
dispose() methods; move appropriate parts of the finalize
there.
* gdk/x11/gdkcolor-x11.c gdk/x11/gdkimage-x11.c
gdk/x11/gdkmain-x11.c gdk/x11/gdkpango-x11.c
gdk/x11/gdkpixmap-x11.c gdk/x11/gdkproperty-x11.c
gdk/x11/gdkselection-x11.c gdk/x11/gdkwindow-x11.c:
Start of making everything correctly ignore operations
when a display has been closed.
* gdk/x11/gdkwindow-x11.c (gdk_window_get_decorations):
Handle decorations == NULL.
* gdk/x11/gdkcolor-x11.c (gdk_colormap_remove):
Remove unnecessary hash table creation.
* gdk/x11/gdkinput.c gdk/x11/gdkinput-x11.c gdk/win32/gdkinput.c
Fix up gdk_device_get_history - handle events, n_events == NULL,
etc.
* gdk/x11/gdkproperty-x11.c (gdk_property_get):
Handle failure better.
* gdk/x11/gdkselection-x11.c (gdk_selection_property_get):
Handle failure better, handle data == NULL, move docs
here, remove an excess round trip by asking for
all selection data at once.
* gdk/gdkselection.c gdk/win32/{x11,win32}/gdkselection-{x11,win32}.c
gdk/{x11,win32}/gdkmain-{x11,win32}.c gdk/gdkdisplay.c: Move
gdk_text_property_to_text_list(), gdk_string_to_compound_text(),
gdk_display_set_sm_client_id() to display-independent part of GDK.
* gdk/Makefile.am (gdk_c_sources): Sort gdkdisplay/screen.[ch]
into the right place.
2002-08-01 15:28:40 +00:00
|
|
|
if (events)
|
|
|
|
*events = coords;
|
|
|
|
else if (coords)
|
|
|
|
gdk_device_free_history (coords, tmp_n_events);
|
|
|
|
|
|
|
|
return result;
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
2009-05-29 14:39:12 +00:00
|
|
|
GdkTimeCoord **
|
2000-07-03 19:00:23 +00:00
|
|
|
_gdk_device_allocate_history (GdkDevice *device,
|
|
|
|
gint n_events)
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
2000-07-03 19:00:23 +00:00
|
|
|
GdkTimeCoord **result = g_new (GdkTimeCoord *, n_events);
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
for (i=0; i<n_events; i++)
|
|
|
|
result[i] = g_malloc (sizeof (GdkTimeCoord) -
|
|
|
|
sizeof (double) * (GDK_MAX_TIMECOORD_AXES - device->num_axes));
|
|
|
|
|
|
|
|
return result;
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
2009-08-18 18:35:10 +00:00
|
|
|
/**
|
|
|
|
* 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().
|
|
|
|
*/
|
2009-05-29 14:39:12 +00:00
|
|
|
void
|
2000-07-03 19:00:23 +00:00
|
|
|
gdk_device_free_history (GdkTimeCoord **events,
|
|
|
|
gint n_events)
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
2000-07-03 19:00:23 +00:00
|
|
|
gint i;
|
2009-05-29 14:39:12 +00:00
|
|
|
|
2000-07-03 19:00:23 +00:00
|
|
|
for (i=0; i<n_events; i++)
|
|
|
|
g_free (events[i]);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2000-07-03 19:00:23 +00:00
|
|
|
g_free (events);
|
|
|
|
}
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2009-05-29 14:39:12 +00:00
|
|
|
static void
|
|
|
|
unset_extension_events (GdkWindow *window)
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
2009-05-29 14:39:12 +00:00
|
|
|
GdkWindowObject *window_private;
|
|
|
|
GdkWindowObject *impl_window;
|
|
|
|
GdkDisplayX11 *display_x11;
|
|
|
|
GdkInputWindow *iw;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2009-05-29 14:39:12 +00:00
|
|
|
window_private = (GdkWindowObject*) window;
|
|
|
|
impl_window = (GdkWindowObject *)_gdk_window_get_impl_window (window);
|
|
|
|
iw = impl_window->input_window;
|
2009-01-16 13:01:34 +00:00
|
|
|
|
2009-05-29 14:39:12 +00:00
|
|
|
display_x11 = GDK_DISPLAY_X11 (GDK_WINDOW_DISPLAY (window));
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2009-05-29 14:39:12 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2009-05-29 14:39:12 +00:00
|
|
|
window_private->extension_events = 0;
|
|
|
|
}
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
gdk_input_set_extension_events (GdkWindow *window, gint mask,
|
|
|
|
GdkExtensionMode mode)
|
|
|
|
{
|
Make this compile without framebuffer enabled
2000-06-20 Havoc Pennington <hp@redhat.com>
* modules/linux-fb/Makefile.am: Make this compile
without framebuffer enabled
* gdk/linux-fb/Makefile.am: Add conditional to not build
framebuffer unless specified in configure
* gdk/gdkdraw.c (gdk_draw_drawable): Fix bug where I was getting
the size of the target instead of source if -1 was passed for
width/height
* gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix
width/height confusion.
2000-06-19 Havoc Pennington <hp@redhat.com>
* gdk/x11/gdkx.h (GDK_WINDOW_XWINDOW): change this to be
GDK_DRAWABLE_XID. In the future, we probably want to make it
faster with G_DISABLE_CHECKS turned on.
2000-06-14 Havoc Pennington <hp@redhat.com>
* gdk/Makefile.am: add gdkpixmap.c
* gdk/gdk.c: s/gdk_window_init/_gdk_windowing_window_init/
s/gdk_image_init/_gdk_windowing_image_init
* gdk/gdkcolor.c: make ref/unref compat wrappers for GObject
ref/unref
* gdk/gdkcolor.h: make GdkColormap a GObject subclass
* gdk/gdkcompat.h: remove GdkWindowType compat, since
GdkWindowType is now non-deprecated;
change gdk_window_get_type() compat to be
gdk_window_get_window_type().
* gdk/gdkdnd.h: make GdkDragContext a GObject.
* gdk/gdkdraw.c, gdk/gdkdraw.h: Convert GdkDrawable to a pure
virtual GObject. Make all functions call into the vtable.
Move gdk_image_put() guts in here. Remove GdkDrawableType
and gdk_drawable_get_type(), these are now GdkWindow-specific.
draw_image, get_depth, get_size, set_colormap, get_colormap,
get_visual added to the vtable.
* gdk/gdkgc.h, gdk/gdkgc.c: Convert GdkGC to a pure virtual
GObject. Virtualize everything.
(gdk_gc_new_with_values): remove check for destroyed window,
because now GdkWindow::create_gc will check this.
(gdk_gc_set_values): New function to set GC values, this
was already implemented but wasn't in the header
* gdk/gdkimage.h, gdk/gdkimage.c: Convert GdkImage to a GObject.
* gdk/gdkinternals.h: Remove _gdk_window_alloc(), remove
_gdk_window_draw_image(), remove _gdk_windowing_window_class,
remove _gdk_window_class; add _gdk_window_impl_get_type() and
_gdk_pixmap_impl_get_type(). Rename gdk_window_init to
_gdk_windowing_window_init, rename gdk_image_init to
_gdk_windowing_image_init.
* gdk/gdkpango.c: Reflect GObject-ification of PangoContext.
(gdk_draw_layout): Remove check for destroyed window,
because all the drawable methods already check it.
* gdk/gdkpixmap.h, gdk/gdkpixmap.c: Convert GdkPixmap to GObject.
Add gdkpixmap.c which contains implementation of GdkDrawable
virtual table (by chaining to a platform-specific implementation
object).
* gdk/gdkprivate.h: Remove GDK_IS_WINDOW, GDK_IS_PIXMAP,
GDK_DRAWABLE_DESTROYED. Add GDK_WINDOW_DESTROYED. Replace
GDK_DRAWABLE_TYPE with GDK_WINDOW_TYPE. Remove GdkDrawablePrivate,
GdkWindowPrivate, GdkImageClass, GdkImagePrivate, GdkGCPrivate,
GdkColormapPrivate.
* gdk/gdktypes.h: #include <glib-object.h>
* gdk/gdkwindow.h, gdk/gdkwindow.c: Convert GdkWindow to GObject.
Move most functionality to platform-specific implementation
object. GdkWindow itself now handles the backing store, then
chains to the platform-specific implementation.
(gdk_window_get_window_type): return GdkWindowType of the window.
(gdk_window_peek_children): New routine, returns the children of
a GdkWindow
(gdk_window_get_children): Was in X11-specific code and did
XQueryTree. Changed to simply return a copy of window->children;
so it can go in cross-platform code.
* gdk/x11/Makefile.am: fix broken MKINSTALLDIRS path
* gdk/x11/gdkcolor-x11.c: implement X-specific parts of
GdkColormap; just changed to use the new private data instead
of casting to GdkColormapPrivate.
* gdk/x11/gdkcursor-x11.c: added a couple typechecks to
gdk_cursor_new().
* gdk/x11/gdkdnd-x11.c: Change the way we access private fields
(private data member in the GObject).
(xdnd_manager_source_filter): Function had broken
error handling, fix it (use gdk_error_trap_push).
* gdk/x11/gdkdrawable-x11.c: This file now implements
a base class for GdkWindowImplX11/GdkPixmapImplX11. This
base class is purely for the convenience of the X port,
and not part of the interface to cross-platform GDK.
* gdk/x11/gdkevents-x11.c: Reflect various renamings.
* gdk/x11/gdkgc-x11.c: Implement a subclass of GdkGC that's
specific to X, and returned by the create_gc virtual method
of GdkDrawableImplX11.
(gdk_x11_gc_set_dashes): Change this to take an array of gint8
rather than gchar, this was also changed in the GdkGC vtable.
(gdk_x11_gc_values_to_xvalues): If GdkGCValues is NULL, or the
mask is 0, return immediately, instead of checking every flag.
This is faster, and keeps us from segfaulting if values is NULL
and the mask contains some nonzero flags.
* gdk/x11/gdkgeometry-x11.c: deal with all the rearranging of
GdkWindow.
* gdk/x11/gdkglobals-x11.c: change type of grab window, since
GdkWindowPrivate is gone.
* gdk/x11/gdkim-x11.c: rename things that got renamed.
* gdk/x11/gdkimage-x11.c: implement in terms of GObject, and
remove the image_put stuff that got transferred to GdkDrawable.
* gdk/x11/gdkinput.c: renamings
* gdk/x11/gdkmain-x11.c: #include <pango/pangox.h>
* gdk/x11/gdkpixmap-x11.c: GObject conversion
* gdk/x11/gdkprivate-x11.h: indentation fixes
* gdk/x11/gdkproperty-x11.c: renamings
* gdk/x11/gdkselection-x11.c: renamings
* gdk/x11/gdkwindow-x11.c: Restructuring and renaming; this now
implements the platform-specific "impl" object.
Moved gdk_window_get_children to gdk/gdkwindow.c
* gdk/x11/gdkx.h: Remove all the private structs and private datas
that no longer exist. Add declaration of GdkGCX11 object here.
Fix all the macros to still work.
* gtk/gtk-boxed.defs: Remove GtkStyle, GdkColormap, GdkWindow,
GdkDragContext from the boxed types since they are now GObjects.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Converted GtkStyle to a GObject,
moved xthickness/ythickness into the instance. GtkStyleClass
functions are now in the standard vtable for GtkStyle, so you have
to create a GObject subclass to write a theme engine.
(gtk_style_copy): fixed a leaked PangoFontDescription
(gtk_style_init): renamed gtk_style_realize, so gtk_style_init
can be the standard GObject function.
* Throughout GTK:
s/style->klass->[xy]thickness/style->[xy]thickness
s/pango_layout_unref/g_object_unref/
* gtk/gtkrc.h, gtk/gtkrc.c: Converted GtkRcStyle to a GObject.
* gtk/gtksocket.c: Use gdk_window_get_user_data() instead of
accessing GDK internals.
* gtk/gtkwidget.c: Use gdk_window_peek_children() instead of
accessing GDK internals.
2000-06-20 21:04:44 +00:00
|
|
|
GdkWindowObject *window_private;
|
2009-05-29 14:39:12 +00:00
|
|
|
GdkWindowObject *impl_window;
|
1997-11-24 22:37:52 +00:00
|
|
|
GdkInputWindow *iw;
|
2002-04-25 22:29:14 +00:00
|
|
|
GdkDisplayX11 *display_x11;
|
2009-11-10 20:02:45 +00:00
|
|
|
#ifndef XINPUT_NONE
|
|
|
|
GList *tmp_list;
|
|
|
|
#endif
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
g_return_if_fail (window != NULL);
|
2008-07-18 13:03:42 +00:00
|
|
|
g_return_if_fail (GDK_WINDOW_IS_X11 (window));
|
1999-10-03 22:12:41 +00:00
|
|
|
|
Make this compile without framebuffer enabled
2000-06-20 Havoc Pennington <hp@redhat.com>
* modules/linux-fb/Makefile.am: Make this compile
without framebuffer enabled
* gdk/linux-fb/Makefile.am: Add conditional to not build
framebuffer unless specified in configure
* gdk/gdkdraw.c (gdk_draw_drawable): Fix bug where I was getting
the size of the target instead of source if -1 was passed for
width/height
* gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix
width/height confusion.
2000-06-19 Havoc Pennington <hp@redhat.com>
* gdk/x11/gdkx.h (GDK_WINDOW_XWINDOW): change this to be
GDK_DRAWABLE_XID. In the future, we probably want to make it
faster with G_DISABLE_CHECKS turned on.
2000-06-14 Havoc Pennington <hp@redhat.com>
* gdk/Makefile.am: add gdkpixmap.c
* gdk/gdk.c: s/gdk_window_init/_gdk_windowing_window_init/
s/gdk_image_init/_gdk_windowing_image_init
* gdk/gdkcolor.c: make ref/unref compat wrappers for GObject
ref/unref
* gdk/gdkcolor.h: make GdkColormap a GObject subclass
* gdk/gdkcompat.h: remove GdkWindowType compat, since
GdkWindowType is now non-deprecated;
change gdk_window_get_type() compat to be
gdk_window_get_window_type().
* gdk/gdkdnd.h: make GdkDragContext a GObject.
* gdk/gdkdraw.c, gdk/gdkdraw.h: Convert GdkDrawable to a pure
virtual GObject. Make all functions call into the vtable.
Move gdk_image_put() guts in here. Remove GdkDrawableType
and gdk_drawable_get_type(), these are now GdkWindow-specific.
draw_image, get_depth, get_size, set_colormap, get_colormap,
get_visual added to the vtable.
* gdk/gdkgc.h, gdk/gdkgc.c: Convert GdkGC to a pure virtual
GObject. Virtualize everything.
(gdk_gc_new_with_values): remove check for destroyed window,
because now GdkWindow::create_gc will check this.
(gdk_gc_set_values): New function to set GC values, this
was already implemented but wasn't in the header
* gdk/gdkimage.h, gdk/gdkimage.c: Convert GdkImage to a GObject.
* gdk/gdkinternals.h: Remove _gdk_window_alloc(), remove
_gdk_window_draw_image(), remove _gdk_windowing_window_class,
remove _gdk_window_class; add _gdk_window_impl_get_type() and
_gdk_pixmap_impl_get_type(). Rename gdk_window_init to
_gdk_windowing_window_init, rename gdk_image_init to
_gdk_windowing_image_init.
* gdk/gdkpango.c: Reflect GObject-ification of PangoContext.
(gdk_draw_layout): Remove check for destroyed window,
because all the drawable methods already check it.
* gdk/gdkpixmap.h, gdk/gdkpixmap.c: Convert GdkPixmap to GObject.
Add gdkpixmap.c which contains implementation of GdkDrawable
virtual table (by chaining to a platform-specific implementation
object).
* gdk/gdkprivate.h: Remove GDK_IS_WINDOW, GDK_IS_PIXMAP,
GDK_DRAWABLE_DESTROYED. Add GDK_WINDOW_DESTROYED. Replace
GDK_DRAWABLE_TYPE with GDK_WINDOW_TYPE. Remove GdkDrawablePrivate,
GdkWindowPrivate, GdkImageClass, GdkImagePrivate, GdkGCPrivate,
GdkColormapPrivate.
* gdk/gdktypes.h: #include <glib-object.h>
* gdk/gdkwindow.h, gdk/gdkwindow.c: Convert GdkWindow to GObject.
Move most functionality to platform-specific implementation
object. GdkWindow itself now handles the backing store, then
chains to the platform-specific implementation.
(gdk_window_get_window_type): return GdkWindowType of the window.
(gdk_window_peek_children): New routine, returns the children of
a GdkWindow
(gdk_window_get_children): Was in X11-specific code and did
XQueryTree. Changed to simply return a copy of window->children;
so it can go in cross-platform code.
* gdk/x11/Makefile.am: fix broken MKINSTALLDIRS path
* gdk/x11/gdkcolor-x11.c: implement X-specific parts of
GdkColormap; just changed to use the new private data instead
of casting to GdkColormapPrivate.
* gdk/x11/gdkcursor-x11.c: added a couple typechecks to
gdk_cursor_new().
* gdk/x11/gdkdnd-x11.c: Change the way we access private fields
(private data member in the GObject).
(xdnd_manager_source_filter): Function had broken
error handling, fix it (use gdk_error_trap_push).
* gdk/x11/gdkdrawable-x11.c: This file now implements
a base class for GdkWindowImplX11/GdkPixmapImplX11. This
base class is purely for the convenience of the X port,
and not part of the interface to cross-platform GDK.
* gdk/x11/gdkevents-x11.c: Reflect various renamings.
* gdk/x11/gdkgc-x11.c: Implement a subclass of GdkGC that's
specific to X, and returned by the create_gc virtual method
of GdkDrawableImplX11.
(gdk_x11_gc_set_dashes): Change this to take an array of gint8
rather than gchar, this was also changed in the GdkGC vtable.
(gdk_x11_gc_values_to_xvalues): If GdkGCValues is NULL, or the
mask is 0, return immediately, instead of checking every flag.
This is faster, and keeps us from segfaulting if values is NULL
and the mask contains some nonzero flags.
* gdk/x11/gdkgeometry-x11.c: deal with all the rearranging of
GdkWindow.
* gdk/x11/gdkglobals-x11.c: change type of grab window, since
GdkWindowPrivate is gone.
* gdk/x11/gdkim-x11.c: rename things that got renamed.
* gdk/x11/gdkimage-x11.c: implement in terms of GObject, and
remove the image_put stuff that got transferred to GdkDrawable.
* gdk/x11/gdkinput.c: renamings
* gdk/x11/gdkmain-x11.c: #include <pango/pangox.h>
* gdk/x11/gdkpixmap-x11.c: GObject conversion
* gdk/x11/gdkprivate-x11.h: indentation fixes
* gdk/x11/gdkproperty-x11.c: renamings
* gdk/x11/gdkselection-x11.c: renamings
* gdk/x11/gdkwindow-x11.c: Restructuring and renaming; this now
implements the platform-specific "impl" object.
Moved gdk_window_get_children to gdk/gdkwindow.c
* gdk/x11/gdkx.h: Remove all the private structs and private datas
that no longer exist. Add declaration of GdkGCX11 object here.
Fix all the macros to still work.
* gtk/gtk-boxed.defs: Remove GtkStyle, GdkColormap, GdkWindow,
GdkDragContext from the boxed types since they are now GObjects.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Converted GtkStyle to a GObject,
moved xthickness/ythickness into the instance. GtkStyleClass
functions are now in the standard vtable for GtkStyle, so you have
to create a GObject subclass to write a theme engine.
(gtk_style_copy): fixed a leaked PangoFontDescription
(gtk_style_init): renamed gtk_style_realize, so gtk_style_init
can be the standard GObject function.
* Throughout GTK:
s/style->klass->[xy]thickness/style->[xy]thickness
s/pango_layout_unref/g_object_unref/
* gtk/gtkrc.h, gtk/gtkrc.c: Converted GtkRcStyle to a GObject.
* gtk/gtksocket.c: Use gdk_window_get_user_data() instead of
accessing GDK internals.
* gtk/gtkwidget.c: Use gdk_window_peek_children() instead of
accessing GDK internals.
2000-06-20 21:04:44 +00:00
|
|
|
window_private = (GdkWindowObject*) window;
|
2002-04-25 22:29:14 +00:00
|
|
|
display_x11 = GDK_DISPLAY_X11 (GDK_WINDOW_DISPLAY (window));
|
Make this compile without framebuffer enabled
2000-06-20 Havoc Pennington <hp@redhat.com>
* modules/linux-fb/Makefile.am: Make this compile
without framebuffer enabled
* gdk/linux-fb/Makefile.am: Add conditional to not build
framebuffer unless specified in configure
* gdk/gdkdraw.c (gdk_draw_drawable): Fix bug where I was getting
the size of the target instead of source if -1 was passed for
width/height
* gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix
width/height confusion.
2000-06-19 Havoc Pennington <hp@redhat.com>
* gdk/x11/gdkx.h (GDK_WINDOW_XWINDOW): change this to be
GDK_DRAWABLE_XID. In the future, we probably want to make it
faster with G_DISABLE_CHECKS turned on.
2000-06-14 Havoc Pennington <hp@redhat.com>
* gdk/Makefile.am: add gdkpixmap.c
* gdk/gdk.c: s/gdk_window_init/_gdk_windowing_window_init/
s/gdk_image_init/_gdk_windowing_image_init
* gdk/gdkcolor.c: make ref/unref compat wrappers for GObject
ref/unref
* gdk/gdkcolor.h: make GdkColormap a GObject subclass
* gdk/gdkcompat.h: remove GdkWindowType compat, since
GdkWindowType is now non-deprecated;
change gdk_window_get_type() compat to be
gdk_window_get_window_type().
* gdk/gdkdnd.h: make GdkDragContext a GObject.
* gdk/gdkdraw.c, gdk/gdkdraw.h: Convert GdkDrawable to a pure
virtual GObject. Make all functions call into the vtable.
Move gdk_image_put() guts in here. Remove GdkDrawableType
and gdk_drawable_get_type(), these are now GdkWindow-specific.
draw_image, get_depth, get_size, set_colormap, get_colormap,
get_visual added to the vtable.
* gdk/gdkgc.h, gdk/gdkgc.c: Convert GdkGC to a pure virtual
GObject. Virtualize everything.
(gdk_gc_new_with_values): remove check for destroyed window,
because now GdkWindow::create_gc will check this.
(gdk_gc_set_values): New function to set GC values, this
was already implemented but wasn't in the header
* gdk/gdkimage.h, gdk/gdkimage.c: Convert GdkImage to a GObject.
* gdk/gdkinternals.h: Remove _gdk_window_alloc(), remove
_gdk_window_draw_image(), remove _gdk_windowing_window_class,
remove _gdk_window_class; add _gdk_window_impl_get_type() and
_gdk_pixmap_impl_get_type(). Rename gdk_window_init to
_gdk_windowing_window_init, rename gdk_image_init to
_gdk_windowing_image_init.
* gdk/gdkpango.c: Reflect GObject-ification of PangoContext.
(gdk_draw_layout): Remove check for destroyed window,
because all the drawable methods already check it.
* gdk/gdkpixmap.h, gdk/gdkpixmap.c: Convert GdkPixmap to GObject.
Add gdkpixmap.c which contains implementation of GdkDrawable
virtual table (by chaining to a platform-specific implementation
object).
* gdk/gdkprivate.h: Remove GDK_IS_WINDOW, GDK_IS_PIXMAP,
GDK_DRAWABLE_DESTROYED. Add GDK_WINDOW_DESTROYED. Replace
GDK_DRAWABLE_TYPE with GDK_WINDOW_TYPE. Remove GdkDrawablePrivate,
GdkWindowPrivate, GdkImageClass, GdkImagePrivate, GdkGCPrivate,
GdkColormapPrivate.
* gdk/gdktypes.h: #include <glib-object.h>
* gdk/gdkwindow.h, gdk/gdkwindow.c: Convert GdkWindow to GObject.
Move most functionality to platform-specific implementation
object. GdkWindow itself now handles the backing store, then
chains to the platform-specific implementation.
(gdk_window_get_window_type): return GdkWindowType of the window.
(gdk_window_peek_children): New routine, returns the children of
a GdkWindow
(gdk_window_get_children): Was in X11-specific code and did
XQueryTree. Changed to simply return a copy of window->children;
so it can go in cross-platform code.
* gdk/x11/Makefile.am: fix broken MKINSTALLDIRS path
* gdk/x11/gdkcolor-x11.c: implement X-specific parts of
GdkColormap; just changed to use the new private data instead
of casting to GdkColormapPrivate.
* gdk/x11/gdkcursor-x11.c: added a couple typechecks to
gdk_cursor_new().
* gdk/x11/gdkdnd-x11.c: Change the way we access private fields
(private data member in the GObject).
(xdnd_manager_source_filter): Function had broken
error handling, fix it (use gdk_error_trap_push).
* gdk/x11/gdkdrawable-x11.c: This file now implements
a base class for GdkWindowImplX11/GdkPixmapImplX11. This
base class is purely for the convenience of the X port,
and not part of the interface to cross-platform GDK.
* gdk/x11/gdkevents-x11.c: Reflect various renamings.
* gdk/x11/gdkgc-x11.c: Implement a subclass of GdkGC that's
specific to X, and returned by the create_gc virtual method
of GdkDrawableImplX11.
(gdk_x11_gc_set_dashes): Change this to take an array of gint8
rather than gchar, this was also changed in the GdkGC vtable.
(gdk_x11_gc_values_to_xvalues): If GdkGCValues is NULL, or the
mask is 0, return immediately, instead of checking every flag.
This is faster, and keeps us from segfaulting if values is NULL
and the mask contains some nonzero flags.
* gdk/x11/gdkgeometry-x11.c: deal with all the rearranging of
GdkWindow.
* gdk/x11/gdkglobals-x11.c: change type of grab window, since
GdkWindowPrivate is gone.
* gdk/x11/gdkim-x11.c: rename things that got renamed.
* gdk/x11/gdkimage-x11.c: implement in terms of GObject, and
remove the image_put stuff that got transferred to GdkDrawable.
* gdk/x11/gdkinput.c: renamings
* gdk/x11/gdkmain-x11.c: #include <pango/pangox.h>
* gdk/x11/gdkpixmap-x11.c: GObject conversion
* gdk/x11/gdkprivate-x11.h: indentation fixes
* gdk/x11/gdkproperty-x11.c: renamings
* gdk/x11/gdkselection-x11.c: renamings
* gdk/x11/gdkwindow-x11.c: Restructuring and renaming; this now
implements the platform-specific "impl" object.
Moved gdk_window_get_children to gdk/gdkwindow.c
* gdk/x11/gdkx.h: Remove all the private structs and private datas
that no longer exist. Add declaration of GdkGCX11 object here.
Fix all the macros to still work.
* gtk/gtk-boxed.defs: Remove GtkStyle, GdkColormap, GdkWindow,
GdkDragContext from the boxed types since they are now GObjects.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Converted GtkStyle to a GObject,
moved xthickness/ythickness into the instance. GtkStyleClass
functions are now in the standard vtable for GtkStyle, so you have
to create a GObject subclass to write a theme engine.
(gtk_style_copy): fixed a leaked PangoFontDescription
(gtk_style_init): renamed gtk_style_realize, so gtk_style_init
can be the standard GObject function.
* Throughout GTK:
s/style->klass->[xy]thickness/style->[xy]thickness
s/pango_layout_unref/g_object_unref/
* gtk/gtkrc.h, gtk/gtkrc.c: Converted GtkRcStyle to a GObject.
* gtk/gtksocket.c: Use gdk_window_get_user_data() instead of
accessing GDK internals.
* gtk/gtkwidget.c: Use gdk_window_peek_children() instead of
accessing GDK internals.
2000-06-20 21:04:44 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window))
|
1998-01-26 01:20:14 +00:00
|
|
|
return;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2009-05-29 14:39:12 +00:00
|
|
|
impl_window = (GdkWindowObject *)_gdk_window_get_impl_window (window);
|
|
|
|
|
|
|
|
if (mode == GDK_EXTENSION_EVENTS_ALL && mask != 0)
|
|
|
|
mask |= GDK_ALL_DEVICES_MASK;
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
if (mode == GDK_EXTENSION_EVENTS_NONE)
|
|
|
|
mask = 0;
|
|
|
|
|
2009-05-29 14:39:12 +00:00
|
|
|
iw = impl_window->input_window;
|
2007-03-14 13:55:12 +00:00
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
if (mask != 0)
|
|
|
|
{
|
2007-03-14 13:55:12 +00:00
|
|
|
if (!iw)
|
2009-05-29 14:39:12 +00:00
|
|
|
{
|
|
|
|
iw = g_new0 (GdkInputWindow,1);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2009-05-29 14:39:12 +00:00
|
|
|
iw->impl_window = (GdkWindow *)impl_window;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2009-05-29 14:39:12 +00:00
|
|
|
iw->windows = NULL;
|
|
|
|
iw->grabbed = FALSE;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2009-05-29 14:39:12 +00:00
|
|
|
display_x11->input_windows = g_list_append (display_x11->input_windows, iw);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2007-03-14 13:55:12 +00:00
|
|
|
#ifndef XINPUT_NONE
|
2009-05-29 14:39:12 +00:00
|
|
|
/* 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);
|
2007-03-14 13:55:12 +00:00
|
|
|
#endif /* !XINPUT_NONE */
|
2009-05-29 14:39:12 +00:00
|
|
|
impl_window->input_window = iw;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (window_private->extension_events == 0)
|
|
|
|
iw->windows = g_list_append (iw->windows, window);
|
|
|
|
window_private->extension_events = mask;
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-05-29 14:39:12 +00:00
|
|
|
unset_extension_events (window);
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
2009-11-10 20:02:45 +00:00
|
|
|
#ifndef XINPUT_NONE
|
2002-04-25 22:29:14 +00:00
|
|
|
for (tmp_list = display_x11->input_devices; tmp_list; tmp_list = tmp_list->next)
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
2000-07-03 19:00:23 +00:00
|
|
|
GdkDevicePrivate *gdkdev = tmp_list->data;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2000-07-03 19:00:23 +00:00
|
|
|
if (!GDK_IS_CORE (gdkdev))
|
2009-05-29 14:39:12 +00:00
|
|
|
_gdk_input_select_events ((GdkWindow *)impl_window, gdkdev);
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
2009-11-10 20:02:45 +00:00
|
|
|
#endif /* !XINPUT_NONE */
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2002-08-02 20:22:49 +00:00
|
|
|
_gdk_input_window_destroy (GdkWindow *window)
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
2009-05-29 14:39:12 +00:00
|
|
|
unset_extension_events (window);
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
2000-07-03 19:00:23 +00:00
|
|
|
/**
|
|
|
|
* gdk_device_get_axis:
|
2000-09-07 18:07:59 +00:00
|
|
|
* @device: a #GdkDevice
|
2000-07-03 19:00:23 +00:00
|
|
|
* @axes: pointer to an array of axes
|
|
|
|
* @use: the use to look for
|
|
|
|
* @value: location to store the found value.
|
2009-05-29 14:39:12 +00:00
|
|
|
*
|
2000-07-03 19:00:23 +00:00
|
|
|
* Interprets an array of double as axis values for a given device,
|
|
|
|
* and locates the value in the array for a given axis use.
|
2009-05-29 14:39:12 +00:00
|
|
|
*
|
2001-10-27 20:41:05 +00:00
|
|
|
* Return value: %TRUE if the given axis use was found, otherwise %FALSE
|
2000-07-03 19:00:23 +00:00
|
|
|
**/
|
|
|
|
gboolean
|
2001-03-04 00:12:55 +00:00
|
|
|
gdk_device_get_axis (GdkDevice *device,
|
|
|
|
gdouble *axes,
|
|
|
|
GdkAxisUse use,
|
|
|
|
gdouble *value)
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
2000-07-03 19:00:23 +00:00
|
|
|
gint i;
|
2009-05-29 14:39:12 +00:00
|
|
|
|
2000-07-03 19:00:23 +00:00
|
|
|
g_return_val_if_fail (device != NULL, FALSE);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2000-07-03 19:00:23 +00:00
|
|
|
if (axes == NULL)
|
|
|
|
return FALSE;
|
2009-05-29 14:39:12 +00:00
|
|
|
|
2000-07-03 19:00:23 +00:00
|
|
|
for (i=0; i<device->num_axes; i++)
|
|
|
|
if (device->axes[i].use == use)
|
|
|
|
{
|
|
|
|
if (value)
|
|
|
|
*value = axes[i];
|
|
|
|
return TRUE;
|
|
|
|
}
|
2009-05-29 14:39:12 +00:00
|
|
|
|
2000-07-03 19:00:23 +00:00
|
|
|
return FALSE;
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
2005-03-16 03:17:27 +00:00
|
|
|
|
|
|
|
#define __GDK_INPUT_C__
|
|
|
|
#include "gdkaliasdef.c"
|