2013-05-03 13:51:22 -04:00
|
|
|
/*
|
|
|
|
* Wayland Support
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013 Intel Corporation
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
|
|
* 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright © 2010-2011 Intel Corporation
|
|
|
|
* Copyright © 2008-2011 Kristian Høgsberg
|
|
|
|
* Copyright © 2012 Collabora, Ltd.
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, distribute, and sell this software and
|
|
|
|
* its documentation for any purpose is hereby granted without fee, provided
|
|
|
|
* that the above copyright notice appear in all copies and that both that
|
|
|
|
* copyright notice and this permission notice appear in supporting
|
|
|
|
* documentation, and that the name of the copyright holders not be used in
|
|
|
|
* advertising or publicity pertaining to distribution of the software
|
|
|
|
* without specific, written prior permission. The copyright holders make
|
|
|
|
* no representations about the suitability of this software for any
|
|
|
|
* purpose. It is provided "as is" without express or implied warranty.
|
|
|
|
*
|
|
|
|
* THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
|
|
|
|
* SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
* FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
|
|
* SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
|
|
|
|
* RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
|
|
|
|
* CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* The file is based on src/input.c from Weston */
|
|
|
|
|
|
|
|
#define _GNU_SOURCE
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/mman.h>
|
2013-08-09 11:28:41 -04:00
|
|
|
#include <clutter/evdev/clutter-evdev.h>
|
2013-05-03 13:51:22 -04:00
|
|
|
|
2013-08-30 12:03:30 -04:00
|
|
|
#include "meta-wayland-private.h"
|
2013-05-03 13:51:22 -04:00
|
|
|
|
|
|
|
static int
|
|
|
|
create_anonymous_file (off_t size,
|
|
|
|
GError **error)
|
|
|
|
{
|
|
|
|
static const char template[] = "mutter-shared-XXXXXX";
|
|
|
|
char *path;
|
|
|
|
int fd, flags;
|
|
|
|
|
|
|
|
fd = g_file_open_tmp (template, &path, error);
|
|
|
|
|
|
|
|
if (fd == -1)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
unlink (path);
|
|
|
|
g_free (path);
|
|
|
|
|
|
|
|
flags = fcntl (fd, F_GETFD);
|
|
|
|
if (flags == -1)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
if (fcntl (fd, F_SETFD, flags | FD_CLOEXEC) == -1)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
if (ftruncate (fd, size) < 0)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
return fd;
|
|
|
|
|
|
|
|
err:
|
|
|
|
g_set_error_literal (error,
|
|
|
|
G_FILE_ERROR,
|
|
|
|
g_file_error_from_errno (errno),
|
|
|
|
strerror (errno));
|
|
|
|
close (fd);
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2013-09-04 05:11:39 -04:00
|
|
|
static void
|
|
|
|
inform_clients_of_new_keymap (MetaWaylandKeyboard *keyboard,
|
|
|
|
int flags)
|
2013-05-03 13:51:22 -04:00
|
|
|
{
|
2013-09-04 05:11:39 -04:00
|
|
|
MetaWaylandCompositor *compositor;
|
|
|
|
struct wl_client *xclient;
|
|
|
|
struct wl_resource *keyboard_resource;
|
|
|
|
|
|
|
|
compositor = meta_wayland_compositor_get_default ();
|
2014-02-03 19:37:23 -05:00
|
|
|
xclient = compositor->xwayland_manager.client;
|
2013-09-04 05:11:39 -04:00
|
|
|
|
|
|
|
wl_resource_for_each (keyboard_resource, &keyboard->resource_list)
|
|
|
|
{
|
|
|
|
if ((flags & META_WAYLAND_KEYBOARD_SKIP_XCLIENTS) &&
|
|
|
|
wl_resource_get_client (keyboard_resource) == xclient)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
wl_keyboard_send_keymap (keyboard_resource,
|
|
|
|
WL_KEYBOARD_KEYMAP_FORMAT_XKB_V1,
|
|
|
|
keyboard->xkb_info.keymap_fd,
|
|
|
|
keyboard->xkb_info.keymap_size);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
meta_wayland_keyboard_take_keymap (MetaWaylandKeyboard *keyboard,
|
|
|
|
struct xkb_keymap *keymap,
|
|
|
|
int flags)
|
|
|
|
{
|
|
|
|
MetaWaylandXkbInfo *xkb_info = &keyboard->xkb_info;
|
2013-05-03 13:51:22 -04:00
|
|
|
GError *error = NULL;
|
|
|
|
char *keymap_str;
|
2013-09-04 05:11:39 -04:00
|
|
|
size_t previous_size;
|
|
|
|
|
|
|
|
if (keymap == NULL)
|
|
|
|
{
|
|
|
|
g_warning ("Attempting to set null keymap (compilation probably failed)");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (xkb_info->keymap)
|
|
|
|
xkb_keymap_unref (xkb_info->keymap);
|
|
|
|
xkb_info->keymap = keymap;
|
2013-05-03 13:51:22 -04:00
|
|
|
|
|
|
|
keymap_str = xkb_map_get_as_string (xkb_info->keymap);
|
|
|
|
if (keymap_str == NULL)
|
|
|
|
{
|
2013-09-04 05:11:39 -04:00
|
|
|
g_warning ("failed to get string version of keymap");
|
|
|
|
return;
|
2013-05-03 13:51:22 -04:00
|
|
|
}
|
2013-09-04 05:11:39 -04:00
|
|
|
previous_size = xkb_info->keymap_size;
|
2013-05-03 13:51:22 -04:00
|
|
|
xkb_info->keymap_size = strlen (keymap_str) + 1;
|
|
|
|
|
2013-09-04 05:11:39 -04:00
|
|
|
if (xkb_info->keymap_fd >= 0)
|
|
|
|
close (xkb_info->keymap_fd);
|
|
|
|
|
2013-05-03 13:51:22 -04:00
|
|
|
xkb_info->keymap_fd = create_anonymous_file (xkb_info->keymap_size, &error);
|
|
|
|
if (xkb_info->keymap_fd < 0)
|
|
|
|
{
|
2013-09-04 05:11:39 -04:00
|
|
|
g_warning ("creating a keymap file for %lu bytes failed: %s",
|
2013-05-03 13:51:22 -04:00
|
|
|
(unsigned long) xkb_info->keymap_size,
|
|
|
|
error->message);
|
|
|
|
g_clear_error (&error);
|
|
|
|
goto err_keymap_str;
|
|
|
|
}
|
|
|
|
|
2013-09-04 05:11:39 -04:00
|
|
|
if (xkb_info->keymap_area)
|
|
|
|
munmap (xkb_info->keymap_area, previous_size);
|
|
|
|
|
2013-05-03 13:51:22 -04:00
|
|
|
xkb_info->keymap_area = mmap (NULL, xkb_info->keymap_size,
|
|
|
|
PROT_READ | PROT_WRITE,
|
|
|
|
MAP_SHARED, xkb_info->keymap_fd, 0);
|
|
|
|
if (xkb_info->keymap_area == MAP_FAILED)
|
|
|
|
{
|
|
|
|
g_warning ("failed to mmap() %lu bytes\n",
|
|
|
|
(unsigned long) xkb_info->keymap_size);
|
|
|
|
goto err_dev_zero;
|
|
|
|
}
|
|
|
|
strcpy (xkb_info->keymap_area, keymap_str);
|
|
|
|
free (keymap_str);
|
|
|
|
|
2014-02-17 20:49:04 -05:00
|
|
|
#if defined(CLUTTER_WINDOWING_EGL)
|
|
|
|
/* XXX -- the evdev backend can be used regardless of the
|
|
|
|
* windowing backend. To do this properly we need a Clutter
|
|
|
|
* API to check the input backend. */
|
|
|
|
if (clutter_check_windowing_backend (CLUTTER_WINDOWING_EGL))
|
2013-09-04 05:11:39 -04:00
|
|
|
{
|
|
|
|
ClutterDeviceManager *manager;
|
|
|
|
manager = clutter_device_manager_get_default ();
|
|
|
|
clutter_evdev_set_keyboard_map (manager, xkb_info->keymap);
|
|
|
|
}
|
2014-02-17 20:49:04 -05:00
|
|
|
#endif
|
2013-09-04 05:11:39 -04:00
|
|
|
|
|
|
|
inform_clients_of_new_keymap (keyboard, flags);
|
|
|
|
|
|
|
|
return;
|
2013-05-03 13:51:22 -04:00
|
|
|
|
|
|
|
err_dev_zero:
|
|
|
|
close (xkb_info->keymap_fd);
|
|
|
|
xkb_info->keymap_fd = -1;
|
|
|
|
err_keymap_str:
|
|
|
|
free (keymap_str);
|
2013-09-04 05:11:39 -04:00
|
|
|
return;
|
2013-05-03 13:51:22 -04:00
|
|
|
}
|
|
|
|
|
2013-12-03 10:46:57 -05:00
|
|
|
static void
|
2014-02-17 19:13:16 -05:00
|
|
|
keyboard_handle_focus_surface_destroy (struct wl_listener *listener, void *data)
|
2013-12-03 10:46:57 -05:00
|
|
|
{
|
2014-02-17 19:13:16 -05:00
|
|
|
MetaWaylandKeyboard *keyboard = wl_container_of (listener, keyboard, focus_surface_listener);
|
2014-02-20 11:29:28 -05:00
|
|
|
|
|
|
|
keyboard->focus_surface = NULL;
|
2014-02-22 18:11:20 -05:00
|
|
|
|
2014-02-23 09:59:42 -05:00
|
|
|
if (keyboard->focus_resource)
|
|
|
|
{
|
|
|
|
wl_list_remove (&keyboard->focus_resource_listener.link);
|
|
|
|
keyboard->focus_resource = NULL;
|
|
|
|
}
|
2014-02-18 18:00:26 -05:00
|
|
|
}
|
2013-12-03 10:46:57 -05:00
|
|
|
|
2014-02-18 18:00:26 -05:00
|
|
|
static void
|
|
|
|
keyboard_handle_focus_resource_destroy (struct wl_listener *listener, void *data)
|
|
|
|
{
|
|
|
|
MetaWaylandKeyboard *keyboard = wl_container_of (listener, keyboard, focus_resource_listener);
|
2014-02-20 11:29:28 -05:00
|
|
|
|
|
|
|
keyboard->focus_resource = NULL;
|
2013-12-03 10:46:57 -05:00
|
|
|
}
|
|
|
|
|
2013-09-04 09:01:11 -04:00
|
|
|
static gboolean
|
2013-05-03 13:51:22 -04:00
|
|
|
default_grab_key (MetaWaylandKeyboardGrab *grab,
|
|
|
|
uint32_t time, uint32_t key, uint32_t state)
|
|
|
|
{
|
|
|
|
MetaWaylandKeyboard *keyboard = grab->keyboard;
|
|
|
|
struct wl_resource *resource;
|
|
|
|
uint32_t serial;
|
|
|
|
|
|
|
|
resource = keyboard->focus_resource;
|
|
|
|
if (resource)
|
|
|
|
{
|
|
|
|
struct wl_client *client = wl_resource_get_client (resource);
|
|
|
|
struct wl_display *display = wl_client_get_display (client);
|
|
|
|
serial = wl_display_next_serial (display);
|
|
|
|
wl_keyboard_send_key (resource, serial, time, key, state);
|
|
|
|
}
|
2013-09-04 09:01:11 -04:00
|
|
|
|
|
|
|
return resource != NULL;
|
2013-05-03 13:51:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct wl_resource *
|
|
|
|
find_resource_for_surface (struct wl_list *list, MetaWaylandSurface *surface)
|
|
|
|
{
|
|
|
|
struct wl_client *client;
|
|
|
|
|
|
|
|
if (!surface)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (!surface->resource)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
client = wl_resource_get_client (surface->resource);
|
|
|
|
|
|
|
|
return wl_resource_find_for_client (list, client);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
default_grab_modifiers (MetaWaylandKeyboardGrab *grab, uint32_t serial,
|
|
|
|
uint32_t mods_depressed, uint32_t mods_latched,
|
|
|
|
uint32_t mods_locked, uint32_t group)
|
|
|
|
{
|
|
|
|
MetaWaylandKeyboard *keyboard = grab->keyboard;
|
|
|
|
|
2014-02-18 23:18:44 -05:00
|
|
|
if (keyboard->focus_resource)
|
2013-05-03 13:51:22 -04:00
|
|
|
{
|
2014-02-18 23:18:44 -05:00
|
|
|
wl_keyboard_send_modifiers (keyboard->focus_resource, serial, mods_depressed,
|
|
|
|
mods_latched, mods_locked, group);
|
2013-05-03 13:51:22 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const MetaWaylandKeyboardGrabInterface
|
|
|
|
default_keyboard_grab_interface = {
|
|
|
|
default_grab_key,
|
|
|
|
default_grab_modifiers,
|
|
|
|
};
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
meta_wayland_keyboard_init (MetaWaylandKeyboard *keyboard,
|
2014-02-17 20:49:04 -05:00
|
|
|
struct wl_display *display)
|
2013-05-03 13:51:22 -04:00
|
|
|
{
|
|
|
|
memset (keyboard, 0, sizeof *keyboard);
|
2013-09-04 05:11:39 -04:00
|
|
|
keyboard->xkb_info.keymap_fd = -1;
|
2013-05-03 13:51:22 -04:00
|
|
|
|
|
|
|
wl_list_init (&keyboard->resource_list);
|
|
|
|
wl_array_init (&keyboard->keys);
|
2014-02-18 18:00:26 -05:00
|
|
|
|
2014-02-17 19:13:16 -05:00
|
|
|
keyboard->focus_surface_listener.notify = keyboard_handle_focus_surface_destroy;
|
2014-02-18 18:00:26 -05:00
|
|
|
keyboard->focus_resource_listener.notify = keyboard_handle_focus_resource_destroy;
|
|
|
|
|
2013-05-03 13:51:22 -04:00
|
|
|
keyboard->default_grab.interface = &default_keyboard_grab_interface;
|
|
|
|
keyboard->default_grab.keyboard = keyboard;
|
|
|
|
keyboard->grab = &keyboard->default_grab;
|
|
|
|
|
|
|
|
keyboard->display = display;
|
|
|
|
|
|
|
|
keyboard->xkb_context = xkb_context_new (0 /* flags */);
|
2013-08-09 11:28:41 -04:00
|
|
|
|
2013-09-04 05:11:39 -04:00
|
|
|
/* Compute a default until gnome-settings-daemon starts and sets
|
|
|
|
the appropriate values
|
|
|
|
*/
|
|
|
|
meta_wayland_keyboard_set_keymap_names (keyboard,
|
|
|
|
"evdev",
|
|
|
|
"pc105",
|
|
|
|
"us", "", "", 0);
|
2013-05-03 13:51:22 -04:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
meta_wayland_xkb_info_destroy (MetaWaylandXkbInfo *xkb_info)
|
|
|
|
{
|
|
|
|
if (xkb_info->keymap)
|
|
|
|
xkb_map_unref (xkb_info->keymap);
|
|
|
|
|
|
|
|
if (xkb_info->keymap_area)
|
|
|
|
munmap (xkb_info->keymap_area, xkb_info->keymap_size);
|
|
|
|
if (xkb_info->keymap_fd >= 0)
|
|
|
|
close (xkb_info->keymap_fd);
|
|
|
|
}
|
|
|
|
|
2013-08-09 11:28:41 -04:00
|
|
|
static gboolean
|
|
|
|
state_equal (MetaWaylandXkbState *one,
|
|
|
|
MetaWaylandXkbState *two)
|
|
|
|
{
|
|
|
|
return one->mods_depressed == two->mods_depressed &&
|
|
|
|
one->mods_latched == two->mods_latched &&
|
|
|
|
one->mods_locked == two->mods_locked &&
|
|
|
|
one->group == two->group;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
set_modifiers (MetaWaylandKeyboard *keyboard,
|
2013-09-04 09:01:11 -04:00
|
|
|
guint32 serial,
|
|
|
|
ClutterEvent *event)
|
2013-08-09 11:28:41 -04:00
|
|
|
{
|
|
|
|
MetaWaylandKeyboardGrab *grab = keyboard->grab;
|
|
|
|
MetaWaylandXkbState new_state;
|
2013-09-04 09:01:11 -04:00
|
|
|
guint effective_state;
|
2013-08-09 11:28:41 -04:00
|
|
|
|
2013-09-04 09:01:11 -04:00
|
|
|
clutter_event_get_state_full (event,
|
|
|
|
NULL,
|
|
|
|
&new_state.mods_depressed,
|
|
|
|
&new_state.mods_latched,
|
|
|
|
&new_state.mods_locked,
|
|
|
|
&effective_state);
|
|
|
|
new_state.group = (effective_state >> 13) & 0x3;
|
2013-08-09 11:28:41 -04:00
|
|
|
|
|
|
|
if (state_equal (&keyboard->modifier_state, &new_state))
|
|
|
|
return;
|
|
|
|
|
|
|
|
keyboard->modifier_state = new_state;
|
2013-05-03 13:51:22 -04:00
|
|
|
|
|
|
|
grab->interface->modifiers (grab,
|
|
|
|
serial,
|
2013-08-09 11:28:41 -04:00
|
|
|
new_state.mods_depressed,
|
|
|
|
new_state.mods_latched,
|
|
|
|
new_state.mods_locked,
|
|
|
|
new_state.group);
|
2013-05-03 13:51:22 -04:00
|
|
|
}
|
|
|
|
|
2014-03-18 13:24:52 -04:00
|
|
|
static void
|
2013-09-04 09:01:11 -04:00
|
|
|
update_pressed_keys (MetaWaylandKeyboard *keyboard,
|
|
|
|
uint32_t evdev_code,
|
|
|
|
gboolean is_press)
|
2013-05-03 13:51:22 -04:00
|
|
|
{
|
2013-09-04 09:01:11 -04:00
|
|
|
if (is_press)
|
2013-05-03 13:51:22 -04:00
|
|
|
{
|
|
|
|
uint32_t *end = (void *) ((char *) keyboard->keys.data +
|
|
|
|
keyboard->keys.size);
|
|
|
|
uint32_t *k;
|
|
|
|
|
2014-03-18 13:24:52 -04:00
|
|
|
/* Make sure we don't already have this key. */
|
2013-05-03 13:51:22 -04:00
|
|
|
for (k = keyboard->keys.data; k < end; k++)
|
|
|
|
if (*k == evdev_code)
|
2014-03-18 13:24:52 -04:00
|
|
|
return;
|
2013-05-03 13:51:22 -04:00
|
|
|
|
|
|
|
/* Otherwise add the key to the list of pressed keys */
|
|
|
|
k = wl_array_add (&keyboard->keys, sizeof (*k));
|
|
|
|
*k = evdev_code;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
uint32_t *end = (void *) ((char *) keyboard->keys.data +
|
|
|
|
keyboard->keys.size);
|
|
|
|
uint32_t *k;
|
|
|
|
|
|
|
|
/* Remove the key from the array */
|
|
|
|
for (k = keyboard->keys.data; k < end; k++)
|
|
|
|
if (*k == evdev_code)
|
|
|
|
{
|
|
|
|
*k = *(end - 1);
|
|
|
|
keyboard->keys.size -= sizeof (*k);
|
2014-03-18 13:24:52 -04:00
|
|
|
return;
|
2013-05-03 13:51:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
g_warning ("unexpected key release event for key 0x%x", evdev_code);
|
|
|
|
}
|
2013-09-04 09:01:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
meta_wayland_keyboard_handle_event (MetaWaylandKeyboard *keyboard,
|
|
|
|
const ClutterKeyEvent *event)
|
|
|
|
{
|
|
|
|
gboolean is_press = event->type == CLUTTER_KEY_PRESS;
|
|
|
|
guint xkb_keycode, evdev_code;
|
|
|
|
uint32_t serial;
|
|
|
|
gboolean handled;
|
|
|
|
|
|
|
|
xkb_keycode = event->hardware_keycode;
|
|
|
|
if (event->device == NULL ||
|
|
|
|
!clutter_input_device_keycode_to_evdev (event->device,
|
|
|
|
xkb_keycode, &evdev_code))
|
|
|
|
evdev_code = xkb_keycode - 8; /* What everyone is doing in practice... */
|
|
|
|
|
2014-03-18 13:24:52 -04:00
|
|
|
/* Synthetic key events are for autorepeat. Ignore those, as
|
|
|
|
* autorepeat in Wayland is done on the client side. */
|
|
|
|
if (event->flags & CLUTTER_EVENT_FLAG_SYNTHETIC)
|
|
|
|
return FALSE;
|
2013-09-04 09:01:11 -04:00
|
|
|
|
2014-03-18 13:24:52 -04:00
|
|
|
meta_verbose ("Handling key %s event code %d\n",
|
2013-09-04 09:01:11 -04:00
|
|
|
is_press ? "press" : "release",
|
|
|
|
xkb_keycode);
|
|
|
|
|
2014-03-18 13:24:52 -04:00
|
|
|
update_pressed_keys (keyboard, evdev_code, is_press);
|
2013-09-04 09:01:11 -04:00
|
|
|
|
2013-05-03 13:51:22 -04:00
|
|
|
serial = wl_display_next_serial (keyboard->display);
|
|
|
|
|
2013-09-04 09:01:11 -04:00
|
|
|
set_modifiers (keyboard, serial, (ClutterEvent*)event);
|
2013-05-03 13:51:22 -04:00
|
|
|
|
2013-09-04 09:01:11 -04:00
|
|
|
handled = keyboard->grab->interface->key (keyboard->grab,
|
|
|
|
event->time,
|
|
|
|
evdev_code,
|
|
|
|
is_press);
|
|
|
|
|
|
|
|
if (handled)
|
|
|
|
meta_verbose ("Sent event to wayland client\n");
|
|
|
|
else
|
|
|
|
meta_verbose ("No wayland surface is focused, continuing normal operation\n");
|
|
|
|
|
|
|
|
return handled;
|
2013-05-03 13:51:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_wayland_keyboard_set_focus (MetaWaylandKeyboard *keyboard,
|
|
|
|
MetaWaylandSurface *surface)
|
|
|
|
{
|
2014-02-18 18:00:26 -05:00
|
|
|
if (keyboard->focus_surface == surface && keyboard->focus_resource != NULL)
|
2013-11-19 20:25:52 -05:00
|
|
|
return;
|
2013-05-03 13:51:22 -04:00
|
|
|
|
2014-02-18 23:16:54 -05:00
|
|
|
if (keyboard->focus_surface != NULL)
|
2013-11-19 20:25:52 -05:00
|
|
|
{
|
2014-02-18 23:16:54 -05:00
|
|
|
if (keyboard->focus_resource)
|
|
|
|
{
|
|
|
|
if (keyboard->focus_surface->resource)
|
|
|
|
{
|
|
|
|
struct wl_client *client = wl_resource_get_client (keyboard->focus_resource);
|
|
|
|
struct wl_display *display = wl_client_get_display (client);
|
|
|
|
uint32_t serial = wl_display_next_serial (display);
|
|
|
|
wl_keyboard_send_leave (keyboard->focus_resource, serial, keyboard->focus_surface->resource);
|
|
|
|
}
|
|
|
|
|
|
|
|
wl_list_remove (&keyboard->focus_resource_listener.link);
|
|
|
|
keyboard->focus_resource = NULL;
|
|
|
|
}
|
2014-02-19 07:56:56 -05:00
|
|
|
|
|
|
|
wl_list_remove (&keyboard->focus_surface_listener.link);
|
|
|
|
keyboard->focus_surface = NULL;
|
2013-05-03 13:51:22 -04:00
|
|
|
}
|
|
|
|
|
2014-02-18 23:16:54 -05:00
|
|
|
if (surface != NULL)
|
2013-05-03 13:51:22 -04:00
|
|
|
{
|
2014-02-18 18:00:26 -05:00
|
|
|
keyboard->focus_surface = surface;
|
|
|
|
wl_resource_add_destroy_listener (keyboard->focus_surface->resource, &keyboard->focus_surface_listener);
|
|
|
|
|
2014-02-18 23:16:54 -05:00
|
|
|
keyboard->focus_resource = find_resource_for_surface (&keyboard->resource_list, surface);
|
|
|
|
if (keyboard->focus_resource)
|
|
|
|
{
|
|
|
|
struct wl_client *client = wl_resource_get_client (keyboard->focus_resource);
|
|
|
|
struct wl_display *display = wl_client_get_display (client);
|
|
|
|
uint32_t serial = wl_display_next_serial (display);
|
|
|
|
|
2014-03-10 14:49:41 -04:00
|
|
|
wl_keyboard_send_modifiers (keyboard->focus_resource, serial,
|
|
|
|
keyboard->modifier_state.mods_depressed,
|
|
|
|
keyboard->modifier_state.mods_latched,
|
|
|
|
keyboard->modifier_state.mods_locked,
|
|
|
|
keyboard->modifier_state.group);
|
|
|
|
wl_keyboard_send_enter (keyboard->focus_resource, serial, keyboard->focus_surface->resource,
|
|
|
|
&keyboard->keys);
|
2014-02-18 23:16:54 -05:00
|
|
|
|
|
|
|
wl_resource_add_destroy_listener (keyboard->focus_resource, &keyboard->focus_resource_listener);
|
|
|
|
keyboard->focus_serial = serial;
|
|
|
|
}
|
2014-02-18 18:00:26 -05:00
|
|
|
}
|
2013-05-03 13:51:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_wayland_keyboard_start_grab (MetaWaylandKeyboard *keyboard,
|
|
|
|
MetaWaylandKeyboardGrab *grab)
|
|
|
|
{
|
|
|
|
keyboard->grab = grab;
|
|
|
|
grab->keyboard = keyboard;
|
|
|
|
|
|
|
|
/* XXX focus? */
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_wayland_keyboard_end_grab (MetaWaylandKeyboard *keyboard)
|
|
|
|
{
|
|
|
|
keyboard->grab = &keyboard->default_grab;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_wayland_keyboard_release (MetaWaylandKeyboard *keyboard)
|
|
|
|
{
|
|
|
|
meta_wayland_xkb_info_destroy (&keyboard->xkb_info);
|
|
|
|
xkb_context_unref (keyboard->xkb_context);
|
2013-12-03 10:46:57 -05:00
|
|
|
|
|
|
|
/* XXX: What about keyboard->resource_list? */
|
2013-05-03 13:51:22 -04:00
|
|
|
wl_array_release (&keyboard->keys);
|
|
|
|
}
|
2013-08-13 10:51:33 -04:00
|
|
|
|
2013-09-04 05:11:39 -04:00
|
|
|
void
|
|
|
|
meta_wayland_keyboard_set_keymap_names (MetaWaylandKeyboard *keyboard,
|
|
|
|
const char *rules,
|
|
|
|
const char *model,
|
|
|
|
const char *layout,
|
|
|
|
const char *variant,
|
|
|
|
const char *options,
|
|
|
|
int flags)
|
|
|
|
{
|
|
|
|
struct xkb_rule_names xkb_names;
|
|
|
|
|
|
|
|
xkb_names.rules = rules;
|
|
|
|
xkb_names.model = model;
|
|
|
|
xkb_names.layout = layout;
|
|
|
|
xkb_names.variant = variant;
|
|
|
|
xkb_names.options = options;
|
|
|
|
|
|
|
|
meta_wayland_keyboard_take_keymap (keyboard,
|
|
|
|
xkb_keymap_new_from_names (keyboard->xkb_context,
|
|
|
|
&xkb_names,
|
|
|
|
0 /* flags */),
|
|
|
|
flags);
|
|
|
|
}
|
|
|
|
|