1 unstable release
Uses new Rust 2024
new 0.1.2 | Apr 4, 2025 |
---|
#8 in #positioning
Used in aloe-exports
1.5MB
14K
SLoC
Aloe Positioning
Aloe Positioning is a Rust crate for dynamic coordinate management and relative positioning in GUI applications, leveraging an advanced system of relative coordinates, marker lists, and expressions to maintain adaptable and responsive component layouts.
Features
- Relative Point Paths: Define paths that use dynamic relative points, allowing for flexible path manipulation and transformation.
- Marker Lists: Maintain sets of named markers along axes, enabling precise component alignment and adjustment.
- Dynamic Resolution: Utilize expressions to dynamically compute component positions and sizes based on sibling and parent relationships.
- Sophisticated Coordinates: Express and resolve coordinate positions using symbolic expressions, facilitating complex layout definitions.
Getting Started
To integrate Aloe Positioning into your project, add the following to your Cargo.toml
:
[dependencies]
aloe-positioning = "0.1.0"
Examples
use aloe_positioning::{RelativePoint, RelativeRectangle};
// Define a relative point
let point = RelativePoint::from("1.0, 2.0");
// Create a relative rectangle
let rectangle = RelativeRectangle::new(
&RelativeCoordinate::from("left"),
&RelativeCoordinate::from("right"),
&RelativeCoordinate::from("top"),
&RelativeCoordinate::from("bottom")
);
// Apply to a component
rectangle.apply_to_component(&mut some_component);
Documentation
For more detailed documentation and usage examples, please refer to the [API Documentation].
Contributing
We welcome contributions! Feel free to submit a pull request on GitHub.
License
This crate is licensed under the GPL-3.0 License. See LICENSE for more information.
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
~25–35MB
~595K SLoC