mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-23 13:51:30 +11:00
f9758528f6
Inner panics could make it hard to trouble shoot the issues and for some users it's not desirable. The inner panics were left only when they are used to `assert!` during development. This reverts commit 9f91bc413fe20618bd7090829832bb074aab15c3 which reverted the original patch which was merged without a proper review. Fixes: #500.
80 lines
2.5 KiB
Rust
80 lines
2.5 KiB
Rust
#![allow(clippy::single_match)]
|
|
|
|
use simple_logger::SimpleLogger;
|
|
use winit::{
|
|
event::{ElementState, Event, KeyEvent, WindowEvent},
|
|
event_loop::{ControlFlow, EventLoop},
|
|
keyboard::Key,
|
|
window::{Theme, WindowBuilder},
|
|
};
|
|
|
|
#[path = "util/fill.rs"]
|
|
mod fill;
|
|
|
|
fn main() -> Result<(), impl std::error::Error> {
|
|
SimpleLogger::new().init().unwrap();
|
|
let event_loop = EventLoop::new().unwrap();
|
|
|
|
let window = WindowBuilder::new()
|
|
.with_title("A fantastic window!")
|
|
.with_theme(Some(Theme::Dark))
|
|
.build(&event_loop)
|
|
.unwrap();
|
|
|
|
println!("Initial theme: {:?}", window.theme());
|
|
println!("debugging keys:");
|
|
println!(" (A) Automatic theme");
|
|
println!(" (L) Light theme");
|
|
println!(" (D) Dark theme");
|
|
|
|
event_loop.run(move |event, _, control_flow| {
|
|
*control_flow = ControlFlow::Wait;
|
|
|
|
match event {
|
|
Event::WindowEvent {
|
|
event: WindowEvent::CloseRequested,
|
|
..
|
|
} => *control_flow = ControlFlow::Exit,
|
|
Event::WindowEvent {
|
|
event: WindowEvent::ThemeChanged(theme),
|
|
window_id,
|
|
..
|
|
} if window_id == window.id() => {
|
|
println!("Theme is changed: {theme:?}")
|
|
}
|
|
Event::WindowEvent {
|
|
event:
|
|
WindowEvent::KeyboardInput {
|
|
event:
|
|
KeyEvent {
|
|
logical_key: key,
|
|
state: ElementState::Pressed,
|
|
..
|
|
},
|
|
..
|
|
},
|
|
..
|
|
} => match key.as_ref() {
|
|
Key::Character("A" | "a") => {
|
|
println!("Theme was: {:?}", window.theme());
|
|
window.set_theme(None);
|
|
}
|
|
Key::Character("L" | "l") => {
|
|
println!("Theme was: {:?}", window.theme());
|
|
window.set_theme(Some(Theme::Light));
|
|
}
|
|
Key::Character("D" | "d") => {
|
|
println!("Theme was: {:?}", window.theme());
|
|
window.set_theme(Some(Theme::Dark));
|
|
}
|
|
_ => (),
|
|
},
|
|
Event::RedrawRequested(_) => {
|
|
println!("\nredrawing!\n");
|
|
fill::fill_window(&window);
|
|
}
|
|
_ => (),
|
|
}
|
|
})
|
|
}
|