#editable #dropdown #graphics #combobox

aloe-combobox

A Rust crate for creating customizable and accessible combo box GUI components, supporting editable text, event handling, and item management in graphical 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

#6 in #dropdown

42 downloads per month
Used in 73 crates (19 directly)

GPL-3.0 license

2.5MB
19K SLoC

Aloe ComboBox

aloe-combobox is a Rust crate providing a sophisticated and customizable combo box component designed for graphical user interfaces. This crate enables developers to integrate drop-down selection elements capable of handling both non-editable and editable text for user interaction in applications.

Features

  • Editable and Non-editable Text: Configure the ComboBox to display text that can be either static or user-editable.
  • Event Handling: Register event listeners to respond to user interactions when the selected item changes.
  • Item Management: Add, remove, and manage items within the ComboBox's drop-down list with unique IDs.
  • Accessibility Support: Enhanced with accessibility utilities to aid users with disabilities.
  • Customizable Popup: Leverage the look and feel system to render and control combo-box popups.

Example Usage

To use aloe-combobox, include it in your Cargo.toml:

[dependencies]
aloe-combobox = "0.1.0"

Below is a simple example of how to instantiate and manage an aloe-combobox:

use aloe_combobox::{ComboBox, ComboBoxListener, ComboBoxEditableState};

// Create a ComboBox instance
define_combo_box() {
    let mut combo_box = ComboBox::new("example");

    combo_box.add_item(&"Option 1".to_string(), 1);
    combo_box.add_item(&"Option 2".to_string(), 2);
    combo_box.set_editable_text(true);
}

Installation

Ensure you have Rust and Cargo installed, then add aloe-combobox to your Cargo.toml dependencies.

Contribution

Contributions are welcome via the repository GitHub link.

License

This project is licensed under the GPL-3.0 License.


This README 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

~24–38MB
~574K SLoC