1 unstable release
Uses new Rust 2024
new 0.1.1 | Apr 2, 2025 |
---|
#10 in #modal
39 downloads per month
Used in 53 crates
(5 directly)
1MB
7.5K
SLoC
Aloe DialogWindow
Aloe DialogWindow is a robust Rust crate designed for managing dialog windows within GUI applications. It offers an elaborate and flexible interface for creating and handling dialog and alert windows with advanced customization features and easy-to-use options for integration.
Features
- Async Support: Facilitate non-blocking UI interactions via asynchronous dialog displays.
- Custom Icons: Utilize a variety of icon types in dialog boxes such as Question, Info, Warning, etc., to enhance UI feedback.
- Keyboard Shortcuts: Enable escape key for dialog termination, allowing intuitive user interactions.
- Flexible Layouts: Customize and launch modal dialog windows with adjustable title bars, resizable options, and native look-and-feel adaptability.
Usage
use aloe_dialogwindow::{DialogWindowLaunchOptions, MessageBoxIconType, show_dialog};
fn launch_simple_dialog() {
let options = DialogWindowLaunchOptions::default()
.with_title("Alert")
.with_message("This is a simple message.")
.with_icon_type(MessageBoxIconType::InfoIcon);
show_dialog(&options, None, Async::no);
}
Installation
Add the following to your Cargo.toml
:
[dependencies]
aloe-dialogwindow = "0.1.0"
Contributing
Please see our GitHub repository to contribute to the development of this crate.
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
~28–41MB
~616K SLoC