gtk2/gdk/x11/gdkdevicemanager-x11.c

86 lines
2.7 KiB
C
Raw Normal View History

2010-05-25 22:38:44 +00:00
/* GDK - The GIMP Drawing Kit
* Copyright (C) 2009 Carlos Garnacho <carlosg@gnome.org>
*
* 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 "config.h"
#include "gdkx11devicemanager-core.h"
2010-05-25 22:38:44 +00:00
#ifdef XINPUT_XFREE
#include "gdkx11devicemanager-xi.h"
2010-05-25 22:38:44 +00:00
#ifdef XINPUT_2
#include "gdkx11devicemanager-xi2.h"
2010-05-25 22:38:44 +00:00
#endif
#endif
#include "gdkinternals.h"
#include "gdkprivate-x11.h"
2010-05-25 22:38:44 +00:00
GdkDeviceManager *
_gdk_x11_device_manager_new (GdkDisplay *display)
2010-05-25 22:38:44 +00:00
{
if (!g_getenv ("GDK_CORE_DEVICE_EVENTS"))
{
#if defined (XINPUT_2) || defined (XINPUT_XFREE)
int opcode, firstevent, firsterror;
Display *xdisplay;
xdisplay = GDK_DISPLAY_XDISPLAY (display);
if (XQueryExtension (xdisplay, "XInputExtension",
&opcode, &firstevent, &firsterror))
{
#ifdef XINPUT_2
int major, minor;
major = 2;
minor = 0;
if (!_gdk_disable_multidevice &&
2010-05-25 22:38:44 +00:00
XIQueryVersion (xdisplay, &major, &minor) != BadRequest)
{
GdkX11DeviceManagerXI2 *device_manager_xi2;
2010-05-25 22:38:44 +00:00
GDK_NOTE (INPUT, g_print ("Creating XI2 device manager\n"));
device_manager_xi2 = g_object_new (GDK_TYPE_X11_DEVICE_MANAGER_XI2,
2010-05-25 22:38:44 +00:00
"display", display,
NULL);
device_manager_xi2->opcode = opcode;
return GDK_DEVICE_MANAGER (device_manager_xi2);
}
else
#endif /* XINPUT_2 */
{
GDK_NOTE (INPUT, g_print ("Creating XI device manager\n"));
return g_object_new (GDK_TYPE_X11_DEVICE_MANAGER_XI,
"display", display,
"event-base", firstevent,
NULL);
}
2010-05-25 22:38:44 +00:00
}
#endif /* XINPUT_2 || XINPUT_XFREE */
}
GDK_NOTE (INPUT, g_print ("Creating core device manager\n"));
return g_object_new (GDK_TYPE_X11_DEVICE_MANAGER_CORE,
2010-05-25 22:38:44 +00:00
"display", display,
NULL);
}