1 unstable release
Uses new Rust 2024
new 0.1.1 | Apr 2, 2025 |
---|
#9 in #modal
38 downloads per month
Used in 51 crates
(6 directly)
2MB
17K
SLoC
Aloe Alert Window
Aloe Alert Window is a comprehensive Rust crate for handling modal alert windows with advanced customization options. It is particularly designed for developers requiring high control over user interaction dialogues within GUI applications. The functionality includes the ability to create alert windows, associate callbacks, and manage their asynchronous display.
Features
- Custom Alert Types: Define various alert icon types and colors to tailor alert presentation based on situation requirements.
- Component Integration: Seamless integration for multiple component types, including buttons, text editors, combo boxes, progress bars, and custom components.
- Responsive Design: Automatically adjusts layout and scales with parent component settings; supports advanced layout management for extra components.
- Asynchronous Callback Management: Offers both synchronous and asynchronous alert window options, facilitating non-blocking user interactions.
- Accessibility Support: Implements accessibility handlers to facilitate integration with assistive technologies.
Usage
To utilize Aloe Alert Window, integrate the library in your Rust project and employ the structures and functions provided to create and manage alert windows as desired.
Example
Here's a basic example to get you started:
use aloe_alert_window::*;
fn main() {
// Define alert window options...
let options = MessageBoxOptions::default();
// Set the message and title for the alert box...
options.title = "Alert!";
options.message = "Operation Uncompleted";
// Display Alert Window...
AlertWindow::show(&options);
}
More functionalities can be found in the AlertWindow
struct and various helper functions available.
Contributing
Contributions are always welcome. Please refer to our contribution guidelines and make sure to follow our code of conduct.
License
This project is licensed under the GPL-3.0 License.
Authors
[ "klebs tpk3.mx@gmail.com" ]
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
~27–40MB
~609K SLoC