mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-23 22:01:31 +11:00
bd9cc2a9da
This crate is aimed to simplify handling of cursor icon across various crates and be used in the public API.
90 lines
2.3 KiB
Rust
90 lines
2.3 KiB
Rust
#![allow(clippy::single_match)]
|
|
|
|
use simple_logger::SimpleLogger;
|
|
use winit::{
|
|
event::{ElementState, Event, KeyboardInput, WindowEvent},
|
|
event_loop::EventLoop,
|
|
window::{CursorIcon, 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!");
|
|
|
|
let mut cursor_idx = 0;
|
|
|
|
event_loop.run(move |event, _, control_flow| {
|
|
control_flow.set_wait();
|
|
|
|
match event {
|
|
Event::WindowEvent {
|
|
event:
|
|
WindowEvent::KeyboardInput {
|
|
input:
|
|
KeyboardInput {
|
|
state: ElementState::Pressed,
|
|
..
|
|
},
|
|
..
|
|
},
|
|
..
|
|
} => {
|
|
println!("Setting cursor to \"{:?}\"", CURSORS[cursor_idx]);
|
|
window.set_cursor_icon(CURSORS[cursor_idx]);
|
|
if cursor_idx < CURSORS.len() - 1 {
|
|
cursor_idx += 1;
|
|
} else {
|
|
cursor_idx = 0;
|
|
}
|
|
}
|
|
Event::WindowEvent {
|
|
event: WindowEvent::CloseRequested,
|
|
..
|
|
} => {
|
|
control_flow.set_exit();
|
|
}
|
|
_ => (),
|
|
}
|
|
});
|
|
}
|
|
|
|
const CURSORS: &[CursorIcon] = &[
|
|
CursorIcon::Default,
|
|
CursorIcon::Crosshair,
|
|
CursorIcon::Pointer,
|
|
CursorIcon::Move,
|
|
CursorIcon::Text,
|
|
CursorIcon::Wait,
|
|
CursorIcon::Help,
|
|
CursorIcon::Progress,
|
|
CursorIcon::NotAllowed,
|
|
CursorIcon::ContextMenu,
|
|
CursorIcon::Cell,
|
|
CursorIcon::VerticalText,
|
|
CursorIcon::Alias,
|
|
CursorIcon::Copy,
|
|
CursorIcon::NoDrop,
|
|
CursorIcon::Grab,
|
|
CursorIcon::Grabbing,
|
|
CursorIcon::AllScroll,
|
|
CursorIcon::ZoomIn,
|
|
CursorIcon::ZoomOut,
|
|
CursorIcon::EResize,
|
|
CursorIcon::NResize,
|
|
CursorIcon::NeResize,
|
|
CursorIcon::NwResize,
|
|
CursorIcon::SResize,
|
|
CursorIcon::SeResize,
|
|
CursorIcon::SwResize,
|
|
CursorIcon::WResize,
|
|
CursorIcon::EwResize,
|
|
CursorIcon::NsResize,
|
|
CursorIcon::NeswResize,
|
|
CursorIcon::NwseResize,
|
|
CursorIcon::ColResize,
|
|
CursorIcon::RowResize,
|
|
];
|