1 unstable release
Uses new Rust 2024
new 0.1.2 | Apr 2, 2025 |
---|
#58 in #progress-bar
38 downloads per month
Used in 52 crates
(2 directly)
1MB
10K
SLoC
Aloe ProgressBar
Aloe ProgressBar is a sophisticated graphical component for tracking and displaying progress in your Rust applications. Specifically engineered for use in GUI environments, this component autonomously updates its visual representation of progress as the associated variable is modified.
use aloe_progressbar::ProgressBar;
let mut progress_value = 0.0;
let mut progress_bar = ProgressBar::new(&mut progress_value);
progress_bar.set_percentage_display(true);
// or to set a custom message
progress_bar.set_text_to_display(&"Processing...".to_string());
Features
- Autonomous Update: The
ProgressBar
monitors progress variables and redraws itself when changes occur. - Customizable Display: Enable or disable percentage display, or set a custom text.
- Adaptive Layout: Automatically adjusts layout to circular or linear based on dimensions.
- Integrative with Threads: Compatible with the
ThreadWithProgressWindow
class for background task progress monitoring.
Implementation Details
The rendering logic allows for smooth integration with the Aloe LookAndFeel, supporting both linear and circular representations depending on the dimensions. For values outside the conventional range (0.0 to 1.0), the component utilizes spinning animations to symbolize progress.
Example
fn main() {
let mut progress = 0.5;
let progress_bar = ProgressBar::new(&mut progress);
// Update progress somewhere in the application
progress = 0.75;
}
Documentation
The core functionality centers around observing a mutable reference to a floating-point numerical progress representation. Additional methods such as set_percentage_display
and set_text_to_display
allow further customization.
Model Accountability
Please be advised that this README.md file was generated by an AI model and, while it strives for accuracy, it may not perfectly represent all aspects of the crate.
Authors
- Klebs (email: tpk3.mx@gmail.com)
License
This project is licensed under the terms of the GPL-3.0 license.
Repository
For more information, contributions, or to report issues, please visit the aloe-rs GitHub repository.
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
~25–39MB
~599K SLoC