slint 1.17.1

GUI toolkit to efficiently develop fluid graphical user interfaces for embedded devices and desktop applications
Documentation
// 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

use ::slint::slint;

#[test]
fn styled_text_can_be_created_from_rust_markdown() {
    i_slint_backend_testing::init_no_event_loop();

    slint! {
        export component Test inherits Window {
            in-out property <styled-text> text;
        }
    }

    let component = Test::new().unwrap();
    let greeting = slint::StyledText::from_markdown("Hello *world*!").unwrap();
    component.set_text(greeting.clone());
    assert_eq!(component.get_text(), greeting);

    let plain = slint::StyledText::from_plain_text("plain text");
    component.set_text(plain.clone());
    assert_eq!(component.get_text(), plain);

    let error = slint::StyledText::from_markdown("# heading").unwrap_err();
    let error = error.to_string();
    assert!(
        error.starts_with("Markdown headings are not supported"),
        "unexpected markdown error: {error}"
    );
}