1 unstable release
Uses new Rust 2024
new 0.1.1 | Apr 3, 2025 |
---|
#29 in #ui-layout
Used in 4 crates
(3 directly)
1MB
8K
SLoC
aloe-stretchable
aloe-stretchable
is a Rust crate designed to facilitate the layout management of UI components with dynamic sizing requirements. It offers robust mechanisms to manage components with specified size limits and preferred sizes, allowing them to dynamically adjust and fill available space efficiently. This crate is particularly useful in complex GUI applications where nested panels and component resizing are required.
Features
- Flexible Layout Management: Create layouts that adapt to changing dimensions, allowing UI components to resize smoothly and proportionally.
- One-dimensional Control: Handle resizing in either vertical or horizontal dimensions effectively.
- Resizer Bars: Integrate
StretchableLayoutResizerBar
for intuitive drag-and-drop resizing of components. - Algorithmic Item Resizing: Use
StretchableObjectResizer
to fit multiple resizable objects within constrained spaces using a sophisticated algorithm. - Utility Components: Manage component dimensions through direct API calls to adjust sizes based on layout preferences.
Usage Example
use aloe_stretchable::{StretchableLayoutManager, StretchableLayoutResizerBar};
fn setup_layout() {
let mut layout_manager = StretchableLayoutManager::default();
layout_manager.set_item_layout(0, 50.0, 100.0, -0.6); // item 0
layout_manager.set_item_layout(1, -0.2, -0.6, 50.0); // item 1
// Use a resizer bar to enable dynamic resizing by user interaction
let resizer_bar = StretchableLayoutResizerBar::new(&mut layout_manager, 0, true);
}
Components
StretchableLayoutManager
: Manages UI components' layout by maintaining their size limits and adjusting their positions.StretchableObjectResizer
: Resizes objects within a given space to maintain harmony between components.StretchableLayoutResizerBar
: Allows for user interaction to resize components using draggable bars.
License
This crate is licensed under the GPL-3.0 license. See the LICENSE file for more details.
Contributions
Contributions are welcome! Please visit the repository for more information.
This README.md file was generated by an AI model and may not be 100% accurate, but 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
~25–35MB
~598K SLoC