ori::core::window

Struct Window

Source
pub struct Window {
    pub title: String,
    pub icon: Option<Image>,
    pub size: Size,
    pub sizing: WindowSizing,
    pub scale: f32,
    pub resizable: bool,
    pub decorated: bool,
    pub maximized: bool,
    pub visible: bool,
    pub color: Option<Color>,
    /* private fields */
}
Expand description

A window.

Fields§

§title: String

The title of the window.

§icon: Option<Image>

The icon of the window.

§size: Size

The size of the window.

§sizing: WindowSizing

The sizing of the window.

§scale: f32

The scale of the window.

Modifying this is not recommended, and will probably not do what you expect, as a rule of thumb, don’t do it.

§resizable: bool

Whether the window is resizable.

§decorated: bool

Whether the window is decorated.

§maximized: bool

Whether the window is maximized.

§visible: bool

Whether the window is visible.

§color: Option<Color>

The color of the window.

Implementations§

Source§

impl Window

Source

pub fn new() -> Window

Create a new Window.

Source

pub fn id(&self) -> WindowId

Get the unique identifier of the window.

Source

pub fn title(self, title: impl ToString) -> Window

Set the title of the window.

Source

pub fn icon(self, icon: impl Into<Option<Image>>) -> Window

Set the icon of the window.

Source

pub fn size(self, width: u32, height: u32) -> Window

Set the size of the window.

Source

pub fn sizing(self, sizing: WindowSizing) -> Window

Set the sizing of the window.

Source

pub fn fit_content(self) -> Window

Set the sizing to WindowSizing::Content.

Source

pub fn scale(self, scale: f32) -> Window

Set the scale of the window.

Source

pub fn resizable(self, resizable: bool) -> Window

Set whether the window is resizable.

Source

pub fn decorated(self, decorated: bool) -> Window

Set whether the window is decorated.

Source

pub fn maximized(self, maximized: bool) -> Window

Set whether the window is maximized.

Source

pub fn visible(self, visible: bool) -> Window

Set whether the window is visible.

Source

pub fn color(self, color: impl Into<Option<Color>>) -> Window

Set the color of the window.

Source

pub fn physical_size(&self) -> Size

Get the size of the window in physical pixels.

This is a shorthand for self.size * self.scale.

Source

pub fn width(&self) -> u32

Get the width of the window.

Source

pub fn height(&self) -> u32

Get the height of the window.

Source

pub fn pointers(&self) -> &[Pointer]

Get the pointers in the window.

Source

pub fn pointers_mut(&mut self) -> &mut Vec<Pointer>

Get the pointers in the window mutably.

Source

pub fn is_hovered(&self, view_id: ViewId) -> bool

Get whether a specific view is hovered.

Source

pub fn is_pointer_held( &self, pointer_id: PointerId, button: PointerButton, ) -> bool

Get whether button is held down on pointer with pointer_id.

Source

pub fn get_pointer(&self, pointer_id: PointerId) -> Option<&Pointer>

Get the pointer with pointer_id.

Source

pub fn get_pointer_mut(&mut self, pointer_id: PointerId) -> Option<&mut Pointer>

Get the pointer with pointer_id mutably.

Source

pub fn press_pointer(&mut self, pointer_id: PointerId, button: PointerButton)

Press a button on a pointer.

This is rarely what you want to do, do not use this unless you really know what you are doing.

Source

pub fn release_pointer( &mut self, pointer_id: PointerId, button: PointerButton, ) -> bool

Release a button on a pointer.

This is rarely what you want to do, do not use this unless you really know what you are doing.

Source

pub fn move_pointer(&mut self, pointer_id: PointerId, position: Point) -> Vector

Move a pointer, returning the movement.

Source

pub fn remove_pointer(&mut self, pointer_id: PointerId)

Remove a pointer.

This is rarely what you want to do, do not use this unless you really know what you are doing.

Source

pub fn updates(&mut self) -> Vec<WindowUpdate>

Update the window.

Source

pub fn snapshot(&self) -> WindowSnapshot

Get the WindowSnapshot of the window.

Trait Implementations§

Source§

impl Clone for Window

Source§

fn clone(&self) -> Window

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 Debug for Window

Source§

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

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

impl Default for Window

Source§

fn default() -> Window

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl Freeze for Window

§

impl RefUnwindSafe for Window

§

impl Send for Window

§

impl Sync for Window

§

impl Unpin for Window

§

impl UnwindSafe for Window

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 u8)

🔬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.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more