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};
|
2017-09-07 09:33:46 +01:00
|
|
|
use winit::{ControlFlow, Event, WindowEvent};
|
2014-07-31 09:56:53 +02:00
|
|
|
|
|
|
|
fn main() {
|
2017-09-01 11:04:57 +02:00
|
|
|
let mut events_loop = winit::EventsLoop::new();
|
|
|
|
|
2014-07-31 09:56:53 +02:00
|
|
|
// enumerating monitors
|
|
|
|
let monitor = {
|
2017-09-01 11:04:57 +02:00
|
|
|
for (num, monitor) in events_loop.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();
|
2015-04-24 09:25:39 +02:00
|
|
|
|
|
|
|
let mut num = String::new();
|
|
|
|
io::stdin().read_line(&mut num).unwrap();
|
|
|
|
let num = num.trim().parse().ok().expect("Please enter a number");
|
2017-09-01 11:04:57 +02:00
|
|
|
let monitor = events_loop.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 _window = winit::WindowBuilder::new()
|
2016-05-08 09:28:42 +02:00
|
|
|
.with_title("Hello world!")
|
2017-09-07 09:33:46 +01:00
|
|
|
.with_fullscreen(Some(monitor))
|
2017-01-28 15:45:01 +01:00
|
|
|
.build(&events_loop)
|
2014-08-02 08:24:30 +02:00
|
|
|
.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-06-08 00:12:41 +10:00
|
|
|
Event::WindowEvent { event, .. } => {
|
2017-01-28 15:45:01 +01:00
|
|
|
match event {
|
2017-06-20 21:25:53 +10:00
|
|
|
WindowEvent::Closed => return ControlFlow::Break,
|
2017-06-08 00:12:41 +10:00
|
|
|
WindowEvent::KeyboardInput {
|
2017-04-22 13:52:35 -07:00
|
|
|
input: winit::KeyboardInput { virtual_keycode: Some(winit::VirtualKeyCode::Escape), .. }, ..
|
2017-06-20 21:25:53 +10:00
|
|
|
} => return ControlFlow::Break,
|
2017-01-28 15:45:01 +01:00
|
|
|
_ => ()
|
|
|
|
}
|
|
|
|
},
|
2017-04-22 13:52:35 -07:00
|
|
|
_ => {}
|
2015-06-16 13:48:08 +02:00
|
|
|
}
|
2017-06-08 00:12:41 +10:00
|
|
|
|
|
|
|
ControlFlow::Continue
|
2017-01-28 15:45:01 +01:00
|
|
|
});
|
2014-07-31 09:56:53 +02:00
|
|
|
}
|