1 unstable release
Uses new Rust 2024
new 0.1.2 | Apr 2, 2025 |
---|
#7 in #dropdown
44 downloads per month
Used in 123 crates
(14 directly)
2.5MB
20K
SLoC
Aloe Menus
Aloe Menus provides a sophisticated, high-performance API for managing graphical user interface (GUI) menu components in Rust. Designed for both desktop and mobile environments, this library offers robust support for complex popup menus, dropdowns, menu bars, and customizable menu items. It leverages advanced Rust features and object-oriented designs to ensure optimal performance and flexibility in creating intricate menu systems.
Features
- Popup Menus and Dropdowns: Create interactive popup menus that can display items in both upwards and downwards directions.
- Menu Bar Management: Full support for dynamic menu bars with listener patterns to handle menu updates and item selections.
- Custom Components and Callbacks: Easily integrate user-defined components and callback functions for custom behavior on menu item selection.
- Accessibility and GUI Integration: Designed to work seamlessly with accessibility elements and various GUI frameworks to provide a cohesive user experience.
Usage Example
To utilize Aloe Menus, add it as a dependency in your Cargo.toml
:
[dependencies]
aloe-menus = "0.1.0"
Here is a simple example of how to create and display a popup menu:
use aloe_menus::{PopupMenu, ShowDropdownMenu};
fn show_example_menu() {
let mut menu = PopupMenu::default();
menu.add_item_with_text_and_action("Option 1", || println!("Option 1 selected"));
menu.add_item_with_text_and_action("Option 2", || println!("Option 2 selected"));
let options = PopupMenuOptions::default();
menu.show_menu_async(&options);
}
Contributing
Contributions are welcome! Feel free to submit issues or pull requests to the GitHub repository.
License
Aloe Menus is licensed under the GPL-3.0 license. See LICENSE for details.
This README.md file 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
~592K SLoC