2022-05-07 00:25:45 +10:00
|
|
|
use crossbeam_channel::{unbounded, Receiver, Sender};
|
|
|
|
use once_cell::sync::Lazy;
|
|
|
|
|
2022-05-05 21:50:22 +10:00
|
|
|
mod platform_impl;
|
|
|
|
mod util;
|
|
|
|
|
2022-05-07 00:25:45 +10:00
|
|
|
static MENU_CHANNEL: Lazy<(Sender<MenuEvent>, Receiver<MenuEvent>)> = Lazy::new(|| unbounded());
|
|
|
|
|
|
|
|
/// Event channel for receiving menu events.
|
|
|
|
pub fn menu_event_receiver<'a>() -> &'a Receiver<MenuEvent> {
|
|
|
|
&MENU_CHANNEL.1
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Describes a menu event emitted when a menu item is activated
|
|
|
|
pub struct MenuEvent {
|
|
|
|
pub id: u64,
|
|
|
|
}
|
|
|
|
|
2022-05-05 21:50:22 +10:00
|
|
|
pub struct Menu(platform_impl::Menu);
|
|
|
|
|
|
|
|
impl Menu {
|
|
|
|
pub fn new() -> Self {
|
|
|
|
Self(platform_impl::Menu::new())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn add_submenu(&mut self, label: impl AsRef<str>, enabled: bool) -> Submenu {
|
|
|
|
Submenu(self.0.add_submenu(label, enabled))
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
pub fn init_for_gtk_window<W>(&self, w: &W)
|
|
|
|
where
|
|
|
|
W: gtk::prelude::IsA<gtk::Container>,
|
|
|
|
{
|
|
|
|
self.0.init_for_gtk_window(w)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone)]
|
|
|
|
pub struct Submenu(platform_impl::Submenu);
|
|
|
|
|
|
|
|
impl Submenu {
|
|
|
|
pub fn set_label(&mut self, label: impl AsRef<str>) {
|
|
|
|
self.0.set_label(label)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_enabled(&mut self, enabled: bool) {
|
|
|
|
self.0.set_enabled(enabled)
|
|
|
|
}
|
|
|
|
pub fn add_submenu(&mut self, label: impl AsRef<str>, enabled: bool) -> Submenu {
|
|
|
|
Submenu(self.0.add_submenu(label, enabled))
|
|
|
|
}
|
|
|
|
|
2022-05-07 00:25:45 +10:00
|
|
|
pub fn add_text_item(&mut self, label: impl AsRef<str>, enabled: bool) -> TextMenuItem {
|
|
|
|
TextMenuItem(self.0.add_text_item(label, enabled))
|
2022-05-05 21:50:22 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone)]
|
|
|
|
pub struct TextMenuItem(platform_impl::TextMenuItem);
|
|
|
|
|
|
|
|
impl TextMenuItem {
|
|
|
|
pub fn set_label(&mut self, label: impl AsRef<str>) {
|
|
|
|
self.0.set_label(label)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_enabled(&mut self, enabled: bool) {
|
|
|
|
self.0.set_enabled(enabled)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn id(&self) -> u64 {
|
|
|
|
self.0.id()
|
|
|
|
}
|
|
|
|
}
|