#color #rendering #graphics #custom-component

aloe-component

Aloe Component provides a comprehensive interface for GUI components with accessibility and rendering customization, suitable for detailed user interface applications. 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

#59 in #accessibility

38 downloads per month
Used in 154 crates (88 directly)

GPL-3.0 license

3MB
24K SLoC

Aloe Component

Aloe Component is a comprehensive Rust crate that provides a flexible and extensible interface for implementing user-interface components with support for accessibility and custom rendering. This crate contains a robust set of traits and enums that help manage the visual styling, event handling, and accessibility concerns for GUI applications built using Aloe.

Features

  • Component Peer Style Flags: Control GUI component appearance and behavior using flags such as windowHasCloseButton, windowIsResizable, etc.
  • Color Management: Utilize GroupComponentColourIds to manage component aspect colors with ease, enhancing UI customizations.
  • Accessibility Support: Implement AccessibilityEvent and AccessibilityRole to build accessible applications that conform to modern standards, ensuring they are usable by people with disabilities.
  • Flexible Rendering Engine: Customize rendering engines through traits such as GetAvailableRenderingEngines and SetCurrentRenderingEngine.

Usage

Basic Structure

pub enum ComponentPeerStyleFlags {
    windowAppearsOnTaskbar,
    windowIsTemporary,
    windowIgnoresMouseClicks,
    ...
}

pub enum AccessibilityEvent {
    valueChanged,
    titleChanged,
    ...
}

pub trait Paint {
    fn paint(&mut self, g: &mut Graphics);
}

pub trait EnablementChanged {
    fn enablement_changed(&mut self);
}

Implementing a Component

Here's a small example of how to create a custom component that responds to accessibility events and custom painting:

struct MyComponent;

impl Paint for MyComponent {
    fn paint(&mut self, g: &mut Graphics) {
        // Custom drawing logic here
    }
}

impl EnablementChanged for MyComponent {
    fn enablement_changed(&mut self) {
        // React to changes in enablement state
    }
}

This crate is ideal for those who wish to develop desktop applications with intricate component behavior and appearance, while maintaining robust accessibility support.


Note: This README.md was generated by an AI model. While it aims for accuracy, some details may differ from the actual crate protocol. Please refer to the source code and documentation for precise implementation guides.

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

~23–37MB
~585K SLoC