mirror of
https://github.com/slint-ui/slint.git
synced 2025-12-23 09:19:32 +00:00
* Add markdown macro and parse/escape functions * Markdown stuff * Implement escape markdown, handle trailing literal sections * add StyledText Type and Value * Implement more things * [autofix.ci] apply automated fixes * Rename MarkdownText to StyledText * Add comments and solve warnings * Apply automated fixes * Fill out styled text type * Change rendertext trait to use enum * Add allow missing docs to stuff * Fix testing backend thing * Move test * Don't use std:: for certain types * Fix api/node * [autofix.ci] apply automated fixes * Rename to StyledTextItem * Ignore styledtext in cpp for now * Remove whitespace change * Add tests, cpp generator changes * Add markdown interpolation tests * Add more tests, some fixes * Implement some StyledText things * Fix sharedparley imports * Manually implement StyledText cpp type * [autofix.ci] apply automated fixes * Fix escape and parse markdown functions * [autofix.ci] apply automated fixes * Add ignore pyi, documentation for cpp styled text * Apply some suggestions * [autofix.ci] apply automated fixes * Add cpp functions for styled text * [autofix.ci] apply automated fixes * Add documentation * Fix api exports * class -> struct * Gate exports behind shared-parley * [autofix.ci] apply automated fixes --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
207 lines
5.7 KiB
Rust
207 lines
5.7 KiB
Rust
// Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0
|
|
|
|
// cSpell: ignore sharedvector textlayout
|
|
|
|
#![doc = include_str!("README.md")]
|
|
#![doc(html_logo_url = "https://slint.dev/logo/slint-logo-square-light.svg")]
|
|
#![cfg_attr(docsrs, feature(doc_cfg))]
|
|
#![deny(unsafe_code)]
|
|
#![cfg_attr(slint_nightly_test, feature(non_exhaustive_omitted_patterns_lint))]
|
|
#![cfg_attr(slint_nightly_test, warn(non_exhaustive_omitted_patterns))]
|
|
#![no_std]
|
|
|
|
extern crate alloc;
|
|
#[cfg(feature = "std")]
|
|
extern crate std;
|
|
|
|
#[cfg(all(not(feature = "std"), feature = "unsafe-single-threaded"))]
|
|
pub(crate) mod unsafe_single_threaded;
|
|
#[cfg(all(not(feature = "std"), not(feature = "unsafe-single-threaded")))]
|
|
compile_error!(
|
|
"At least one of the following feature need to be enabled: `std` or `unsafe-single-threaded`"
|
|
);
|
|
use crate::items::OperatingSystemType;
|
|
#[cfg(all(not(feature = "std"), feature = "unsafe-single-threaded"))]
|
|
use crate::unsafe_single_threaded::thread_local;
|
|
#[cfg(feature = "std")]
|
|
use std::thread_local;
|
|
|
|
pub mod accessibility;
|
|
pub mod animations;
|
|
pub mod api;
|
|
pub mod callbacks;
|
|
pub mod component_factory;
|
|
pub mod context;
|
|
pub mod date_time;
|
|
pub mod future;
|
|
pub mod graphics;
|
|
pub mod input;
|
|
pub mod item_focus;
|
|
pub mod item_rendering;
|
|
pub mod item_tree;
|
|
pub mod items;
|
|
pub mod layout;
|
|
pub mod lengths;
|
|
pub mod menus;
|
|
pub mod model;
|
|
pub mod partial_renderer;
|
|
pub mod platform;
|
|
pub mod properties;
|
|
pub mod renderer;
|
|
#[cfg(feature = "rtti")]
|
|
pub mod rtti;
|
|
pub mod sharedvector;
|
|
pub mod slice;
|
|
#[cfg(feature = "software-renderer")]
|
|
pub mod software_renderer;
|
|
pub mod string;
|
|
pub mod tests;
|
|
pub mod textlayout;
|
|
pub mod timers;
|
|
pub mod translations;
|
|
pub mod window;
|
|
|
|
#[doc(inline)]
|
|
pub use string::SharedString;
|
|
|
|
#[doc(inline)]
|
|
pub use sharedvector::SharedVector;
|
|
|
|
#[doc(inline)]
|
|
pub use graphics::{ImageInner, StaticTextures};
|
|
|
|
#[doc(inline)]
|
|
pub use properties::Property;
|
|
|
|
#[doc(inline)]
|
|
pub use callbacks::Callback;
|
|
|
|
#[doc(inline)]
|
|
pub use graphics::Color;
|
|
|
|
#[doc(inline)]
|
|
pub use graphics::Brush;
|
|
|
|
#[doc(inline)]
|
|
pub use graphics::RgbaColor;
|
|
|
|
#[cfg(feature = "std")]
|
|
#[doc(inline)]
|
|
pub use graphics::PathData;
|
|
|
|
#[doc(inline)]
|
|
pub use graphics::BorderRadius;
|
|
|
|
pub use context::{SlintContext, with_global_context};
|
|
|
|
#[cfg(not(slint_int_coord))]
|
|
pub type Coord = f32;
|
|
#[cfg(slint_int_coord)]
|
|
pub type Coord = i32;
|
|
|
|
/// This type is not exported from the public API crate, so function having this
|
|
/// parameter cannot be called from the public API without naming it
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
|
#[repr(C)]
|
|
pub struct InternalToken;
|
|
|
|
#[cfg(feature = "std")]
|
|
thread_local!(
|
|
/// Permit testing code to force an OS type
|
|
pub static OPERATING_SYSTEM_OVERRIDE: core::cell::Cell<Option<OperatingSystemType>> =
|
|
Default::default();
|
|
);
|
|
|
|
#[cfg(not(target_family = "wasm"))]
|
|
pub fn detect_operating_system() -> OperatingSystemType {
|
|
#[cfg(feature = "std")]
|
|
if let Some(os_override) = OPERATING_SYSTEM_OVERRIDE.with(|os_override| os_override.get()) {
|
|
return os_override;
|
|
}
|
|
|
|
if cfg!(target_os = "android") {
|
|
OperatingSystemType::Android
|
|
} else if cfg!(target_os = "ios") {
|
|
OperatingSystemType::Ios
|
|
} else if cfg!(target_os = "macos") {
|
|
OperatingSystemType::Macos
|
|
} else if cfg!(target_os = "windows") {
|
|
OperatingSystemType::Windows
|
|
} else if cfg!(target_os = "linux") {
|
|
OperatingSystemType::Linux
|
|
} else {
|
|
OperatingSystemType::Other
|
|
}
|
|
}
|
|
|
|
#[cfg(target_family = "wasm")]
|
|
pub fn detect_operating_system() -> OperatingSystemType {
|
|
if let Some(os_override) = OPERATING_SYSTEM_OVERRIDE.with(|os_override| os_override.get()) {
|
|
return os_override;
|
|
}
|
|
|
|
let mut user_agent =
|
|
web_sys::window().and_then(|w| w.navigator().user_agent().ok()).unwrap_or_default();
|
|
user_agent.make_ascii_lowercase();
|
|
let mut platform =
|
|
web_sys::window().and_then(|w| w.navigator().platform().ok()).unwrap_or_default();
|
|
platform.make_ascii_lowercase();
|
|
|
|
if user_agent.contains("ipad") || user_agent.contains("iphone") {
|
|
OperatingSystemType::Ios
|
|
} else if user_agent.contains("android") {
|
|
OperatingSystemType::Android
|
|
} else if platform.starts_with("mac") {
|
|
OperatingSystemType::Macos
|
|
} else if platform.starts_with("win") {
|
|
OperatingSystemType::Windows
|
|
} else if platform.starts_with("linux") {
|
|
OperatingSystemType::Linux
|
|
} else {
|
|
OperatingSystemType::Other
|
|
}
|
|
}
|
|
|
|
/// Returns true if the current platform is an Apple platform (macOS, iOS, iPadOS)
|
|
pub fn is_apple_platform() -> bool {
|
|
matches!(detect_operating_system(), OperatingSystemType::Macos | OperatingSystemType::Ios)
|
|
}
|
|
|
|
#[cfg_attr(not(feature = "std"), allow(unused))]
|
|
pub fn open_url(url: &str) {
|
|
#[cfg(feature = "std")]
|
|
if let Err(err) = webbrowser::open(url) {
|
|
debug_log!("Error opening url {}: {}", url, err);
|
|
}
|
|
}
|
|
|
|
pub fn escape_markdown(text: &str) -> alloc::string::String {
|
|
let mut out = alloc::string::String::with_capacity(text.len());
|
|
|
|
for c in text.chars() {
|
|
match c {
|
|
'*' => out.push_str("\\*"),
|
|
'<' => out.push_str("<"),
|
|
'>' => out.push_str(">"),
|
|
'_' => out.push_str("\\_"),
|
|
'#' => out.push_str("\\#"),
|
|
'-' => out.push_str("\\-"),
|
|
'`' => out.push_str("\\`"),
|
|
'&' => out.push_str("\\&"),
|
|
_ => out.push(c),
|
|
}
|
|
}
|
|
|
|
out
|
|
}
|
|
|
|
#[cfg_attr(not(feature = "std"), allow(unused))]
|
|
pub fn parse_markdown(text: &str) -> crate::api::StyledText {
|
|
#[cfg(feature = "std")]
|
|
{
|
|
crate::api::StyledText::parse(text).unwrap()
|
|
}
|
|
#[cfg(not(feature = "std"))]
|
|
Default::default()
|
|
}
|