1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
use std::path::Path;
use crate::window::ComponentWindow;
pub enum EventLoopQuitBehavior {
QuitOnLastWindowClosed,
QuitOnlyExplicitly,
}
pub trait Backend: Send + Sync {
fn create_window(&'static self) -> ComponentWindow;
fn run_event_loop(&'static self, behavior: EventLoopQuitBehavior);
fn quit_event_loop(&'static self);
fn register_font_from_memory(
&'static self,
data: &[u8],
) -> Result<(), Box<dyn std::error::Error>>;
fn register_font_from_path(
&'static self,
path: &Path,
) -> Result<(), Box<dyn std::error::Error>>;
fn set_clipboard_text(&'static self, text: String);
fn clipboard_text(&'static self) -> Option<String>;
fn post_event(&'static self, event: Box<dyn FnOnce() + Send>);
}
static PRIVATE_BACKEND_INSTANCE: once_cell::sync::OnceCell<Box<dyn Backend + 'static>> =
once_cell::sync::OnceCell::new();
pub fn instance() -> Option<&'static dyn Backend> {
use std::ops::Deref;
PRIVATE_BACKEND_INSTANCE.get().map(|backend_box| backend_box.deref())
}
pub fn instance_or_init(
factory_fn: impl FnOnce() -> Box<dyn Backend + 'static>,
) -> &'static dyn Backend {
use std::ops::Deref;
PRIVATE_BACKEND_INSTANCE.get_or_init(factory_fn).deref()
}