use crate::ClipboardItem; use parking_lot::Mutex; use pathfinder_geometry::vector::Vector2F; use std::{ any::Any, cell::RefCell, path::{Path, PathBuf}, rc::Rc, sync::Arc, }; pub struct Platform { dispatcher: Arc, fonts: Arc, current_clipboard_item: Mutex>, } #[derive(Default)] pub struct ForegroundPlatform { last_prompt_for_new_path_args: RefCell)>)>>, } struct Dispatcher; pub struct Window { size: Vector2F, scale_factor: f32, current_scene: Option, event_handlers: Vec>, resize_handlers: Vec>, close_handlers: Vec>, pub(crate) last_prompt: RefCell>>, } impl ForegroundPlatform { pub(crate) fn simulate_new_path_selection( &self, result: impl FnOnce(PathBuf) -> Option, ) { let (dir_path, callback) = self .last_prompt_for_new_path_args .take() .expect("prompt_for_new_path was not called"); callback(result(dir_path)); } pub(crate) fn did_prompt_for_new_path(&self) -> bool { self.last_prompt_for_new_path_args.borrow().is_some() } } impl super::ForegroundPlatform for ForegroundPlatform { fn on_become_active(&self, _: Box) {} fn on_resign_active(&self, _: Box) {} fn on_event(&self, _: Box bool>) {} fn on_open_files(&self, _: Box)>) {} fn run(&self, _on_finish_launching: Box ()>) { unimplemented!() } fn on_menu_command(&self, _: Box)>) {} fn set_menus(&self, _: Vec) {} fn prompt_for_paths( &self, _: super::PathPromptOptions, _: Box>)>, ) { } fn prompt_for_new_path(&self, path: &Path, f: Box)>) { *self.last_prompt_for_new_path_args.borrow_mut() = Some((path.to_path_buf(), f)); } } impl Platform { fn new() -> Self { Self { dispatcher: Arc::new(Dispatcher), fonts: Arc::new(super::current::FontSystem::new()), current_clipboard_item: Default::default(), } } } impl super::Platform for Platform { fn dispatcher(&self) -> Arc { self.dispatcher.clone() } fn fonts(&self) -> std::sync::Arc { self.fonts.clone() } fn activate(&self, _ignoring_other_apps: bool) {} fn open_window( &self, _: usize, options: super::WindowOptions, _executor: Rc, ) -> Box { Box::new(Window::new(options.bounds.size())) } fn key_window_id(&self) -> Option { None } fn quit(&self) {} fn write_to_clipboard(&self, item: ClipboardItem) { *self.current_clipboard_item.lock() = Some(item); } fn read_from_clipboard(&self) -> Option { self.current_clipboard_item.lock().clone() } fn open_url(&self, _: &str) {} fn write_credentials(&self, _: &str, _: &str, _: &[u8]) {} fn read_credentials(&self, _: &str) -> Option<(String, Vec)> { None } } impl Window { fn new(size: Vector2F) -> Self { Self { size, event_handlers: Vec::new(), resize_handlers: Vec::new(), close_handlers: Vec::new(), scale_factor: 1.0, current_scene: None, last_prompt: RefCell::new(None), } } } impl super::Dispatcher for Dispatcher { fn is_main_thread(&self) -> bool { true } fn run_on_main_thread(&self, task: async_task::Runnable) { task.run(); } } impl super::WindowContext for Window { fn size(&self) -> Vector2F { self.size } fn scale_factor(&self) -> f32 { self.scale_factor } fn titlebar_height(&self) -> f32 { 24. } fn present_scene(&mut self, scene: crate::Scene) { self.current_scene = Some(scene); } } impl super::Window for Window { fn as_any_mut(&mut self) -> &mut dyn Any { self } fn on_event(&mut self, callback: Box) { self.event_handlers.push(callback); } fn on_resize(&mut self, callback: Box) { self.resize_handlers.push(callback); } fn on_close(&mut self, callback: Box) { self.close_handlers.push(callback); } fn prompt(&self, _: crate::PromptLevel, _: &str, _: &[&str], f: Box) { self.last_prompt.replace(Some(f)); } } pub fn platform() -> Platform { Platform::new() } pub fn foreground_platform() -> ForegroundPlatform { ForegroundPlatform::default() }