#桌面应用程序 #图标 #托盘 #菜单 #事件 #托盘图标

tray-icon-ex

为桌面应用程序创建托盘图标

2 个版本

0.12.1 2024年1月5日
0.12.0 2024年1月5日

#905GUI

MIT/Apache

73KB
1.5K SLoC

tray-icon 允许您为桌面应用程序创建托盘图标。

支持平台

  • Windows
  • macOS
  • Linux (仅限 gtk)

平台特定说明

  • 在 Windows 和 Linux 上,必须在线程上运行事件循环,在 Windows 上是 win32 事件循环,在 Linux 上是 gtk 事件循环。它不需要在主线程上运行,但您必须在事件循环相同的线程上创建托盘图标。
  • 在 macOS 上,必须在主线程上运行事件循环,因此您也需要在主线程上创建托盘图标。

Cargo 特性

  • common-controls-v6: 在 Windows 上使用 TaskDialogIndirect API 从 ComCtl32.dll v6 显示预定义的 About 菜单项对话框。
  • libxdo: 启用链接到 libxdo,该库用于预定义的 CopyCutPasteSelectAll 菜单项,请参阅 https://github.com/tauri-apps/muda#cargo-features
  • serde: 启用 de/serializing derives。

依赖项(仅限 Linux)

在 Linux 上,使用 gtklibxdo 来使预定义的 CopyCutPasteSelectAll 菜单项工作,并使用 libappindicatorlibayatnat-appindicator 来创建托盘图标,因此请确保在您的系统上安装它们。

Arch Linux / Manjaro

pacman -S gtk3 xdotool libappindicator-gtk3 #or libayatana-appindicator

Debian / Ubuntu

sudo apt install libgtk-3-dev libxdo-dev libappindicator3-dev #or libayatana-appindicator3-dev

示例

创建不带菜单的托盘图标。

use tray_icon_ex::TrayIconBuilder;

let tray_icon = TrayIconBuilder::new()
    .with_tooltip("system-tray - tray icon library!")
    .with_icon(icon)
    .build()
    .unwrap();

创建带菜单的托盘图标。

use tray_icon_ex::{TrayIconBuilder, menu::Menu};

let tray_menu = Menu::new();
let tray_icon = TrayIconBuilder::new()
    .with_menu(Box::new(tray_menu))
    .with_tooltip("system-tray - tray icon library!")
    .with_icon(icon)
    .build()
    .unwrap();

处理托盘事件

您可以使用 TrayIconEvent::receiver 获取 TrayIconEventReceiver 的引用,该引用可用于在点击托盘图标时监听事件。

use tray_icon_ex::TrayIconEvent;

if let Ok(event) = TrayIconEvent::receiver().try_recv() {
    println!("{:?}", event);
}

您还可以使用 MenuEvent::receiver 来监听托盘上下文菜单的事件。

use tray_icon_ex::{TrayIconEvent, menu::{MenuEvent}};

if let Ok(event) = TrayIconEvent::receiver().try_recv() {
    println!("tray event: {:?}", event);
}

if let Ok(event) = MenuEvent::receiver().try_recv() {
    println!("menu event: {:?}", event);
}

许可证

Apache-2.0/MIT

依赖项

~1–14MB
~186K SLoC