mirror of
https://github.com/italicsjenga/muda.git
synced 2025-01-11 12:21:30 +11:00
812ff0d37a
* refactor: rewrite * fix syncing check items and cleanup * clippy * Add `append`, `prepend` and `insert` * accept different menu items in `*_list` methods * add context menu for gtk * add `with_items` * add `items` getter * chore: unreachable! and typos * implement remove * `*_list` -> `*_items` * fix winit example * add `show_context_menu_for_gtk_window` on `Submenu` type * Add windows implementation * TextMenuItem -> MenuItem, MenuItem trait -> MenuEntry * Add `PredfinedMenuItem` * move internal mod into its own file * update tao example to latest tao's `muda` branch * fix build on linux with latest tao changes * Fix accelerators on Linux * update examples * remove recursive removal of submenus * remvoe gtk menu items recursively * fix tao example on macos * On Windows, remove parents hmenu when removing an item * Add documentation * update README.md * use insert_items with postion 0 for prepend_items * Add menu mnemonics in examples * Add `ContextMenu` trait * Add methods to `ContextMenu` trait necessary for tray icon * fix linux build * fix context menu on gtk * Expose gtk::Menu in ContextMenu trait * Revert context menu to create a gtk::Menu on each call * clippy lints * cleanup crate structure * update docs * Fix doc tests and links * more docs fixes * error handling * macOS implementation (#19) * partial macOS implementation * fix context menu examples * add accelerator support for macOS * strip ampersands from titles on macOS * add CMD_OR_CTRL shorthand for modifiers * implement actions for predefined menu items on macos * fix examples * more predefined items * implement insert for macos * refactor macOS implementation * menu state getters and setters on macOS * implement remove for macOS * code tweaks * add show_context_menu_for_nsview for Submenu on macOS * docs improvements * allow adding item to the same menu multiple times on macOS * implement `items` for macOS * strip only single ampersands from menu titles * add support for menu item actions on macOS * add app name to macOS About, Hide, Quit menu items * add methods to set app window and help menus on macOS * fix clickable submenu titles on macOS * refactor submenu for safe reuse on macOS * fmt & clippy * few cleanups * fix docs * clippy * fix docs * cleanup examples * fix tests * fix clippy?? * use cargo action instead * ??? * Replace popUpContextMenu with popUpMenuPositioningItem Co-authored-by: Caesar Schinas <caesar@caesarschinas.com> Co-authored-by: Wu Wayne <yuweiwu@pm.me>
63 lines
1.8 KiB
Rust
63 lines
1.8 KiB
Rust
use crate::{accelerator::Accelerator, MenuItemExt, MenuItemType};
|
|
|
|
/// A menu item inside a [`Menu`] or [`Submenu`] and contains only text.
|
|
///
|
|
/// [`Menu`]: crate::Menu
|
|
/// [`Submenu`]: crate::Submenu
|
|
#[derive(Clone)]
|
|
pub struct MenuItem(pub(crate) crate::platform_impl::MenuItem);
|
|
|
|
unsafe impl MenuItemExt for MenuItem {
|
|
fn type_(&self) -> MenuItemType {
|
|
MenuItemType::Normal
|
|
}
|
|
fn as_any(&self) -> &(dyn std::any::Any + 'static) {
|
|
self
|
|
}
|
|
|
|
fn id(&self) -> u32 {
|
|
self.id()
|
|
}
|
|
}
|
|
|
|
impl MenuItem {
|
|
/// Create a new menu item.
|
|
///
|
|
/// - `text` could optionally contain an `&` before a character to assign this character as the mnemonic
|
|
/// for this menu item. To display a `&` without assigning a mnemenonic, use `&&`
|
|
pub fn new<S: AsRef<str>>(text: S, enabled: bool, acccelerator: Option<Accelerator>) -> Self {
|
|
Self(crate::platform_impl::MenuItem::new(
|
|
text.as_ref(),
|
|
enabled,
|
|
acccelerator,
|
|
))
|
|
}
|
|
|
|
/// Returns a unique identifier associated with this menu item.
|
|
pub fn id(&self) -> u32 {
|
|
self.0.id()
|
|
}
|
|
|
|
/// Get the text for this menu item.
|
|
pub fn text(&self) -> String {
|
|
self.0.text()
|
|
}
|
|
|
|
/// Set the text for this menu item. `text` could optionally contain
|
|
/// an `&` before a character to assign this character as the mnemonic
|
|
/// for this menu item. To display a `&` without assigning a mnemenonic, use `&&`
|
|
pub fn set_text<S: AsRef<str>>(&self, text: S) {
|
|
self.0.set_text(text.as_ref())
|
|
}
|
|
|
|
/// Get whether this menu item is enabled or not.
|
|
pub fn is_enabled(&self) -> bool {
|
|
self.0.is_enabled()
|
|
}
|
|
|
|
/// Enable or disable this menu item.
|
|
pub fn set_enabled(&self, enabled: bool) {
|
|
self.0.set_enabled(enabled)
|
|
}
|
|
}
|