Window

Struct Window 

Source
pub struct Window {
    pub window: Window,
    /* private fields */
}
Expand description

A struct representing the tab in the web browser. It provide event handling.

Fields§

§window: Window

Implementations§

Source§

impl Window

Source

pub fn init() -> (Window, Canvas)

Create a Canvas and a Window. Events will not be activated!

Source

pub fn init_with_events(events: u8) -> (Window, Canvas)

Create a Canvas and a Window. You may specify which types of event you want to record.

§Example
use wasm_game_lib::inputs::event::types::*; // there are only a few events so the wildcard is not a problem
use wasm_game_lib::graphics::window::Window;
 
// create a window recording three types of event
let (window, canvas) = Window::init_with_events(MOUSE_EVENT + KEYBOARD_EVENT + FOCUS_EVENT);
Source

pub fn poll_events(&mut self) -> &mut EventManager

Return an Iterator of every events fired after the last call of this method. Make sure events are activated: init_with_events().

§Example
use wasm_game_lib::inputs::event::types::*;
use wasm_game_lib::graphics::window::Window;
 
// create a window recording three types of event
let (mut window, canvas) = Window::init_with_events(MOUSE_EVENT + KEYBOARD_EVENT + FOCUS_EVENT);
 
loop {
    for event in window.poll_events() {
        // Do something with your event
    }
}
Source

pub fn set_title(&mut self, title: &str)

Set the title of the tab.

Source

pub fn get_title(&self) -> String

Get the title of the tab.

Source

pub fn set_icon(&mut self, _icon: &Image)

Set the icon of the tab. UNIMPLEMENTED

Source

pub fn get_icon(&self) -> Image

Get the icon of the tab. UNIMPLEMENTED

Source

pub fn get_width(&self) -> u32

Return the width of the tab in pixels

Source

pub fn get_height(&self) -> u32

Return the height of the tab in pixels

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> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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