pub struct MiniquadService<T: MiniquadEventHandlerExt + 'static> { /* private fields */ }
dep_miniquad
only.Expand description
miniquad
’s UI Service.
Implementations§
Source§impl<T: MiniquadEventHandlerExt + 'static> MiniquadService<T>
§builder methods
impl<T: MiniquadEventHandlerExt + 'static> MiniquadService<T>
§builder methods
Sourcepub fn init(self)
pub fn init(self)
Initialize the miniquad rendering context, opening the window.
This must be the last method to call.
§Panics
Panics if the handler is not set (e.g. by constructing with default()
)
Sourcepub fn blocking_event_loop(self, blocking: bool) -> Self
pub fn blocking_event_loop(self, blocking: bool) -> Self
Whether the event loop should block until schedule_update
is called.
Sourcepub fn window_size(self, width: u32, height: u32) -> Self
pub fn window_size(self, width: u32, height: u32) -> Self
Sets the window size.
NOTE: in X11 it needs to have window_resizable
set to true
for it to have any effect.
Sourcepub fn window_resizable(self, resizable: bool) -> Self
pub fn window_resizable(self, resizable: bool) -> Self
Whether the window should be resizable
by the user.
Sourcepub fn fullscreen(self, fullscreen: bool) -> Self
pub fn fullscreen(self, fullscreen: bool) -> Self
Whether the window should be fullscreen
.
Sourcepub fn buffer_size(self, width: u32, height: u32) -> Self
pub fn buffer_size(self, width: u32, height: u32) -> Self
Sets the size of the pixel buffer.
Sourcepub fn interpolation(self, linear: bool) -> Self
pub fn interpolation(self, linear: bool) -> Self
If linear == true
uses [FilterMode:Linear
], otherwise FilterMode::Nearest
.
If the handler
has not been set, this does nothing.
Sourcepub fn maintain_aspect_ratio(self, maintain: bool) -> Self
pub fn maintain_aspect_ratio(self, maintain: bool) -> Self
Set whether to maintain
the aspect ratio on window resize.
If the handler
has not been set, this does nothing.
Source§impl<T: MiniquadEventHandlerExt + 'static> MiniquadService<T>
§getters and setters
impl<T: MiniquadEventHandlerExt + 'static> MiniquadService<T>
§getters and setters
Sourcepub fn get_interpolation(self) -> bool
pub fn get_interpolation(self) -> bool
Whether the aspect ratio is maintained on window resize.
Sourcepub fn set_interpolation(&mut self, interpolate: bool)
pub fn set_interpolation(&mut self, interpolate: bool)
Set whether to maintain
the aspect ratio on window resize.
Sourcepub fn get_maintain_aspect_ratio(self) -> bool
pub fn get_maintain_aspect_ratio(self) -> bool
Whether the aspect ratio is maintained on window resize.
Sourcepub fn set_maintain_aspect_ratio(&mut self, maintain: bool)
pub fn set_maintain_aspect_ratio(&mut self, maintain: bool)
Set whether to maintain
the aspect ratio on window resize.
Trait Implementations§
Source§impl<T: MiniquadEventHandlerExt + 'static> Default for MiniquadService<T>
impl<T: MiniquadEventHandlerExt + 'static> Default for MiniquadService<T>
Source§impl<T: MiniquadEventHandlerExt + 'static> UiService for MiniquadService<T>
impl<T: MiniquadEventHandlerExt + 'static> UiService for MiniquadService<T>
Auto Trait Implementations§
impl<T> Freeze for MiniquadService<T>where
T: Freeze,
impl<T> RefUnwindSafe for MiniquadService<T>where
T: RefUnwindSafe,
impl<T> Send for MiniquadService<T>where
T: Send,
impl<T> Sync for MiniquadService<T>where
T: Sync,
impl<T> Unpin for MiniquadService<T>where
T: Unpin,
impl<T> UnwindSafe for MiniquadService<T>where
T: UnwindSafe,
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