#component #resizable #drag #graphics #rust

aloe-resizable

Aloe Resizable provides GUI components with interactive resizing capabilities, including edges, corners, and borders. This crate is a translation of the c++ juce module serving the same function.

1 unstable release

Uses new Rust 2024

new 0.1.1 Apr 2, 2025

#3 in #drag

41 downloads per month
Used in 79 crates (5 directly)

GPL-3.0 license

1.5MB
12K SLoC

Aloe Resizable

Aloe Resizable is a Rust crate designed for building modular, GUI components which provide interactive resizing functionalities. It's ideal for GUI components that require the user to resize windows effortlessly, akin to the familiar resizing handles in modern operating systems.

Features

  • ResizableEdges: Provides edges on components for resizing them by dragging.
  • ResizableCorners: Facilitates resizing when dragged from the component corners.
  • ResizableBorders: Draws an entire border around the component, allowing adjustment from any side or corner.

Technical Overview

  1. ResizableEdgeComponent: Resizes its parent by forming a draggable edge. It necessitates repositioning in sync with parent component size changes.

  2. ResizableCornerComponent: Emulates the corner resizer seen in many applications, allowing resizing when dragged.

  3. ResizableBorderComponent: Encapsulates the component in a draggable border frame, enabling resizing from any axis.

Usage

Begin by including the respective resizer component in your GUI structure, ensuring correct initialization just like attaching typical GUI elements. Always synchronize the resizer position and size related to any component size changes. Optionally, use a ComponentBoundsConstrainer to impose size constraints during resizing operations.

Example

let my_component = Component::new();
let edge_resizer = ResizableEdgeComponent::new(&my_component, None, ResizableEdgeComponentEdge::leftEdge);

Dependencies

This crate depends on a compositor and graphics library to render the resizing controls effectively in a GUI.

License

This project is licensed under the terms of the GPL-3.0 license.

Authors

Developed by klebs tpk3.mx@gmail.com, contributions and collaborations are welcome.


This README was generated by an AI model and may not be 100% accurate, but it should serve as a generally clear guide.

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.

Dependencies

~25–39MB
~597K SLoC