#cross-platform-ui #iconmanagement #systemtray #eventhandling

aloe-system-tray

A Rust library to manage system tray icons across Windows, Linux, BSD, and macOS, allowing for event handling and dynamic icon configuration in the taskbar. 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

#22 in #cross-platform-gui


Used in 3 crates (via aloe-ex-demorunner)

GPL-3.0 license

1.5MB
13K SLoC

aloe-system-tray

aloe-system-tray is a Rust library for managing system tray icons across multiple operating systems. Its purpose is to simplify the integration of application icons into the system's taskbar tray, supporting user interactions through clicks and menu displays.

Features

  • Cross-platform Support: Implements functionality for Windows, Linux, BSD, and macOS.
  • Icon Management: Configure and update taskbar icons dynamically.
  • Event Handling: Capture and handle various mouse events, enabling user interactions through the system tray icon.
  • Tooltip and Highlighter: Set informative tooltips and toggle icon highlighting for enhanced user experience.
  • Native Handle Access: Retrieve native handles for advanced integration.

Example Usage

impl SystemTrayIconComponent {
    fn setup_icon(&mut self) {
        self.set_icon_image(&colour_image, &template_image);
        self.set_icon_tooltip("Application running");
        self.set_highlighted(true);
    }
}

Installation

Add the following to your Cargo.toml file:

[dependencies]
aloe-system-tray = "0.1.0"

Configuration

To effectively use this crate, instantiate a SystemTrayIconComponent for your platform and call the necessary configuration methods to set up your icon and its interactions.

Contributing

Contributions are welcome! For bug reports and feature requests, please create an issue in our GitHub repository.

Disclaimer: This README.md was generated by an AI model and may not be 100% accurate; however, it is designed to be highly informative.

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

~36–49MB
~813K SLoC