Struct tao::event_loop::EventLoopWindowTarget

source ·
pub struct EventLoopWindowTarget<T: 'static> { /* private fields */ }
Expand description

Target that associates windows with an EventLoop.

This type exists to allow you to create new windows while Tao 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.

Implementations§

source§

impl<T> EventLoopWindowTarget<T>

source

pub fn available_monitors(&self) -> impl Iterator<Item = MonitorHandle>

Returns the list of all the monitors available on the system.

source

pub fn primary_monitor(&self) -> Option<MonitorHandle>

Returns the primary monitor of the system.

Returns None if it can’t identify any monitor as a primary one.

source

pub fn monitor_from_point(&self, x: f64, y: f64) -> Option<MonitorHandle>

Returns the monitor that contains the given point.

§Platform-specific:
  • Android / iOS: Unsupported.
source

pub fn set_device_event_filter(&self, _filter: DeviceEventFilter)

Change DeviceEvent filter mode.

Since the DeviceEvent capture can lead to high CPU usage for unfocused windows, tao will ignore them by default for unfocused windows. This method allows changing this filter at runtime to explicitly capture them again.

§Platform-specific
  • Linux / macOS / iOS / Android: Unsupported.
source

pub fn cursor_position(&self) -> Result<PhysicalPosition<f64>, ExternalError>

Returns the current cursor position

§Platform-specific
  • iOS / Android / Linux(Wayland): Unsupported, returns 0,0.
source

pub fn set_progress_bar(&self, _progress: ProgressBarState)

Sets the progress bar state

§Platform-specific
  • Windows: Unsupported. Use the Progress Bar Function Available in Window (Windows can have different progress bars for different window)
  • Linux: Only supported desktop environments with libunity (e.g. GNOME).
  • iOS / Android: Unsupported.
source

pub fn set_theme(&self, theme: Option<Theme>)

Sets the theme for the application.

§Platform-specific
  • iOS / Android: Unsupported.

Trait Implementations§

source§

impl<T: Clone + 'static> Clone for EventLoopWindowTarget<T>

source§

fn clone(&self) -> EventLoopWindowTarget<T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T> Debug for EventLoopWindowTarget<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T> EventLoopWindowTargetExtUnix for EventLoopWindowTarget<T>

source§

fn is_wayland(&self) -> bool

True if the EventLoopWindowTarget uses Wayland.
source§

fn is_x11(&self) -> bool

True if the EventLoopWindowTarget uses X11.
source§

fn xlib_xconnection(&self) -> Option<Arc<XConnection>>

source§

fn gtk_app(&self) -> &Application

Returns the gtk application for this event loop.
source§

impl<T> HasDisplayHandle for EventLoopWindowTarget<T>

source§

fn display_handle(&self) -> Result<DisplayHandle<'_>, HandleError>

Get a handle to the display controller of the windowing system.
source§

impl<T> HasRawDisplayHandle for EventLoopWindowTarget<T>

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> HasRawDisplayHandle for T
where T: HasDisplayHandle + ?Sized,

source§

fn raw_display_handle(&self) -> Result<RawDisplayHandle, HandleError>

👎Deprecated: Use HasDisplayHandle instead
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.