42 releases (13 breaking)

0.13.1 Apr 1, 2024
0.13.0 Mar 26, 2024
0.12.2 Mar 26, 2024
0.11.2 Nov 18, 2023
0.0.0 May 7, 2022

#1 in #items

Download history 15179/week @ 2024-01-02 14039/week @ 2024-01-09 14537/week @ 2024-01-16 14374/week @ 2024-01-23 17055/week @ 2024-01-30 17459/week @ 2024-02-06 14019/week @ 2024-02-13 12352/week @ 2024-02-20 14019/week @ 2024-02-27 14585/week @ 2024-03-05 16945/week @ 2024-03-12 19915/week @ 2024-03-19 20273/week @ 2024-03-26 20574/week @ 2024-04-02 22471/week @ 2024-04-09 18778/week @ 2024-04-16

85,040 downloads per month
Used in 49 crates (4 directly)

Apache-2.0 OR MIT

290KB
6.5K SLoC

muda

Menu Utilities library for Desktop Applications.

Documentation

Platforms supported:

  • Windows
  • macOS
  • Linux (gtk Only)

Platform-specific notes:

Cargo Features

  • common-controls-v6: Use TaskDialogIndirect API from ComCtl32.dll v6 on Windows for showing the predefined About menu item dialog.
  • libxdo: Enables linking to libxdo on Linux which is used for the predfined Copy, Cut, Paste and SelectAll menu item.
  • serde: Enables de/serializing the dpi types.

Dependencies (Linux Only)

gtk is used for menus and libxdo is used to make the predfined Copy, Cut, Paste and SelectAll menu items work. Be sure to install following packages before building:

Arch Linux / Manjaro:

pacman -S gtk3 xdotool

Debian / Ubuntu:

sudo apt install libgtk-3-dev libxdo-dev

Example

Create the menu and add your items

let menu = Menu::new();
let menu_item2 = MenuItem::new("Menu item #2", false, None);
let submenu = Submenu::with_items("Submenu Outer", true,&[
  &MenuItem::new("Menu item #1", true, Some(Accelerator::new(Some(Modifiers::ALT), Code::KeyD))),
  &PredefinedMenuItem::separator(),
  &menu_item2,
  &MenuItem::new("Menu item #3", true, None),
  &PredefinedMenuItem::separator(),
  &Submenu::with_items("Submenu Inner", true,&[
    &MenuItem::new("Submenu item #1", true, None),
    &PredefinedMenuItem::separator(),
    &menu_item2,
  ])
]);

Then add your root menu to a Window on Windows and Linux or use it as your global app menu on macOS

// --snip--
#[cfg(target_os = "windows")]
menu.init_for_hwnd(window.hwnd() as isize);
#[cfg(target_os = "linux")]
menu.init_for_gtk_window(&gtk_window, Some(&vertical_gtk_box));
#[cfg(target_os = "macos")]
menu.init_for_nsapp();

Context menus (Popup menus)

You can also use a Menu or a Submenu show a context menu.

// --snip--
let position = muda::PhysicalPosition { x: 100., y: 120. };
#[cfg(target_os = "windows")]
menu.show_context_menu_for_hwnd(window.hwnd() as isize, Some(position.into()));
#[cfg(target_os = "linux")]
menu.show_context_menu_for_gtk_window(&gtk_window, Some(position.into()));
#[cfg(target_os = "macos")]
menu.show_context_menu_for_nsview(nsview, Some(position.into()));

Processing menu events

You can use MenuEvent::receiver to get a reference to the MenuEventReceiver which you can use to listen to events when a menu item is activated

if let Ok(event) = MenuEvent::receiver().try_recv() {
    match event.id {
        _ if event.id == save_item.id() => {
            println!("Save menu item activated");
        },
        _ => {}
    }
}

License

Apache-2.0/MIT

Dependencies

~1–14MB
~177K SLoC