pub struct MiniquadWindow;
dep_miniquad
only.Expand description
A wrapper namespace over miniquad::window
functions.
Implementations§
Source§impl MiniquadWindow
impl MiniquadWindow
Sourcepub fn new_rendering_backend() -> Box<dyn RenderingBackend>
pub fn new_rendering_backend() -> Box<dyn RenderingBackend>
Returns a new rendering backend.
It’s normally GlContext
, or maybe MetalContext
in macos.
Sourcepub fn blocking_event_loop() -> bool
pub fn blocking_event_loop() -> bool
Returns true
if the event loop blocks until schedule_update
is called.
See also: MiniquadService::
blocking_event_loop()
, and
::miniquad::
blocking_event_loop
.
Sourcepub fn schedule_update()
pub fn schedule_update()
Requests an immediate update, ensuring update()
and draw()
are called without waiting.
This must be called from an implementor of MiniquadEventHandler
and requires conf.platform
.
blocking_event_loop
to be enabled.
This can significantly reduce CPU usage while waiting for events.
It is recommended to call this at the end of resize_event
or after relevant mouse/keyboard input.
Sourcepub fn clipboard_get() -> Option<String> ⓘ
pub fn clipboard_get() -> Option<String> ⓘ
Get current OS clipboard value.
Sourcepub fn clipboard_set(data: &str)
pub fn clipboard_set(data: &str)
Save value to OS clipboard
Sourcepub fn dropped_file_bytes(index: usize) -> Option<Vec<u8>> ⓘ
pub fn dropped_file_bytes(index: usize) -> Option<Vec<u8>> ⓘ
Returns the contents of a dropped file as a byte vector, if available.
The index
parameter specifies which dropped file to retrieve, starting from 0.
Sourcepub fn dropped_file_count() -> usize
pub fn dropped_file_count() -> usize
Returns the number of files that have been dropped.
Sourcepub fn dropped_file_path(index: usize) -> Option<PathBuf> ⓘ
Available on crate feature std
only.
pub fn dropped_file_path(index: usize) -> Option<PathBuf> ⓘ
std
only.Returns the file path of a dropped file, if available.
The index
parameter specifies which dropped file to retrieve, starting from 0.
Sourcepub fn dpi_scale() -> f32
pub fn dpi_scale() -> f32
The dpi scaling factor (window pixels to framebuffer pixels).
See: High DPI Rendering.
Sourcepub fn high_dpi() -> bool
pub fn high_dpi() -> bool
Returns true
if high_dpi
was requested and it’s running in a high-dpi scenario.
Sourcepub fn quit()
pub fn quit()
This function simply quits the application without giving the user a chance to intervene.
Usually this might be called when the user clicks the ‘Ok’ button in a ‘Really Quit?’ dialog box Window might not be actually closed right away (exit(0) might not happen in the order_quit implmentation) and execution might continue for some time after But the window is going to be inevitably closed at some point.
Sourcepub fn request_quit()
pub fn request_quit()
Triggers the “quit_requested_event” event.
If the event handler callback does nothing, the application will be quit as usual.
To prevent this, call cancel_quit
from inside the event handler.
Sourcepub fn cancel_quit()
pub fn cancel_quit()
Cancels a pending quit request, no matter who it was requested.
The only place where calling this function makes sense is from inside the event handler callback when the “quit_requested_event” event has been received.
Sourcepub fn get_size() -> (f32, f32) ⓘ
pub fn get_size() -> (f32, f32) ⓘ
The current framebuffer size in pixels.
See High DPI Rendering and
::miniquad::
screen_size
.
Sourcepub fn set_size(width: u32, height: u32)
pub fn set_size(width: u32, height: u32)
Set the application’s window size.
See ::miniquad::
set_window_size
.
Sourcepub fn get_position() -> (u32, u32) ⓘ
Available on Windows or Linux only.
pub fn get_position() -> (u32, u32) ⓘ
Get the position of the window.
See ::miniquad::
get_window_position
.
Sourcepub fn set_position(x: u32, y: u32)
pub fn set_position(x: u32, y: u32)
Set the window position.
See ::miniquad::
set_window_position
.
Sourcepub fn set_fullscreen(fullscreen: bool)
pub fn set_fullscreen(fullscreen: bool)
Sets the full screen mode.
Sourcepub fn show_keyboard(shown: bool)
pub fn show_keyboard(shown: bool)
Show/hide onscreen keyboard. Only works on Android right now.
Sourcepub fn show_mouse(shown: bool)
pub fn show_mouse(shown: bool)
Show or hide the mouse cursor
Sourcepub fn set_mouse_cursor(icon: CursorIcon)
pub fn set_mouse_cursor(icon: CursorIcon)
Set the mouse cursor icon.
Sourcepub fn set_cursor_grab(grab: bool)
pub fn set_cursor_grab(grab: bool)
Capture mouse cursor to the current window On WASM this will automatically hide cursor.
On desktop this will bound cursor to windows border.
NOTICE: on desktop cursor will not be automatically released after window
lost focus so set_cursor_grab(false)
on window’s focus lost is recommended.
Auto Trait Implementations§
impl Freeze for MiniquadWindow
impl RefUnwindSafe for MiniquadWindow
impl Send for MiniquadWindow
impl Sync for MiniquadWindow
impl Unpin for MiniquadWindow
impl UnwindSafe for MiniquadWindow
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> ByteSized for T
impl<T> ByteSized for T
Source§const BYTE_ALIGN: usize = _
const BYTE_ALIGN: usize = _
Source§fn byte_align(&self) -> usize
fn byte_align(&self) -> usize
Source§fn ptr_size_ratio(&self) -> [usize; 2]
fn ptr_size_ratio(&self) -> [usize; 2]
Source§impl<T, R> Chain<R> for Twhere
T: ?Sized,
impl<T, R> Chain<R> for Twhere
T: ?Sized,
Source§impl<T> ExtAny for T
impl<T> ExtAny for T
Source§fn type_hash_with<H: Hasher>(&self, hasher: H) -> u64
fn type_hash_with<H: Hasher>(&self, hasher: H) -> u64
TypeId
of Self
using a custom hasher.Source§fn as_any_mut(&mut self) -> &mut dyn Anywhere
Self: Sized,
fn as_any_mut(&mut self) -> &mut dyn Anywhere
Self: Sized,
Source§impl<T> ExtMem for Twhere
T: ?Sized,
impl<T> ExtMem for Twhere
T: ?Sized,
Source§const NEEDS_DROP: bool = _
const NEEDS_DROP: bool = _
Source§fn mem_align_of<T>() -> usize
fn mem_align_of<T>() -> usize
Source§fn mem_align_of_val(&self) -> usize
fn mem_align_of_val(&self) -> usize
Source§fn mem_size_of<T>() -> usize
fn mem_size_of<T>() -> usize
Source§fn mem_size_of_val(&self) -> usize
fn mem_size_of_val(&self) -> usize
Source§fn mem_needs_drop(&self) -> bool
fn mem_needs_drop(&self) -> bool
true
if dropping values of this type matters. Read moreSource§fn mem_forget(self)where
Self: Sized,
fn mem_forget(self)where
Self: Sized,
self
without running its destructor. Read moreSource§fn mem_replace(&mut self, other: Self) -> Selfwhere
Self: Sized,
fn mem_replace(&mut self, other: Self) -> Selfwhere
Self: Sized,
Source§unsafe fn mem_zeroed<T>() -> T
unsafe fn mem_zeroed<T>() -> T
unsafe_layout
only.T
represented by the all-zero byte-pattern. Read moreSource§unsafe fn mem_transmute_copy<Src, Dst>(src: &Src) -> Dst
unsafe fn mem_transmute_copy<Src, Dst>(src: &Src) -> Dst
unsafe_layout
only.T
represented by the all-zero byte-pattern. Read moreSource§fn mem_as_bytes(&self) -> &[u8] ⓘ
fn mem_as_bytes(&self) -> &[u8] ⓘ
unsafe_slice
only.§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
Source§impl<T> Hook for T
impl<T> Hook for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more