2010-11-04 10:38:32 -04:00
|
|
|
/*
|
|
|
|
* Clutter.
|
|
|
|
*
|
|
|
|
* An OpenGL based 'interactive canvas' library.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Intel Corp.
|
|
|
|
*
|
|
|
|
* 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* Author: Damien Lespiau <damien.lespiau@intel.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <linux/input.h>
|
2010-11-09 12:50:23 -05:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include <glib.h>
|
2010-11-04 10:38:32 -04:00
|
|
|
#include <gudev/gudev.h>
|
|
|
|
|
|
|
|
#include "clutter-backend.h"
|
|
|
|
#include "clutter-debug.h"
|
|
|
|
#include "clutter-device-manager.h"
|
|
|
|
#include "clutter-device-manager-private.h"
|
2011-02-18 11:27:49 -05:00
|
|
|
#include "clutter-event-private.h"
|
2010-11-04 10:38:32 -04:00
|
|
|
#include "clutter-input-device-evdev.h"
|
2010-11-09 12:50:23 -05:00
|
|
|
#include "clutter-main.h"
|
2010-11-04 10:38:32 -04:00
|
|
|
#include "clutter-private.h"
|
2011-06-17 06:31:34 -04:00
|
|
|
#include "clutter-stage-manager.h"
|
2010-11-09 12:50:23 -05:00
|
|
|
#include "clutter-xkb-utils.h"
|
2011-12-05 08:59:12 -05:00
|
|
|
#include "clutter-backend-private.h"
|
2012-03-09 13:24:14 -05:00
|
|
|
#include "clutter-evdev.h"
|
2010-11-04 10:38:32 -04:00
|
|
|
|
|
|
|
#include "clutter-device-manager-evdev.h"
|
|
|
|
|
2013-08-09 05:53:46 -04:00
|
|
|
/* These are the same as the XInput2 IDs */
|
|
|
|
#define CORE_POINTER_ID 2
|
|
|
|
#define CORE_KEYBOARD_ID 3
|
|
|
|
|
|
|
|
#define FIRST_SLAVE_ID 4
|
|
|
|
#define INVALID_SLAVE_ID 255
|
|
|
|
|
2013-08-09 11:07:52 -04:00
|
|
|
#define AUTOREPEAT_VALUE 2
|
|
|
|
|
2010-11-04 10:38:32 -04:00
|
|
|
struct _ClutterDeviceManagerEvdevPrivate
|
|
|
|
{
|
|
|
|
GUdevClient *udev_client;
|
|
|
|
|
2012-01-22 10:36:17 -05:00
|
|
|
ClutterStage *stage;
|
|
|
|
gboolean released;
|
|
|
|
|
2010-11-09 12:50:23 -05:00
|
|
|
GSList *devices; /* list of ClutterInputDeviceEvdevs */
|
|
|
|
GSList *event_sources; /* list of the event sources */
|
2010-11-04 10:38:32 -04:00
|
|
|
|
|
|
|
ClutterInputDevice *core_pointer;
|
|
|
|
ClutterInputDevice *core_keyboard;
|
2012-01-17 08:37:26 -05:00
|
|
|
|
2013-08-23 06:15:40 -04:00
|
|
|
ClutterPointerConstrainCallback constrain_callback;
|
|
|
|
gpointer constrain_data;
|
|
|
|
GDestroyNotify constrain_data_notify;
|
|
|
|
|
2012-01-17 08:37:26 -05:00
|
|
|
ClutterStageManager *stage_manager;
|
|
|
|
guint stage_added_handler;
|
|
|
|
guint stage_removed_handler;
|
2013-08-09 05:53:46 -04:00
|
|
|
|
2013-08-09 11:06:39 -04:00
|
|
|
GArray *keys;
|
2013-08-09 05:53:46 -04:00
|
|
|
struct xkb_state *xkb; /* XKB state object */
|
|
|
|
uint32_t button_state;
|
2010-11-04 10:38:32 -04:00
|
|
|
};
|
|
|
|
|
2013-07-03 09:14:01 -04:00
|
|
|
G_DEFINE_TYPE_WITH_PRIVATE (ClutterDeviceManagerEvdev,
|
|
|
|
clutter_device_manager_evdev,
|
|
|
|
CLUTTER_TYPE_DEVICE_MANAGER)
|
|
|
|
|
2013-07-15 12:24:35 -04:00
|
|
|
static ClutterOpenDeviceCallback open_callback;
|
|
|
|
static gpointer open_callback_data;
|
|
|
|
|
2010-11-04 10:38:32 -04:00
|
|
|
static const gchar *subsystems[] = { "input", NULL };
|
|
|
|
|
2010-11-09 12:50:23 -05:00
|
|
|
/*
|
|
|
|
* ClutterEventSource management
|
|
|
|
*
|
|
|
|
* The device manager is responsible for managing the GSource when devices
|
2010-11-30 09:50:13 -05:00
|
|
|
* appear and disappear from the system.
|
|
|
|
*
|
|
|
|
* FIXME: For now, we associate a GSource with every single device. Starting
|
|
|
|
* from glib 2.28 we can use g_source_add_child_source() to have a single
|
|
|
|
* GSource for the device manager, each device becoming a child source. Revisit
|
|
|
|
* this once we depend on glib >= 2.28.
|
2010-11-09 12:50:23 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2011-12-06 16:49:15 -05:00
|
|
|
static const char *option_xkb_layout = "us";
|
|
|
|
static const char *option_xkb_variant = "";
|
|
|
|
static const char *option_xkb_options = "";
|
2010-11-09 12:50:23 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* ClutterEventSource for reading input devices
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef struct _ClutterEventSource ClutterEventSource;
|
|
|
|
|
|
|
|
struct _ClutterEventSource
|
|
|
|
{
|
|
|
|
GSource source;
|
|
|
|
|
2013-08-09 05:53:46 -04:00
|
|
|
ClutterInputDeviceEvdev *device; /* back pointer to the slave evdev device */
|
2010-11-09 12:50:23 -05:00
|
|
|
GPollFD event_poll_fd; /* file descriptor of the /dev node */
|
|
|
|
};
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
clutter_event_prepare (GSource *source,
|
|
|
|
gint *timeout)
|
|
|
|
{
|
|
|
|
gboolean retval;
|
|
|
|
|
2012-07-05 09:30:26 -04:00
|
|
|
_clutter_threads_acquire_lock ();
|
2010-11-09 12:50:23 -05:00
|
|
|
|
|
|
|
*timeout = -1;
|
|
|
|
retval = clutter_events_pending ();
|
|
|
|
|
2012-07-05 09:30:26 -04:00
|
|
|
_clutter_threads_release_lock ();
|
2010-11-09 12:50:23 -05:00
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
clutter_event_check (GSource *source)
|
|
|
|
{
|
|
|
|
ClutterEventSource *event_source = (ClutterEventSource *) source;
|
|
|
|
gboolean retval;
|
|
|
|
|
2012-07-05 09:30:26 -04:00
|
|
|
_clutter_threads_acquire_lock ();
|
2010-11-09 12:50:23 -05:00
|
|
|
|
|
|
|
retval = ((event_source->event_poll_fd.revents & G_IO_IN) ||
|
|
|
|
clutter_events_pending ());
|
|
|
|
|
2012-07-05 09:30:26 -04:00
|
|
|
_clutter_threads_release_lock ();
|
2010-11-09 12:50:23 -05:00
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2010-11-11 19:07:35 -05:00
|
|
|
static void
|
|
|
|
queue_event (ClutterEvent *event)
|
|
|
|
{
|
2011-01-19 11:34:49 -05:00
|
|
|
_clutter_event_push (event, FALSE);
|
2010-11-11 19:07:35 -05:00
|
|
|
}
|
|
|
|
|
2013-08-09 11:06:39 -04:00
|
|
|
static void
|
|
|
|
add_key (GArray *keys,
|
|
|
|
guint32 key)
|
|
|
|
{
|
|
|
|
g_array_append_val (keys, key);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
remove_key (GArray *keys,
|
|
|
|
guint32 key)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
for (i = 0; i < keys->len; i++)
|
|
|
|
{
|
|
|
|
if (g_array_index (keys, guint32, i) == key)
|
|
|
|
{
|
|
|
|
g_array_remove_index_fast (keys, i);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-11 19:07:35 -05:00
|
|
|
static void
|
|
|
|
notify_key (ClutterEventSource *source,
|
|
|
|
guint32 time_,
|
|
|
|
guint32 key,
|
|
|
|
guint32 state)
|
|
|
|
{
|
2011-12-05 08:59:12 -05:00
|
|
|
ClutterInputDevice *input_device = (ClutterInputDevice *) source->device;
|
2013-08-09 05:53:46 -04:00
|
|
|
ClutterDeviceManagerEvdev *manager_evdev;
|
2011-12-05 08:59:12 -05:00
|
|
|
ClutterStage *stage;
|
2010-11-11 19:07:35 -05:00
|
|
|
ClutterEvent *event = NULL;
|
|
|
|
|
2011-12-05 08:59:12 -05:00
|
|
|
/* We can drop the event on the floor if no stage has been
|
|
|
|
* associated with the device yet. */
|
|
|
|
stage = _clutter_input_device_get_stage (input_device);
|
|
|
|
if (!stage)
|
|
|
|
return;
|
2010-11-11 19:07:35 -05:00
|
|
|
|
2013-08-09 05:53:46 -04:00
|
|
|
manager_evdev = CLUTTER_DEVICE_MANAGER_EVDEV (input_device->device_manager);
|
2010-11-11 19:07:35 -05:00
|
|
|
|
2013-08-09 05:53:46 -04:00
|
|
|
/* if we have keyboard state, use it to generate the event */
|
|
|
|
if (manager_evdev->priv->xkb)
|
|
|
|
{
|
|
|
|
event =
|
|
|
|
_clutter_key_event_new_from_evdev (input_device,
|
|
|
|
manager_evdev->priv->core_keyboard,
|
|
|
|
stage,
|
|
|
|
manager_evdev->priv->xkb,
|
|
|
|
manager_evdev->priv->button_state,
|
|
|
|
time_, key, state);
|
|
|
|
|
2013-08-09 11:07:52 -04:00
|
|
|
/* We must be careful and not pass multiple releases to xkb, otherwise it gets
|
|
|
|
confused and locks the modifiers */
|
|
|
|
if (state != AUTOREPEAT_VALUE)
|
|
|
|
{
|
|
|
|
xkb_state_update_key (manager_evdev->priv->xkb, event->key.hardware_keycode, state ? XKB_KEY_DOWN : XKB_KEY_UP);
|
|
|
|
|
|
|
|
if (state)
|
|
|
|
add_key (manager_evdev->priv->keys, event->key.hardware_keycode);
|
|
|
|
else
|
|
|
|
remove_key (manager_evdev->priv->keys, event->key.hardware_keycode);
|
|
|
|
}
|
2013-08-09 11:06:39 -04:00
|
|
|
|
2013-08-09 05:53:46 -04:00
|
|
|
queue_event (event);
|
|
|
|
}
|
2010-11-11 19:07:35 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2013-08-09 05:53:46 -04:00
|
|
|
notify_relative_motion (ClutterEventSource *source,
|
|
|
|
guint32 time_,
|
|
|
|
gint dx,
|
|
|
|
gint dy)
|
2010-11-11 19:07:35 -05:00
|
|
|
{
|
2011-12-05 08:59:12 -05:00
|
|
|
ClutterInputDevice *input_device = (ClutterInputDevice *) source->device;
|
2010-11-11 19:07:35 -05:00
|
|
|
gfloat stage_width, stage_height, new_x, new_y;
|
2013-08-09 05:53:46 -04:00
|
|
|
ClutterDeviceManagerEvdev *manager_evdev;
|
2011-12-05 08:59:12 -05:00
|
|
|
ClutterStage *stage;
|
2013-08-09 05:53:46 -04:00
|
|
|
ClutterEvent *event = NULL;
|
|
|
|
ClutterPoint point;
|
2011-12-05 08:59:12 -05:00
|
|
|
|
|
|
|
/* We can drop the event on the floor if no stage has been
|
|
|
|
* associated with the device yet. */
|
|
|
|
stage = _clutter_input_device_get_stage (input_device);
|
|
|
|
if (!stage)
|
|
|
|
return;
|
2010-11-11 19:07:35 -05:00
|
|
|
|
2013-08-09 05:53:46 -04:00
|
|
|
manager_evdev = CLUTTER_DEVICE_MANAGER_EVDEV (input_device->device_manager);
|
|
|
|
|
2011-12-05 08:59:12 -05:00
|
|
|
stage_width = clutter_actor_get_width (CLUTTER_ACTOR (stage));
|
|
|
|
stage_height = clutter_actor_get_height (CLUTTER_ACTOR (stage));
|
2010-11-11 19:07:35 -05:00
|
|
|
|
|
|
|
event = clutter_event_new (CLUTTER_MOTION);
|
|
|
|
|
2013-08-09 05:53:46 -04:00
|
|
|
clutter_input_device_get_coords (manager_evdev->priv->core_pointer, NULL, &point);
|
|
|
|
new_x = point.x + dx;
|
|
|
|
new_y = point.y + dy;
|
2013-08-23 06:15:40 -04:00
|
|
|
|
|
|
|
if (manager_evdev->priv->constrain_callback)
|
|
|
|
{
|
|
|
|
manager_evdev->priv->constrain_callback (manager_evdev->priv->core_pointer, time_, &new_x, &new_y,
|
|
|
|
manager_evdev->priv->constrain_data);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
new_x = CLAMP (new_x, 0.f, stage_width - 1);
|
|
|
|
new_y = CLAMP (new_y, 0.f, stage_height - 1);
|
|
|
|
}
|
2010-11-11 19:07:35 -05:00
|
|
|
|
|
|
|
event->motion.time = time_;
|
2011-12-05 08:59:12 -05:00
|
|
|
event->motion.stage = stage;
|
2013-08-09 05:53:46 -04:00
|
|
|
event->motion.device = manager_evdev->priv->core_pointer;
|
2013-09-04 08:42:56 -04:00
|
|
|
_clutter_xkb_translate_state (event, manager_evdev->priv->xkb, manager_evdev->priv->button_state);
|
2010-11-11 19:07:35 -05:00
|
|
|
event->motion.x = new_x;
|
|
|
|
event->motion.y = new_y;
|
2013-08-09 05:53:46 -04:00
|
|
|
clutter_event_set_source_device (event, input_device);
|
2010-11-11 19:07:35 -05:00
|
|
|
|
|
|
|
queue_event (event);
|
|
|
|
}
|
|
|
|
|
2013-08-09 12:43:19 -04:00
|
|
|
static void
|
|
|
|
notify_scroll (ClutterEventSource *source,
|
|
|
|
guint32 time_,
|
|
|
|
gint32 value)
|
|
|
|
{
|
|
|
|
ClutterInputDevice *input_device = (ClutterInputDevice *) source->device;
|
|
|
|
ClutterDeviceManagerEvdev *manager_evdev;
|
|
|
|
ClutterStage *stage;
|
|
|
|
ClutterEvent *event = NULL;
|
|
|
|
ClutterPoint point;
|
|
|
|
|
|
|
|
/* We can drop the event on the floor if no stage has been
|
|
|
|
* associated with the device yet. */
|
|
|
|
stage = _clutter_input_device_get_stage (input_device);
|
|
|
|
if (!stage)
|
|
|
|
return;
|
|
|
|
|
|
|
|
manager_evdev = CLUTTER_DEVICE_MANAGER_EVDEV (input_device->device_manager);
|
|
|
|
|
|
|
|
event = clutter_event_new (CLUTTER_SCROLL);
|
|
|
|
|
|
|
|
event->scroll.time = time_;
|
|
|
|
event->scroll.stage = CLUTTER_STAGE (stage);
|
|
|
|
event->scroll.device = manager_evdev->priv->core_pointer;
|
2013-09-04 08:42:56 -04:00
|
|
|
_clutter_xkb_translate_state (event, manager_evdev->priv->xkb, manager_evdev->priv->button_state);
|
2013-08-09 12:43:19 -04:00
|
|
|
event->scroll.direction = value < 0 ? CLUTTER_SCROLL_DOWN : CLUTTER_SCROLL_UP;
|
|
|
|
clutter_input_device_get_coords (manager_evdev->priv->core_pointer, NULL, &point);
|
|
|
|
event->scroll.x = point.x;
|
|
|
|
event->scroll.y = point.y;
|
|
|
|
clutter_event_set_source_device (event, (ClutterInputDevice*) source->device);
|
|
|
|
|
|
|
|
queue_event (event);
|
|
|
|
}
|
|
|
|
|
2010-11-11 19:07:35 -05:00
|
|
|
static void
|
|
|
|
notify_button (ClutterEventSource *source,
|
|
|
|
guint32 time_,
|
|
|
|
guint32 button,
|
|
|
|
guint32 state)
|
|
|
|
{
|
2011-12-05 08:59:12 -05:00
|
|
|
ClutterInputDevice *input_device = (ClutterInputDevice *) source->device;
|
2013-08-09 05:53:46 -04:00
|
|
|
ClutterDeviceManagerEvdev *manager_evdev;
|
2011-12-05 08:59:12 -05:00
|
|
|
ClutterStage *stage;
|
2013-08-09 05:53:46 -04:00
|
|
|
ClutterEvent *event = NULL;
|
|
|
|
ClutterPoint point;
|
2010-11-11 19:07:35 -05:00
|
|
|
gint button_nr;
|
2010-11-19 14:19:52 -05:00
|
|
|
static gint maskmap[8] =
|
2010-11-11 19:07:35 -05:00
|
|
|
{
|
2012-07-19 10:20:42 -04:00
|
|
|
CLUTTER_BUTTON1_MASK, CLUTTER_BUTTON3_MASK, CLUTTER_BUTTON2_MASK,
|
2010-11-19 14:19:52 -05:00
|
|
|
CLUTTER_BUTTON4_MASK, CLUTTER_BUTTON5_MASK, 0, 0, 0
|
2010-11-11 19:07:35 -05:00
|
|
|
};
|
|
|
|
|
2011-12-05 08:59:12 -05:00
|
|
|
/* We can drop the event on the floor if no stage has been
|
|
|
|
* associated with the device yet. */
|
|
|
|
stage = _clutter_input_device_get_stage (input_device);
|
|
|
|
if (!stage)
|
|
|
|
return;
|
2010-11-11 19:07:35 -05:00
|
|
|
|
2013-08-09 05:53:46 -04:00
|
|
|
manager_evdev = CLUTTER_DEVICE_MANAGER_EVDEV (input_device->device_manager);
|
|
|
|
|
2012-07-19 10:20:42 -04:00
|
|
|
/* The evdev button numbers don't map sequentially to clutter button
|
|
|
|
* numbers (the right and middle mouse buttons are in the opposite
|
|
|
|
* order) so we'll map them directly with a switch statement */
|
|
|
|
switch (button)
|
|
|
|
{
|
|
|
|
case BTN_LEFT:
|
|
|
|
button_nr = CLUTTER_BUTTON_PRIMARY;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BTN_RIGHT:
|
|
|
|
button_nr = CLUTTER_BUTTON_SECONDARY;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BTN_MIDDLE:
|
|
|
|
button_nr = CLUTTER_BUTTON_MIDDLE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
button_nr = button - BTN_MOUSE + 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2010-11-11 19:07:35 -05:00
|
|
|
if (G_UNLIKELY (button_nr < 1 || button_nr > 8))
|
|
|
|
{
|
|
|
|
g_warning ("Unhandled button event 0x%x", button);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (state)
|
|
|
|
event = clutter_event_new (CLUTTER_BUTTON_PRESS);
|
|
|
|
else
|
|
|
|
event = clutter_event_new (CLUTTER_BUTTON_RELEASE);
|
|
|
|
|
2012-12-17 19:45:00 -05:00
|
|
|
/* Update the modifiers */
|
2010-11-11 19:07:35 -05:00
|
|
|
if (state)
|
2013-08-09 05:53:46 -04:00
|
|
|
manager_evdev->priv->button_state |= maskmap[button - BTN_LEFT];
|
2010-11-11 19:07:35 -05:00
|
|
|
else
|
2013-08-09 05:53:46 -04:00
|
|
|
manager_evdev->priv->button_state &= ~maskmap[button - BTN_LEFT];
|
2010-11-11 19:07:35 -05:00
|
|
|
|
|
|
|
event->button.time = time_;
|
|
|
|
event->button.stage = CLUTTER_STAGE (stage);
|
2013-08-09 05:53:46 -04:00
|
|
|
event->button.device = manager_evdev->priv->core_pointer;
|
2013-09-04 08:42:56 -04:00
|
|
|
_clutter_xkb_translate_state (event, manager_evdev->priv->xkb, manager_evdev->priv->button_state);
|
2010-11-11 19:07:35 -05:00
|
|
|
event->button.button = button_nr;
|
2013-08-09 05:53:46 -04:00
|
|
|
clutter_input_device_get_coords (manager_evdev->priv->core_pointer, NULL, &point);
|
|
|
|
event->button.x = point.x;
|
|
|
|
event->button.y = point.y;
|
|
|
|
clutter_event_set_source_device (event, (ClutterInputDevice*) source->device);
|
2010-11-11 19:07:35 -05:00
|
|
|
|
|
|
|
queue_event (event);
|
|
|
|
}
|
|
|
|
|
2010-11-09 12:50:23 -05:00
|
|
|
static gboolean
|
|
|
|
clutter_event_dispatch (GSource *g_source,
|
|
|
|
GSourceFunc callback,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
ClutterEventSource *source = (ClutterEventSource *) g_source;
|
2011-12-05 08:59:12 -05:00
|
|
|
ClutterInputDevice *input_device = (ClutterInputDevice *) source->device;
|
2010-11-09 12:50:23 -05:00
|
|
|
struct input_event ev[8];
|
2010-11-11 19:07:35 -05:00
|
|
|
ClutterEvent *event;
|
|
|
|
gint len, i, dx = 0, dy = 0;
|
|
|
|
uint32_t _time;
|
2011-12-05 08:59:12 -05:00
|
|
|
ClutterStage *stage;
|
2010-11-09 12:50:23 -05:00
|
|
|
|
2012-07-05 09:30:26 -04:00
|
|
|
_clutter_threads_acquire_lock ();
|
2010-11-09 12:50:23 -05:00
|
|
|
|
2011-12-05 08:59:12 -05:00
|
|
|
stage = _clutter_input_device_get_stage (input_device);
|
2011-06-17 06:31:34 -04:00
|
|
|
|
2010-11-09 12:50:23 -05:00
|
|
|
/* Don't queue more events if we haven't finished handling the previous batch
|
|
|
|
*/
|
|
|
|
if (!clutter_events_pending ())
|
|
|
|
{
|
|
|
|
len = read (source->event_poll_fd.fd, &ev, sizeof (ev));
|
|
|
|
if (len < 0 || len % sizeof (ev[0]) != 0)
|
|
|
|
{
|
|
|
|
if (errno != EAGAIN)
|
|
|
|
{
|
2010-11-09 13:02:53 -05:00
|
|
|
ClutterDeviceManager *manager;
|
|
|
|
ClutterInputDevice *device;
|
|
|
|
const gchar *device_path;
|
|
|
|
|
|
|
|
device = CLUTTER_INPUT_DEVICE (source->device);
|
|
|
|
|
|
|
|
if (CLUTTER_HAS_DEBUG (EVENT))
|
|
|
|
{
|
|
|
|
device_path =
|
|
|
|
_clutter_input_device_evdev_get_device_path (source->device);
|
|
|
|
|
|
|
|
CLUTTER_NOTE (EVENT, "Could not read device (%s), removing.",
|
|
|
|
device_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* remove the faulty device */
|
|
|
|
manager = clutter_device_manager_get_default ();
|
|
|
|
_clutter_device_manager_remove_device (manager, device);
|
|
|
|
|
2010-11-09 12:50:23 -05:00
|
|
|
}
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2011-06-17 06:31:34 -04:00
|
|
|
/* Drop events if we don't have any stage to forward them to */
|
2011-12-05 08:59:12 -05:00
|
|
|
if (!stage)
|
2011-06-17 06:31:34 -04:00
|
|
|
goto out;
|
|
|
|
|
2010-11-09 12:50:23 -05:00
|
|
|
for (i = 0; i < len / sizeof (ev[0]); i++)
|
|
|
|
{
|
|
|
|
struct input_event *e = &ev[i];
|
|
|
|
|
|
|
|
_time = e->time.tv_sec * 1000 + e->time.tv_usec / 1000;
|
|
|
|
|
|
|
|
switch (e->type)
|
|
|
|
{
|
|
|
|
case EV_KEY:
|
|
|
|
|
|
|
|
/* don't repeat mouse buttons */
|
|
|
|
if (e->code >= BTN_MOUSE && e->code < KEY_OK)
|
2013-08-09 11:07:52 -04:00
|
|
|
if (e->value == AUTOREPEAT_VALUE)
|
2010-11-09 12:50:23 -05:00
|
|
|
continue;
|
|
|
|
|
2010-11-11 19:07:35 -05:00
|
|
|
switch (e->code)
|
|
|
|
{
|
|
|
|
case BTN_TOUCH:
|
|
|
|
case BTN_TOOL_PEN:
|
|
|
|
case BTN_TOOL_RUBBER:
|
|
|
|
case BTN_TOOL_BRUSH:
|
|
|
|
case BTN_TOOL_PENCIL:
|
|
|
|
case BTN_TOOL_AIRBRUSH:
|
|
|
|
case BTN_TOOL_FINGER:
|
|
|
|
case BTN_TOOL_MOUSE:
|
|
|
|
case BTN_TOOL_LENS:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BTN_LEFT:
|
|
|
|
case BTN_RIGHT:
|
|
|
|
case BTN_MIDDLE:
|
|
|
|
case BTN_SIDE:
|
|
|
|
case BTN_EXTRA:
|
|
|
|
case BTN_FORWARD:
|
|
|
|
case BTN_BACK:
|
|
|
|
case BTN_TASK:
|
|
|
|
notify_button(source, _time, e->code, e->value);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
notify_key (source, _time, e->code, e->value);
|
|
|
|
break;
|
|
|
|
}
|
2010-11-09 12:50:23 -05:00
|
|
|
break;
|
2010-11-11 19:07:35 -05:00
|
|
|
|
2010-11-09 12:50:23 -05:00
|
|
|
case EV_SYN:
|
|
|
|
/* Nothing to do here? */
|
|
|
|
break;
|
2010-11-11 19:07:35 -05:00
|
|
|
|
2010-11-09 12:50:23 -05:00
|
|
|
case EV_MSC:
|
|
|
|
/* Nothing to do here? */
|
|
|
|
break;
|
2010-11-11 19:07:35 -05:00
|
|
|
|
2010-11-09 12:50:23 -05:00
|
|
|
case EV_REL:
|
2010-11-11 19:07:35 -05:00
|
|
|
/* compress the EV_REL events in dx/dy */
|
|
|
|
switch (e->code)
|
|
|
|
{
|
|
|
|
case REL_X:
|
|
|
|
dx += e->value;
|
|
|
|
break;
|
|
|
|
case REL_Y:
|
|
|
|
dy += e->value;
|
|
|
|
break;
|
2013-08-09 12:43:19 -04:00
|
|
|
|
|
|
|
/* Note: we assume that REL_WHEEL is for *vertical* scroll wheels.
|
|
|
|
To implement horizontal scroll, we'll need a different enum
|
|
|
|
value.
|
|
|
|
*/
|
|
|
|
case REL_WHEEL:
|
|
|
|
notify_scroll (source, _time, e->value);
|
|
|
|
break;
|
2010-11-11 19:07:35 -05:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case EV_ABS:
|
2010-11-09 12:50:23 -05:00
|
|
|
default:
|
|
|
|
g_warning ("Unhandled event of type %d", e->type);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2010-11-11 19:07:35 -05:00
|
|
|
|
|
|
|
if (dx != 0 || dy != 0)
|
2013-08-09 05:53:46 -04:00
|
|
|
notify_relative_motion (source, _time, dx, dy);
|
2010-11-09 12:50:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Pop an event off the queue if any */
|
|
|
|
event = clutter_event_get ();
|
|
|
|
|
|
|
|
if (event)
|
|
|
|
{
|
2013-09-04 07:36:41 -04:00
|
|
|
ClutterModifierType event_state;
|
|
|
|
ClutterInputDevice *input_device;
|
|
|
|
ClutterDeviceManagerEvdev *manager_evdev;
|
|
|
|
|
|
|
|
input_device = CLUTTER_INPUT_DEVICE (source->device);
|
|
|
|
manager_evdev = CLUTTER_DEVICE_MANAGER_EVDEV (input_device->device_manager);
|
|
|
|
|
2010-11-09 12:50:23 -05:00
|
|
|
/* forward the event into clutter for emission etc. */
|
|
|
|
clutter_do_event (event);
|
|
|
|
clutter_event_free (event);
|
2013-09-04 07:36:41 -04:00
|
|
|
|
|
|
|
/* update the device states *after* the event */
|
|
|
|
event_state = xkb_state_serialize_mods (manager_evdev->priv->xkb, XKB_STATE_MODS_EFFECTIVE);
|
|
|
|
_clutter_input_device_set_state (manager_evdev->priv->core_pointer, event_state);
|
|
|
|
_clutter_input_device_set_state (manager_evdev->priv->core_keyboard, event_state);
|
2010-11-09 12:50:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
2012-07-05 09:30:26 -04:00
|
|
|
_clutter_threads_release_lock ();
|
2010-11-09 12:50:23 -05:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
static GSourceFuncs event_funcs = {
|
|
|
|
clutter_event_prepare,
|
|
|
|
clutter_event_check,
|
|
|
|
clutter_event_dispatch,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
static GSource *
|
|
|
|
clutter_event_source_new (ClutterInputDeviceEvdev *input_device)
|
|
|
|
{
|
|
|
|
GSource *source = g_source_new (&event_funcs, sizeof (ClutterEventSource));
|
|
|
|
ClutterEventSource *event_source = (ClutterEventSource *) source;
|
|
|
|
const gchar *node_path;
|
2013-08-21 18:19:21 -04:00
|
|
|
gint fd, clkid;
|
2013-07-15 12:24:35 -04:00
|
|
|
GError *error;
|
2010-11-09 12:50:23 -05:00
|
|
|
|
|
|
|
/* grab the udev input device node and open it */
|
|
|
|
node_path = _clutter_input_device_evdev_get_device_path (input_device);
|
|
|
|
|
|
|
|
CLUTTER_NOTE (EVENT, "Creating GSource for device %s", node_path);
|
|
|
|
|
2013-07-15 12:24:35 -04:00
|
|
|
if (open_callback)
|
2010-11-09 12:50:23 -05:00
|
|
|
{
|
2013-07-15 12:24:35 -04:00
|
|
|
error = NULL;
|
|
|
|
fd = open_callback (node_path, O_RDONLY | O_NONBLOCK, open_callback_data, &error);
|
|
|
|
|
|
|
|
if (fd < 0)
|
|
|
|
{
|
|
|
|
g_warning ("Could not open device %s: %s", node_path, error->message);
|
|
|
|
g_error_free (error);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fd = open (node_path, O_RDONLY | O_NONBLOCK);
|
|
|
|
if (fd < 0)
|
|
|
|
{
|
|
|
|
g_warning ("Could not open device %s: %s", node_path, strerror (errno));
|
|
|
|
return NULL;
|
|
|
|
}
|
2010-11-09 12:50:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* setup the source */
|
|
|
|
event_source->device = input_device;
|
|
|
|
event_source->event_poll_fd.fd = fd;
|
|
|
|
event_source->event_poll_fd.events = G_IO_IN;
|
|
|
|
|
2013-08-21 18:19:21 -04:00
|
|
|
/* Tell evdev to use the monotonic clock for its timestamps */
|
|
|
|
clkid = CLOCK_MONOTONIC;
|
|
|
|
ioctl (fd, EVIOCSCLOCKID, &clkid);
|
|
|
|
|
2010-11-09 12:50:23 -05:00
|
|
|
/* and finally configure and attach the GSource */
|
|
|
|
g_source_set_priority (source, CLUTTER_PRIORITY_EVENTS);
|
|
|
|
g_source_add_poll (source, &event_source->event_poll_fd);
|
|
|
|
g_source_set_can_recurse (source, TRUE);
|
|
|
|
g_source_attach (source, NULL);
|
|
|
|
|
|
|
|
return source;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_event_source_free (ClutterEventSource *source)
|
|
|
|
{
|
|
|
|
GSource *g_source = (GSource *) source;
|
|
|
|
const gchar *node_path;
|
|
|
|
|
|
|
|
node_path = _clutter_input_device_evdev_get_device_path (source->device);
|
|
|
|
|
|
|
|
CLUTTER_NOTE (EVENT, "Removing GSource for device %s", node_path);
|
|
|
|
|
|
|
|
/* ignore the return value of close, it's not like we can do something
|
|
|
|
* about it */
|
|
|
|
close (source->event_poll_fd.fd);
|
|
|
|
|
|
|
|
g_source_destroy (g_source);
|
|
|
|
g_source_unref (g_source);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ClutterEventSource *
|
|
|
|
find_source_by_device (ClutterDeviceManagerEvdev *manager,
|
|
|
|
ClutterInputDevice *device)
|
|
|
|
{
|
|
|
|
ClutterDeviceManagerEvdevPrivate *priv = manager->priv;
|
|
|
|
GSList *l;
|
|
|
|
|
|
|
|
for (l = priv->event_sources; l; l = g_slist_next (l))
|
|
|
|
{
|
|
|
|
ClutterEventSource *source = l->data;
|
|
|
|
|
|
|
|
if (source->device == (ClutterInputDeviceEvdev *) device)
|
|
|
|
return source;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-11-08 11:38:16 -05:00
|
|
|
static gboolean
|
|
|
|
is_evdev (const gchar *sysfs_path)
|
|
|
|
{
|
|
|
|
GRegex *regex;
|
|
|
|
gboolean match;
|
|
|
|
|
|
|
|
regex = g_regex_new ("/input[0-9]+/event[0-9]+$", 0, 0, NULL);
|
|
|
|
match = g_regex_match (regex, sysfs_path, 0, NULL);
|
|
|
|
|
|
|
|
g_regex_unref (regex);
|
|
|
|
return match;
|
|
|
|
}
|
|
|
|
|
2010-11-04 10:38:32 -04:00
|
|
|
static void
|
|
|
|
evdev_add_device (ClutterDeviceManagerEvdev *manager_evdev,
|
|
|
|
GUdevDevice *udev_device)
|
|
|
|
{
|
|
|
|
ClutterDeviceManager *manager = (ClutterDeviceManager *) manager_evdev;
|
|
|
|
ClutterInputDeviceType type = CLUTTER_EXTENSION_DEVICE;
|
|
|
|
ClutterInputDevice *device;
|
2011-04-12 11:32:43 -04:00
|
|
|
const gchar *device_file, *sysfs_path, *device_name;
|
2013-08-09 05:53:46 -04:00
|
|
|
int id, ok;
|
2010-11-04 10:38:32 -04:00
|
|
|
|
2010-11-08 11:38:16 -05:00
|
|
|
device_file = g_udev_device_get_device_file (udev_device);
|
|
|
|
sysfs_path = g_udev_device_get_sysfs_path (udev_device);
|
2011-04-12 11:32:43 -04:00
|
|
|
device_name = g_udev_device_get_name (udev_device);
|
2010-11-08 11:38:16 -05:00
|
|
|
|
|
|
|
if (device_file == NULL || sysfs_path == NULL)
|
|
|
|
return;
|
2010-11-04 10:38:32 -04:00
|
|
|
|
|
|
|
if (g_udev_device_get_property (udev_device, "ID_INPUT") == NULL)
|
2010-11-08 11:38:16 -05:00
|
|
|
return;
|
|
|
|
|
|
|
|
/* Make sure to only add evdev devices, ie the device with a sysfs path that
|
|
|
|
* finishes by input%d/event%d (We don't rely on the node name as this
|
|
|
|
* policy is enforced by udev rules Vs API/ABI guarantees of sysfs) */
|
|
|
|
if (!is_evdev (sysfs_path))
|
|
|
|
return;
|
2010-11-04 10:38:32 -04:00
|
|
|
|
2011-04-12 11:33:58 -04:00
|
|
|
/* Clutter assumes that device types are exclusive in the
|
|
|
|
* ClutterInputDevice API */
|
|
|
|
if (g_udev_device_has_property (udev_device, "ID_INPUT_KEYBOARD"))
|
|
|
|
type = CLUTTER_KEYBOARD_DEVICE;
|
|
|
|
else if (g_udev_device_has_property (udev_device, "ID_INPUT_MOUSE"))
|
|
|
|
type = CLUTTER_POINTER_DEVICE;
|
|
|
|
else if (g_udev_device_has_property (udev_device, "ID_INPUT_JOYSTICK"))
|
|
|
|
type = CLUTTER_JOYSTICK_DEVICE;
|
|
|
|
else if (g_udev_device_has_property (udev_device, "ID_INPUT_TABLET"))
|
|
|
|
type = CLUTTER_TABLET_DEVICE;
|
|
|
|
else if (g_udev_device_has_property (udev_device, "ID_INPUT_TOUCHPAD"))
|
|
|
|
type = CLUTTER_TOUCHPAD_DEVICE;
|
|
|
|
else if (g_udev_device_has_property (udev_device, "ID_INPUT_TOUCHSCREEN"))
|
|
|
|
type = CLUTTER_TOUCHSCREEN_DEVICE;
|
2010-11-04 10:38:32 -04:00
|
|
|
|
2013-08-09 05:53:46 -04:00
|
|
|
ok = sscanf (device_file, "/dev/input/event%d", &id);
|
|
|
|
if (ok == 1)
|
|
|
|
id += FIRST_SLAVE_ID;
|
|
|
|
else
|
|
|
|
id = INVALID_SLAVE_ID;
|
|
|
|
|
2010-11-04 10:38:32 -04:00
|
|
|
device = g_object_new (CLUTTER_TYPE_INPUT_DEVICE_EVDEV,
|
2013-08-09 05:53:46 -04:00
|
|
|
"id", id,
|
2011-04-12 11:32:43 -04:00
|
|
|
"name", device_name,
|
2013-08-09 05:53:46 -04:00
|
|
|
"device-manager", manager,
|
2010-11-04 10:38:32 -04:00
|
|
|
"device-type", type,
|
2013-08-09 05:53:46 -04:00
|
|
|
"device-mode", CLUTTER_INPUT_MODE_SLAVE,
|
2010-11-04 10:38:32 -04:00
|
|
|
"sysfs-path", sysfs_path,
|
|
|
|
"device-path", device_file,
|
2011-04-12 11:32:43 -04:00
|
|
|
"enabled", TRUE,
|
2010-11-04 10:38:32 -04:00
|
|
|
NULL);
|
2010-11-11 19:07:35 -05:00
|
|
|
|
2012-01-22 10:36:17 -05:00
|
|
|
_clutter_input_device_set_stage (device, manager_evdev->priv->stage);
|
|
|
|
|
2010-11-04 10:38:32 -04:00
|
|
|
_clutter_device_manager_add_device (manager, device);
|
2013-08-09 05:53:46 -04:00
|
|
|
if (type == CLUTTER_KEYBOARD_DEVICE)
|
|
|
|
{
|
|
|
|
_clutter_input_device_set_associated_device (device, manager_evdev->priv->core_keyboard);
|
|
|
|
_clutter_input_device_add_slave (manager_evdev->priv->core_keyboard, device);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
_clutter_input_device_set_associated_device (device, manager_evdev->priv->core_pointer);
|
|
|
|
_clutter_input_device_add_slave (manager_evdev->priv->core_pointer, device);
|
|
|
|
}
|
2010-11-04 10:38:32 -04:00
|
|
|
|
2010-11-08 11:38:16 -05:00
|
|
|
CLUTTER_NOTE (EVENT, "Added device %s, type %d, sysfs %s",
|
|
|
|
device_file, type, sysfs_path);
|
2010-11-04 10:38:32 -04:00
|
|
|
}
|
|
|
|
|
2010-11-09 11:56:26 -05:00
|
|
|
static ClutterInputDeviceEvdev *
|
|
|
|
find_device_by_udev_device (ClutterDeviceManagerEvdev *manager_evdev,
|
|
|
|
GUdevDevice *udev_device)
|
|
|
|
{
|
|
|
|
ClutterDeviceManagerEvdevPrivate *priv = manager_evdev->priv;
|
|
|
|
GSList *l;
|
|
|
|
const gchar *sysfs_path;
|
|
|
|
|
|
|
|
sysfs_path = g_udev_device_get_sysfs_path (udev_device);
|
|
|
|
if (sysfs_path == NULL)
|
|
|
|
{
|
|
|
|
g_message ("device file is NULL");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (l = priv->devices; l; l = g_slist_next (l))
|
|
|
|
{
|
|
|
|
ClutterInputDeviceEvdev *device = l->data;
|
|
|
|
|
|
|
|
if (strcmp (sysfs_path,
|
|
|
|
_clutter_input_device_evdev_get_sysfs_path (device)) == 0)
|
|
|
|
{
|
|
|
|
return device;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
evdev_remove_device (ClutterDeviceManagerEvdev *manager_evdev,
|
|
|
|
GUdevDevice *device)
|
|
|
|
{
|
|
|
|
ClutterDeviceManager *manager = CLUTTER_DEVICE_MANAGER (manager_evdev);
|
|
|
|
ClutterInputDeviceEvdev *device_evdev;
|
|
|
|
ClutterInputDevice *input_device;
|
|
|
|
|
|
|
|
device_evdev = find_device_by_udev_device (manager_evdev, device);
|
|
|
|
if (device_evdev == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
input_device = CLUTTER_INPUT_DEVICE (device_evdev);
|
|
|
|
_clutter_device_manager_remove_device (manager, input_device);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
on_uevent (GUdevClient *client,
|
|
|
|
gchar *action,
|
|
|
|
GUdevDevice *device,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
ClutterDeviceManagerEvdev *manager = CLUTTER_DEVICE_MANAGER_EVDEV (data);
|
2012-01-22 10:36:17 -05:00
|
|
|
ClutterDeviceManagerEvdevPrivate *priv = manager->priv;
|
|
|
|
|
|
|
|
if (priv->released)
|
|
|
|
return;
|
2010-11-09 11:56:26 -05:00
|
|
|
|
|
|
|
if (g_strcmp0 (action, "add") == 0)
|
|
|
|
evdev_add_device (manager, device);
|
|
|
|
else if (g_strcmp0 (action, "remove") == 0)
|
|
|
|
evdev_remove_device (manager, device);
|
|
|
|
}
|
|
|
|
|
2010-11-04 10:38:32 -04:00
|
|
|
/*
|
|
|
|
* ClutterDeviceManager implementation
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_device_manager_evdev_add_device (ClutterDeviceManager *manager,
|
|
|
|
ClutterInputDevice *device)
|
|
|
|
{
|
|
|
|
ClutterDeviceManagerEvdev *manager_evdev;
|
|
|
|
ClutterDeviceManagerEvdevPrivate *priv;
|
2010-11-09 12:50:23 -05:00
|
|
|
ClutterInputDeviceEvdev *device_evdev;
|
|
|
|
GSource *source;
|
2010-11-04 10:38:32 -04:00
|
|
|
|
|
|
|
manager_evdev = CLUTTER_DEVICE_MANAGER_EVDEV (manager);
|
|
|
|
priv = manager_evdev->priv;
|
|
|
|
|
2010-11-09 12:50:23 -05:00
|
|
|
device_evdev = CLUTTER_INPUT_DEVICE_EVDEV (device);
|
|
|
|
|
2010-11-04 10:38:32 -04:00
|
|
|
priv->devices = g_slist_prepend (priv->devices, device);
|
|
|
|
|
2013-08-09 05:53:46 -04:00
|
|
|
if (clutter_input_device_get_device_mode (device) == CLUTTER_INPUT_MODE_SLAVE)
|
|
|
|
{
|
|
|
|
/* Install the GSource for this device */
|
|
|
|
source = clutter_event_source_new (device_evdev);
|
|
|
|
g_assert (source != NULL);
|
2010-11-09 12:50:23 -05:00
|
|
|
|
2013-08-09 05:53:46 -04:00
|
|
|
priv->event_sources = g_slist_prepend (priv->event_sources, source);
|
|
|
|
}
|
2010-11-04 10:38:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_device_manager_evdev_remove_device (ClutterDeviceManager *manager,
|
|
|
|
ClutterInputDevice *device)
|
|
|
|
{
|
|
|
|
ClutterDeviceManagerEvdev *manager_evdev;
|
|
|
|
ClutterDeviceManagerEvdevPrivate *priv;
|
2010-11-09 12:50:23 -05:00
|
|
|
ClutterEventSource *source;
|
2010-11-04 10:38:32 -04:00
|
|
|
|
|
|
|
manager_evdev = CLUTTER_DEVICE_MANAGER_EVDEV (manager);
|
|
|
|
priv = manager_evdev->priv;
|
|
|
|
|
2010-11-09 12:50:23 -05:00
|
|
|
/* Remove the device */
|
2010-11-04 10:38:32 -04:00
|
|
|
priv->devices = g_slist_remove (priv->devices, device);
|
2010-11-09 12:50:23 -05:00
|
|
|
|
2013-08-09 05:53:46 -04:00
|
|
|
if (clutter_input_device_get_device_mode (device) == CLUTTER_INPUT_MODE_SLAVE)
|
2010-11-09 12:50:23 -05:00
|
|
|
{
|
2013-08-09 05:53:46 -04:00
|
|
|
/* Remove the source */
|
|
|
|
source = find_source_by_device (manager_evdev, device);
|
|
|
|
if (G_UNLIKELY (source == NULL))
|
|
|
|
{
|
|
|
|
g_warning ("Trying to remove a device without a source installed ?!");
|
|
|
|
return;
|
|
|
|
}
|
2010-11-09 12:50:23 -05:00
|
|
|
|
2013-08-09 05:53:46 -04:00
|
|
|
clutter_event_source_free (source);
|
|
|
|
priv->event_sources = g_slist_remove (priv->event_sources, source);
|
|
|
|
}
|
2010-11-04 10:38:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static const GSList *
|
|
|
|
clutter_device_manager_evdev_get_devices (ClutterDeviceManager *manager)
|
|
|
|
{
|
|
|
|
return CLUTTER_DEVICE_MANAGER_EVDEV (manager)->priv->devices;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ClutterInputDevice *
|
|
|
|
clutter_device_manager_evdev_get_core_device (ClutterDeviceManager *manager,
|
|
|
|
ClutterInputDeviceType type)
|
|
|
|
{
|
|
|
|
ClutterDeviceManagerEvdev *manager_evdev;
|
|
|
|
ClutterDeviceManagerEvdevPrivate *priv;
|
|
|
|
|
|
|
|
manager_evdev = CLUTTER_DEVICE_MANAGER_EVDEV (manager);
|
|
|
|
priv = manager_evdev->priv;
|
|
|
|
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case CLUTTER_POINTER_DEVICE:
|
|
|
|
return priv->core_pointer;
|
|
|
|
|
|
|
|
case CLUTTER_KEYBOARD_DEVICE:
|
|
|
|
return priv->core_keyboard;
|
|
|
|
|
|
|
|
case CLUTTER_EXTENSION_DEVICE:
|
|
|
|
default:
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ClutterInputDevice *
|
|
|
|
clutter_device_manager_evdev_get_device (ClutterDeviceManager *manager,
|
|
|
|
gint id)
|
|
|
|
{
|
|
|
|
ClutterDeviceManagerEvdev *manager_evdev;
|
|
|
|
ClutterDeviceManagerEvdevPrivate *priv;
|
|
|
|
GSList *l;
|
|
|
|
|
|
|
|
manager_evdev = CLUTTER_DEVICE_MANAGER_EVDEV (manager);
|
|
|
|
priv = manager_evdev->priv;
|
|
|
|
|
|
|
|
for (l = priv->devices; l; l = l->next)
|
|
|
|
{
|
|
|
|
ClutterInputDevice *device = l->data;
|
|
|
|
|
|
|
|
if (clutter_input_device_get_device_id (device) == id)
|
|
|
|
return device;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-01-22 10:36:17 -05:00
|
|
|
static void
|
|
|
|
clutter_device_manager_evdev_probe_devices (ClutterDeviceManagerEvdev *self)
|
|
|
|
{
|
|
|
|
ClutterDeviceManagerEvdevPrivate *priv = self->priv;
|
|
|
|
GList *devices, *l;
|
|
|
|
|
|
|
|
devices = g_udev_client_query_by_subsystem (priv->udev_client, subsystems[0]);
|
|
|
|
for (l = devices; l; l = g_list_next (l))
|
|
|
|
{
|
|
|
|
GUdevDevice *device = l->data;
|
|
|
|
|
|
|
|
evdev_add_device (self, device);
|
|
|
|
g_object_unref (device);
|
|
|
|
}
|
|
|
|
g_list_free (devices);
|
|
|
|
}
|
|
|
|
|
2010-11-04 10:38:32 -04:00
|
|
|
/*
|
|
|
|
* GObject implementation
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_device_manager_evdev_constructed (GObject *gobject)
|
|
|
|
{
|
|
|
|
ClutterDeviceManagerEvdev *manager_evdev;
|
|
|
|
ClutterDeviceManagerEvdevPrivate *priv;
|
2013-08-09 05:53:46 -04:00
|
|
|
ClutterInputDevice *device;
|
2010-11-04 10:38:32 -04:00
|
|
|
|
|
|
|
manager_evdev = CLUTTER_DEVICE_MANAGER_EVDEV (gobject);
|
|
|
|
priv = manager_evdev->priv;
|
|
|
|
|
2013-08-09 05:53:46 -04:00
|
|
|
device = g_object_new (CLUTTER_TYPE_INPUT_DEVICE_EVDEV,
|
|
|
|
"id", CORE_POINTER_ID,
|
|
|
|
"name", "input/core_pointer",
|
|
|
|
"device-manager", manager_evdev,
|
|
|
|
"device-type", CLUTTER_POINTER_DEVICE,
|
|
|
|
"device-mode", CLUTTER_INPUT_MODE_MASTER,
|
|
|
|
"enabled", TRUE,
|
|
|
|
NULL);
|
|
|
|
_clutter_input_device_set_stage (device, priv->stage);
|
|
|
|
_clutter_device_manager_add_device (CLUTTER_DEVICE_MANAGER (manager_evdev), device);
|
|
|
|
priv->core_pointer = device;
|
|
|
|
|
|
|
|
device = g_object_new (CLUTTER_TYPE_INPUT_DEVICE_EVDEV,
|
|
|
|
"id", CORE_KEYBOARD_ID,
|
|
|
|
"name", "input/core_keyboard",
|
|
|
|
"device-manager", manager_evdev,
|
|
|
|
"device-type", CLUTTER_KEYBOARD_DEVICE,
|
|
|
|
"device-mode", CLUTTER_INPUT_MODE_MASTER,
|
|
|
|
"enabled", TRUE,
|
|
|
|
NULL);
|
|
|
|
_clutter_input_device_set_stage (device, priv->stage);
|
|
|
|
_clutter_device_manager_add_device (CLUTTER_DEVICE_MANAGER (manager_evdev), device);
|
|
|
|
priv->core_keyboard = device;
|
|
|
|
|
2013-08-09 11:06:39 -04:00
|
|
|
priv->keys = g_array_new (FALSE, FALSE, sizeof (guint32));
|
2013-08-09 05:53:46 -04:00
|
|
|
priv->xkb = _clutter_xkb_state_new (NULL,
|
|
|
|
option_xkb_layout,
|
|
|
|
option_xkb_variant,
|
|
|
|
option_xkb_options);
|
|
|
|
|
2010-11-04 10:38:32 -04:00
|
|
|
priv->udev_client = g_udev_client_new (subsystems);
|
|
|
|
|
2012-01-22 10:36:17 -05:00
|
|
|
clutter_device_manager_evdev_probe_devices (manager_evdev);
|
2010-11-04 10:38:32 -04:00
|
|
|
|
|
|
|
/* subcribe for events on input devices */
|
|
|
|
g_signal_connect (priv->udev_client, "uevent",
|
|
|
|
G_CALLBACK (on_uevent), manager_evdev);
|
|
|
|
}
|
|
|
|
|
2012-01-17 08:37:26 -05:00
|
|
|
static void
|
|
|
|
clutter_device_manager_evdev_dispose (GObject *object)
|
|
|
|
{
|
|
|
|
ClutterDeviceManagerEvdev *manager_evdev;
|
|
|
|
ClutterDeviceManagerEvdevPrivate *priv;
|
|
|
|
|
|
|
|
manager_evdev = CLUTTER_DEVICE_MANAGER_EVDEV (object);
|
|
|
|
priv = manager_evdev->priv;
|
|
|
|
|
|
|
|
if (priv->stage_added_handler)
|
|
|
|
{
|
|
|
|
g_signal_handler_disconnect (priv->stage_manager,
|
|
|
|
priv->stage_added_handler);
|
|
|
|
priv->stage_added_handler = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (priv->stage_removed_handler)
|
|
|
|
{
|
|
|
|
g_signal_handler_disconnect (priv->stage_manager,
|
|
|
|
priv->stage_removed_handler);
|
|
|
|
priv->stage_removed_handler = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (priv->stage_manager)
|
|
|
|
{
|
|
|
|
g_object_unref (priv->stage_manager);
|
|
|
|
priv->stage_manager = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (clutter_device_manager_evdev_parent_class)->dispose (object);
|
|
|
|
}
|
|
|
|
|
2010-11-04 10:38:32 -04:00
|
|
|
static void
|
|
|
|
clutter_device_manager_evdev_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
ClutterDeviceManagerEvdev *manager_evdev;
|
|
|
|
ClutterDeviceManagerEvdevPrivate *priv;
|
2010-11-09 12:50:23 -05:00
|
|
|
GSList *l;
|
2010-11-04 10:38:32 -04:00
|
|
|
|
|
|
|
manager_evdev = CLUTTER_DEVICE_MANAGER_EVDEV (object);
|
|
|
|
priv = manager_evdev->priv;
|
|
|
|
|
|
|
|
g_object_unref (priv->udev_client);
|
|
|
|
|
2010-11-09 12:50:23 -05:00
|
|
|
for (l = priv->devices; l; l = g_slist_next (l))
|
|
|
|
{
|
|
|
|
ClutterInputDevice *device = l->data;
|
|
|
|
|
|
|
|
g_object_unref (device);
|
|
|
|
}
|
|
|
|
g_slist_free (priv->devices);
|
|
|
|
|
|
|
|
for (l = priv->event_sources; l; l = g_slist_next (l))
|
|
|
|
{
|
|
|
|
ClutterEventSource *source = l->data;
|
|
|
|
|
|
|
|
clutter_event_source_free (source);
|
|
|
|
}
|
|
|
|
g_slist_free (priv->event_sources);
|
|
|
|
|
2013-08-23 06:15:40 -04:00
|
|
|
if (priv->constrain_data_notify)
|
|
|
|
priv->constrain_data_notify (priv->constrain_data);
|
|
|
|
|
2010-11-04 10:38:32 -04:00
|
|
|
G_OBJECT_CLASS (clutter_device_manager_evdev_parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_device_manager_evdev_class_init (ClutterDeviceManagerEvdevClass *klass)
|
|
|
|
{
|
2013-07-03 09:14:01 -04:00
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
2010-11-04 10:38:32 -04:00
|
|
|
ClutterDeviceManagerClass *manager_class;
|
|
|
|
|
|
|
|
gobject_class->constructed = clutter_device_manager_evdev_constructed;
|
|
|
|
gobject_class->finalize = clutter_device_manager_evdev_finalize;
|
2012-01-17 08:37:26 -05:00
|
|
|
gobject_class->dispose = clutter_device_manager_evdev_dispose;
|
2010-11-04 10:38:32 -04:00
|
|
|
|
|
|
|
manager_class = CLUTTER_DEVICE_MANAGER_CLASS (klass);
|
|
|
|
manager_class->add_device = clutter_device_manager_evdev_add_device;
|
|
|
|
manager_class->remove_device = clutter_device_manager_evdev_remove_device;
|
|
|
|
manager_class->get_devices = clutter_device_manager_evdev_get_devices;
|
|
|
|
manager_class->get_core_device = clutter_device_manager_evdev_get_core_device;
|
|
|
|
manager_class->get_device = clutter_device_manager_evdev_get_device;
|
|
|
|
}
|
|
|
|
|
2012-01-17 08:37:26 -05:00
|
|
|
static void
|
|
|
|
clutter_device_manager_evdev_stage_added_cb (ClutterStageManager *manager,
|
|
|
|
ClutterStage *stage,
|
|
|
|
ClutterDeviceManagerEvdev *self)
|
|
|
|
{
|
|
|
|
ClutterDeviceManagerEvdevPrivate *priv = self->priv;
|
|
|
|
GSList *l;
|
|
|
|
|
2012-01-22 10:36:17 -05:00
|
|
|
/* NB: Currently we can only associate a single stage with all evdev
|
|
|
|
* devices.
|
|
|
|
*
|
|
|
|
* We save a pointer to the stage so if we release/reclaim input
|
|
|
|
* devices due to switching virtual terminals then we know what
|
|
|
|
* stage to re associate the devices with.
|
|
|
|
*/
|
|
|
|
priv->stage = stage;
|
|
|
|
|
2012-01-17 08:37:26 -05:00
|
|
|
/* Set the stage of any devices that don't already have a stage */
|
|
|
|
for (l = priv->devices; l; l = l->next)
|
|
|
|
{
|
|
|
|
ClutterInputDevice *device = l->data;
|
|
|
|
|
|
|
|
if (_clutter_input_device_get_stage (device) == NULL)
|
|
|
|
_clutter_input_device_set_stage (device, stage);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We only want to do this once so we can catch the default
|
|
|
|
stage. If the application has multiple stages then it will need
|
|
|
|
to manage the stage of the input devices itself */
|
|
|
|
g_signal_handler_disconnect (priv->stage_manager,
|
|
|
|
priv->stage_added_handler);
|
|
|
|
priv->stage_added_handler = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_device_manager_evdev_stage_removed_cb (ClutterStageManager *manager,
|
|
|
|
ClutterStage *stage,
|
|
|
|
ClutterDeviceManagerEvdev *self)
|
|
|
|
{
|
|
|
|
ClutterDeviceManagerEvdevPrivate *priv = self->priv;
|
|
|
|
GSList *l;
|
|
|
|
|
|
|
|
/* Remove the stage of any input devices that were pointing to this
|
|
|
|
stage so we don't send events to invalid stages */
|
|
|
|
for (l = priv->devices; l; l = l->next)
|
|
|
|
{
|
|
|
|
ClutterInputDevice *device = l->data;
|
|
|
|
|
|
|
|
if (_clutter_input_device_get_stage (device) == stage)
|
|
|
|
_clutter_input_device_set_stage (device, NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-04 10:38:32 -04:00
|
|
|
static void
|
|
|
|
clutter_device_manager_evdev_init (ClutterDeviceManagerEvdev *self)
|
|
|
|
{
|
2012-01-17 08:37:26 -05:00
|
|
|
ClutterDeviceManagerEvdevPrivate *priv;
|
|
|
|
|
2013-07-03 09:14:01 -04:00
|
|
|
priv = self->priv = clutter_device_manager_evdev_get_instance_private (self);
|
2012-01-17 08:37:26 -05:00
|
|
|
|
|
|
|
priv->stage_manager = clutter_stage_manager_get_default ();
|
|
|
|
g_object_ref (priv->stage_manager);
|
|
|
|
|
|
|
|
/* evdev doesn't have any way to link an event to a particular stage
|
|
|
|
so we'll have to leave it up to applications to set the
|
|
|
|
corresponding stage for an input device. However to make it
|
|
|
|
easier for applications that are only using one fullscreen stage
|
|
|
|
(which is probably the most frequent use-case for the evdev
|
|
|
|
backend) we'll associate any input devices that don't have a
|
|
|
|
stage with the first stage created. */
|
|
|
|
priv->stage_added_handler =
|
|
|
|
g_signal_connect (priv->stage_manager,
|
|
|
|
"stage-added",
|
|
|
|
G_CALLBACK (clutter_device_manager_evdev_stage_added_cb),
|
|
|
|
self);
|
|
|
|
priv->stage_removed_handler =
|
|
|
|
g_signal_connect (priv->stage_manager,
|
|
|
|
"stage-removed",
|
|
|
|
G_CALLBACK (clutter_device_manager_evdev_stage_removed_cb),
|
|
|
|
self);
|
2010-11-04 10:38:32 -04:00
|
|
|
}
|
2010-11-09 12:50:23 -05:00
|
|
|
|
|
|
|
void
|
|
|
|
_clutter_events_evdev_init (ClutterBackend *backend)
|
|
|
|
{
|
|
|
|
CLUTTER_NOTE (EVENT, "Initializing evdev backend");
|
|
|
|
|
2011-11-04 15:25:54 -04:00
|
|
|
backend->device_manager = g_object_new (CLUTTER_TYPE_DEVICE_MANAGER_EVDEV,
|
|
|
|
"backend", backend,
|
|
|
|
NULL);
|
2010-11-09 12:50:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
_clutter_events_evdev_uninit (ClutterBackend *backend)
|
|
|
|
{
|
2011-10-03 07:25:53 -04:00
|
|
|
CLUTTER_NOTE (EVENT, "Uninitializing evdev backend");
|
2010-11-09 12:50:23 -05:00
|
|
|
}
|
2012-01-22 10:36:17 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* clutter_evdev_release_devices:
|
|
|
|
*
|
|
|
|
* Releases all the evdev devices that Clutter is currently managing. This api
|
|
|
|
* is typically used when switching away from the Clutter application when
|
|
|
|
* switching tty. The devices can be reclaimed later with a call to
|
|
|
|
* clutter_evdev_reclaim_devices().
|
|
|
|
*
|
|
|
|
* This function should only be called after clutter has been initialized.
|
|
|
|
*
|
|
|
|
* Since: 1.10
|
|
|
|
* Stability: unstable
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
clutter_evdev_release_devices (void)
|
|
|
|
{
|
|
|
|
ClutterDeviceManager *manager = clutter_device_manager_get_default ();
|
|
|
|
ClutterDeviceManagerEvdev *evdev_manager;
|
|
|
|
ClutterDeviceManagerEvdevPrivate *priv;
|
|
|
|
GSList *l, *next;
|
|
|
|
|
|
|
|
if (!manager)
|
|
|
|
{
|
|
|
|
g_warning ("clutter_evdev_release_devices shouldn't be called "
|
|
|
|
"before clutter_init()");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_return_if_fail (CLUTTER_IS_DEVICE_MANAGER_EVDEV (manager));
|
|
|
|
|
|
|
|
evdev_manager = CLUTTER_DEVICE_MANAGER_EVDEV (manager);
|
|
|
|
priv = evdev_manager->priv;
|
|
|
|
|
|
|
|
if (priv->released)
|
|
|
|
{
|
|
|
|
g_warning ("clutter_evdev_release_devices() shouldn't be called "
|
|
|
|
"multiple times without a corresponding call to "
|
|
|
|
"clutter_evdev_reclaim_devices() first");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (l = priv->devices; l; l = next)
|
|
|
|
{
|
|
|
|
ClutterInputDevice *device = l->data;
|
|
|
|
|
|
|
|
/* Be careful about the list we're iterating being modified... */
|
|
|
|
next = l->next;
|
|
|
|
|
|
|
|
_clutter_device_manager_remove_device (manager, device);
|
|
|
|
}
|
|
|
|
|
|
|
|
priv->released = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* clutter_evdev_reclaim_devices:
|
|
|
|
*
|
|
|
|
* This causes Clutter to re-probe for evdev devices. This is must only be
|
|
|
|
* called after a corresponding call to clutter_evdev_release_devices()
|
|
|
|
* was previously used to release all evdev devices. This API is typically
|
|
|
|
* used when a clutter application using evdev has regained focus due to
|
|
|
|
* switching ttys.
|
|
|
|
*
|
|
|
|
* This function should only be called after clutter has been initialized.
|
|
|
|
*
|
|
|
|
* Since: 1.10
|
|
|
|
* Stability: unstable
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
clutter_evdev_reclaim_devices (void)
|
|
|
|
{
|
|
|
|
ClutterDeviceManager *manager = clutter_device_manager_get_default ();
|
|
|
|
ClutterDeviceManagerEvdev *evdev_manager;
|
|
|
|
ClutterDeviceManagerEvdevPrivate *priv;
|
|
|
|
|
|
|
|
if (!manager)
|
|
|
|
{
|
|
|
|
g_warning ("clutter_evdev_reclaim_devices shouldn't be called "
|
|
|
|
"before clutter_init()");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_return_if_fail (CLUTTER_IS_DEVICE_MANAGER_EVDEV (manager));
|
|
|
|
|
|
|
|
evdev_manager = CLUTTER_DEVICE_MANAGER_EVDEV (manager);
|
|
|
|
priv = evdev_manager->priv;
|
|
|
|
|
|
|
|
if (!priv->released)
|
|
|
|
{
|
|
|
|
g_warning ("Spurious call to clutter_evdev_reclaim_devices() without "
|
|
|
|
"previous call to clutter_evdev_release_devices");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
priv->released = FALSE;
|
|
|
|
clutter_device_manager_evdev_probe_devices (evdev_manager);
|
|
|
|
}
|
2013-07-15 12:24:35 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* clutter_evdev_set_open_callback: (skip)
|
|
|
|
* @callback: the user replacement for open()
|
|
|
|
* @user_data: user data for @callback
|
|
|
|
*
|
|
|
|
* Through this function, the application can set a custom callback
|
|
|
|
* to invoked when Clutter is about to open an evdev device. It can do
|
|
|
|
* so if special handling is needed, for example to circumvent permission
|
|
|
|
* problems.
|
|
|
|
*
|
|
|
|
* Setting @callback to %NULL will reset the default behavior.
|
|
|
|
*
|
|
|
|
* For reliable effects, this function must be called before clutter_init().
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
clutter_evdev_set_open_callback (ClutterOpenDeviceCallback callback,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
open_callback = callback;
|
|
|
|
open_callback_data = user_data;
|
|
|
|
}
|
2013-08-09 11:06:39 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* clutter_evdev_get_keyboard_state: (skip)
|
|
|
|
* @evdev: the #ClutterDeviceManager created by the evdev backend
|
|
|
|
*
|
|
|
|
* Returns the xkb state tracking object for keyboard devices.
|
|
|
|
* The object must be treated as read only, and should be used only
|
|
|
|
* for reading out the detailed group and modifier state.
|
2013-08-19 18:30:09 -04:00
|
|
|
*
|
|
|
|
* Return value: the #xkb_state struct
|
2013-08-09 11:06:39 -04:00
|
|
|
*/
|
|
|
|
struct xkb_state *
|
|
|
|
clutter_evdev_get_keyboard_state (ClutterDeviceManager *evdev)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (CLUTTER_IS_DEVICE_MANAGER_EVDEV (evdev), NULL);
|
|
|
|
|
|
|
|
return (CLUTTER_DEVICE_MANAGER_EVDEV (evdev))->priv->xkb;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* clutter_evdev_set_keyboard_map: (skip)
|
|
|
|
* @evdev: the #ClutterDeviceManager created by the evdev backend
|
|
|
|
* @keymap: the new keymap
|
|
|
|
*
|
|
|
|
* Instructs @evdev to use the speficied keyboard map. This will cause
|
|
|
|
* the backend to drop the state and create a new one with the new map.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
clutter_evdev_set_keyboard_map (ClutterDeviceManager *evdev,
|
|
|
|
struct xkb_keymap *keymap)
|
|
|
|
{
|
|
|
|
ClutterDeviceManagerEvdev *manager_evdev;
|
|
|
|
ClutterDeviceManagerEvdevPrivate *priv;
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
g_return_if_fail (CLUTTER_IS_DEVICE_MANAGER_EVDEV (evdev));
|
|
|
|
|
|
|
|
manager_evdev = CLUTTER_DEVICE_MANAGER_EVDEV (evdev);
|
|
|
|
priv = manager_evdev->priv;
|
|
|
|
|
|
|
|
xkb_state_unref (priv->xkb);
|
|
|
|
priv->xkb = xkb_state_new (keymap);
|
|
|
|
|
|
|
|
for (i = 0; i < priv->keys->len; i++)
|
|
|
|
xkb_state_update_key (priv->xkb, g_array_index (priv->keys, guint32, i), XKB_KEY_DOWN);
|
|
|
|
}
|
2013-08-23 06:15:40 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* clutter_evdev_set_pointer_constrain_callback:
|
|
|
|
* @evdev: the #ClutterDeviceManager created by the evdev backend
|
|
|
|
* @callback: the callback
|
|
|
|
* @user_data:
|
|
|
|
* @user_data_notify:
|
|
|
|
*
|
|
|
|
* Sets a callback to be invoked for every pointer motion. The callback
|
|
|
|
* can then modify the new pointer coordinates to constrain movement within
|
|
|
|
* a specific region.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
clutter_evdev_set_pointer_constrain_callback (ClutterDeviceManager *evdev,
|
|
|
|
ClutterPointerConstrainCallback callback,
|
|
|
|
gpointer user_data,
|
|
|
|
GDestroyNotify user_data_notify)
|
|
|
|
{
|
|
|
|
ClutterDeviceManagerEvdev *manager_evdev;
|
|
|
|
ClutterDeviceManagerEvdevPrivate *priv;
|
|
|
|
|
|
|
|
g_return_if_fail (CLUTTER_IS_DEVICE_MANAGER_EVDEV (evdev));
|
|
|
|
|
|
|
|
manager_evdev = CLUTTER_DEVICE_MANAGER_EVDEV (evdev);
|
|
|
|
priv = manager_evdev->priv;
|
|
|
|
|
|
|
|
if (priv->constrain_data_notify)
|
|
|
|
priv->constrain_data_notify (priv->constrain_data);
|
|
|
|
|
|
|
|
priv->constrain_callback = callback;
|
|
|
|
priv->constrain_data = user_data;
|
|
|
|
priv->constrain_data_notify = user_data_notify;
|
|
|
|
}
|