更新代码格式

This commit is contained in:
Tlntin
2022-12-28 13:44:14 +08:00
parent aee2785183
commit 9e7e0a148d
2 changed files with 52 additions and 54 deletions

View File

@@ -10,7 +10,7 @@ use tauri::{
SystemTrayEvent, SystemTrayMenu, Window, WindowBuilder, WindowMenuEvent, WindowUrl, SystemTrayEvent, SystemTrayMenu, Window, WindowBuilder, WindowMenuEvent, WindowUrl,
}; };
mod pake; mod pake;
use pake::pake::PakeConfig; use pake::PakeConfig;
pub fn get_menu() -> Menu { pub fn get_menu() -> Menu {
// first menu // first menu

View File

@@ -1,58 +1,56 @@
pub mod pake { use serde::Deserialize;
use serde::Deserialize;
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
pub struct WindowConfig { pub struct WindowConfig {
pub url: String, pub url: String,
pub transparent: bool, pub transparent: bool,
pub fullscreen: bool, pub fullscreen: bool,
pub width: f64, pub width: f64,
pub height: f64, pub height: f64,
pub resizable: bool, pub resizable: bool,
pub url_type: String, pub url_type: String,
}
#[derive(Debug, Deserialize)]
pub struct UserAgent {
pub macos: String,
pub linux: String,
pub windows: String,
}
#[derive(Debug, Deserialize)]
pub struct FunctionON {
pub macos: bool,
pub linux: bool,
pub windows: bool,
}
#[derive(Debug, Deserialize)]
pub struct PakeConfig {
pub windows: Vec<WindowConfig>,
pub user_agent: UserAgent,
pub menu: FunctionON,
pub system_tray: FunctionON,
}
impl PakeConfig {
pub fn show_menu(&self) -> bool {
#[cfg(target_os = "macos")]
let menu_status = self.menu.macos;
#[cfg(target_os = "linux")]
let menu_status = self.menu.linux;
#[cfg(target_os = "windows")]
let menu_status = self.menu.windows;
menu_status
} }
#[derive(Debug, Deserialize)] pub fn show_system_tray(&self) -> bool {
pub struct UserAgent { #[cfg(target_os = "macos")]
pub macos: String, let tray_status = self.system_tray.macos;
pub linux: String, #[cfg(target_os = "linux")]
pub windows: String, let tray_status = self.system_tray.linux;
} #[cfg(target_os = "windows")]
let tray_status = self.system_tray.windows;
#[derive(Debug, Deserialize)] tray_status
pub struct FunctionON {
pub macos: bool,
pub linux: bool,
pub windows: bool,
}
#[derive(Debug, Deserialize)]
pub struct PakeConfig {
pub windows: Vec<WindowConfig>,
pub user_agent: UserAgent,
pub menu: FunctionON,
pub system_tray: FunctionON,
}
impl PakeConfig {
pub fn show_menu(&self) -> bool {
#[cfg(target_os = "macos")]
let menu_status = self.menu.macos;
#[cfg(target_os = "linux")]
let menu_status = self.menu.linux;
#[cfg(target_os = "windows")]
let menu_status = self.menu.windows;
menu_status
}
pub fn show_system_tray(&self) -> bool {
#[cfg(target_os = "macos")]
let tray_status = self.system_tray.macos;
#[cfg(target_os = "linux")]
let tray_status = self.system_tray.linux;
#[cfg(target_os = "windows")]
let tray_status = self.system_tray.windows;
tray_status
}
} }
} }