2019-02-06 02:30:33 +11:00
|
|
|
//! The `EventLoop` struct and assorted supporting types, including `ControlFlow`.
|
|
|
|
//!
|
|
|
|
//! If you want to send custom events to the event loop, use [`EventLoop::create_proxy()`][create_proxy]
|
|
|
|
//! to acquire an [`EventLoopProxy`][event_loop_proxy] and call its [`send_event`][send_event] method.
|
|
|
|
//!
|
|
|
|
//! See the root-level documentation for information on how to create and use an event loop to
|
|
|
|
//! handle events.
|
|
|
|
//!
|
|
|
|
//! [create_proxy]: ./struct.EventLoop.html#method.create_proxy
|
|
|
|
//! [event_loop_proxy]: ./struct.EventLoopProxy.html
|
|
|
|
//! [send_event]: ./struct.EventLoopProxy.html#method.send_event
|
2019-06-22 01:33:15 +10:00
|
|
|
use std::{error, fmt, ops::Deref, time::Instant};
|
2019-02-06 02:30:33 +11:00
|
|
|
|
2019-10-06 00:49:24 +10:00
|
|
|
use crate::{event::Event, monitor::MonitorHandle, platform_impl};
|
2019-02-06 02:30:33 +11:00
|
|
|
|
|
|
|
/// Provides a way to retrieve events from the system and from the windows that were registered to
|
|
|
|
/// the events loop.
|
|
|
|
///
|
|
|
|
/// An `EventLoop` can be seen more or less as a "context". Calling `EventLoop::new()`
|
|
|
|
/// initializes everything that will be required to create windows. For example on Linux creating
|
2019-06-22 10:34:55 +10:00
|
|
|
/// an event loop opens a connection to the X or Wayland server.
|
2019-02-06 02:30:33 +11:00
|
|
|
///
|
|
|
|
/// To wake up an `EventLoop` from a another thread, see the `EventLoopProxy` docs.
|
|
|
|
///
|
|
|
|
/// Note that the `EventLoop` cannot be shared across threads (due to platform-dependant logic
|
|
|
|
/// forbidding it), as such it is neither `Send` nor `Sync`. If you need cross-thread access, the
|
|
|
|
/// `Window` created from this `EventLoop` _can_ be sent to an other thread, and the
|
2019-06-22 10:34:55 +10:00
|
|
|
/// `EventLoopProxy` allows you to wake up an `EventLoop` from another thread.
|
2019-02-06 02:30:33 +11:00
|
|
|
pub struct EventLoop<T: 'static> {
|
|
|
|
pub(crate) event_loop: platform_impl::EventLoop<T>,
|
2019-06-22 01:33:15 +10:00
|
|
|
pub(crate) _marker: ::std::marker::PhantomData<*mut ()>, // Not Send nor Sync
|
2019-02-06 02:30:33 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Target that associates windows with an `EventLoop`.
|
|
|
|
///
|
2019-07-13 09:05:07 +10:00
|
|
|
/// This type exists to allow you to create new windows while Winit executes
|
|
|
|
/// your callback. `EventLoop` will coerce into this type (`impl<T> Deref for
|
|
|
|
/// EventLoop<T>`), so functions that take this as a parameter can also take
|
|
|
|
/// `&EventLoop`.
|
2019-02-06 02:30:33 +11:00
|
|
|
pub struct EventLoopWindowTarget<T: 'static> {
|
|
|
|
pub(crate) p: platform_impl::EventLoopWindowTarget<T>,
|
2019-06-22 01:33:15 +10:00
|
|
|
pub(crate) _marker: ::std::marker::PhantomData<*mut ()>, // Not Send nor Sync
|
2019-02-06 02:30:33 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> fmt::Debug for EventLoop<T> {
|
2019-07-10 07:49:07 +10:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
|
|
f.pad("EventLoop { .. }")
|
2019-02-06 02:30:33 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> fmt::Debug for EventLoopWindowTarget<T> {
|
2019-07-10 07:49:07 +10:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
|
|
f.pad("EventLoopWindowTarget { .. }")
|
2019-02-06 02:30:33 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set by the user callback given to the `EventLoop::run` method.
|
|
|
|
///
|
|
|
|
/// Indicates the desired behavior of the event loop after [`Event::EventsCleared`][events_cleared]
|
|
|
|
/// is emitted. Defaults to `Poll`.
|
|
|
|
///
|
|
|
|
/// ## Persistency
|
|
|
|
/// Almost every change is persistent between multiple calls to the event loop closure within a
|
|
|
|
/// given run loop. The only exception to this is `Exit` which, once set, cannot be unset. Changes
|
|
|
|
/// are **not** persistent between multiple calls to `run_return` - issuing a new call will reset
|
|
|
|
/// the control flow to `Poll`.
|
|
|
|
///
|
|
|
|
/// [events_cleared]: ../event/enum.Event.html#variant.EventsCleared
|
|
|
|
#[derive(Copy, Clone, Debug, PartialEq, Eq, Hash)]
|
|
|
|
pub enum ControlFlow {
|
|
|
|
/// When the current loop iteration finishes, immediately begin a new iteration regardless of
|
|
|
|
/// whether or not new events are available to process.
|
|
|
|
Poll,
|
|
|
|
/// When the current loop iteration finishes, suspend the thread until another event arrives.
|
|
|
|
Wait,
|
|
|
|
/// When the current loop iteration finishes, suspend the thread until either another event
|
|
|
|
/// arrives or the given time is reached.
|
|
|
|
WaitUntil(Instant),
|
|
|
|
/// Send a `LoopDestroyed` event and stop the event loop. This variant is *sticky* - once set,
|
|
|
|
/// `control_flow` cannot be changed from `Exit`, and any future attempts to do so will result
|
|
|
|
/// in the `control_flow` parameter being reset to `Exit`.
|
2019-06-22 01:33:15 +10:00
|
|
|
Exit,
|
2019-02-06 02:30:33 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for ControlFlow {
|
|
|
|
#[inline(always)]
|
|
|
|
fn default() -> ControlFlow {
|
|
|
|
ControlFlow::Poll
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl EventLoop<()> {
|
|
|
|
/// Builds a new event loop with a `()` as the user event type.
|
2019-05-30 11:29:54 +10:00
|
|
|
///
|
2019-05-26 11:10:41 +10:00
|
|
|
/// ## Platform-specific
|
2019-05-30 11:29:54 +10:00
|
|
|
///
|
2019-05-26 11:10:41 +10:00
|
|
|
/// - **iOS:** Can only be called on the main thread.
|
2019-02-06 02:30:33 +11:00
|
|
|
pub fn new() -> EventLoop<()> {
|
2019-07-30 00:58:16 +10:00
|
|
|
EventLoop::<()>::with_user_event()
|
2019-02-06 02:30:33 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> EventLoop<T> {
|
|
|
|
/// Builds a new event loop.
|
|
|
|
///
|
|
|
|
/// Usage will result in display backend initialisation, this can be controlled on linux
|
|
|
|
/// using an environment variable `WINIT_UNIX_BACKEND`. Legal values are `x11` and `wayland`.
|
|
|
|
/// If it is not set, winit will try to connect to a wayland connection, and if it fails will
|
|
|
|
/// fallback on x11. If this variable is set with any other value, winit will panic.
|
2019-05-30 11:29:54 +10:00
|
|
|
///
|
2019-05-26 11:10:41 +10:00
|
|
|
/// ## Platform-specific
|
2019-05-30 11:29:54 +10:00
|
|
|
///
|
2019-05-26 11:10:41 +10:00
|
|
|
/// - **iOS:** Can only be called on the main thread.
|
2019-07-30 00:58:16 +10:00
|
|
|
pub fn with_user_event() -> EventLoop<T> {
|
2019-02-06 02:30:33 +11:00
|
|
|
EventLoop {
|
|
|
|
event_loop: platform_impl::EventLoop::new(),
|
|
|
|
_marker: ::std::marker::PhantomData,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-22 10:34:55 +10:00
|
|
|
/// Hijacks the calling thread and initializes the winit event loop with the provided
|
2019-02-06 02:30:33 +11:00
|
|
|
/// closure. Since the closure is `'static`, it must be a `move` closure if it needs to
|
|
|
|
/// access any data from the calling context.
|
|
|
|
///
|
|
|
|
/// See the [`ControlFlow`] docs for information on how changes to `&mut ControlFlow` impact the
|
|
|
|
/// event loop's behavior.
|
|
|
|
///
|
|
|
|
/// Any values not passed to this function will *not* be dropped.
|
|
|
|
///
|
|
|
|
/// [`ControlFlow`]: ./enum.ControlFlow.html
|
|
|
|
#[inline]
|
|
|
|
pub fn run<F>(self, event_handler: F) -> !
|
2019-06-22 01:33:15 +10:00
|
|
|
where
|
|
|
|
F: 'static + FnMut(Event<T>, &EventLoopWindowTarget<T>, &mut ControlFlow),
|
2019-02-06 02:30:33 +11:00
|
|
|
{
|
|
|
|
self.event_loop.run(event_handler)
|
|
|
|
}
|
|
|
|
|
2019-05-30 11:29:54 +10:00
|
|
|
/// Creates an `EventLoopProxy` that can be used to dispatch user events to the main event loop.
|
2019-02-06 02:30:33 +11:00
|
|
|
pub fn create_proxy(&self) -> EventLoopProxy<T> {
|
|
|
|
EventLoopProxy {
|
|
|
|
event_loop_proxy: self.event_loop.create_proxy(),
|
|
|
|
}
|
|
|
|
}
|
2019-05-30 11:29:54 +10:00
|
|
|
|
|
|
|
/// Returns the list of all the monitors available on the system.
|
|
|
|
#[inline]
|
2019-06-18 04:27:00 +10:00
|
|
|
pub fn available_monitors(&self) -> impl Iterator<Item = MonitorHandle> {
|
2019-10-06 00:49:24 +10:00
|
|
|
self.event_loop
|
|
|
|
.available_monitors()
|
|
|
|
.into_iter()
|
|
|
|
.map(|inner| MonitorHandle { inner })
|
2019-05-30 11:29:54 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the primary monitor of the system.
|
|
|
|
#[inline]
|
|
|
|
pub fn primary_monitor(&self) -> MonitorHandle {
|
2019-06-22 01:33:15 +10:00
|
|
|
MonitorHandle {
|
|
|
|
inner: self.event_loop.primary_monitor(),
|
|
|
|
}
|
2019-05-30 11:29:54 +10:00
|
|
|
}
|
2019-02-06 02:30:33 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Deref for EventLoop<T> {
|
|
|
|
type Target = EventLoopWindowTarget<T>;
|
|
|
|
fn deref(&self) -> &EventLoopWindowTarget<T> {
|
|
|
|
self.event_loop.window_target()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Used to send custom events to `EventLoop`.
|
2019-02-21 20:51:43 +11:00
|
|
|
pub struct EventLoopProxy<T: 'static> {
|
2019-02-06 02:30:33 +11:00
|
|
|
event_loop_proxy: platform_impl::EventLoopProxy<T>,
|
|
|
|
}
|
|
|
|
|
2019-08-06 06:51:42 +10:00
|
|
|
impl<T: 'static> Clone for EventLoopProxy<T> {
|
|
|
|
fn clone(&self) -> Self {
|
|
|
|
Self {
|
|
|
|
event_loop_proxy: self.event_loop_proxy.clone(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-21 20:51:43 +11:00
|
|
|
impl<T: 'static> EventLoopProxy<T> {
|
2019-02-06 02:30:33 +11:00
|
|
|
/// Send an event to the `EventLoop` from which this proxy was created. This emits a
|
|
|
|
/// `UserEvent(event)` event in the event loop, where `event` is the value passed to this
|
|
|
|
/// function.
|
|
|
|
///
|
|
|
|
/// Returns an `Err` if the associated `EventLoop` no longer exists.
|
|
|
|
pub fn send_event(&self, event: T) -> Result<(), EventLoopClosed> {
|
|
|
|
self.event_loop_proxy.send_event(event)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-21 20:51:43 +11:00
|
|
|
impl<T: 'static> fmt::Debug for EventLoopProxy<T> {
|
2019-07-10 07:49:07 +10:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
|
|
f.pad("EventLoopProxy { .. }")
|
2019-02-06 02:30:33 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// The error that is returned when an `EventLoopProxy` attempts to wake up an `EventLoop` that
|
|
|
|
/// no longer exists.
|
|
|
|
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
|
|
|
|
pub struct EventLoopClosed;
|
|
|
|
|
|
|
|
impl fmt::Display for EventLoopClosed {
|
2019-06-18 04:27:00 +10:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
2019-02-06 02:30:33 +11:00
|
|
|
write!(f, "{}", error::Error::description(self))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl error::Error for EventLoopClosed {
|
|
|
|
fn description(&self) -> &str {
|
|
|
|
"Tried to wake up a closed `EventLoop`"
|
|
|
|
}
|
|
|
|
}
|