1 unstable release
Uses new Rust 2024
new 0.1.1 | Apr 2, 2025 |
---|
#6 in #tree-view
37 downloads per month
Used in 50 crates
(5 directly)
2.5MB
18K
SLoC
aloe-treeview
aloe-treeview
is an advanced Rust library for creating and managing a tree view component in GUI applications. It provides an interface and several traits for interacting with a hierarchy of items, each of which can be customized with various features and behaviors. The crate supports both static and dynamic data structures and allows for operations such as item selection, drag-and-drop, and customization of item rendering.
Features
- Flexible Hierarchy Management: Organize items in a parent-child relationship with sub-items support.
- Customizable Rendering: Implement custom rendering for items, including open/close buttons, connecting lines, and more.
- Selection Handling: Support for multi-selection and notification on item selection changes.
- Drag-and-Drop: Interfaces for handling drag-and-drop actions for items, including file drops.
- Accessibility: Support for accessibility features, including tooltips and names.
Usage
Add aloe-treeview
to your Cargo.toml:
[dependencies]
aloe-treeview = "0.1.0"
Example
use aloe_treeview::{TreeView, TreeViewItem, TreeViewItemOpenness};
struct MyTreeViewItem;
impl TreeViewItemInterface for MyTreeViewItem {}
let tree_view = TreeView::new("My Tree");
let root_item = TreeViewItem::default();
root_item.set_openness(TreeViewItemOpenness::opennessOpen);
tree_view.set_root_item(&root_item);
Documentation
For detailed documentation, please visit docs.rs/aloe-treeview.
License
This library is licensed under the GPL-3.0 license.
Contribution
Contributions are welcome! Please visit GitHub Repository to contribute.
This README was generated by an AI model and may not be 100% accurate, though it aims to be highly helpful.
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
~24–37MB
~572K SLoC