#button #customization #gui

aloe-buttons

Aloe Buttons is a Rust library for advanced, customizable button components in GUI applications, offering various styles and accessibility features. 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

#26 in #customization

46 downloads per month
Used in 130 crates (35 directly)

GPL-3.0 license

2.5MB
22K SLoC

Aloe Buttons

Aloe Buttons is a sophisticated Rust library designed for creating versatile and highly customizable button components in graphical user interfaces. This crate offers a plethora of button structures, encompassing various styles and functionalities, making it ideal for complex UI design requirements.

Features

  • Comprehensive Button Styles: Includes ImageButton, TextButton, ArrowButton, HyperlinkButton, ShapeButton, DrawableButton, and ToggleButton, each offering unique visual and functional characteristics.
  • Customization Options: Extensive control over button appearance through ButtonColourIds, DrawableButtonStyle, and ButtonConnectedEdgeFlags enums, allowing for precise customization of button aesthetics and behavior.
  • State Management: Robust management of button states (ButtonState), enabling dynamic appearance changes in response to user interactions.
  • Accessibility Support: Includes ButtonAccessibilityHandler, ensuring that UI components are accessible to all users, following modern accessibility standards.

Usage

use aloe_buttons::{TextButton, ButtonListener};

// Create a new TextButton
let mut my_button = TextButton::from("Click Me");

// Set button propertiesmy_button.set_button_text(&String::from("Press Here"));
my_button.set_tooltip(&String::from("This is a text button"));

// Implement button click listener
impl ButtonListener for MyButtonListener {
    fn button_clicked(&mut self, button: *mut Button) {
        println!("Button was clicked!");
    }
}

Getting Started

To start using Aloe Buttons, add the following line to your Cargo.toml:

dependencies = { aloe-buttons = "0.1.0" }

For comprehensive examples and detailed documentation, please visit the GitHub repository.

Contribution

Contributions are welcome! Please check the repository for guidelines on how to contribute.


This README was generated by an AI model and may not be 100% accurate. However, it should provide a good overview of how to use this crate.

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

~24–38MB
~589K SLoC