mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-24 06:11:30 +11:00
36 lines
1 KiB
Rust
36 lines
1 KiB
Rust
|
extern crate winit;
|
||
|
|
||
|
use winit::event::{Event, VirtualKeyCode, WindowEvent};
|
||
|
use winit::event_loop::{ControlFlow, EventLoop};
|
||
|
use winit::window::WindowBuilder;
|
||
|
|
||
|
fn main() {
|
||
|
let event_loop = EventLoop::new();
|
||
|
|
||
|
let window = WindowBuilder::new()
|
||
|
.with_title("A fantastic window!")
|
||
|
.build(&event_loop)
|
||
|
.unwrap();
|
||
|
|
||
|
event_loop.run(move |event, _, control_flow| match event {
|
||
|
Event::WindowEvent {
|
||
|
event: WindowEvent::CloseRequested,
|
||
|
..
|
||
|
} => *control_flow = ControlFlow::Exit,
|
||
|
|
||
|
// Keyboard input event to handle minimize via a hotkey
|
||
|
Event::WindowEvent {
|
||
|
event: WindowEvent::KeyboardInput { input, .. },
|
||
|
window_id,
|
||
|
} => {
|
||
|
if window_id == window.id() {
|
||
|
// Pressing the 'M' key will minimize the window
|
||
|
if input.virtual_keycode == Some(VirtualKeyCode::M) {
|
||
|
window.set_minimized(true);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
_ => *control_flow = ControlFlow::Wait,
|
||
|
});
|
||
|
}
|