#tooltip #component #graphics #rust

aloe-tooltip-window

A Rust crate for managing pop-up tooltip displays in GUI applications, ensuring efficient and scalable tooltip management. 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 3, 2025

#6 in #tooltip


Used in 2 crates (via aloe-ex-gui)

GPL-3.0 license

1.5MB
12K SLoC

aloe-tooltip-window

Aloe Tooltip Window is a Rust crate designed to manage a pop-up tooltip display within a graphical user interface (GUI). It provides an interface for managing tooltips associated with GUI components, seamlessly enhancing user interactions by offering contextual information.

Features

  • Efficient Tooltip Management: Ensures only one tooltip window is instantiated per parent component, preventing clutter from multiple overlapping tooltips.
  • Customizable Display Timing: Control the delay before a tooltip appears using the milliseconds_before_tip_appears parameter.
  • Scalability: Tooltip windows automatically scale in accordance with their parent component and the Digital Audio Workstation (DAW) scaling settings, ensuring consistency across various applications and use-cases.
  • Manual Control: Provide methods to manually display and hide tooltips at specified locations, allowing for precise design implementations.

Usage

To integrate aloe-tooltip-window, create a single instance of TooltipWindow, providing a parent component and an optional delay before tips appear:

let tooltip_window = TooltipWindow::new(parent_comp, Some(700));
  • Ensure that no more than one TooltipWindow is created with the same parent component to avoid overlapping tooltips.
  • Control appearance timing with set_milliseconds_before_tip_appears method:
tooltip_window.set_milliseconds_before_tip_appears(Some(500));
  • Tooltips are drawn according to the look and feel configurations, which can be customized for appearance consistency across applications.

Contributing

Contributions to the Aloe Tooltip Window are welcome. Please submit pull requests or issues via our GitHub repository.

License

This project is licensed under the terms of the GNU General Public License v3.0.


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.

Dependencies

~25–35MB
~591K SLoC