1 unstable release
Uses new Rust 2024
new 0.1.2 | Apr 2, 2025 |
---|
#54 in #button
41 downloads per month
Used in 55 crates
(10 directly)
2MB
15K
SLoC
aloe-documentwindow
Overview
aloe-documentwindow
is a Rust crate providing structures and traits for constructing and managing a resizable document window with a customizable title bar that includes minimize, maximize, and close buttons. This crate is essential for developers needing a structured approach to handling GUI window operations efficiently in applications requiring a robust interface for window management.
Features
- Customizable Title Bar: Configure the title bar to include any combination of minimize, maximize, and close buttons.
- Resizable and Minimizable: Inherits all functionalities of a resizable window, allowing easy integration into complex applications.
- Icon and Menu Bar Integration: Supports an optional icon in the title bar and a menu bar just below it.
- Event Handling: Implements listener traits for handling button press events for minimize, maximize, and close operations.
Usage
First, add aloe-documentwindow
to your Cargo.toml
:
[dependencies]
aloe-documentwindow = "0.1.0"
Implement the required traits and structures in your application:
use aloe_documentwindow::{DocumentWindow, DocumentWindowTitleBarButtons};
fn main() {
let mut window = DocumentWindow::new(
&"My App Window".to_string(),
Colour::from_rgb(255, 255, 255),
DocumentWindowTitleBarButtons::allButtons as i32,
Some(true)
);
// Further customize and use the window...
}
Components
DocumentWindowTitleBarButtons
An enumeration that defines the types of buttons that can be displayed on the title bar: minimiseButton
, maximiseButton
, closeButton
, and allButtons
.
DocumentWindow
A resizable window class featuring a title bar and buttons. The window is designed to be the main frame for your application, with the capacity to handle user interactions via its extensive trait implementations.
Event Handling Traits
CloseButtonPressed
: Implement the event handler for close button actions.MinimiseButtonPressed
: Implement the event handler for minimize button actions.MaximiseButtonPressed
: Implement the event handler for maximize button actions.
License
This project is licensed under the GPL-3.0 License - see the LICENSE file for details.
Contribution
Contributions are welcome! Please see CONTRIBUTING.md for guidelines.
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
~608K SLoC