pub struct PopupWindow { /* private fields */ }Implementations§
Source§impl PopupWindow
impl PopupWindow
pub fn new(renderer: FemtoVGRenderer<OpenGLBackend>) -> Rc<PopupWindow>
pub fn new_with_callback( renderer: FemtoVGRenderer<OpenGLBackend>, on_close: Box<dyn Fn(Handle<Popup>)>, ) -> Rc<PopupWindow>
pub fn set_popup_id(&self, handle: Handle<Popup>)
pub fn close_popup(&self)
pub fn popup_key(&self) -> Option<usize>
pub fn mark_configured(&self)
pub fn is_configured(&self) -> bool
pub fn set_component_instance(&self, instance: ComponentInstance)
pub fn request_resize(&self, width: f32, height: f32)
pub fn begin_repositioning(&self)
pub fn end_repositioning(&self)
Methods from Deref<Target = Window>§
Sourcepub fn show(&self) -> Result<(), PlatformError>
pub fn show(&self) -> Result<(), PlatformError>
Shows the window on the screen. An additional strong reference on the associated component is maintained while the window is visible.
Call Self::hide() to make the window invisible again, and drop the additional
strong reference.
Sourcepub fn hide(&self) -> Result<(), PlatformError>
pub fn hide(&self) -> Result<(), PlatformError>
Hides the window, so that it is not visible anymore. The additional strong
reference on the associated component, that was created when Self::show() was called, is
dropped.
Sourcepub 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.
Sourcepub 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.
Sourcepub 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.
Sourcepub 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.
Sourcepub 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).
Sourcepub 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.
Sourcepub 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).
Sourcepub 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).
Sourcepub fn is_fullscreen(&self) -> bool
pub fn is_fullscreen(&self) -> bool
Returns if the window is currently fullscreen
Sourcepub fn set_fullscreen(&self, fullscreen: bool)
pub fn set_fullscreen(&self, fullscreen: bool)
Set or unset the window to display fullscreen.
Sourcepub fn is_maximized(&self) -> bool
pub fn is_maximized(&self) -> bool
Returns if the window is currently maximized
Sourcepub fn set_maximized(&self, maximized: bool)
pub fn set_maximized(&self, maximized: bool)
Maximize or unmaximize the window.
Sourcepub fn is_minimized(&self) -> bool
pub fn is_minimized(&self) -> bool
Returns if the window is currently minimized
Sourcepub fn set_minimized(&self, minimized: bool)
pub fn set_minimized(&self, minimized: bool)
Minimize or unminimze the window.
Sourcepub 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.
This function panics if there is an error processing the event.
Use Self::try_dispatch_event() to handle the error.
Sourcepub fn try_dispatch_event(
&self,
event: WindowEvent,
) -> Result<(), PlatformError>
pub fn try_dispatch_event( &self, event: WindowEvent, ) -> Result<(), PlatformError>
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.
Sourcepub 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.
Sourcepub 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.
Sourcepub fn take_snapshot(
&self,
) -> Result<SharedPixelBuffer<Rgba<u8>>, PlatformError>
pub fn take_snapshot( &self, ) -> Result<SharedPixelBuffer<Rgba<u8>>, PlatformError>
Takes a snapshot of the window contents and returns it as RGBA8 encoded pixel buffer.
Note that this function may be slow to call as it may need to re-render the scene.
Trait Implementations§
Source§impl Deref for PopupWindow
impl Deref for PopupWindow
Source§impl Drop for PopupWindow
impl Drop for PopupWindow
Source§impl WindowAdapter for PopupWindow
impl WindowAdapter for PopupWindow
Source§fn size(&self) -> PhysicalSize
fn size(&self) -> PhysicalSize
Source§fn set_size(&self, size: WindowSize)
fn set_size(&self, size: WindowSize)
Source§fn request_redraw(&self)
fn request_redraw(&self)
Source§fn set_visible(&self, _visible: bool) -> Result<(), PlatformError>
fn set_visible(&self, _visible: bool) -> Result<(), PlatformError>
Source§fn position(&self) -> Option<PhysicalPosition>
fn position(&self) -> Option<PhysicalPosition>
Source§fn set_position(&self, _position: WindowPosition)
fn set_position(&self, _position: WindowPosition)
Source§fn update_window_properties(&self, _properties: WindowProperties<'_>)
fn update_window_properties(&self, _properties: WindowProperties<'_>)
Auto Trait Implementations§
impl !Freeze for PopupWindow
impl !RefUnwindSafe for PopupWindow
impl !Send for PopupWindow
impl !Sync for PopupWindow
impl Unpin for PopupWindow
impl !UnwindSafe for PopupWindow
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> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
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.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§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.Source§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.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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