2016-03-26 18:07:52 +01:00
|
|
|
extern crate winit;
|
2015-03-25 13:17:47 +01:00
|
|
|
|
2017-06-08 00:12:41 +10:00
|
|
|
use winit::{ControlFlow, WindowEvent, ElementState, KeyboardInput};
|
2015-03-25 13:17:47 +01:00
|
|
|
|
|
|
|
fn main() {
|
2017-06-08 00:12:41 +10:00
|
|
|
let mut events_loop = winit::EventsLoop::new();
|
2017-01-28 15:45:01 +01:00
|
|
|
|
|
|
|
let window = winit::WindowBuilder::new().build(&events_loop).unwrap();
|
2016-03-26 18:07:52 +01:00
|
|
|
window.set_title("winit - Cursor grabbing test");
|
2015-03-25 13:17:47 +01:00
|
|
|
|
|
|
|
let mut grabbed = false;
|
2015-12-26 16:47:25 +02:00
|
|
|
|
2017-01-28 15:45:01 +01:00
|
|
|
events_loop.run_forever(|event| {
|
|
|
|
println!("{:?}", event);
|
|
|
|
|
2015-06-16 13:48:08 +02:00
|
|
|
match event {
|
2017-01-28 15:45:01 +01:00
|
|
|
winit::Event::WindowEvent { event, .. } => {
|
|
|
|
match event {
|
2017-04-22 13:52:35 -07:00
|
|
|
WindowEvent::KeyboardInput { input: KeyboardInput { state: ElementState::Pressed, .. }, .. } => {
|
2017-01-28 15:45:01 +01:00
|
|
|
if grabbed {
|
|
|
|
grabbed = false;
|
|
|
|
window.set_cursor_state(winit::CursorState::Normal)
|
|
|
|
.ok().expect("could not ungrab mouse cursor");
|
|
|
|
} else {
|
|
|
|
grabbed = true;
|
|
|
|
window.set_cursor_state(winit::CursorState::Grab)
|
|
|
|
.ok().expect("could not grab mouse cursor");
|
|
|
|
}
|
|
|
|
},
|
2015-06-16 13:48:08 +02:00
|
|
|
|
2017-06-20 21:25:53 +10:00
|
|
|
WindowEvent::Closed => return ControlFlow::Break,
|
2015-12-26 16:47:25 +02:00
|
|
|
|
2017-11-12 13:56:57 -07:00
|
|
|
a @ WindowEvent::CursorMoved { .. } => {
|
2017-01-28 15:45:01 +01:00
|
|
|
println!("{:?}", a);
|
|
|
|
},
|
2015-06-16 13:48:08 +02:00
|
|
|
|
2017-01-28 15:45:01 +01:00
|
|
|
_ => (),
|
|
|
|
}
|
2017-04-22 13:52:35 -07:00
|
|
|
}
|
|
|
|
_ => {}
|
2015-06-16 13:48:08 +02:00
|
|
|
}
|
2017-06-08 00:12:41 +10:00
|
|
|
|
|
|
|
ControlFlow::Continue
|
2017-01-28 15:45:01 +01:00
|
|
|
});
|
2015-03-25 13:17:47 +01:00
|
|
|
}
|