winit-sonoma-fix/examples/fullscreen.rs

50 lines
1.5 KiB
Rust
Raw Normal View History

2016-03-26 18:07:52 +01:00
extern crate winit;
2014-07-31 09:56:53 +02:00
2015-10-24 21:32:46 -04:00
use std::io::{self, Write};
2014-07-31 09:56:53 +02:00
fn main() {
// enumerating monitors
let monitor = {
2016-03-26 18:07:52 +01:00
for (num, monitor) in winit::get_available_monitors().enumerate() {
2015-01-09 23:06:14 +01:00
println!("Monitor #{}: {:?}", num, monitor.get_name());
2014-07-31 09:56:53 +02:00
}
print!("Please write the number of the monitor to use: ");
2015-10-24 21:32:46 -04: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-26 18:07:52 +01:00
let monitor = winit::get_available_monitors().nth(num).expect("Please enter a valid ID");
2014-07-31 09:56:53 +02:00
2015-01-09 23:06:14 +01:00
println!("Using {:?}", monitor.get_name());
2014-07-31 09:56:53 +02:00
monitor
};
2017-01-28 15:45:01 +01:00
let events_loop = winit::EventsLoop::new();
let _window = winit::WindowBuilder::new()
2016-05-08 09:28:42 +02:00
.with_title("Hello world!")
2014-08-02 11:04:48 +02:00
.with_fullscreen(monitor)
2017-01-28 15:45:01 +01:00
.build(&events_loop)
.unwrap();
2014-07-31 09:56:53 +02:00
2017-01-28 15:45:01 +01:00
events_loop.run_forever(|event| {
2015-06-16 13:48:08 +02:00
println!("{:?}", event);
match event {
2017-01-28 15:45:01 +01:00
winit::Event::WindowEvent { event, .. } => {
match event {
winit::WindowEvent::Closed => events_loop.interrupt(),
winit::WindowEvent::KeyboardInput {
input: winit::KeyboardInput { virtual_keycode: Some(winit::VirtualKeyCode::Escape), .. }, ..
} => events_loop.interrupt(),
2017-01-28 15:45:01 +01:00
_ => ()
}
},
_ => {}
2015-06-16 13:48:08 +02:00
}
2017-01-28 15:45:01 +01:00
});
2014-07-31 09:56:53 +02:00
}