mirror of
https://github.com/brl/mutter.git
synced 2024-11-23 08:30:42 -05:00
wayland/seat: Use seat capability checking helper
https://bugzilla.gnome.org/show_bug.cgi?id=771646
This commit is contained in:
parent
94623f475c
commit
8916e47d56
@ -45,7 +45,7 @@ seat_get_pointer (struct wl_client *client,
|
|||||||
MetaWaylandSeat *seat = wl_resource_get_user_data (resource);
|
MetaWaylandSeat *seat = wl_resource_get_user_data (resource);
|
||||||
MetaWaylandPointer *pointer = seat->pointer;
|
MetaWaylandPointer *pointer = seat->pointer;
|
||||||
|
|
||||||
if ((seat->capabilities & WL_SEAT_CAPABILITY_POINTER) != 0)
|
if (meta_wayland_seat_has_pointer (seat))
|
||||||
meta_wayland_pointer_create_new_resource (pointer, client, resource, id);
|
meta_wayland_pointer_create_new_resource (pointer, client, resource, id);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -57,7 +57,7 @@ seat_get_keyboard (struct wl_client *client,
|
|||||||
MetaWaylandSeat *seat = wl_resource_get_user_data (resource);
|
MetaWaylandSeat *seat = wl_resource_get_user_data (resource);
|
||||||
MetaWaylandKeyboard *keyboard = seat->keyboard;
|
MetaWaylandKeyboard *keyboard = seat->keyboard;
|
||||||
|
|
||||||
if ((seat->capabilities & WL_SEAT_CAPABILITY_KEYBOARD) != 0)
|
if (meta_wayland_seat_has_keyboard (seat))
|
||||||
meta_wayland_keyboard_create_new_resource (keyboard, client, resource, id);
|
meta_wayland_keyboard_create_new_resource (keyboard, client, resource, id);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -69,7 +69,7 @@ seat_get_touch (struct wl_client *client,
|
|||||||
MetaWaylandSeat *seat = wl_resource_get_user_data (resource);
|
MetaWaylandSeat *seat = wl_resource_get_user_data (resource);
|
||||||
MetaWaylandTouch *touch = seat->touch;
|
MetaWaylandTouch *touch = seat->touch;
|
||||||
|
|
||||||
if ((seat->capabilities & WL_SEAT_CAPABILITY_TOUCH) != 0)
|
if (meta_wayland_seat_has_touch (seat))
|
||||||
meta_wayland_touch_create_new_resource (touch, client, resource, id);
|
meta_wayland_touch_create_new_resource (touch, client, resource, id);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -319,20 +319,20 @@ meta_wayland_seat_update (MetaWaylandSeat *seat,
|
|||||||
case CLUTTER_BUTTON_PRESS:
|
case CLUTTER_BUTTON_PRESS:
|
||||||
case CLUTTER_BUTTON_RELEASE:
|
case CLUTTER_BUTTON_RELEASE:
|
||||||
case CLUTTER_SCROLL:
|
case CLUTTER_SCROLL:
|
||||||
if (seat->capabilities & WL_SEAT_CAPABILITY_POINTER)
|
if (meta_wayland_seat_has_pointer (seat))
|
||||||
meta_wayland_pointer_update (seat->pointer, event);
|
meta_wayland_pointer_update (seat->pointer, event);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case CLUTTER_KEY_PRESS:
|
case CLUTTER_KEY_PRESS:
|
||||||
case CLUTTER_KEY_RELEASE:
|
case CLUTTER_KEY_RELEASE:
|
||||||
if (seat->capabilities & WL_SEAT_CAPABILITY_KEYBOARD)
|
if (meta_wayland_seat_has_keyboard (seat))
|
||||||
meta_wayland_keyboard_update (seat->keyboard, (const ClutterKeyEvent *) event);
|
meta_wayland_keyboard_update (seat->keyboard, (const ClutterKeyEvent *) event);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case CLUTTER_TOUCH_BEGIN:
|
case CLUTTER_TOUCH_BEGIN:
|
||||||
case CLUTTER_TOUCH_UPDATE:
|
case CLUTTER_TOUCH_UPDATE:
|
||||||
case CLUTTER_TOUCH_END:
|
case CLUTTER_TOUCH_END:
|
||||||
if (seat->capabilities & WL_SEAT_CAPABILITY_TOUCH)
|
if (meta_wayland_seat_has_touch (seat))
|
||||||
meta_wayland_touch_update (seat->touch, event);
|
meta_wayland_touch_update (seat->touch, event);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@ -356,18 +356,18 @@ meta_wayland_seat_handle_event (MetaWaylandSeat *seat,
|
|||||||
case CLUTTER_SCROLL:
|
case CLUTTER_SCROLL:
|
||||||
case CLUTTER_TOUCHPAD_SWIPE:
|
case CLUTTER_TOUCHPAD_SWIPE:
|
||||||
case CLUTTER_TOUCHPAD_PINCH:
|
case CLUTTER_TOUCHPAD_PINCH:
|
||||||
if (seat->capabilities & WL_SEAT_CAPABILITY_POINTER)
|
if (meta_wayland_seat_has_pointer (seat))
|
||||||
return meta_wayland_pointer_handle_event (seat->pointer, event);
|
return meta_wayland_pointer_handle_event (seat->pointer, event);
|
||||||
|
|
||||||
case CLUTTER_KEY_PRESS:
|
case CLUTTER_KEY_PRESS:
|
||||||
case CLUTTER_KEY_RELEASE:
|
case CLUTTER_KEY_RELEASE:
|
||||||
if (seat->capabilities & WL_SEAT_CAPABILITY_KEYBOARD)
|
if (meta_wayland_seat_has_keyboard (seat))
|
||||||
return meta_wayland_keyboard_handle_event (seat->keyboard,
|
return meta_wayland_keyboard_handle_event (seat->keyboard,
|
||||||
(const ClutterKeyEvent *) event);
|
(const ClutterKeyEvent *) event);
|
||||||
case CLUTTER_TOUCH_BEGIN:
|
case CLUTTER_TOUCH_BEGIN:
|
||||||
case CLUTTER_TOUCH_UPDATE:
|
case CLUTTER_TOUCH_UPDATE:
|
||||||
case CLUTTER_TOUCH_END:
|
case CLUTTER_TOUCH_END:
|
||||||
if (seat->capabilities & WL_SEAT_CAPABILITY_TOUCH)
|
if (meta_wayland_seat_has_touch (seat))
|
||||||
return meta_wayland_touch_handle_event (seat->touch, event);
|
return meta_wayland_touch_handle_event (seat->touch, event);
|
||||||
|
|
||||||
default:
|
default:
|
||||||
@ -380,7 +380,7 @@ meta_wayland_seat_handle_event (MetaWaylandSeat *seat,
|
|||||||
void
|
void
|
||||||
meta_wayland_seat_repick (MetaWaylandSeat *seat)
|
meta_wayland_seat_repick (MetaWaylandSeat *seat)
|
||||||
{
|
{
|
||||||
if ((seat->capabilities & WL_SEAT_CAPABILITY_POINTER) == 0)
|
if (!meta_wayland_seat_has_pointer (seat))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
meta_wayland_pointer_repick (seat->pointer);
|
meta_wayland_pointer_repick (seat->pointer);
|
||||||
@ -393,7 +393,7 @@ meta_wayland_seat_set_input_focus (MetaWaylandSeat *seat,
|
|||||||
MetaWaylandTabletSeat *tablet_seat;
|
MetaWaylandTabletSeat *tablet_seat;
|
||||||
MetaWaylandCompositor *compositor = meta_wayland_compositor_get_default ();
|
MetaWaylandCompositor *compositor = meta_wayland_compositor_get_default ();
|
||||||
|
|
||||||
if ((seat->capabilities & WL_SEAT_CAPABILITY_KEYBOARD) != 0)
|
if (meta_wayland_seat_has_keyboard (seat))
|
||||||
{
|
{
|
||||||
meta_wayland_keyboard_set_focus (seat->keyboard, surface);
|
meta_wayland_keyboard_set_focus (seat->keyboard, surface);
|
||||||
meta_wayland_data_device_set_keyboard_focus (&seat->data_device);
|
meta_wayland_data_device_set_keyboard_focus (&seat->data_device);
|
||||||
@ -414,7 +414,7 @@ meta_wayland_seat_get_grab_info (MetaWaylandSeat *seat,
|
|||||||
ClutterEventSequence *sequence = NULL;
|
ClutterEventSequence *sequence = NULL;
|
||||||
gboolean can_grab_surface = FALSE;
|
gboolean can_grab_surface = FALSE;
|
||||||
|
|
||||||
if ((seat->capabilities & WL_SEAT_CAPABILITY_TOUCH) != 0)
|
if (meta_wayland_seat_has_touch (seat))
|
||||||
sequence = meta_wayland_touch_find_grab_sequence (seat->touch,
|
sequence = meta_wayland_touch_find_grab_sequence (seat->touch,
|
||||||
surface,
|
surface,
|
||||||
serial);
|
serial);
|
||||||
@ -425,7 +425,7 @@ meta_wayland_seat_get_grab_info (MetaWaylandSeat *seat,
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if ((seat->capabilities & WL_SEAT_CAPABILITY_POINTER) != 0 &&
|
if (meta_wayland_seat_has_pointer (seat) &&
|
||||||
(!require_pressed || seat->pointer->button_count > 0))
|
(!require_pressed || seat->pointer->button_count > 0))
|
||||||
can_grab_surface = meta_wayland_pointer_can_grab_surface (seat->pointer,
|
can_grab_surface = meta_wayland_pointer_can_grab_surface (seat->pointer,
|
||||||
surface,
|
surface,
|
||||||
|
Loading…
Reference in New Issue
Block a user