use slint::{ platform::{Platform, WindowAdapter}, PlatformError, }; use std::rc::Rc; use super::femtovg_window::FemtoVGWindow; pub struct CustomSlintPlatform { window: Rc, } impl CustomSlintPlatform { pub fn new(window: Rc) -> Self { Self { window } } } impl Platform for CustomSlintPlatform { fn create_window_adapter(&self) -> Result, PlatformError> { Result::Ok(Rc::clone(&self.window) as Rc) } }