-
Notifications
You must be signed in to change notification settings - Fork 920
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix communication of fractional RI_MOUSE_WHEEL events (Windows) (#1877)
- Loading branch information
Showing
3 changed files
with
52 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
use simple_logger::SimpleLogger; | ||
use winit::{ | ||
event::{DeviceEvent, Event, WindowEvent}, | ||
event_loop::{ControlFlow, EventLoop}, | ||
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(); | ||
|
||
event_loop.run(move |event, _, control_flow| { | ||
*control_flow = ControlFlow::Wait; | ||
|
||
match event { | ||
Event::WindowEvent { event, .. } => match event { | ||
WindowEvent::CloseRequested => *control_flow = ControlFlow::Exit, | ||
_ => (), | ||
}, | ||
Event::DeviceEvent { event, .. } => match event { | ||
DeviceEvent::MouseWheel { delta } => match delta { | ||
winit::event::MouseScrollDelta::LineDelta(x, y) => { | ||
println!("mouse wheel Line Delta: ({},{})", x, y); | ||
let pixels_per_line = 120.0; | ||
let mut pos = window.outer_position().unwrap(); | ||
pos.x -= (x * pixels_per_line) as i32; | ||
pos.y -= (y * pixels_per_line) as i32; | ||
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(); | ||
pos.x -= p.x as i32; | ||
pos.y -= p.y as i32; | ||
window.set_outer_position(pos) | ||
} | ||
}, | ||
_ => (), | ||
}, | ||
_ => (), | ||
} | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters