mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 19:00:08 +00:00
425b9886c9
Thu Apr 25 16:51:40 2002 Owen Taylor <otaylor@redhat.com> Start of integration of Erwann Chenede's multihead work from the gtk-multihead branch. * gdk/gdkdisplay.[ch] gdk/gdkscreen.[ch] gdk/x11/gdkdisplay-x11.[ch] gdk/x11/gdkscreen-x11.[ch] New classes representing a set of screens with attached input devices and a single contiguous area, respectively. * gdk/gdk.[ch] gdk/gdkinternals.h gdk/x11/gdkmain-x11.c: gdk/x11/gdkprivate-x11.h: Make the initialization interface simple _gdk_windowing_init() and do the rest in gdk_open_display() calls. * gdk/gdk.[ch]: Add gdk_parse_args() which can be used to do the display-independent part of initialization instead of gdk_init_[check]. * gdk/gdkcursor.h gdk/gdkfont.h gdk/gdkkeys.h gdk/gdkpixmap.h gdk/gdkproperty.h gdk/gdkselection.h gdk/gdkwindow.h: Add multihead variants (_for_display(), for_screen()) of functions getting information specific to a particular screen screen or display. * gdk/gdkscreen.[ch]: Add gdk_screen__* variants of functions like gdk_rgb_get_colormap() that used to get/list global objects. * gdk/x11/gdkx.h: Add functions for converting GdkScreen and GdkDisplay into the X equivalents. * gdk/x11/gdkwindow-x11.c: Removed gdk_window_xid_at_coords() not in the headers and unused. * configure.in gdk/x11/{gxid.c,gxid_lib.[ch],gdkinput-gxi.c}: Remove gxid support ... has not been tested for a long time... "xfree" support is more portable to non XFree86. * gdk/**.h: Add a GDK_MULTIHEAD_SAFE define that can be used to turn off functions that are inherently non-multihead safe. * gdk/**.c: add GDK_NOTE(multihead, ...) calls when functions are used in non-multihead-safe ways. * gdk/*.c gdk/x11/*.c: Changes to make the internals of GDK multihead safe.
366 lines
9.6 KiB
C
366 lines
9.6 KiB
C
/* 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
|
|
* 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, write to the
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
* Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#include "gdkinputprivate.h"
|
|
#include "gdkdisplay-x11.h"
|
|
|
|
/*
|
|
* 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/.
|
|
*/
|
|
|
|
/* forward declarations */
|
|
|
|
static void gdk_input_check_proximity (GdkDisplay *display);
|
|
|
|
void
|
|
_gdk_input_init(GdkDisplay *display)
|
|
{
|
|
_gdk_init_input_core ();
|
|
GDK_DISPLAY_X11 (display)->input_ignore_core = FALSE;
|
|
gdk_input_common_init (display, FALSE);
|
|
}
|
|
|
|
gboolean
|
|
gdk_device_set_mode (GdkDevice *device,
|
|
GdkInputMode mode)
|
|
{
|
|
GList *tmp_list;
|
|
GdkDevicePrivate *gdkdev;
|
|
GdkInputMode old_mode;
|
|
GdkInputWindow *input_window;
|
|
GdkDisplayX11 *display_impl;
|
|
|
|
if (GDK_IS_CORE (device))
|
|
return FALSE;
|
|
|
|
gdkdev = (GdkDevicePrivate *)device;
|
|
|
|
if (device->mode == mode)
|
|
return TRUE;
|
|
|
|
old_mode = device->mode;
|
|
device->mode = mode;
|
|
|
|
display_impl = GDK_DISPLAY_X11 (gdkdev->display);
|
|
|
|
if (mode == GDK_MODE_WINDOW)
|
|
{
|
|
device->has_cursor = FALSE;
|
|
for (tmp_list = display_impl->input_windows; tmp_list; tmp_list = tmp_list->next)
|
|
{
|
|
input_window = (GdkInputWindow *)tmp_list->data;
|
|
if (input_window->mode != GDK_EXTENSION_EVENTS_CURSOR)
|
|
_gdk_input_enable_window (input_window->window, gdkdev);
|
|
else
|
|
if (old_mode != GDK_MODE_DISABLED)
|
|
_gdk_input_disable_window (input_window->window, gdkdev);
|
|
}
|
|
}
|
|
else if (mode == GDK_MODE_SCREEN)
|
|
{
|
|
device->has_cursor = TRUE;
|
|
for (tmp_list = display_impl->input_windows; tmp_list; tmp_list = tmp_list->next)
|
|
_gdk_input_enable_window (((GdkInputWindow *)tmp_list->data)->window,
|
|
gdkdev);
|
|
}
|
|
else /* mode == GDK_MODE_DISABLED */
|
|
{
|
|
for (tmp_list = display_impl->input_windows; tmp_list; tmp_list = tmp_list->next)
|
|
{
|
|
input_window = (GdkInputWindow *)tmp_list->data;
|
|
if (old_mode != GDK_MODE_WINDOW ||
|
|
input_window->mode != GDK_EXTENSION_EVENTS_CURSOR)
|
|
_gdk_input_disable_window (input_window->window, gdkdev);
|
|
}
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
static void
|
|
gdk_input_check_proximity (GdkDisplay *display)
|
|
{
|
|
gint new_proximity = 0;
|
|
GdkDisplayX11 *display_impl = GDK_DISPLAY_X11 (display);
|
|
GList *tmp_list = display_impl->input_devices;
|
|
|
|
while (tmp_list && !new_proximity)
|
|
{
|
|
GdkDevicePrivate *gdkdev = (GdkDevicePrivate *)(tmp_list->data);
|
|
|
|
if (gdkdev->info.mode != GDK_MODE_DISABLED
|
|
&& !GDK_IS_CORE (gdkdev)
|
|
&& gdkdev->xdevice)
|
|
{
|
|
XDeviceState *state = XQueryDeviceState(display_impl->xdisplay,
|
|
gdkdev->xdevice);
|
|
XInputClass *xic;
|
|
int i;
|
|
|
|
xic = state->data;
|
|
for (i=0; i<state->num_classes; i++)
|
|
{
|
|
if (xic->class == ValuatorClass)
|
|
{
|
|
XValuatorState *xvs = (XValuatorState *)xic;
|
|
if ((xvs->mode & ProximityState) == InProximity)
|
|
{
|
|
new_proximity = TRUE;
|
|
}
|
|
break;
|
|
}
|
|
xic = (XInputClass *)((char *)xic + xic->length);
|
|
}
|
|
|
|
XFreeDeviceState (state);
|
|
}
|
|
tmp_list = tmp_list->next;
|
|
}
|
|
|
|
display_impl->input_ignore_core = new_proximity;
|
|
}
|
|
|
|
void
|
|
_gdk_input_configure_event (XConfigureEvent *xevent,
|
|
GdkWindow *window)
|
|
{
|
|
GdkInputWindow *input_window;
|
|
gint root_x, root_y;
|
|
|
|
input_window = gdk_input_window_find(window);
|
|
g_return_if_fail (window != NULL);
|
|
|
|
gdk_input_get_root_relative_geometry(GDK_WINDOW_XDISPLAY (window),
|
|
GDK_WINDOW_XWINDOW (window),
|
|
&root_x, &root_y, NULL, NULL);
|
|
|
|
input_window->root_x = root_x;
|
|
input_window->root_y = root_y;
|
|
}
|
|
|
|
void
|
|
_gdk_input_enter_event (XCrossingEvent *xevent,
|
|
GdkWindow *window)
|
|
{
|
|
GdkInputWindow *input_window;
|
|
gint root_x, root_y;
|
|
|
|
input_window = gdk_input_window_find (window);
|
|
g_return_if_fail (window != NULL);
|
|
|
|
gdk_input_check_proximity(GDK_WINDOW_DISPLAY (window));
|
|
|
|
gdk_input_get_root_relative_geometry(GDK_WINDOW_XDISPLAY (window),
|
|
GDK_WINDOW_XWINDOW(window),
|
|
&root_x, &root_y, NULL, NULL);
|
|
|
|
input_window->root_x = root_x;
|
|
input_window->root_y = root_y;
|
|
}
|
|
|
|
gint
|
|
_gdk_input_other_event (GdkEvent *event,
|
|
XEvent *xevent,
|
|
GdkWindow *window)
|
|
{
|
|
GdkInputWindow *input_window;
|
|
|
|
GdkDevicePrivate *gdkdev;
|
|
gint return_val;
|
|
GdkDisplayX11 *display_impl = GDK_DISPLAY_X11 (GDK_WINDOW_DISPLAY (window));
|
|
|
|
input_window = gdk_input_window_find(window);
|
|
g_return_val_if_fail (window != NULL, -1);
|
|
|
|
/* This is a sort of a hack, as there isn't any XDeviceAnyEvent -
|
|
but it's potentially faster than scanning through the types of
|
|
every device. If we were deceived, then it won't match any of
|
|
the types for the device anyways */
|
|
gdkdev = gdk_input_find_device (GDK_WINDOW_DISPLAY (window),
|
|
((XDeviceButtonEvent *)xevent)->deviceid);
|
|
if (!gdkdev)
|
|
return -1; /* we don't handle it - not an XInput event */
|
|
|
|
/* FIXME: It would be nice if we could just get rid of the events
|
|
entirely, instead of having to ignore them */
|
|
if (gdkdev->info.mode == GDK_MODE_DISABLED ||
|
|
(gdkdev->info.mode == GDK_MODE_WINDOW
|
|
&& input_window->mode == GDK_EXTENSION_EVENTS_CURSOR))
|
|
return FALSE;
|
|
|
|
if (!display_impl->input_ignore_core)
|
|
gdk_input_check_proximity(GDK_WINDOW_DISPLAY (window));
|
|
|
|
return_val = gdk_input_common_other_event (event, xevent,
|
|
input_window, gdkdev);
|
|
|
|
if (return_val > 0 && event->type == GDK_PROXIMITY_OUT &&
|
|
display_impl->input_ignore_core)
|
|
gdk_input_check_proximity(GDK_WINDOW_DISPLAY (window));
|
|
|
|
return return_val;
|
|
}
|
|
|
|
gboolean
|
|
_gdk_input_enable_window(GdkWindow *window, GdkDevicePrivate *gdkdev)
|
|
{
|
|
/* FIXME: watchout, gdkdev might be core pointer, never opened */
|
|
gdk_input_common_select_events (window, gdkdev);
|
|
return TRUE;
|
|
}
|
|
|
|
gboolean
|
|
_gdk_input_disable_window(GdkWindow *window, GdkDevicePrivate *gdkdev)
|
|
{
|
|
gdk_input_common_select_events (window, gdkdev);
|
|
return TRUE;
|
|
}
|
|
|
|
gint
|
|
_gdk_input_grab_pointer (GdkWindow * window,
|
|
gint owner_events,
|
|
GdkEventMask event_mask,
|
|
GdkWindow * confine_to,
|
|
guint32 time)
|
|
{
|
|
GdkInputWindow *input_window, *new_window;
|
|
gboolean need_ungrab;
|
|
GdkDevicePrivate *gdkdev;
|
|
GList *tmp_list;
|
|
XEventClass event_classes[GDK_MAX_DEVICE_CLASSES];
|
|
gint num_classes;
|
|
gint result;
|
|
GdkDisplayX11 *display_impl = GDK_DISPLAY_X11 (GDK_WINDOW_DISPLAY (window));
|
|
|
|
tmp_list = display_impl->input_windows;
|
|
new_window = NULL;
|
|
need_ungrab = FALSE;
|
|
|
|
while (tmp_list)
|
|
{
|
|
input_window = (GdkInputWindow *)tmp_list->data;
|
|
|
|
if (input_window->window == window)
|
|
new_window = input_window;
|
|
else if (input_window->grabbed)
|
|
{
|
|
input_window->grabbed = FALSE;
|
|
need_ungrab = TRUE;
|
|
}
|
|
|
|
tmp_list = tmp_list->next;
|
|
}
|
|
|
|
if (new_window)
|
|
{
|
|
new_window->grabbed = TRUE;
|
|
|
|
tmp_list = display_impl->input_devices;
|
|
while (tmp_list)
|
|
{
|
|
gdkdev = (GdkDevicePrivate *)tmp_list->data;
|
|
if (!GDK_IS_CORE (gdkdev) && gdkdev->xdevice)
|
|
{
|
|
gdk_input_common_find_events (window, gdkdev,
|
|
event_mask,
|
|
event_classes, &num_classes);
|
|
#ifdef G_ENABLE_DEBUG
|
|
if (_gdk_debug_flags & GDK_DEBUG_NOGRABS)
|
|
result = GrabSuccess;
|
|
else
|
|
#endif
|
|
result = XGrabDevice (display_impl->xdisplay, gdkdev->xdevice,
|
|
GDK_WINDOW_XWINDOW (window),
|
|
owner_events, num_classes, event_classes,
|
|
GrabModeAsync, GrabModeAsync, time);
|
|
|
|
/* FIXME: if failure occurs on something other than the first
|
|
device, things will be badly inconsistent */
|
|
if (result != Success)
|
|
return result;
|
|
}
|
|
tmp_list = tmp_list->next;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
tmp_list = display_impl->input_devices;
|
|
while (tmp_list)
|
|
{
|
|
gdkdev = (GdkDevicePrivate *)tmp_list->data;
|
|
if (!GDK_IS_CORE (gdkdev) && gdkdev->xdevice &&
|
|
((gdkdev->button_state != 0) || need_ungrab))
|
|
{
|
|
XUngrabDevice (display_impl->xdisplay, gdkdev->xdevice, time);
|
|
gdkdev->button_state = 0;
|
|
}
|
|
|
|
tmp_list = tmp_list->next;
|
|
}
|
|
}
|
|
|
|
return Success;
|
|
|
|
}
|
|
|
|
void
|
|
_gdk_input_ungrab_pointer (GdkDisplay *display,
|
|
guint32 time)
|
|
{
|
|
GdkInputWindow *input_window = NULL; /* Quiet GCC */
|
|
GdkDevicePrivate *gdkdev;
|
|
GList *tmp_list;
|
|
GdkDisplayX11 *display_impl = GDK_DISPLAY_X11 (display);
|
|
|
|
tmp_list = display_impl->input_windows;
|
|
while (tmp_list)
|
|
{
|
|
input_window = (GdkInputWindow *)tmp_list->data;
|
|
if (input_window->grabbed)
|
|
break;
|
|
tmp_list = tmp_list->next;
|
|
}
|
|
|
|
if (tmp_list) /* we found a grabbed window */
|
|
{
|
|
input_window->grabbed = FALSE;
|
|
|
|
tmp_list = display_impl->input_devices;
|
|
while (tmp_list)
|
|
{
|
|
gdkdev = (GdkDevicePrivate *)tmp_list->data;
|
|
if (!GDK_IS_CORE (gdkdev) && gdkdev->xdevice)
|
|
XUngrabDevice( display_impl->xdisplay, gdkdev->xdevice, time);
|
|
|
|
tmp_list = tmp_list->next;
|
|
}
|
|
}
|
|
}
|
|
|
|
gint
|
|
_gdk_input_window_none_event (GdkEvent *event,
|
|
XEvent *xevent)
|
|
{
|
|
return -1;
|
|
}
|