From d1f543a9d87f354e5ad8f942933dba3edb54ffed Mon Sep 17 00:00:00 2001 From: Simon Zeni Date: Wed, 9 Mar 2022 15:16:04 -0500 Subject: [PATCH] types/wlr_tablet_pad: uniformize events name --- backend/libinput/tablet_pad.c | 6 +++--- backend/wayland/tablet_v2.c | 6 +++--- examples/tablet.c | 4 ++-- include/wlr/types/wlr_tablet_pad.h | 6 +++--- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/backend/libinput/tablet_pad.c b/backend/libinput/tablet_pad.c index 87abd454..083711ef 100644 --- a/backend/libinput/tablet_pad.c +++ b/backend/libinput/tablet_pad.c @@ -145,7 +145,7 @@ void handle_tablet_pad_button(struct libinput_event *event, struct wlr_tablet_pad *tablet_pad) { struct libinput_event_tablet_pad *pevent = libinput_event_get_tablet_pad_event(event); - struct wlr_event_tablet_pad_button wlr_event = { 0 }; + struct wlr_tablet_pad_button_event wlr_event = { 0 }; wlr_event.time_msec = usec_to_msec(libinput_event_tablet_pad_get_time_usec(pevent)); wlr_event.button = libinput_event_tablet_pad_get_button_number(pevent); @@ -167,7 +167,7 @@ void handle_tablet_pad_ring(struct libinput_event *event, struct wlr_tablet_pad *tablet_pad) { struct libinput_event_tablet_pad *pevent = libinput_event_get_tablet_pad_event(event); - struct wlr_event_tablet_pad_ring wlr_event = { 0 }; + struct wlr_tablet_pad_ring_event wlr_event = { 0 }; wlr_event.time_msec = usec_to_msec(libinput_event_tablet_pad_get_time_usec(pevent)); wlr_event.ring = libinput_event_tablet_pad_get_ring_number(pevent); @@ -188,7 +188,7 @@ void handle_tablet_pad_strip(struct libinput_event *event, struct wlr_tablet_pad *tablet_pad) { struct libinput_event_tablet_pad *pevent = libinput_event_get_tablet_pad_event(event); - struct wlr_event_tablet_pad_strip wlr_event = { 0 }; + struct wlr_tablet_pad_strip_event wlr_event = { 0 }; wlr_event.time_msec = usec_to_msec(libinput_event_tablet_pad_get_time_usec(pevent)); wlr_event.strip = libinput_event_tablet_pad_get_strip_number(pevent); diff --git a/backend/wayland/tablet_v2.c b/backend/wayland/tablet_v2.c index 5666aa5f..04ce2377 100644 --- a/backend/wayland/tablet_v2.c +++ b/backend/wayland/tablet_v2.c @@ -99,7 +99,7 @@ static void handle_tablet_pad_ring_frame(void *data, uint32_t time) { struct tablet_pad_ring *ring = data; - struct wlr_event_tablet_pad_ring evt = { + struct wlr_tablet_pad_ring_event evt = { .time_msec = time, .source = ring->source, .ring = ring->index, @@ -152,7 +152,7 @@ static void handle_tablet_pad_strip_frame(void *data, uint32_t time) { struct tablet_pad_strip *strip = data; - struct wlr_event_tablet_pad_strip evt = { + struct wlr_tablet_pad_strip_event evt = { .time_msec = time, .source = strip->source, .strip = strip->index, @@ -337,7 +337,7 @@ static void handle_tablet_pad_button(void *data, struct zwp_tablet_pad_v2 *zwp_tablet_pad_v2, uint32_t time, uint32_t button, uint32_t state) { struct wlr_wl_seat *seat = data; - struct wlr_event_tablet_pad_button evt = { + struct wlr_tablet_pad_button_event evt = { .time_msec = time, .button = button, .state = state, diff --git a/examples/tablet.c b/examples/tablet.c index 05fbc773..9903bbf1 100644 --- a/examples/tablet.c +++ b/examples/tablet.c @@ -185,7 +185,7 @@ static void tablet_tool_button_notify(struct wl_listener *listener, void *data) static void tablet_pad_button_notify(struct wl_listener *listener, void *data) { struct tablet_pad_state *pstate = wl_container_of(listener, pstate, button); - struct wlr_event_tablet_pad_button *event = data; + struct wlr_tablet_pad_button_event *event = data; struct sample_state *sample = pstate->sample; float default_color[4] = { 0.5, 0.5, 0.5, 1.0 }; if (event->state == WLR_BUTTON_RELEASED) { @@ -203,7 +203,7 @@ static void tablet_pad_button_notify(struct wl_listener *listener, void *data) { static void tablet_pad_ring_notify(struct wl_listener *listener, void *data) { struct tablet_pad_state *pstate = wl_container_of(listener, pstate, ring); - struct wlr_event_tablet_pad_ring *event = data; + struct wlr_tablet_pad_ring_event *event = data; struct sample_state *sample = pstate->sample; if (event->position != -1) { sample->ring = -(event->position * (M_PI / 180.0)); diff --git a/include/wlr/types/wlr_tablet_pad.h b/include/wlr/types/wlr_tablet_pad.h index 24923353..64420f46 100644 --- a/include/wlr/types/wlr_tablet_pad.h +++ b/include/wlr/types/wlr_tablet_pad.h @@ -58,7 +58,7 @@ struct wlr_tablet_pad_group { unsigned int mode_count; }; -struct wlr_event_tablet_pad_button { +struct wlr_tablet_pad_button_event { uint32_t time_msec; uint32_t button; enum wlr_button_state state; @@ -71,7 +71,7 @@ enum wlr_tablet_pad_ring_source { WLR_TABLET_PAD_RING_SOURCE_FINGER, }; -struct wlr_event_tablet_pad_ring { +struct wlr_tablet_pad_ring_event { uint32_t time_msec; enum wlr_tablet_pad_ring_source source; uint32_t ring; @@ -84,7 +84,7 @@ enum wlr_tablet_pad_strip_source { WLR_TABLET_PAD_STRIP_SOURCE_FINGER, }; -struct wlr_event_tablet_pad_strip { +struct wlr_tablet_pad_strip_event { uint32_t time_msec; enum wlr_tablet_pad_strip_source source; uint32_t strip;