mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-23 22:01:31 +11:00
0b39024133
* Fix clippy warnings * review feedback.
54 lines
1.5 KiB
Rust
54 lines
1.5 KiB
Rust
use simple_logger::SimpleLogger;
|
|
use winit::{
|
|
dpi::PhysicalPosition,
|
|
event::{ElementState, Event, WindowEvent},
|
|
event_loop::{ControlFlow, EventLoop},
|
|
window::WindowBuilder,
|
|
};
|
|
|
|
fn main() {
|
|
SimpleLogger::new().init().unwrap();
|
|
let event_loop = EventLoop::new();
|
|
|
|
let window = WindowBuilder::new().build(&event_loop).unwrap();
|
|
window.set_title("A fantastic window!");
|
|
|
|
println!("Ime position will system default");
|
|
println!("Click to set ime position to cursor's");
|
|
|
|
let mut cursor_position = PhysicalPosition::new(0.0, 0.0);
|
|
event_loop.run(move |event, _, control_flow| {
|
|
*control_flow = ControlFlow::Wait;
|
|
|
|
match event {
|
|
Event::WindowEvent {
|
|
event: WindowEvent::CursorMoved { position, .. },
|
|
..
|
|
} => {
|
|
cursor_position = position;
|
|
}
|
|
Event::WindowEvent {
|
|
event:
|
|
WindowEvent::MouseInput {
|
|
state: ElementState::Released,
|
|
..
|
|
},
|
|
..
|
|
} => {
|
|
println!(
|
|
"Setting ime position to {}, {}",
|
|
cursor_position.x, cursor_position.y
|
|
);
|
|
window.set_ime_position(cursor_position);
|
|
}
|
|
Event::WindowEvent {
|
|
event: WindowEvent::CloseRequested,
|
|
..
|
|
} => {
|
|
*control_flow = ControlFlow::Exit;
|
|
}
|
|
_ => (),
|
|
}
|
|
});
|
|
}
|