1
0
Fork 0
forked from wry/wry

input: add click method and middle button emulation

This commit is contained in:
Stipe Kotarac 2025-05-12 17:52:36 +02:00 committed by Julian Orth
parent 0524e01a3c
commit b20153550e
24 changed files with 598 additions and 21 deletions

View file

@ -124,6 +124,16 @@ request set_calibration_matrix (since = 4) {
m12: pod(f32),
}
request set_click_method (since = 19) {
id: u32,
method: i32,
}
request set_middle_button_emulation (since = 19) {
id: u32,
enabled: u32,
}
# events
event seat {
@ -177,3 +187,11 @@ event calibration_matrix (since = 4) {
m11: pod(f32),
m12: pod(f32),
}
event click_method (since = 19) {
click_method: i32,
}
event middle_button_emulation (since = 19) {
middle_button_emulation_enabled: u32,
}