feat: Config Tray Click Event

This commit is contained in:
Pylogmon
2023-11-26 18:35:21 +08:00
parent e7b04a89e2
commit f142db3d49
7 changed files with 42 additions and 7 deletions

View File

@@ -23,6 +23,9 @@ pub struct IVerge {
/// maybe be able to set the alpha
pub theme_blur: Option<bool>,
/// tray click event
pub tray_event: Option<String>,
/// enable traffic graph default is true
pub traffic_graph: Option<bool>,
@@ -166,6 +169,7 @@ impl IVerge {
patch!(language);
patch!(theme_mode);
patch!(theme_blur);
patch!(tray_event);
patch!(traffic_graph);
patch!(enable_memory_usage);

View File

@@ -145,9 +145,20 @@ impl Tray {
Ok(())
}
pub fn on_left_click(app_handle: &AppHandle) {
let tray_event = { Config::verge().latest().tray_event.clone() };
let tray_event = tray_event.unwrap_or("main_window".into());
println!("{tray_event}");
match tray_event.as_str() {
"system_proxy" => feat::toggle_system_proxy(),
"tun_mode" => feat::toggle_tun_mode(),
_ => resolve::create_window(app_handle),
}
}
pub fn on_system_tray_event(app_handle: &AppHandle, event: SystemTrayEvent) {
match event {
#[cfg(not(target_os = "linux"))]
SystemTrayEvent::LeftClick { .. } => Tray::on_left_click(app_handle),
SystemTrayEvent::MenuItemClick { id, .. } => match id.as_str() {
mode @ ("rule_mode" | "global_mode" | "direct_mode" | "script_mode") => {
let mode = &mode[0..mode.len() - 5];
@@ -177,10 +188,6 @@ impl Tray {
}
_ => {}
},
#[cfg(target_os = "windows")]
SystemTrayEvent::LeftClick { .. } => {
resolve::create_window(app_handle);
}
_ => {}
}
}