winit-sonoma-fix/examples/fullscreen.rs

47 lines
1.4 KiB
Rust
Raw Normal View History

2016-03-27 04:07:52 +11:00
extern crate winit;
2014-07-31 17:56:53 +10:00
2015-10-25 12:32:46 +11:00
use std::io::{self, Write};
2014-07-31 17:56:53 +10:00
fn main() {
// enumerating monitors
let monitor = {
2016-03-27 04:07:52 +11:00
for (num, monitor) in winit::get_available_monitors().enumerate() {
2015-01-10 09:06:14 +11:00
println!("Monitor #{}: {:?}", num, monitor.get_name());
2014-07-31 17:56:53 +10:00
}
print!("Please write the number of the monitor to use: ");
2015-10-25 12:32:46 +11:00
io::stdout().flush().unwrap();
let mut num = String::new();
io::stdin().read_line(&mut num).unwrap();
let num = num.trim().parse().ok().expect("Please enter a number");
2016-03-27 04:07:52 +11:00
let monitor = winit::get_available_monitors().nth(num).expect("Please enter a valid ID");
2014-07-31 17:56:53 +10:00
2015-01-10 09:06:14 +11:00
println!("Using {:?}", monitor.get_name());
2014-07-31 17:56:53 +10:00
monitor
};
2017-01-29 01:45:01 +11:00
let events_loop = winit::EventsLoop::new();
let _window = winit::WindowBuilder::new()
2016-05-08 17:28:42 +10:00
.with_title("Hello world!")
2014-08-02 19:04:48 +10:00
.with_fullscreen(monitor)
2017-01-29 01:45:01 +11:00
.build(&events_loop)
.unwrap();
2014-07-31 17:56:53 +10:00
2017-01-29 01:45:01 +11:00
events_loop.run_forever(|event| {
2015-06-16 21:48:08 +10:00
println!("{:?}", event);
match event {
2017-01-29 01:45:01 +11:00
winit::Event::WindowEvent { event, .. } => {
match event {
winit::WindowEvent::Closed => events_loop.interrupt(),
winit::WindowEvent::KeyboardInput(_, _, Some(winit::VirtualKeyCode::Escape), _) => events_loop.interrupt(),
2017-01-29 01:45:01 +11:00
_ => ()
}
},
2015-06-16 21:48:08 +10:00
}
2017-01-29 01:45:01 +11:00
});
2014-07-31 17:56:53 +10:00
}