forked from rust-windowing/winit
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master'
- Loading branch information
Showing
15 changed files
with
190 additions
and
109 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
#![allow(clippy::single_match)] | ||
|
||
//! Example for focusing a window. | ||
use simple_logger::SimpleLogger; | ||
#[cfg(not(wasm_platform))] | ||
use std::time; | ||
#[cfg(wasm_platform)] | ||
use web_time as time; | ||
use winit::{ | ||
event::{Event, StartCause, WindowEvent}, | ||
event_loop::EventLoop, | ||
window::WindowBuilder, | ||
}; | ||
|
||
#[path = "util/fill.rs"] | ||
mod fill; | ||
|
||
fn main() -> Result<(), impl std::error::Error> { | ||
SimpleLogger::new().init().unwrap(); | ||
let event_loop = EventLoop::new().unwrap(); | ||
|
||
let window = WindowBuilder::new() | ||
.with_title("A fantastic window!") | ||
.with_inner_size(winit::dpi::LogicalSize::new(128.0, 128.0)) | ||
.build(&event_loop) | ||
.unwrap(); | ||
|
||
let mut deadline = time::Instant::now() + time::Duration::from_secs(3); | ||
event_loop.run(move |event, elwt| { | ||
match event { | ||
Event::NewEvents(StartCause::ResumeTimeReached { .. }) => { | ||
// Timeout reached; focus the window. | ||
println!("Re-focusing the window."); | ||
deadline += time::Duration::from_secs(3); | ||
window.focus_window(); | ||
} | ||
Event::WindowEvent { event, window_id } if window_id == window.id() => match event { | ||
WindowEvent::CloseRequested => elwt.exit(), | ||
WindowEvent::RedrawRequested => { | ||
// Notify the windowing system that we'll be presenting to the window. | ||
window.pre_present_notify(); | ||
fill::fill_window(&window); | ||
} | ||
_ => (), | ||
}, | ||
Event::AboutToWait => { | ||
window.request_redraw(); | ||
} | ||
|
||
_ => (), | ||
} | ||
|
||
elwt.set_control_flow(winit::event_loop::ControlFlow::WaitUntil(deadline)); | ||
}) | ||
} |
Oops, something went wrong.