winit-sonoma-fix/examples/fullscreen.rs

59 lines
1.9 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};
2017-08-29 10:50:11 +10:00
use winit::{ControlFlow, Event, WindowEvent, FullScreenState};
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
};
let mut events_loop = winit::EventsLoop::new();
2017-01-29 01:45:01 +11:00
let _window = winit::WindowBuilder::new()
2016-05-08 17:28:42 +10:00
.with_title("Hello world!")
2017-08-29 10:50:11 +10:00
.with_fullscreen(FullScreenState::Exclusive(monitor))
2017-01-29 01:45:01 +11:00
.build(&events_loop)
.unwrap();
2014-07-31 17:56:53 +10:00
if cfg!(target_os = "linux") {
println!("Running this example under wayland may not display a window at all.\n\
This is normal and because this example does not actually draw anything in the window,\
thus the compositor does not display it.");
}
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 {
Event::WindowEvent { event, .. } => {
2017-01-29 01:45:01 +11:00
match event {
WindowEvent::Closed => return ControlFlow::Break,
WindowEvent::KeyboardInput {
input: winit::KeyboardInput { virtual_keycode: Some(winit::VirtualKeyCode::Escape), .. }, ..
} => return ControlFlow::Break,
2017-01-29 01:45:01 +11:00
_ => ()
}
},
_ => {}
2015-06-16 21:48:08 +10:00
}
ControlFlow::Continue
2017-01-29 01:45:01 +11:00
});
2014-07-31 17:56:53 +10:00
}