#properties #component #customization #storage

aloe-properties

Aloe Properties is a Rust crate providing a structured framework for component property management within graphical interfaces. It offers enums, traits, and structs for color customization, storage formatting, and component interfacing. This crate is a translation of the c++ juce module serving the same function.

1 unstable release

Uses new Rust 2024

new 0.1.2 Apr 2, 2025

#23 in #customization

37 downloads per month
Used in 37 crates (7 directly)

GPL-3.0 license

3MB
23K SLoC

Aloe Properties

Aloe Properties is a versatile Rust crate designed for manipulation and management of component properties in a GUI. It provides a structured approach via enums, traits, and structs to manage component appearances and interactions.

Features

  • Color Management: Manage component colors using BooleanPropertyComponentColourIds and TextPropertyComponentColourIds enums.
  • Storage Formats: Save data using different storage formats such as Binary, Compressed Binary, or XML via PropertiesFileStorageFormat.
  • Property Components: Derive various property components such as sliders, text boxes, and buttons by implementing interfaces like PropertyComponentInterface.
  • Scalable and Modular: Define, manipulate, and retrieve property values efficiently with structures such as PropertiesFile, PropertyPanel, and MultiChoicePropertyComponent.

Usage

Here is a quick example of using Aloe Properties in a Rust environment.

use aloe_properties::*;

// Instantiate and use as per component requirements
let mut color_id = BooleanPropertyComponentColourIds::backgroundColourId;
let storage_format = PropertiesFileStorageFormat::storeAsBinary;

// Implement required trait methods
impl PropertyComponentInterface for CustomComponent {
    // Implement trait methods
}

The crate streamlines property management and integrates tightly with GUI components, simplifying the creation of dynamic and interactive graphical interfaces.

Contributing

Contributions are welcome. Please submit issues and pull requests to the repository.

License

This project is licensed under the GPL-3.0 License.


This README.md was generated by an AI model and may not be 100% accurate. However, it should be pretty good.

This crate is a translation of the JUCE module.

JUCE is a c++ software framework for developing high performance audio applications.

Usage falls under the GPLv3 as well as the JUCE commercial license.

See github.com/juce-framework/JUCE and the JUCE license page for details.

This crate is in the process of being translated from c++ to rust. For progress updates, please see the workspacer rust project. designed specifically for rust projects.

Dependencies

~25–35MB
~591K SLoC