mirror of
https://github.com/slint-ui/slint.git
synced 2025-08-31 07:37:24 +00:00
94 lines
3.4 KiB
Rust
94 lines
3.4 KiB
Rust
// Copyright © SixtyFPS GmbH <info@slint-ui.com>
|
|
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 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;
|
|
use i_slint_core::platform::PlatformError;
|
|
|
|
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())
|
|
}
|
|
} 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() -> Result<Box<dyn Platform + 'static>, PlatformError> {
|
|
|
|
let backend_config = std::env::var("SLINT_BACKEND").unwrap_or_default();
|
|
|
|
let backend_config = backend_config.to_lowercase();
|
|
let (event_loop, _renderer) = backend_config.split_once('-').unwrap_or_else(|| match backend_config.as_str() {
|
|
"qt" => ("qt", ""),
|
|
"gl" | "winit" => ("winit", ""),
|
|
"femtovg" => ("winit", "femtovg"),
|
|
"skia" => ("winit", "skia"),
|
|
"sw" | "software" => ("winit", "software"),
|
|
x => (x, ""),
|
|
});
|
|
|
|
match event_loop {
|
|
#[cfg(all(feature = "i-slint-backend-qt", not(no_qt)))]
|
|
"qt" => return Ok(Box::new(i_slint_backend_qt::Backend::new())),
|
|
#[cfg(feature = "i-slint-backend-winit")]
|
|
"winit" => return Ok(Box::new(i_slint_backend_winit::Backend::new_with_renderer_by_name((!_renderer.is_empty()).then(|| _renderer)))),
|
|
_ => {},
|
|
}
|
|
|
|
if !backend_config.is_empty() {
|
|
eprintln!("Could not load rendering backend {}, fallback to default", backend_config)
|
|
}
|
|
Ok(create_default_backend())
|
|
}
|
|
pub use default_backend::{
|
|
native_widgets, Backend, NativeGlobals, NativeWidgets, HAS_NATIVE_STYLE,
|
|
};
|
|
} else {
|
|
pub fn create_backend() -> Result<Box<dyn Platform + 'static>, PlatformError> {
|
|
Err(PlatformError::NoPlatform)
|
|
}
|
|
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) -> Result<R, PlatformError>,
|
|
) -> Result<R, PlatformError> {
|
|
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();
|
|
}
|