#gui-component #component #selection #graphics #rust #lasso

aloe-lasso

Aloe Lasso provides a rectangular selection region component for GUI applications in Rust, facilitating intuitive visual selection using a mouse-driven lasso interface. This crate is a translation of the c++ juce module serving the same function.

1 unstable release

Uses new Rust 2024

new 0.1.2 Apr 3, 2025

#7 in #gui-component


Used in aloe-exports

GPL-3.0 license

1.5MB
11K SLoC

Aloe Lasso

Aloe Lasso provides powerful GUI components to enable intuitive, rectangular selection interfaces in Rust applications, leveraging the power of the Rust programming language to offer performance and safety. This crate lets developers easily integrate the concept of mouse-driven lasso selection into their graphical applications.

Features

  • LassoComponent: A core struct representing a draggable, rectangular selection region. It can be employed in GUIs to select a group of items visually and interactively.
  • LassoSource Trait: Defines a mechanism for the LassoComponent to identify which items fall within the drawn lasso region, thus managing the selected items effectively.
  • Extensible Color Customization: Allows customization through LassoComponentColourIds by setting colors for the fill and outline of the lasso area.

Usage

LassoComponent Utilization:

  • Initialization: Attach the LassoComponent to a parent component during mouseDown event and initialize with begin_lasso().
  • Dragging: Update the lasso position and selection via drag_lasso() during mouseDrag.
  • Termination: Finalize the process by calling end_lasso() at the mouseUp event.

Modifier Key Support:

  • Shift Key: Adds lassoed items to existing selections.
  • Ctrl/Command Key: Toggles lassoed items with existing selections.

Example

use aloe_lasso::{LassoComponent, LassoSource};

// Define your selectable item type
struct MyItem;

// Implement the LassoSource trait for your item set
impl LassoSource<MyItem> for MyItemSet { /* ... */ }

// Initialize a LassoComponent
todo!(); // Initialization and use of LassoComponent

Contributions

All contributions, whether reporting bugs or suggesting features, are welcome! This crate follows GPL-3.0, ensuring that contributions remain open and shared under the same license.


Note: This README.md 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