Struct slint::platform::software_renderer::MinimalSoftwareWindow
pub struct MinimalSoftwareWindow<const MAX_BUFFER_AGE: usize> { /* private fields */ }
Expand description
This is a minimal adapter for a Window that doesn’t have any other feature than rendering using the software renderer.
The MAX_BUFFER_AGE
generic parameter is forwarded to
the SoftwareRenderer
Implementations§
§impl<const MAX_BUFFER_AGE: usize> MinimalSoftwareWindow<MAX_BUFFER_AGE>
impl<const MAX_BUFFER_AGE: usize> MinimalSoftwareWindow<MAX_BUFFER_AGE>
pub fn new() -> Rc<MinimalSoftwareWindow<MAX_BUFFER_AGE>>
pub fn new() -> Rc<MinimalSoftwareWindow<MAX_BUFFER_AGE>>
Instantiate a new MinimalWindowAdaptor
pub fn draw_if_needed(
&self,
render_callback: impl FnOnce(&SoftwareRenderer<MAX_BUFFER_AGE>)
) -> bool
pub fn draw_if_needed( &self, render_callback: impl FnOnce(&SoftwareRenderer<MAX_BUFFER_AGE>) ) -> bool
If the window needs to be redrawn, the callback will be called with the renderer that should be used to do the drawing.
SoftwareRenderer::render()
or SoftwareRenderer::render_by_line()
should be called
in that callback.
Return true if something was redrawn.
Methods from Deref<Target = Window>§
pub fn show(&self)
pub fn show(&self)
Registers the window with the windowing system in order to make it visible on the screen.
pub fn hide(&self)
pub fn hide(&self)
De-registers the window from the windowing system, therefore hiding it.
pub fn set_rendering_notifier(
&self,
callback: impl FnMut(RenderingState, &GraphicsAPI<'_>) + 'static
) -> Result<(), SetRenderingNotifierError>
pub fn set_rendering_notifier( &self, callback: impl FnMut(RenderingState, &GraphicsAPI<'_>) + 'static ) -> Result<(), SetRenderingNotifierError>
This function allows registering a callback that’s invoked during the different phases of rendering. This allows custom rendering on top or below of the scene.
pub fn on_close_requested(
&self,
callback: impl FnMut() -> CloseRequestResponse + 'static
)
pub fn on_close_requested( &self, callback: impl FnMut() -> CloseRequestResponse + 'static )
This function allows registering a callback that’s invoked when the user tries to close a window. The callback has to return a CloseRequestResponse.
pub fn request_redraw(&self)
pub fn request_redraw(&self)
This function issues a request to the windowing system to redraw the contents of the window.
pub fn scale_factor(&self) -> f32
pub fn scale_factor(&self) -> f32
This function returns the scale factor that allows converting between logical and physical pixels.
pub fn position(&self) -> PhysicalPosition
pub fn position(&self) -> PhysicalPosition
Returns the position of the window on the screen, in physical screen coordinates and including a window frame (if present).
pub fn set_position(&self, position: impl Into<WindowPosition>)
pub fn set_position(&self, position: impl Into<WindowPosition>)
Sets the position of the window on the screen, in physical screen coordinates and including a window frame (if present). Note that on some windowing systems, such as Wayland, this functionality is not available.
pub fn size(&self) -> PhysicalSize
pub fn size(&self) -> PhysicalSize
Returns the size of the window on the screen, in physical screen coordinates and excluding a window frame (if present).
pub fn set_size(&self, size: impl Into<WindowSize>)
pub fn set_size(&self, size: impl Into<WindowSize>)
Resizes the window to the specified size on the screen, in physical pixels and excluding a window frame (if present).
pub fn dispatch_event(&self, event: WindowEvent)
pub fn dispatch_event(&self, event: WindowEvent)
Dispatch a window event to the scene.
Use this when you’re implementing your own backend and want to forward user input events.
Any position fields in the event must be in the logical pixel coordinate system relative to the top left corner of the window.
pub fn has_active_animations(&self) -> bool
pub fn has_active_animations(&self) -> bool
Returns true if there is an animation currently active on any property in the Window; false otherwise.
pub fn is_visible(&self) -> bool
pub fn is_visible(&self) -> bool
Returns the visibility state of the window. This function can return false even if you previously called show() on it, for example if the user minimized the window.
Trait Implementations§
§impl<const MAX_BUFFER_AGE: usize> Deref for MinimalSoftwareWindow<MAX_BUFFER_AGE>
impl<const MAX_BUFFER_AGE: usize> Deref for MinimalSoftwareWindow<MAX_BUFFER_AGE>
§impl<const MAX_BUFFER_AGE: usize> WindowAdapter for MinimalSoftwareWindow<MAX_BUFFER_AGE>
impl<const MAX_BUFFER_AGE: usize> WindowAdapter for MinimalSoftwareWindow<MAX_BUFFER_AGE>
Auto Trait Implementations§
impl<const MAX_BUFFER_AGE: usize> !RefUnwindSafe for MinimalSoftwareWindow<MAX_BUFFER_AGE>
impl<const MAX_BUFFER_AGE: usize> !Send for MinimalSoftwareWindow<MAX_BUFFER_AGE>
impl<const MAX_BUFFER_AGE: usize> !Sync for MinimalSoftwareWindow<MAX_BUFFER_AGE>
impl<const MAX_BUFFER_AGE: usize> Unpin for MinimalSoftwareWindow<MAX_BUFFER_AGE>
impl<const MAX_BUFFER_AGE: usize> !UnwindSafe for MinimalSoftwareWindow<MAX_BUFFER_AGE>
Blanket Implementations§
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere T: Any,
§fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.