2011-12-12 18:18:20 +00:00
|
|
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Bastien Nocera <hadess@hadess.net>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2014-01-23 12:57:27 +01:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2011-12-12 18:18:20 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2012-10-19 15:42:56 +02:00
|
|
|
#include <string.h>
|
|
|
|
|
2011-12-12 18:18:20 +00:00
|
|
|
#include <gdk/gdk.h>
|
2021-10-19 20:53:12 -03:00
|
|
|
#include <gdk/x11/gdkx.h>
|
2011-12-12 18:18:20 +00:00
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <X11/Xatom.h>
|
|
|
|
#include <X11/extensions/XInput2.h>
|
|
|
|
|
|
|
|
#include "gsd-input-helper.h"
|
2015-07-02 15:17:28 +02:00
|
|
|
#include "gsd-device-manager.h"
|
2011-12-12 18:18:20 +00:00
|
|
|
|
2015-07-02 15:17:28 +02:00
|
|
|
static gboolean
|
|
|
|
device_type_is_present (GsdDeviceType type)
|
|
|
|
{
|
2018-06-01 12:45:24 +12:00
|
|
|
g_autoptr(GList) l = gsd_device_manager_list_devices (gsd_device_manager_get (),
|
|
|
|
type);
|
2015-07-02 15:17:28 +02:00
|
|
|
return l != NULL;
|
|
|
|
}
|
|
|
|
|
2011-12-12 18:18:20 +00:00
|
|
|
gboolean
|
|
|
|
touchscreen_is_present (void)
|
|
|
|
{
|
2015-07-02 15:17:28 +02:00
|
|
|
return device_type_is_present (GSD_DEVICE_TYPE_TOUCHSCREEN);
|
2011-12-12 18:18:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
touchpad_is_present (void)
|
|
|
|
{
|
2015-07-02 15:17:28 +02:00
|
|
|
return device_type_is_present (GSD_DEVICE_TYPE_TOUCHPAD);
|
2011-12-12 18:18:20 +00:00
|
|
|
}
|
|
|
|
|
2012-08-21 17:59:36 +02:00
|
|
|
gboolean
|
|
|
|
mouse_is_present (void)
|
|
|
|
{
|
2015-07-02 15:17:28 +02:00
|
|
|
return device_type_is_present (GSD_DEVICE_TYPE_MOUSE);
|
2012-08-21 17:59:36 +02:00
|
|
|
}
|
|
|
|
|
2011-12-12 18:18:20 +00:00
|
|
|
char *
|
|
|
|
xdevice_get_device_node (int deviceid)
|
|
|
|
{
|
2019-07-27 11:26:29 +02:00
|
|
|
GdkDisplay *display;
|
2011-12-12 18:18:20 +00:00
|
|
|
Atom prop;
|
|
|
|
Atom act_type;
|
|
|
|
int act_format;
|
|
|
|
unsigned long nitems, bytes_after;
|
|
|
|
unsigned char *data;
|
|
|
|
char *ret;
|
|
|
|
|
2019-07-27 11:26:29 +02:00
|
|
|
display = gdk_display_get_default ();
|
|
|
|
gdk_display_sync (display);
|
2011-12-12 18:18:20 +00:00
|
|
|
|
2019-07-27 11:26:29 +02:00
|
|
|
prop = XInternAtom (GDK_DISPLAY_XDISPLAY (display), "Device Node", False);
|
2011-12-12 18:18:20 +00:00
|
|
|
if (!prop)
|
|
|
|
return NULL;
|
|
|
|
|
2019-07-27 11:26:29 +02:00
|
|
|
gdk_x11_display_error_trap_push (display);
|
2011-12-12 18:18:20 +00:00
|
|
|
|
2019-07-27 11:26:29 +02:00
|
|
|
if (!XIGetProperty (GDK_DISPLAY_XDISPLAY (display),
|
2011-12-12 18:18:20 +00:00
|
|
|
deviceid, prop, 0, 1000, False,
|
|
|
|
AnyPropertyType, &act_type, &act_format,
|
|
|
|
&nitems, &bytes_after, &data) == Success) {
|
2019-07-27 11:26:29 +02:00
|
|
|
gdk_x11_display_error_trap_pop_ignored (display);
|
2011-12-12 18:18:20 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2019-07-27 11:26:29 +02:00
|
|
|
if (gdk_x11_display_error_trap_pop (display))
|
2011-12-12 18:18:20 +00:00
|
|
|
goto out;
|
|
|
|
|
|
|
|
if (nitems == 0)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
if (act_type != XA_STRING)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
/* Unknown string format */
|
|
|
|
if (act_format != 8)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
ret = g_strdup ((char *) data);
|
|
|
|
|
|
|
|
XFree (data);
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
out:
|
|
|
|
XFree (data);
|
|
|
|
return NULL;
|
|
|
|
}
|