1
0
Fork 0
forked from wry/wry
wry/wire/wl_touch.txt
Amine Hassane 681c1ad033 wayland: implement wl_touch
Co-authored-by: Julian Orth <ju.orth@gmail.com>
2024-07-21 02:00:47 +02:00

48 lines
469 B
Text

# requests
request release (since = 3) {
}
# events
event down {
serial: u32,
time: u32,
surface: id(wl_surface),
id: i32,
x: fixed,
y: fixed,
}
event up {
serial: u32,
time: u32,
id: i32,
}
event motion {
time: u32,
id: i32,
x: fixed,
y: fixed,
}
event frame {
}
event cancel {
}
event shape {
id: i32,
major: fixed,
minor: fixed,
}
event orientation {
id: i32,
orientation: fixed,
}