2022-06-10 20:43:33 +10:00
|
|
|
#![allow(clippy::single_match)]
|
|
|
|
|
2021-03-12 08:08:29 +11:00
|
|
|
use simple_logger::SimpleLogger;
|
|
|
|
use winit::{
|
2022-03-14 00:22:02 +11:00
|
|
|
event::{Event, WindowEvent},
|
2022-04-10 11:32:02 +10:00
|
|
|
event_loop::EventLoop,
|
2021-03-12 08:08:29 +11:00
|
|
|
window::WindowBuilder,
|
|
|
|
};
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
SimpleLogger::new().init().unwrap();
|
|
|
|
let event_loop = EventLoop::new();
|
|
|
|
|
|
|
|
let window = WindowBuilder::new()
|
|
|
|
.with_title("Mouse Wheel events")
|
|
|
|
.build(&event_loop)
|
|
|
|
.unwrap();
|
|
|
|
|
2022-03-14 00:22:02 +11:00
|
|
|
println!(
|
|
|
|
r"
|
|
|
|
When using so called 'natural scrolling' (scrolling that acts like on a touch screen), this is what to expect:
|
|
|
|
|
|
|
|
Moving your finger downwards on a scroll wheel should make the window move down, and you should see a positive Y scroll value.
|
|
|
|
|
|
|
|
When moving fingers on a trackpad down and to the right, you should see positive X and Y deltas, and the window should move down and to the right.
|
|
|
|
|
|
|
|
With reverse scrolling, you should see the inverse behavior.
|
|
|
|
|
|
|
|
In both cases the example window should move like the content of a scroll area in any other application.
|
|
|
|
|
|
|
|
In other words, the deltas indicate the direction in which to move the content (in this case the window)."
|
|
|
|
);
|
|
|
|
|
2021-03-12 08:08:29 +11:00
|
|
|
event_loop.run(move |event, _, control_flow| {
|
2022-04-10 11:32:02 +10:00
|
|
|
control_flow.set_wait();
|
2021-03-12 08:08:29 +11:00
|
|
|
|
|
|
|
match event {
|
|
|
|
Event::WindowEvent { event, .. } => match event {
|
2022-04-10 11:32:02 +10:00
|
|
|
WindowEvent::CloseRequested => control_flow.set_exit(),
|
2022-03-14 00:22:02 +11:00
|
|
|
WindowEvent::MouseWheel { delta, .. } => match delta {
|
2021-03-12 08:08:29 +11:00
|
|
|
winit::event::MouseScrollDelta::LineDelta(x, y) => {
|
2023-01-27 15:18:58 +11:00
|
|
|
println!("mouse wheel Line Delta: ({x},{y})");
|
2021-03-12 08:08:29 +11:00
|
|
|
let pixels_per_line = 120.0;
|
|
|
|
let mut pos = window.outer_position().unwrap();
|
2022-03-14 00:22:02 +11:00
|
|
|
pos.x += (x * pixels_per_line) as i32;
|
|
|
|
pos.y += (y * pixels_per_line) as i32;
|
2021-03-12 08:08:29 +11:00
|
|
|
window.set_outer_position(pos)
|
|
|
|
}
|
|
|
|
winit::event::MouseScrollDelta::PixelDelta(p) => {
|
|
|
|
println!("mouse wheel Pixel Delta: ({},{})", p.x, p.y);
|
|
|
|
let mut pos = window.outer_position().unwrap();
|
2022-03-14 00:22:02 +11:00
|
|
|
pos.x += p.x as i32;
|
|
|
|
pos.y += p.y as i32;
|
2021-03-12 08:08:29 +11:00
|
|
|
window.set_outer_position(pos)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
_ => (),
|
|
|
|
},
|
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|