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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include "meta-wayland-seat.h"
|
2014-04-22 17:58:01 -04:00
|
|
|
|
2014-04-22 18:05:44 -04:00
|
|
|
#include "meta-wayland-private.h"
|
2014-04-22 17:58:01 -04:00
|
|
|
#include "meta-wayland-versions.h"
|
2014-07-10 10:13:54 -04:00
|
|
|
#include "meta-wayland-data-device.h"
|
2013-05-03 13:51:22 -04:00
|
|
|
|
2014-07-23 09:33:03 -04:00
|
|
|
#define CAPABILITY_ENABLED(prev, cur, capability) ((cur & (capability)) && !(prev & (capability)))
|
|
|
|
#define CAPABILITY_DISABLED(prev, cur, capability) ((prev & (capability)) && !(cur & (capability)))
|
|
|
|
|
2013-05-03 13:51:22 -04:00
|
|
|
static void
|
|
|
|
unbind_resource (struct wl_resource *resource)
|
|
|
|
{
|
|
|
|
wl_list_remove (wl_resource_get_link (resource));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
seat_get_pointer (struct wl_client *client,
|
|
|
|
struct wl_resource *resource,
|
|
|
|
uint32_t id)
|
|
|
|
{
|
|
|
|
MetaWaylandSeat *seat = wl_resource_get_user_data (resource);
|
2014-04-17 16:41:37 -04:00
|
|
|
MetaWaylandPointer *pointer = &seat->pointer;
|
2013-05-03 13:51:22 -04:00
|
|
|
|
2015-02-18 10:43:42 -05:00
|
|
|
if ((seat->capabilities & WL_SEAT_CAPABILITY_POINTER) != 0)
|
|
|
|
meta_wayland_pointer_create_new_resource (pointer, client, resource, id);
|
2013-05-03 13:51:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
seat_get_keyboard (struct wl_client *client,
|
|
|
|
struct wl_resource *resource,
|
|
|
|
uint32_t id)
|
|
|
|
{
|
|
|
|
MetaWaylandSeat *seat = wl_resource_get_user_data (resource);
|
2014-04-17 16:41:37 -04:00
|
|
|
MetaWaylandKeyboard *keyboard = &seat->keyboard;
|
2013-05-03 13:51:22 -04:00
|
|
|
|
2015-02-18 10:43:42 -05:00
|
|
|
if ((seat->capabilities & WL_SEAT_CAPABILITY_KEYBOARD) != 0)
|
|
|
|
meta_wayland_keyboard_create_new_resource (keyboard, client, resource, id);
|
2013-05-03 13:51:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
seat_get_touch (struct wl_client *client,
|
|
|
|
struct wl_resource *resource,
|
|
|
|
uint32_t id)
|
|
|
|
{
|
2014-04-24 08:50:47 -04:00
|
|
|
MetaWaylandSeat *seat = wl_resource_get_user_data (resource);
|
|
|
|
MetaWaylandTouch *touch = &seat->touch;
|
|
|
|
|
2015-02-18 10:43:42 -05:00
|
|
|
if ((seat->capabilities & WL_SEAT_CAPABILITY_TOUCH) != 0)
|
|
|
|
meta_wayland_touch_create_new_resource (touch, client, resource, id);
|
2013-05-03 13:51:22 -04:00
|
|
|
}
|
|
|
|
|
2014-04-17 16:36:45 -04:00
|
|
|
static const struct wl_seat_interface seat_interface = {
|
|
|
|
seat_get_pointer,
|
|
|
|
seat_get_keyboard,
|
|
|
|
seat_get_touch
|
|
|
|
};
|
2013-05-03 13:51:22 -04:00
|
|
|
|
|
|
|
static void
|
|
|
|
bind_seat (struct wl_client *client,
|
|
|
|
void *data,
|
|
|
|
guint32 version,
|
|
|
|
guint32 id)
|
|
|
|
{
|
|
|
|
MetaWaylandSeat *seat = data;
|
|
|
|
struct wl_resource *resource;
|
|
|
|
|
2014-08-04 10:24:59 -04:00
|
|
|
resource = wl_resource_create (client, &wl_seat_interface, version, id);
|
2013-09-10 07:03:37 -04:00
|
|
|
wl_resource_set_implementation (resource, &seat_interface, seat, unbind_resource);
|
2013-05-03 13:51:22 -04:00
|
|
|
wl_list_insert (&seat->base_resource_list, wl_resource_get_link (resource));
|
|
|
|
|
2014-07-23 09:33:03 -04:00
|
|
|
wl_seat_send_capabilities (resource, seat->capabilities);
|
2013-09-10 07:03:37 -04:00
|
|
|
|
2014-05-12 17:00:49 -04:00
|
|
|
if (version >= WL_SEAT_NAME_SINCE_VERSION)
|
2013-09-10 07:03:37 -04:00
|
|
|
wl_seat_send_name (resource, "seat0");
|
2013-05-03 13:51:22 -04:00
|
|
|
}
|
|
|
|
|
2014-07-23 09:33:03 -04:00
|
|
|
static uint32_t
|
|
|
|
lookup_device_capabilities (ClutterDeviceManager *device_manager)
|
|
|
|
{
|
|
|
|
const GSList *devices, *l;
|
|
|
|
uint32_t capabilities = 0;
|
|
|
|
|
|
|
|
devices = clutter_device_manager_peek_devices (device_manager);
|
|
|
|
|
|
|
|
for (l = devices; l; l = l->next)
|
|
|
|
{
|
|
|
|
ClutterInputDeviceType device_type;
|
|
|
|
|
|
|
|
/* Only look for physical devices, master devices have rather generic
|
|
|
|
* keyboard/pointer device types, which is not truly representative of
|
|
|
|
* the slave devices connected to them.
|
|
|
|
*/
|
|
|
|
if (clutter_input_device_get_device_mode (l->data) == CLUTTER_INPUT_MODE_MASTER)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
device_type = clutter_input_device_get_device_type (l->data);
|
|
|
|
|
|
|
|
switch (device_type)
|
|
|
|
{
|
2015-02-18 10:35:53 -05:00
|
|
|
case CLUTTER_TOUCHPAD_DEVICE:
|
2014-07-23 09:33:03 -04:00
|
|
|
case CLUTTER_POINTER_DEVICE:
|
|
|
|
capabilities |= WL_SEAT_CAPABILITY_POINTER;
|
|
|
|
break;
|
|
|
|
case CLUTTER_KEYBOARD_DEVICE:
|
|
|
|
capabilities |= WL_SEAT_CAPABILITY_KEYBOARD;
|
|
|
|
break;
|
|
|
|
case CLUTTER_TOUCHSCREEN_DEVICE:
|
|
|
|
capabilities |= WL_SEAT_CAPABILITY_TOUCH;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
g_debug ("Ignoring device '%s' with unhandled type %d",
|
|
|
|
clutter_input_device_get_device_name (l->data),
|
|
|
|
device_type);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return capabilities;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
meta_wayland_seat_set_capabilities (MetaWaylandSeat *seat,
|
|
|
|
uint32_t flags)
|
|
|
|
{
|
|
|
|
struct wl_resource *resource;
|
|
|
|
uint32_t prev_flags;
|
|
|
|
|
|
|
|
prev_flags = seat->capabilities;
|
|
|
|
|
|
|
|
if (prev_flags == flags)
|
|
|
|
return;
|
|
|
|
|
|
|
|
seat->capabilities = flags;
|
|
|
|
|
|
|
|
if (CAPABILITY_ENABLED (prev_flags, flags, WL_SEAT_CAPABILITY_POINTER))
|
|
|
|
meta_wayland_pointer_init (&seat->pointer, seat->wl_display);
|
|
|
|
else if (CAPABILITY_DISABLED (prev_flags, flags, WL_SEAT_CAPABILITY_POINTER))
|
|
|
|
meta_wayland_pointer_release (&seat->pointer);
|
|
|
|
|
|
|
|
if (CAPABILITY_ENABLED (prev_flags, flags, WL_SEAT_CAPABILITY_KEYBOARD))
|
|
|
|
{
|
|
|
|
MetaDisplay *display;
|
|
|
|
|
|
|
|
meta_wayland_keyboard_init (&seat->keyboard, seat->wl_display);
|
|
|
|
display = meta_get_display ();
|
|
|
|
|
|
|
|
/* Post-initialization, ensure the input focus is in sync */
|
|
|
|
if (display)
|
|
|
|
meta_display_sync_wayland_input_focus (display);
|
|
|
|
}
|
|
|
|
else if (CAPABILITY_DISABLED (prev_flags, flags, WL_SEAT_CAPABILITY_KEYBOARD))
|
|
|
|
meta_wayland_keyboard_release (&seat->keyboard);
|
|
|
|
|
|
|
|
if (CAPABILITY_ENABLED (prev_flags, flags, WL_SEAT_CAPABILITY_TOUCH))
|
|
|
|
meta_wayland_touch_init (&seat->touch, seat->wl_display);
|
|
|
|
else if (CAPABILITY_DISABLED (prev_flags, flags, WL_SEAT_CAPABILITY_TOUCH))
|
|
|
|
meta_wayland_touch_release (&seat->touch);
|
|
|
|
|
|
|
|
/* Broadcast capability changes */
|
|
|
|
wl_resource_for_each (resource, &seat->base_resource_list)
|
|
|
|
{
|
|
|
|
wl_seat_send_capabilities (resource, flags);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
meta_wayland_seat_update_capabilities (MetaWaylandSeat *seat,
|
|
|
|
ClutterDeviceManager *device_manager)
|
|
|
|
{
|
|
|
|
uint32_t capabilities;
|
|
|
|
|
|
|
|
capabilities = lookup_device_capabilities (device_manager);
|
|
|
|
meta_wayland_seat_set_capabilities (seat, capabilities);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
meta_wayland_seat_devices_updated (ClutterDeviceManager *device_manager,
|
|
|
|
ClutterInputDevice *input_device,
|
|
|
|
MetaWaylandSeat *seat)
|
|
|
|
{
|
|
|
|
meta_wayland_seat_update_capabilities (seat, device_manager);
|
|
|
|
}
|
|
|
|
|
2014-04-22 18:05:44 -04:00
|
|
|
static MetaWaylandSeat *
|
2014-02-17 20:49:04 -05:00
|
|
|
meta_wayland_seat_new (struct wl_display *display)
|
2013-05-03 13:51:22 -04:00
|
|
|
{
|
|
|
|
MetaWaylandSeat *seat = g_new0 (MetaWaylandSeat, 1);
|
2014-07-23 09:33:03 -04:00
|
|
|
ClutterDeviceManager *device_manager;
|
2013-05-03 13:51:22 -04:00
|
|
|
|
|
|
|
wl_list_init (&seat->base_resource_list);
|
2014-07-23 09:33:03 -04:00
|
|
|
seat->wl_display = display;
|
2013-05-03 13:51:22 -04:00
|
|
|
|
2014-07-10 10:31:08 -04:00
|
|
|
meta_wayland_data_device_init (&seat->data_device);
|
2013-05-03 13:51:22 -04:00
|
|
|
|
2014-07-23 09:33:03 -04:00
|
|
|
device_manager = clutter_device_manager_get_default ();
|
|
|
|
meta_wayland_seat_update_capabilities (seat, device_manager);
|
|
|
|
g_signal_connect (device_manager, "device-added",
|
|
|
|
G_CALLBACK (meta_wayland_seat_devices_updated), seat);
|
|
|
|
g_signal_connect (device_manager, "device-removed",
|
|
|
|
G_CALLBACK (meta_wayland_seat_devices_updated), seat);
|
|
|
|
|
2013-09-10 07:45:27 -04:00
|
|
|
wl_global_create (display, &wl_seat_interface, META_WL_SEAT_VERSION, seat, bind_seat);
|
2013-05-03 13:51:22 -04:00
|
|
|
|
|
|
|
return seat;
|
|
|
|
}
|
|
|
|
|
2014-04-22 18:05:44 -04:00
|
|
|
void
|
|
|
|
meta_wayland_seat_init (MetaWaylandCompositor *compositor)
|
|
|
|
{
|
|
|
|
compositor->seat = meta_wayland_seat_new (compositor->wayland_display);
|
|
|
|
}
|
|
|
|
|
2014-04-17 18:57:25 -04:00
|
|
|
void
|
|
|
|
meta_wayland_seat_free (MetaWaylandSeat *seat)
|
|
|
|
{
|
2014-07-23 09:33:03 -04:00
|
|
|
ClutterDeviceManager *device_manager;
|
|
|
|
|
|
|
|
device_manager = clutter_device_manager_get_default ();
|
|
|
|
g_signal_handlers_disconnect_by_data (device_manager, seat);
|
|
|
|
meta_wayland_seat_set_capabilities (seat, 0);
|
2014-04-17 18:57:25 -04:00
|
|
|
|
|
|
|
g_slice_free (MetaWaylandSeat, seat);
|
|
|
|
}
|
|
|
|
|
2015-02-18 10:43:18 -05:00
|
|
|
static gboolean
|
|
|
|
event_from_supported_hardware_device (MetaWaylandSeat *seat,
|
|
|
|
const ClutterEvent *event)
|
|
|
|
{
|
|
|
|
ClutterInputDevice *input_device;
|
|
|
|
ClutterInputMode input_mode;
|
|
|
|
ClutterInputDeviceType device_type;
|
|
|
|
gboolean hardware_device = FALSE;
|
|
|
|
gboolean supported_device = FALSE;
|
|
|
|
|
|
|
|
input_device = clutter_event_get_source_device (event);
|
|
|
|
|
|
|
|
if (input_device == NULL)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
input_mode = clutter_input_device_get_device_mode (input_device);
|
|
|
|
|
|
|
|
if (input_mode != CLUTTER_INPUT_MODE_SLAVE)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
hardware_device = TRUE;
|
|
|
|
|
|
|
|
device_type = clutter_input_device_get_device_type (input_device);
|
|
|
|
|
|
|
|
switch (device_type)
|
|
|
|
{
|
|
|
|
case CLUTTER_TOUCHPAD_DEVICE:
|
|
|
|
case CLUTTER_POINTER_DEVICE:
|
|
|
|
case CLUTTER_KEYBOARD_DEVICE:
|
|
|
|
case CLUTTER_TOUCHSCREEN_DEVICE:
|
|
|
|
supported_device = TRUE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
supported_device = FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
|
|
|
return hardware_device && supported_device;
|
|
|
|
}
|
|
|
|
|
2014-04-17 19:07:43 -04:00
|
|
|
void
|
|
|
|
meta_wayland_seat_update (MetaWaylandSeat *seat,
|
|
|
|
const ClutterEvent *event)
|
|
|
|
{
|
2015-02-18 10:43:18 -05:00
|
|
|
if (!event_from_supported_hardware_device (seat, event))
|
|
|
|
return;
|
|
|
|
|
2014-04-17 19:07:43 -04:00
|
|
|
switch (event->type)
|
|
|
|
{
|
|
|
|
case CLUTTER_MOTION:
|
|
|
|
case CLUTTER_BUTTON_PRESS:
|
|
|
|
case CLUTTER_BUTTON_RELEASE:
|
|
|
|
case CLUTTER_SCROLL:
|
2014-04-17 17:52:11 -04:00
|
|
|
meta_wayland_pointer_update (&seat->pointer, event);
|
2014-04-17 19:07:43 -04:00
|
|
|
break;
|
2014-04-17 17:52:11 -04:00
|
|
|
|
2014-04-17 19:07:43 -04:00
|
|
|
case CLUTTER_KEY_PRESS:
|
|
|
|
case CLUTTER_KEY_RELEASE:
|
|
|
|
meta_wayland_keyboard_update (&seat->keyboard, (const ClutterKeyEvent *) event);
|
|
|
|
break;
|
2014-04-17 17:52:11 -04:00
|
|
|
|
2014-04-24 08:50:47 -04:00
|
|
|
case CLUTTER_TOUCH_BEGIN:
|
|
|
|
case CLUTTER_TOUCH_UPDATE:
|
|
|
|
case CLUTTER_TOUCH_END:
|
|
|
|
meta_wayland_touch_update (&seat->touch, event);
|
|
|
|
break;
|
|
|
|
|
2014-04-17 19:07:43 -04:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-13 15:41:29 -05:00
|
|
|
gboolean
|
|
|
|
meta_wayland_seat_handle_event (MetaWaylandSeat *seat,
|
|
|
|
const ClutterEvent *event)
|
|
|
|
{
|
2015-02-18 10:43:18 -05:00
|
|
|
if (!event_from_supported_hardware_device (seat, event))
|
|
|
|
return FALSE;
|
|
|
|
|
2013-05-03 13:51:22 -04:00
|
|
|
switch (event->type)
|
|
|
|
{
|
|
|
|
case CLUTTER_MOTION:
|
|
|
|
case CLUTTER_BUTTON_PRESS:
|
|
|
|
case CLUTTER_BUTTON_RELEASE:
|
2014-04-17 19:10:39 -04:00
|
|
|
case CLUTTER_SCROLL:
|
2015-07-22 10:43:25 -04:00
|
|
|
case CLUTTER_TOUCHPAD_SWIPE:
|
2015-07-22 10:46:55 -04:00
|
|
|
case CLUTTER_TOUCHPAD_PINCH:
|
2014-04-17 18:16:49 -04:00
|
|
|
return meta_wayland_pointer_handle_event (&seat->pointer, event);
|
2014-04-17 19:10:39 -04:00
|
|
|
|
2013-05-03 13:51:22 -04:00
|
|
|
case CLUTTER_KEY_PRESS:
|
|
|
|
case CLUTTER_KEY_RELEASE:
|
2013-09-04 09:01:11 -04:00
|
|
|
return meta_wayland_keyboard_handle_event (&seat->keyboard,
|
|
|
|
(const ClutterKeyEvent *) event);
|
2014-04-24 08:50:47 -04:00
|
|
|
case CLUTTER_TOUCH_BEGIN:
|
|
|
|
case CLUTTER_TOUCH_UPDATE:
|
|
|
|
case CLUTTER_TOUCH_END:
|
|
|
|
return meta_wayland_touch_handle_event (&seat->touch, event);
|
2013-05-03 13:51:22 -04:00
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2013-09-04 09:01:11 -04:00
|
|
|
|
|
|
|
return FALSE;
|
2013-05-03 13:51:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2014-04-17 18:46:14 -04:00
|
|
|
meta_wayland_seat_repick (MetaWaylandSeat *seat)
|
2013-05-03 13:51:22 -04:00
|
|
|
{
|
2015-02-18 10:43:42 -05:00
|
|
|
if ((seat->capabilities & WL_SEAT_CAPABILITY_POINTER) == 0)
|
|
|
|
return;
|
|
|
|
|
2014-04-17 18:16:49 -04:00
|
|
|
meta_wayland_pointer_repick (&seat->pointer);
|
2013-05-03 13:51:22 -04:00
|
|
|
}
|
2014-04-17 19:14:17 -04:00
|
|
|
|
2014-07-10 10:13:54 -04:00
|
|
|
void
|
|
|
|
meta_wayland_seat_set_input_focus (MetaWaylandSeat *seat,
|
|
|
|
MetaWaylandSurface *surface)
|
|
|
|
{
|
2015-02-18 10:43:42 -05:00
|
|
|
if ((seat->capabilities & WL_SEAT_CAPABILITY_KEYBOARD) == 0)
|
|
|
|
return;
|
|
|
|
|
2014-07-10 10:13:54 -04:00
|
|
|
meta_wayland_keyboard_set_focus (&seat->keyboard, surface);
|
2014-07-10 10:31:08 -04:00
|
|
|
meta_wayland_data_device_set_keyboard_focus (&seat->data_device);
|
2014-07-10 10:13:54 -04:00
|
|
|
}
|
|
|
|
|
2014-05-22 10:57:02 -04:00
|
|
|
gboolean
|
2014-07-21 19:28:39 -04:00
|
|
|
meta_wayland_seat_get_grab_info (MetaWaylandSeat *seat,
|
|
|
|
MetaWaylandSurface *surface,
|
|
|
|
uint32_t serial,
|
|
|
|
gfloat *x,
|
|
|
|
gfloat *y)
|
2014-05-22 10:57:02 -04:00
|
|
|
{
|
2015-02-18 10:43:42 -05:00
|
|
|
ClutterEventSequence *sequence = NULL;
|
|
|
|
gboolean can_grab_surface = FALSE;
|
2014-07-21 19:28:39 -04:00
|
|
|
|
2015-02-18 10:43:42 -05:00
|
|
|
if ((seat->capabilities & WL_SEAT_CAPABILITY_TOUCH) != 0)
|
|
|
|
sequence = meta_wayland_touch_find_grab_sequence (&seat->touch, surface, serial);
|
2014-07-21 19:28:39 -04:00
|
|
|
|
|
|
|
if (sequence)
|
|
|
|
{
|
2015-02-18 10:43:42 -05:00
|
|
|
meta_wayland_touch_get_press_coords (&seat->touch, sequence, x, y);
|
2014-07-21 19:28:39 -04:00
|
|
|
}
|
|
|
|
else
|
2015-02-18 10:43:42 -05:00
|
|
|
{
|
|
|
|
if ((seat->capabilities & WL_SEAT_CAPABILITY_POINTER) != 0)
|
|
|
|
can_grab_surface = meta_wayland_pointer_can_grab_surface (&seat->pointer, surface, serial);
|
|
|
|
|
|
|
|
if (can_grab_surface)
|
|
|
|
{
|
|
|
|
if (x)
|
|
|
|
*x = seat->pointer.grab_x;
|
|
|
|
if (y)
|
|
|
|
*y = seat->pointer.grab_y;
|
|
|
|
}
|
|
|
|
}
|
2014-07-21 19:28:39 -04:00
|
|
|
|
2015-02-18 10:43:42 -05:00
|
|
|
return sequence || can_grab_surface;
|
2014-05-22 10:57:02 -04:00
|
|
|
}
|
2015-10-09 10:42:06 -04:00
|
|
|
|
|
|
|
gboolean
|
|
|
|
meta_wayland_seat_can_popup (MetaWaylandSeat *seat,
|
|
|
|
uint32_t serial)
|
|
|
|
{
|
|
|
|
return (meta_wayland_pointer_can_popup (&seat->pointer, serial) ||
|
|
|
|
meta_wayland_keyboard_can_popup (&seat->keyboard, serial) ||
|
|
|
|
meta_wayland_touch_can_popup (&seat->touch, serial));
|
|
|
|
}
|