No description
Find a file
Jonathan Johnson 3f8fed65c3
Added Chinese ListStyles
This may seem like a lot of options, but here's the reasoning:

- The CSS spec offers four variations: Simplified/Traditional and
  Formal/Informal. This spec defines a character set for all for
  variations, and it also associates rules for omitting digits in the
  informal variants.
- The chinese_number crate does not implement a variant that includes
  the tens digit, as required by the cSS spec for the formal variants.

To be able to provide the enumerations that the CSS spec offers *and* to
provide the variations that the chinese_number crate supports, I've aded
8 total list styles for selecting a specific Chinese variation.

Technically nominals supports even more options, but the myriad counting
scale coveres u128::MAX and seems to be the most common counting style.
2024-01-18 15:06:54 -08:00
.github/workflows Trying to make Mac CI fail gracefully 2024-01-08 09:41:04 -08:00
.rustme Children renamed to WidgetList 2024-01-09 13:26:14 -08:00
assets Component type safety, some font support 2023-11-19 21:52:45 -08:00
cushy-macros Preparing v0.2.0 2023-12-27 19:08:34 -08:00
examples Added List widget 2024-01-18 13:29:50 -08:00
guide Updated to wgpu 0.19.0 2024-01-18 06:37:29 -08:00
src Added Chinese ListStyles 2024-01-18 15:06:54 -08:00
.crate-docs.md Children renamed to WidgetList 2024-01-09 13:26:14 -08:00
.gitignore Initial implementation of offscreen rendering 2024-01-03 11:35:43 -08:00
Cargo.lock Added Chinese ListStyles 2024-01-18 15:06:54 -08:00
Cargo.toml Added List widget 2024-01-18 13:29:50 -08:00
CHANGELOG.md Added List widget 2024-01-18 13:29:50 -08:00
CODE_OF_CONDUCT.md Resize/Expand rework + basic readme 2023-11-02 14:23:36 -07:00
CONTRIBUTING.md Resize/Expand rework + basic readme 2023-11-02 14:23:36 -07:00
LICENSE-APACHE Resize/Expand rework + basic readme 2023-11-02 14:23:36 -07:00
LICENSE-MIT Resize/Expand rework + basic readme 2023-11-02 14:23:36 -07:00
README.md Children renamed to WidgetList 2024-01-09 13:26:14 -08:00
rustfmt.toml Initial commit 2023-10-18 08:22:41 -07:00

Cushy

Cushy is considered alpha and unsupported crate version Documentation for main Cushy User's Guide

Cushy is an experimental Graphical User Interface (GUI) crate for the Rust programming language. It features a reactive data model and aims to enable easily creating responsive, efficient user interfaces. To enable easy cross-platform development, Cushy uses its own collection of consistently-styled Widgets.

Cushy is powered by:

Getting Started with Cushy

The Widget trait is the building block of Cushy: Every user interface element implements Widget. The Widget trait documentation has an overview of how Cushy works. A list of built-in widgets can be found in the cushy::widgets module.

Cushy uses a reactive data model. To see an example of how reactive data models work, consider this example that displays a button that increments its own label:

fn main() -> cushy::Result {
    // Create a dynamic usize.
    let count = Dynamic::new(0_isize);

    // Create a new label displaying `count`
    count
        .to_label()
        // Use the label as the contents of a button
        .into_button()
        // Set the `on_click` callback to a closure that increments the counter.
        .on_click(move |_| count.set(count.get() + 1))
        // Run the application
        .run()
}

Here are some ways to learn more about Cushy:

Project Status

This project is early in development, but is quickly becoming a decent framework. It is considered alpha and unsupported at this time, and the primary focus for @ecton is to use this for his own projects. Feature requests and bug fixes will be prioritized based on @ecton's own needs.

If you would like to contribute, bug fixes are always appreciated. Before working on a new feature, please open an issue proposing the feature and problem it aims to solve. Doing so will help prevent friction in merging pull requests, as it ensures changes fit the vision the maintainers have for Cushy.

Open-source Licenses

This project, like all projects from Khonsu Labs, is open-source. This repository is available under the MIT License or the Apache License 2.0.

To learn more about contributing, please see CONTRIBUTING.md.