From 5c82d2f5c361d9ad6ed3a120cb3f5e1005c4a9e7 Mon Sep 17 00:00:00 2001 From: Dominique Martinet Date: Sun, 13 Aug 2017 00:50:09 +0200 Subject: libinput backend: massive renaming - 'libinput' (backend's) to libinput_context - 'device' (libinput_device) to libinput_dev - 'dev' (wlr_device) to wlr_dev - 'devices' lists tangling of libinput devices to wlr_devices - 'devices' list of wlr_devices in backend state to wlr_device_lists --- backend/libinput/touch.c | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) (limited to 'backend/libinput/touch.c') diff --git a/backend/libinput/touch.c b/backend/libinput/touch.c index f6eeb8d3..5d990d3c 100644 --- a/backend/libinput/touch.c +++ b/backend/libinput/touch.c @@ -8,16 +8,16 @@ #include "backend/libinput.h" struct wlr_touch *wlr_libinput_touch_create( - struct libinput_device *device) { - assert(device); + struct libinput_device *libinput_dev) { + assert(libinput_dev); return wlr_touch_create(NULL, NULL); } void handle_touch_down(struct libinput_event *event, - struct libinput_device *device) { - struct wlr_input_device *dev = - get_appropriate_device(WLR_INPUT_DEVICE_TOUCH, device); - if (!dev) { + struct libinput_device *libinput_dev) { + struct wlr_input_device *wlr_dev = + get_appropriate_device(WLR_INPUT_DEVICE_TOUCH, libinput_dev); + if (!wlr_dev) { wlr_log(L_DEBUG, "Got a touch event for a device with no touch?"); return; } @@ -29,15 +29,15 @@ void handle_touch_down(struct libinput_event *event, wlr_event.slot = libinput_event_touch_get_slot(tevent); wlr_event.x_mm = libinput_event_touch_get_x(tevent); wlr_event.y_mm = libinput_event_touch_get_y(tevent); - libinput_device_get_size(device, &wlr_event.width_mm, &wlr_event.height_mm); - wl_signal_emit(&dev->touch->events.down, &wlr_event); + libinput_device_get_size(libinput_dev, &wlr_event.width_mm, &wlr_event.height_mm); + wl_signal_emit(&wlr_dev->touch->events.down, &wlr_event); } void handle_touch_up(struct libinput_event *event, - struct libinput_device *device) { - struct wlr_input_device *dev = - get_appropriate_device(WLR_INPUT_DEVICE_TOUCH, device); - if (!dev) { + struct libinput_device *libinput_dev) { + struct wlr_input_device *wlr_dev = + get_appropriate_device(WLR_INPUT_DEVICE_TOUCH, libinput_dev); + if (!wlr_dev) { wlr_log(L_DEBUG, "Got a touch event for a device with no touch?"); return; } @@ -47,14 +47,14 @@ void handle_touch_up(struct libinput_event *event, wlr_event.time_sec = libinput_event_touch_get_time(tevent); wlr_event.time_usec = libinput_event_touch_get_time_usec(tevent); wlr_event.slot = libinput_event_touch_get_slot(tevent); - wl_signal_emit(&dev->touch->events.up, &wlr_event); + wl_signal_emit(&wlr_dev->touch->events.up, &wlr_event); } void handle_touch_motion(struct libinput_event *event, - struct libinput_device *device) { - struct wlr_input_device *dev = - get_appropriate_device(WLR_INPUT_DEVICE_TOUCH, device); - if (!dev) { + struct libinput_device *libinput_dev) { + struct wlr_input_device *wlr_dev = + get_appropriate_device(WLR_INPUT_DEVICE_TOUCH, libinput_dev); + if (!wlr_dev) { wlr_log(L_DEBUG, "Got a touch event for a device with no touch?"); return; } @@ -66,15 +66,15 @@ void handle_touch_motion(struct libinput_event *event, wlr_event.slot = libinput_event_touch_get_slot(tevent); wlr_event.x_mm = libinput_event_touch_get_x(tevent); wlr_event.y_mm = libinput_event_touch_get_y(tevent); - libinput_device_get_size(device, &wlr_event.width_mm, &wlr_event.height_mm); - wl_signal_emit(&dev->touch->events.motion, &wlr_event); + libinput_device_get_size(libinput_dev, &wlr_event.width_mm, &wlr_event.height_mm); + wl_signal_emit(&wlr_dev->touch->events.motion, &wlr_event); } void handle_touch_cancel(struct libinput_event *event, - struct libinput_device *device) { - struct wlr_input_device *dev = - get_appropriate_device(WLR_INPUT_DEVICE_TOUCH, device); - if (!dev) { + struct libinput_device *libinput_dev) { + struct wlr_input_device *wlr_dev = + get_appropriate_device(WLR_INPUT_DEVICE_TOUCH, libinput_dev); + if (!wlr_dev) { wlr_log(L_DEBUG, "Got a touch event for a device with no touch?"); return; } @@ -84,5 +84,5 @@ void handle_touch_cancel(struct libinput_event *event, wlr_event.time_sec = libinput_event_touch_get_time(tevent); wlr_event.time_usec = libinput_event_touch_get_time_usec(tevent); wlr_event.slot = libinput_event_touch_get_slot(tevent); - wl_signal_emit(&dev->touch->events.cancel, &wlr_event); + wl_signal_emit(&wlr_dev->touch->events.cancel, &wlr_event); } -- cgit v1.2.3