110 lines
3.9 KiB
Rust
110 lines
3.9 KiB
Rust
#[cfg(target_os = "macos")]
|
|
use tauri::MenuItem;
|
|
|
|
use tauri::{CustomMenuItem, Menu, Submenu, WindowMenuEvent};
|
|
|
|
#[cfg(any(target_os = "linux", target_os = "windows"))]
|
|
use tauri::{Manager, SystemTray, SystemTrayEvent, SystemTrayMenu, WindowBuilder, WindowUrl};
|
|
|
|
#[cfg(any(target_os = "linux", target_os = "windows"))]
|
|
use tauri_plugin_window_state::{AppHandleExt, StateFlags};
|
|
|
|
pub fn get_menu() -> Menu {
|
|
let close = CustomMenuItem::new("close".to_string(), "Close Window").accelerator("CmdOrCtrl+W");
|
|
let first_menu = Menu::new()
|
|
.add_native_item(MenuItem::Copy)
|
|
.add_native_item(MenuItem::Cut)
|
|
.add_native_item(MenuItem::Paste)
|
|
.add_native_item(MenuItem::Undo)
|
|
.add_native_item(MenuItem::Redo)
|
|
.add_native_item(MenuItem::SelectAll)
|
|
.add_native_item(MenuItem::Separator)
|
|
.add_native_item(MenuItem::EnterFullScreen)
|
|
.add_native_item(MenuItem::Minimize)
|
|
.add_native_item(MenuItem::Hide)
|
|
.add_native_item(MenuItem::HideOthers)
|
|
.add_native_item(MenuItem::ShowAll)
|
|
.add_native_item(MenuItem::Separator)
|
|
.add_item(close)
|
|
.add_native_item(MenuItem::Quit);
|
|
|
|
let app_menu = Submenu::new("File", first_menu);
|
|
Menu::new().add_submenu(app_menu)
|
|
}
|
|
|
|
pub fn menu_event_handle(event: WindowMenuEvent) {
|
|
match event.menu_item_id() {
|
|
// default close to minimize
|
|
"close" => event.window().minimize().expect("can't minimize window"),
|
|
_ => {}
|
|
}
|
|
}
|
|
|
|
#[cfg(any(target_os = "linux", target_os = "windows"))]
|
|
pub fn get_system_tray(show_menu: bool) -> SystemTray {
|
|
let hide_app = CustomMenuItem::new("hide_app".to_string(), "Hide App");
|
|
let show_app = CustomMenuItem::new("show_app".to_string(), "Show App");
|
|
let quit = CustomMenuItem::new("quit".to_string(), "Quit");
|
|
let about = CustomMenuItem::new("about".to_string(), "About");
|
|
let tray_menu = SystemTrayMenu::new().add_item(hide_app).add_item(show_app);
|
|
if show_menu {
|
|
let hide_menu = CustomMenuItem::new("hide_menu".to_string(), "Hide Menu");
|
|
let show_menu = CustomMenuItem::new("show_menu".to_string(), "Show Menu");
|
|
let tray_menu = tray_menu
|
|
.add_item(hide_menu)
|
|
.add_item(show_menu)
|
|
.add_item(quit)
|
|
.add_item(about);
|
|
SystemTray::new().with_menu(tray_menu)
|
|
} else {
|
|
let tray_menu = tray_menu.add_item(quit).add_item(about);
|
|
SystemTray::new().with_menu(tray_menu)
|
|
}
|
|
}
|
|
|
|
#[cfg(any(target_os = "linux", target_os = "windows"))]
|
|
pub fn system_tray_handle(app: &tauri::AppHandle, event: SystemTrayEvent) {
|
|
if let SystemTrayEvent::MenuItemClick { tray_id: _, id, .. } = event {
|
|
match id.as_str() {
|
|
"hide_app" => {
|
|
app.get_window("pake").unwrap().hide().unwrap();
|
|
}
|
|
"show_app" => {
|
|
app.get_window("pake").unwrap().show().unwrap();
|
|
}
|
|
"hide_menu" => {
|
|
app.get_window("pake")
|
|
.unwrap()
|
|
.menu_handle()
|
|
.hide()
|
|
.unwrap();
|
|
}
|
|
"show_menu" => {
|
|
app.get_window("pake")
|
|
.unwrap()
|
|
.menu_handle()
|
|
.show()
|
|
.unwrap();
|
|
}
|
|
"quit" => {
|
|
let _res = app.save_window_state(StateFlags::all());
|
|
// println!("save windows state result {:?}", _res);
|
|
std::process::exit(0);
|
|
}
|
|
"about" => {
|
|
let _about_window = WindowBuilder::new(
|
|
app,
|
|
"about",
|
|
WindowUrl::App(std::path::PathBuf::from("about_pake.html")),
|
|
)
|
|
.resizable(true)
|
|
.title("About")
|
|
.inner_size(600.0, 400.0)
|
|
.build()
|
|
.expect("can't open about!");
|
|
}
|
|
_ => {}
|
|
}
|
|
};
|
|
}
|