mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-12-15 08:56:26 -05:00
types/wlr_tablet_pad: uniformize events name
This commit is contained in:
parent
13d7fa2f03
commit
d1f543a9d8
4 changed files with 11 additions and 11 deletions
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue