mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-30 22:01:13 +00:00
96 lines
3.6 KiB
Rust
96 lines
3.6 KiB
Rust
// Copyright © SixtyFPS GmbH <info@slint-ui.com>
|
|
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-commercial
|
|
|
|
#![doc = include_str!("README.md")]
|
|
#![doc(html_logo_url = "https://slint-ui.com/logo/slint-logo-square-light.svg")]
|
|
#![cfg_attr(not(any(feature = "i-slint-backend-qt", feature = "i-slint-backend-winit")), no_std)]
|
|
|
|
extern crate alloc;
|
|
|
|
use alloc::boxed::Box;
|
|
use i_slint_core::platform::Platform;
|
|
|
|
cfg_if::cfg_if! {
|
|
if #[cfg(all(feature = "i-slint-backend-qt", not(no_qt)))] {
|
|
use i_slint_backend_qt as default_backend;
|
|
|
|
fn create_default_backend() -> Box<dyn Platform + 'static> {
|
|
Box::new(default_backend::Backend)
|
|
}
|
|
} else if #[cfg(feature = "i-slint-backend-winit")] {
|
|
use i_slint_backend_winit as default_backend;
|
|
fn create_default_backend() -> Box<dyn Platform + 'static> {
|
|
Box::new(i_slint_backend_winit::Backend::new(None))
|
|
}
|
|
} else {
|
|
|
|
}
|
|
}
|
|
|
|
cfg_if::cfg_if! {
|
|
if #[cfg(any(
|
|
all(feature = "i-slint-backend-qt", not(no_qt)),
|
|
feature = "i-slint-backend-winit"
|
|
))] {
|
|
pub fn create_backend() -> Box<dyn Platform + 'static> {
|
|
|
|
let backend_config = std::env::var("SLINT_BACKEND").or_else(|_| {
|
|
let legacy_fallback = std::env::var("SIXTYFPS_BACKEND");
|
|
if legacy_fallback.is_ok() {
|
|
eprintln!("Using `SIXTYFPS_BACKEND` environment variable for dynamic backend selection. This is deprecated, use `SLINT_BACKEND` instead.")
|
|
}
|
|
legacy_fallback
|
|
}).unwrap_or_default();
|
|
|
|
let backend_config = backend_config.to_lowercase();
|
|
if let Some((event_loop, _renderer)) = backend_config.split_once('-').or_else(|| match backend_config.as_str() {
|
|
"qt" => Some(("qt", "qpainter")),
|
|
"gl" => Some(("winit", "femtovg")),
|
|
"skia" => Some(("winit", "skia")),
|
|
"sw" | "software" => Some(("winit", "software")),
|
|
_ => None,
|
|
}) {
|
|
match event_loop {
|
|
#[cfg(all(feature = "i-slint-backend-qt", not(no_qt)))]
|
|
"qt" => return Box::new(i_slint_backend_qt::Backend),
|
|
#[cfg(feature = "i-slint-backend-winit")]
|
|
"winit" => return Box::new(i_slint_backend_winit::Backend::new(Some(_renderer))),
|
|
_ => {},
|
|
}
|
|
};
|
|
|
|
if !backend_config.is_empty() {
|
|
eprintln!("Could not load rendering backend {}, fallback to default", backend_config)
|
|
}
|
|
create_default_backend()
|
|
}
|
|
pub use default_backend::{
|
|
native_widgets, Backend, NativeGlobals, NativeWidgets, HAS_NATIVE_STYLE,
|
|
};
|
|
} else {
|
|
pub fn create_backend() -> Box<dyn Platform + 'static> {
|
|
panic!("no default backend configured, the backend must be initialized manually")
|
|
}
|
|
pub mod native_widgets {}
|
|
pub type NativeWidgets = ();
|
|
pub type NativeGlobals = ();
|
|
pub const HAS_NATIVE_STYLE: bool = false;
|
|
}
|
|
}
|
|
|
|
/// Run the callback with the platform abstraction.
|
|
/// Create the backend if it does not exist yet
|
|
pub fn with_platform<R>(f: impl FnOnce(&dyn Platform) -> R) -> R {
|
|
i_slint_core::with_platform(create_backend, f)
|
|
}
|
|
|
|
#[doc(hidden)]
|
|
#[cold]
|
|
#[cfg(not(target_arch = "wasm32"))]
|
|
pub fn use_modules() {
|
|
i_slint_core::use_modules();
|
|
#[cfg(feature = "i-slint-backend-qt")]
|
|
i_slint_backend_qt::use_modules();
|
|
#[cfg(feature = "i-slint-backend-winit")]
|
|
i_slint_backend_winit::use_modules();
|
|
}
|