2016-03-27 04:07:52 +11:00
|
|
|
extern crate winit;
|
2015-01-13 11:22:37 +11:00
|
|
|
|
2019-05-30 11:29:54 +10:00
|
|
|
use winit::window::{WindowBuilder, CursorIcon};
|
2019-02-06 02:30:33 +11:00
|
|
|
use winit::event::{Event, WindowEvent, ElementState, KeyboardInput};
|
|
|
|
use winit::event_loop::{EventLoop, ControlFlow};
|
2015-01-13 11:22:37 +11:00
|
|
|
|
2015-12-27 01:38:00 +11:00
|
|
|
fn main() {
|
2019-02-06 02:30:33 +11:00
|
|
|
let event_loop = EventLoop::new();
|
2017-01-29 01:45:01 +11:00
|
|
|
|
2019-02-06 02:30:33 +11:00
|
|
|
let window = WindowBuilder::new().build(&event_loop).unwrap();
|
2015-12-27 01:38:00 +11:00
|
|
|
window.set_title("A fantastic window!");
|
2015-01-13 11:22:37 +11:00
|
|
|
|
|
|
|
let mut cursor_idx = 0;
|
2015-12-27 01:38:00 +11:00
|
|
|
|
2019-02-06 02:30:33 +11:00
|
|
|
event_loop.run(move |event, _, control_flow| {
|
2015-06-16 21:48:08 +10:00
|
|
|
match event {
|
2017-04-23 06:52:35 +10:00
|
|
|
Event::WindowEvent { event: WindowEvent::KeyboardInput { input: KeyboardInput { state: ElementState::Pressed, .. }, .. }, .. } => {
|
2019-02-06 02:30:33 +11:00
|
|
|
println!("Setting cursor to \"{:?}\"", CURSORS[cursor_idx]);
|
2019-05-30 11:29:54 +10:00
|
|
|
window.set_cursor_icon(CURSORS[cursor_idx]);
|
2019-02-06 02:30:33 +11:00
|
|
|
if cursor_idx < CURSORS.len() - 1 {
|
2015-06-16 21:48:08 +10:00
|
|
|
cursor_idx += 1;
|
|
|
|
} else {
|
|
|
|
cursor_idx = 0;
|
|
|
|
}
|
|
|
|
},
|
2018-04-25 06:20:40 +10:00
|
|
|
Event::WindowEvent { event: WindowEvent::CloseRequested, .. } => {
|
2019-02-06 02:30:33 +11:00
|
|
|
*control_flow = ControlFlow::Exit;
|
|
|
|
return;
|
2017-01-29 01:45:01 +11:00
|
|
|
},
|
|
|
|
_ => ()
|
2015-06-16 21:48:08 +10:00
|
|
|
}
|
2017-01-29 01:45:01 +11:00
|
|
|
});
|
2015-01-13 11:22:37 +11:00
|
|
|
}
|
2019-02-06 02:30:33 +11:00
|
|
|
|
2019-05-30 11:29:54 +10:00
|
|
|
const CURSORS: &[CursorIcon] = &[
|
|
|
|
CursorIcon::Default, CursorIcon::Crosshair, CursorIcon::Hand,
|
|
|
|
CursorIcon::Arrow, 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
|
2019-02-06 02:30:33 +11:00
|
|
|
];
|